KMProductCompareWC.xib 238 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="21507" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
  3. <dependencies>
  4. <deployment identifier="macosx"/>
  5. <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="21507"/>
  6. <capability name="Named colors" minToolsVersion="9.0"/>
  7. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  8. </dependencies>
  9. <objects>
  10. <customObject id="-2" userLabel="File's Owner" customClass="KMProductCompareWC" customModule="PDF_Reader_Pro" customModuleProvider="target">
  11. <connections>
  12. <outlet property="aboutButton" destination="NUp-Nc-4Lc" id="8pI-oP-BLW"/>
  13. <outlet property="advancedPlanInfoLabel" destination="Ll7-An-0YH" id="E5i-mq-NbX"/>
  14. <outlet property="advancedPlanInfoView" destination="fce-hX-IV6" id="fKc-eZ-ouv"/>
  15. <outlet property="advancedPlanPurchaseButton" destination="SFA-A0-TRs" id="4QT-7d-h6P"/>
  16. <outlet property="advancedPlanPurchaseLabel" destination="ABz-rY-vFD" id="SWe-TL-aBy"/>
  17. <outlet property="advancedPlanPurchaseLbl" destination="D71-TX-fVd" id="Jgv-uy-CZD"/>
  18. <outlet property="advancedPlanPurchaseLblBtn" destination="JRG-Tt-bke" id="gp7-56-gTK"/>
  19. <outlet property="advancedPlanPurchaseSubLabel" destination="oie-PG-6He" id="54z-yg-Umo"/>
  20. <outlet property="advancedPlanPurchaseSubLabel2" destination="0HH-bq-tk2" id="SRH-PL-6QB"/>
  21. <outlet property="advancedPurchaseOriPriceLbl" destination="3VL-nh-gaY" id="3wQ-lI-5Gq"/>
  22. <outlet property="backgroundImage1" destination="mhT-uZ-2vj" id="J5Z-rm-pk3"/>
  23. <outlet property="backgroundImage3" destination="Y18-DK-FWw" id="3wh-VW-Aud"/>
  24. <outlet property="billedTopConst" destination="TWZ-mS-ih1" id="yMT-KX-19C"/>
  25. <outlet property="box" destination="MVd-e9-wr3" id="a9y-eW-QZ4"/>
  26. <outlet property="btnRestore" destination="9Ua-mh-Y98" id="2fY-C4-rwZ"/>
  27. <outlet property="discountPermanent" destination="0ur-PV-kxY" id="KxJ-HZ-S5I"/>
  28. <outlet property="discountPermanent2" destination="DQR-1s-l8u" id="IzW-Mn-qiB"/>
  29. <outlet property="discountPermanent4" destination="sn9-km-1Vm" id="Abp-8x-CKN"/>
  30. <outlet property="discountYearly" destination="3mf-Iq-URd" id="Ney-Zx-qLE"/>
  31. <outlet property="freeInfoLabel" destination="DVN-Eb-hSv" id="1P9-x4-lgR"/>
  32. <outlet property="freeInfoView" destination="ZLd-Sg-G8w" id="138-nW-ZY6"/>
  33. <outlet property="giftAIImage1" destination="YKE-fi-1tA" id="v9n-4p-Js9"/>
  34. <outlet property="giftAIImage2" destination="R8I-NQ-Qxa" id="FGA-cg-oWa"/>
  35. <outlet property="giftAIImage3" destination="zyK-EL-Zsm" id="nRW-ga-HbT"/>
  36. <outlet property="giftAIImage4" destination="DOg-ny-vRF" id="UDy-1D-EWz"/>
  37. <outlet property="giftAILabel1" destination="umU-ZL-ZzR" id="M6A-p6-51d"/>
  38. <outlet property="giftAILabel2" destination="WAw-xL-ges" id="6dy-OL-aDJ"/>
  39. <outlet property="giftAILabel3" destination="owb-KD-fFj" id="86p-ZC-UdU"/>
  40. <outlet property="giftAILabel4" destination="GAi-Em-6J2" id="xBd-jf-8yH"/>
  41. <outlet property="labelbox" destination="eYZ-KU-1XY" id="p1E-Z6-bbD"/>
  42. <outlet property="oneYearProLabel" destination="rzf-vX-hjW" id="CpJ-P7-gaZ"/>
  43. <outlet property="permanentInfoLabel" destination="snj-Zj-OvD" id="dIT-u2-eQT"/>
  44. <outlet property="permanentInfoView" destination="XVZ-jI-UYX" id="Bad-Tf-M22"/>
  45. <outlet property="permanentPurchaseButton" destination="zmz-yq-8SZ" id="qVb-1U-GUW"/>
  46. <outlet property="permanentPurchaseLabel" destination="okn-VX-xhH" id="MHC-gj-C4i"/>
  47. <outlet property="permanentPurchaseLbl" destination="w8I-Fc-Axv" id="ilg-lV-lCb"/>
  48. <outlet property="permanentPurchaseLblBtn" destination="5cy-wO-SqL" id="miQ-hL-2lK"/>
  49. <outlet property="permanentPurchaseOriPriceLbl" destination="bDg-XE-hsR" id="N91-ze-Ohx"/>
  50. <outlet property="permanentPurchaseSubLabel" destination="CHT-d8-7WR" id="RsF-HN-anj"/>
  51. <outlet property="permanentPurchaseSubLabel2" destination="ctO-mu-ddI" id="msi-hr-4xG"/>
  52. <outlet property="platformsView1" destination="kyQ-Jn-2Ny" id="2l9-dt-Enr"/>
  53. <outlet property="platformsView2" destination="HRU-Hk-DQz" id="nLx-4O-52N"/>
  54. <outlet property="platformsView3" destination="drW-Of-60w" id="md3-NY-40M"/>
  55. <outlet property="platformsView4" destination="fex-Hv-ZGc" id="VcF-1l-hyP"/>
  56. <outlet property="privacyPolicyBtn" destination="Gu5-Wk-ItB" id="nJ2-v6-iw1"/>
  57. <outlet property="saleBox" destination="MGz-Hq-oCc" id="hC0-yj-ZLP"/>
  58. <outlet property="saleIv" destination="lFH-1X-rmJ" id="yWP-OL-czE"/>
  59. <outlet property="saleLabel" destination="dKT-hk-xg2" id="UUy-tv-09J"/>
  60. <outlet property="sixMouthProLabel" destination="DfJ-Zd-LMd" id="bYt-It-mbu"/>
  61. <outlet property="specialImageView" destination="FNI-sE-hqK" id="exc-aX-m5k"/>
  62. <outlet property="specialImageView1" destination="cHj-D3-VbU" id="iDB-bR-x91"/>
  63. <outlet property="specialLabel" destination="Znw-Zi-3j9" id="pmb-qv-dh9"/>
  64. <outlet property="specialLabel1" destination="rVM-Kv-Rbr" id="8hy-Re-sqV"/>
  65. <outlet property="specialView" destination="wc2-lB-ZOG" id="LVQ-k0-Gsd"/>
  66. <outlet property="specialView1" destination="KD9-Jz-pNW" id="LQF-ey-jd4"/>
  67. <outlet property="standardPlanInfoLabel" destination="yl6-4d-E04" id="MLP-xO-kYm"/>
  68. <outlet property="standardPlanInfoView" destination="5cj-A5-MFN" id="6QJ-ao-Wce"/>
  69. <outlet property="standardPlanPurchaseButton" destination="3Ik-8P-4RK" id="ABr-zd-l3x"/>
  70. <outlet property="standardPlanPurchaseLabel" destination="cgF-jQ-Q0K" id="pvv-eB-rRd"/>
  71. <outlet property="standardPlanPurchaseLbl" destination="3QB-3J-VcS" id="3dz-x0-UNb"/>
  72. <outlet property="standardPlanPurchaseLblBtn" destination="ZEN-97-7fT" id="aGr-R1-F0z"/>
  73. <outlet property="standardPlanPurchaseSubLabel" destination="u1v-EM-8Bp" id="Eu4-yf-FCl"/>
  74. <outlet property="standardPlanPurchaseSubLabel2" destination="Z2t-T7-CMh" id="S0p-hw-fCQ"/>
  75. <outlet property="standardPurchaseOriPriceLbl" destination="6Pe-0P-Poq" id="Cf0-xP-xfh"/>
  76. <outlet property="switchBox" destination="tpD-w8-ls0" id="DIZ-e4-SsX"/>
  77. <outlet property="switchBtn" destination="85I-Ew-NJK" id="3IJ-re-jWC"/>
  78. <outlet property="switchCircleLeftConst" destination="zfa-w6-GDp" id="5Fi-Qt-Plo"/>
  79. <outlet property="switchCircleView" destination="CEE-TJ-pwY" id="IGG-AJ-Vdf"/>
  80. <outlet property="switchLabel" destination="ob0-Bq-QsJ" id="BOb-dP-9iC"/>
  81. <outlet property="tableView" destination="UQf-R2-MfQ" id="0EG-wv-tz7"/>
  82. <outlet property="termOfSerBtn" destination="nwB-UV-7Pi" id="cu5-4U-nhI"/>
  83. <outlet property="textView" destination="GaB-cW-JRI" id="iBR-yY-xOi"/>
  84. <outlet property="titleLabel" destination="PwB-yc-8Ed" id="4MX-e2-wbM"/>
  85. <outlet property="topMainBox" destination="A99-27-Swh" id="1Z7-qW-Bej"/>
  86. <outlet property="topMainView" destination="3eO-1v-ESh" id="SQ5-gt-XhL"/>
  87. <outlet property="topSelectBox1" destination="TbI-cd-sd7" id="4vM-Ag-b5k"/>
  88. <outlet property="topSelectBox2" destination="eSr-Ep-bND" id="gF9-Zr-xkP"/>
  89. <outlet property="topSelectBox3" destination="LHQ-au-Z59" id="8DK-Pl-ir5"/>
  90. <outlet property="topSelectBox4" destination="fpi-Pf-NfD" id="dpm-T4-Rby"/>
  91. <outlet property="topsubBox1" destination="rtR-EN-GZe" id="MbA-E4-siO"/>
  92. <outlet property="topsubBox2" destination="vWg-fp-y8C" id="Zov-ZQ-rhm"/>
  93. <outlet property="topsubBox3" destination="zIJ-y3-LlP" id="iSe-yG-R2u"/>
  94. <outlet property="topsubBox4" destination="Qq2-ys-Kfy" id="31Q-Fh-3RO"/>
  95. <outlet property="topsubBoxWidth1" destination="dmj-ri-GBh" id="L6C-1Q-YeL"/>
  96. <outlet property="topsubBoxWidth2" destination="Fht-ba-6vO" id="SCe-0U-js4"/>
  97. <outlet property="topsubBoxWidth3" destination="UZc-yX-zJD" id="Nhp-9W-Crg"/>
  98. <outlet property="topsubBoxWidth4" destination="Vd3-5i-fHR" id="VIE-6c-hMw"/>
  99. <outlet property="value1InfoLabel" destination="fHA-Fl-Rtx" id="ixC-mj-iAw"/>
  100. <outlet property="value1InfoTypeBox" destination="Cqg-bI-mdE" id="9sB-iM-WP0"/>
  101. <outlet property="value1InfoView" destination="Wx1-YC-wA8" id="CNG-NN-Fre"/>
  102. <outlet property="value1PurchaseBtnLbl" destination="TGG-tp-JR2" id="Zzh-Gv-RVF"/>
  103. <outlet property="value1PurchaseBtnLblBtn" destination="ep1-iy-QCy" id="dQV-yK-vpK"/>
  104. <outlet property="value1PurchaseButton" destination="Dql-gp-ebU" id="Fmn-Gx-Qe6"/>
  105. <outlet property="value1PurchaseLabel" destination="ljn-U5-Aje" id="HBd-4f-Fx9"/>
  106. <outlet property="value1PurchaseOriPriceLbl" destination="Dv2-0w-DyH" id="aQG-Hc-Zn9"/>
  107. <outlet property="value1PurchaseSubLabel" destination="Rwz-e9-wOa" id="zFE-vA-ZQP"/>
  108. <outlet property="window" destination="7jy-UC-R98" id="Pdq-cy-1Iu"/>
  109. </connections>
  110. </customObject>
  111. <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
  112. <customObject id="-3" userLabel="Application" customClass="NSObject"/>
  113. <window allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="documentWindow" titlebarAppearsTransparent="YES" id="7jy-UC-R98">
  114. <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES" fullSizeContentView="YES"/>
  115. <rect key="contentRect" x="77" y="40" width="970" height="660"/>
  116. <rect key="screenRect" x="0.0" y="0.0" width="1440" height="875"/>
  117. <view key="contentView" wantsLayer="YES" misplaced="YES" id="BHT-Ss-56B">
  118. <rect key="frame" x="0.0" y="0.0" width="970" height="660"/>
  119. <autoresizingMask key="autoresizingMask"/>
  120. <subviews>
  121. <box misplaced="YES" boxType="custom" borderType="none" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="rhE-eG-YHH">
  122. <rect key="frame" x="0.0" y="497" width="1054" height="192"/>
  123. <view key="contentView" id="yuM-RN-TXQ">
  124. <rect key="frame" x="0.0" y="0.0" width="1054" height="192"/>
  125. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  126. <subviews>
  127. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="753-bO-8nU">
  128. <rect key="frame" x="0.0" y="0.0" width="1054" height="212"/>
  129. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  130. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="KMImageNameCompareBG" id="WMw-nV-t4A"/>
  131. </imageView>
  132. <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PwB-yc-8Ed">
  133. <rect key="frame" x="30" y="108" width="324" height="38"/>
  134. <constraints>
  135. <constraint firstAttribute="width" constant="320" id="BKS-DA-g7g"/>
  136. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="48" id="MQB-cg-jX1"/>
  137. </constraints>
  138. <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" title="Subscribe to All Access Pack to enjoy more expanded features." id="bBB-B8-XfC">
  139. <font key="font" size="16" name="Helvetica-Bold"/>
  140. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  141. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  142. </textFieldCell>
  143. </textField>
  144. <button focusRingType="none" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9Ua-mh-Y98" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  145. <rect key="frame" x="32" y="18" width="51" height="16"/>
  146. <constraints>
  147. <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="cf7-9E-idQ"/>
  148. </constraints>
  149. <buttonCell key="cell" type="bevel" title="Restore" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" focusRingType="none" imageScaling="proportionallyDown" inset="2" id="Gd5-Hq-91W">
  150. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  151. <font key="font" metaFont="system"/>
  152. </buttonCell>
  153. <connections>
  154. <action selector="buttonItemClicked_Restore:" target="-2" id="s0p-F7-DTS"/>
  155. </connections>
  156. </button>
  157. <button verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Gu5-Wk-ItB" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  158. <rect key="frame" x="103" y="18" width="49" height="16"/>
  159. <constraints>
  160. <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="ncj-Zz-1TI"/>
  161. </constraints>
  162. <buttonCell key="cell" type="bevel" title="Privacy" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" imageScaling="proportionallyDown" inset="2" id="VEZ-JZ-eTb">
  163. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  164. <font key="font" metaFont="system"/>
  165. </buttonCell>
  166. <connections>
  167. <action selector="privacyPolicyAction:" target="-2" id="xFT-WY-FoM"/>
  168. </connections>
  169. </button>
  170. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="A99-27-Swh">
  171. <rect key="frame" x="352" y="0.0" width="618" height="202"/>
  172. <view key="contentView" id="bYv-fa-oGt">
  173. <rect key="frame" x="0.0" y="0.0" width="618" height="202"/>
  174. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  175. </view>
  176. </box>
  177. <button verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nwB-UV-7Pi" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  178. <rect key="frame" x="172" y="18" width="42" height="16"/>
  179. <constraints>
  180. <constraint firstAttribute="width" relation="lessThanOrEqual" constant="108" id="XPt-NF-r8z"/>
  181. </constraints>
  182. <buttonCell key="cell" type="bevel" title="Terms" bezelStyle="rounded" alignment="left" controlSize="mini" lineBreakMode="truncatingTail" imageScaling="proportionallyDown" inset="2" id="f0o-9M-xKQ">
  183. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  184. <font key="font" metaFont="system"/>
  185. </buttonCell>
  186. <connections>
  187. <action selector="termOfSerAction:" target="-2" id="A2Y-jz-Bp2"/>
  188. </connections>
  189. </button>
  190. <scrollView borderType="none" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" translatesAutoresizingMaskIntoConstraints="NO" id="92M-gW-NPT">
  191. <rect key="frame" x="28" y="61" width="320" height="43"/>
  192. <clipView key="contentView" drawsBackground="NO" copiesOnScroll="NO" id="Euu-kC-XYf">
  193. <rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
  194. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  195. <subviews>
  196. <textView editable="NO" importsGraphics="NO" richText="NO" verticallyResizable="YES" spellingCorrection="YES" smartInsertDelete="YES" id="GaB-cW-JRI">
  197. <rect key="frame" x="0.0" y="14" width="320" height="263"/>
  198. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  199. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  200. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  201. <size key="minSize" width="320" height="43"/>
  202. <size key="maxSize" width="1100" height="10000000"/>
  203. <attributedString key="textStorage">
  204. <fragment>
  205. <string key="content">Subscription plans:
  206. Subscriptions: USD $39.99/</string>
  207. <attributes>
  208. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  209. <font key="NSFont" size="11" name="HelveticaNeue"/>
  210. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  211. </attributes>
  212. </fragment>
  213. <fragment content="(">
  214. <attributes>
  215. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  216. <font key="NSFont" metaFont="message" size="11"/>
  217. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  218. </attributes>
  219. </fragment>
  220. <fragment content="6 months">
  221. <attributes>
  222. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  223. <font key="NSFont" size="11" name="HelveticaNeue"/>
  224. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  225. </attributes>
  226. </fragment>
  227. <fragment content="),">
  228. <attributes>
  229. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  230. <font key="NSFont" metaFont="message" size="11"/>
  231. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  232. </attributes>
  233. </fragment>
  234. <fragment content=" USD $79.99/">
  235. <attributes>
  236. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  237. <font key="NSFont" size="11" name="HelveticaNeue"/>
  238. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  239. </attributes>
  240. </fragment>
  241. <fragment content="(">
  242. <attributes>
  243. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  244. <font key="NSFont" metaFont="message" size="11"/>
  245. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  246. </attributes>
  247. </fragment>
  248. <fragment content="one-time purchase">
  249. <attributes>
  250. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  251. <font key="NSFont" size="11" name="HelveticaNeue"/>
  252. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  253. </attributes>
  254. </fragment>
  255. <fragment content=")">
  256. <attributes>
  257. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  258. <font key="NSFont" metaFont="message" size="11"/>
  259. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  260. </attributes>
  261. </fragment>
  262. <fragment>
  263. <mutableString key="content">
  264. - Subscriptions will be charged through your iTunes account at the confirmation of purchase.
  265. - Your subscriptions will automatically renew unless cancelled at least 24 hours before the end of current subscription period.
  266. - Your iTunes account will be charged for renewal within 24-hours prior to the end of the current period</mutableString>
  267. <attributes>
  268. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  269. <font key="NSFont" size="11" name="HelveticaNeue"/>
  270. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  271. </attributes>
  272. </fragment>
  273. <fragment content=",">
  274. <attributes>
  275. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  276. <font key="NSFont" metaFont="message" size="11"/>
  277. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  278. </attributes>
  279. </fragment>
  280. <fragment>
  281. <mutableString key="content"> for the same duration and at the current subscription price.
  282. - You may manage your subscriptions in your iTunes Account Settings after purchase.
  283. - No cancellation of the current subscription is allowed during an active subscription period.
  284. - Terms of service:
  285. https://www.pdfreaderpro.com/terms_of_service
  286. - Privacy Policy:
  287. https://www.pdfreaderpro.com/privacy-policy</mutableString>
  288. <attributes>
  289. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  290. <font key="NSFont" size="11" name="HelveticaNeue"/>
  291. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  292. </attributes>
  293. </fragment>
  294. <fragment content="
">
  295. <attributes>
  296. <color key="NSColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="1" colorSpace="calibratedRGB"/>
  297. <font key="NSFont" size="13" name="HelveticaNeue-Bold"/>
  298. <paragraphStyle key="NSParagraphStyle" alignment="left" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0" allowsDefaultTighteningForTruncation="NO"/>
  299. </attributes>
  300. </fragment>
  301. </attributedString>
  302. <color key="insertionPointColor" name="textInsertionPointColor" catalog="System" colorSpace="catalog"/>
  303. </textView>
  304. </subviews>
  305. </clipView>
  306. <constraints>
  307. <constraint firstAttribute="width" constant="320" id="76u-V4-DsD"/>
  308. <constraint firstAttribute="height" constant="43" id="F8j-8k-2XD"/>
  309. </constraints>
  310. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="XKC-x2-vpE">
  311. <rect key="frame" x="-100" y="-100" width="1092" height="16"/>
  312. <autoresizingMask key="autoresizingMask"/>
  313. </scroller>
  314. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="V3p-FO-85S">
  315. <rect key="frame" x="-100" y="-100" width="16" height="50"/>
  316. <autoresizingMask key="autoresizingMask"/>
  317. </scroller>
  318. </scrollView>
  319. </subviews>
  320. <constraints>
  321. <constraint firstAttribute="bottom" secondItem="A99-27-Swh" secondAttribute="bottom" id="1cz-bX-Zbc"/>
  322. <constraint firstItem="A99-27-Swh" firstAttribute="leading" secondItem="yuM-RN-TXQ" secondAttribute="leading" constant="352" id="5ZR-wE-zTh"/>
  323. <constraint firstItem="PwB-yc-8Ed" firstAttribute="leading" secondItem="yuM-RN-TXQ" secondAttribute="leading" constant="32" id="77O-on-ZGq"/>
  324. <constraint firstItem="Gu5-Wk-ItB" firstAttribute="centerY" secondItem="9Ua-mh-Y98" secondAttribute="centerY" id="8Ao-V7-YFH"/>
  325. <constraint firstItem="nwB-UV-7Pi" firstAttribute="centerY" secondItem="Gu5-Wk-ItB" secondAttribute="centerY" id="Cgr-Zj-zed"/>
  326. <constraint firstAttribute="bottom" secondItem="9Ua-mh-Y98" secondAttribute="bottom" constant="18" id="TTL-4Z-f74"/>
  327. <constraint firstItem="9Ua-mh-Y98" firstAttribute="leading" secondItem="PwB-yc-8Ed" secondAttribute="leading" id="VAN-5s-Dwh"/>
  328. <constraint firstItem="92M-gW-NPT" firstAttribute="leading" secondItem="PwB-yc-8Ed" secondAttribute="leading" constant="-4" id="YhP-R4-ntg"/>
  329. <constraint firstItem="PwB-yc-8Ed" firstAttribute="top" secondItem="yuM-RN-TXQ" secondAttribute="top" constant="76" id="Yje-hP-G2n"/>
  330. <constraint firstItem="Gu5-Wk-ItB" firstAttribute="leading" secondItem="9Ua-mh-Y98" secondAttribute="trailing" constant="20" id="eaD-4G-eLG"/>
  331. <constraint firstAttribute="trailing" secondItem="A99-27-Swh" secondAttribute="trailing" id="gax-QU-is8"/>
  332. <constraint firstItem="nwB-UV-7Pi" firstAttribute="leading" secondItem="Gu5-Wk-ItB" secondAttribute="trailing" constant="20" id="l5t-sH-h4D"/>
  333. <constraint firstItem="A99-27-Swh" firstAttribute="top" secondItem="yuM-RN-TXQ" secondAttribute="top" constant="20" id="sWX-MW-iXw"/>
  334. <constraint firstItem="92M-gW-NPT" firstAttribute="top" secondItem="PwB-yc-8Ed" secondAttribute="bottom" constant="4" id="teG-kV-iLY"/>
  335. </constraints>
  336. </view>
  337. <constraints>
  338. <constraint firstAttribute="height" constant="222" id="oxM-U7-EWC"/>
  339. </constraints>
  340. <color key="fillColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  341. </box>
  342. <box hidden="YES" fixedFrame="YES" boxType="custom" borderType="none" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="MVd-e9-wr3">
  343. <rect key="frame" x="0.0" y="-180" width="1150" height="160"/>
  344. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  345. <view key="contentView" id="4Ah-2q-sOk">
  346. <rect key="frame" x="0.0" y="0.0" width="1150" height="160"/>
  347. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  348. <subviews>
  349. <box fixedFrame="YES" boxType="custom" borderType="none" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="S76-Wq-Kpu">
  350. <rect key="frame" x="30" y="30" width="1090" height="130"/>
  351. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  352. <view key="contentView" id="OoV-UT-A8u">
  353. <rect key="frame" x="0.0" y="0.0" width="1090" height="130"/>
  354. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  355. <subviews>
  356. <box fixedFrame="YES" boxType="custom" borderWidth="0.0" cornerRadius="16" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="eYZ-KU-1XY">
  357. <rect key="frame" x="0.0" y="75" width="498" height="35"/>
  358. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  359. <view key="contentView" id="e6X-1O-FRr">
  360. <rect key="frame" x="0.0" y="0.0" width="498" height="35"/>
  361. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  362. <subviews>
  363. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ob0-Bq-QsJ">
  364. <rect key="frame" x="22" y="8" width="458" height="19"/>
  365. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  366. <textFieldCell key="cell" sendsActionOnEndEditing="YES" title="Choose your favorite payment and enjoy flexible upgrades." id="L4M-W5-ZIA">
  367. <font key="font" metaFont="systemBold" size="16"/>
  368. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  369. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  370. </textFieldCell>
  371. </textField>
  372. <button fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="XrH-YB-sky">
  373. <rect key="frame" x="0.0" y="10" width="16" height="16"/>
  374. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  375. <buttonCell key="cell" type="square" bezelStyle="shadowlessSquare" image="KMImageNamePurchaseBuy" imagePosition="only" alignment="center" imageScaling="proportionallyUpOrDown" inset="2" id="7HH-k3-NGv">
  376. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  377. <font key="font" metaFont="system"/>
  378. </buttonCell>
  379. </button>
  380. </subviews>
  381. </view>
  382. <color key="fillColor" red="0.0" green="0.14117647059999999" blue="1" alpha="0.10000000000000001" colorSpace="custom" customColorSpace="sRGB"/>
  383. </box>
  384. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="iuq-MX-hpP">
  385. <rect key="frame" x="550" y="0.0" width="170" height="130"/>
  386. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  387. </customView>
  388. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NUp-Nc-4Lc" customClass="HyperLinkButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  389. <rect key="frame" x="479" y="57" width="131" height="16"/>
  390. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  391. <buttonCell key="cell" type="bevel" title="About Subscriptions " bezelStyle="rounded" alignment="left" controlSize="mini" imageScaling="proportionallyDown" inset="2" id="Obl-hA-HjC">
  392. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  393. <font key="font" metaFont="system"/>
  394. </buttonCell>
  395. <connections>
  396. <action selector="buttonItemClicked_AboutSubscriptions:" target="-2" id="c6i-wz-AcO"/>
  397. </connections>
  398. </button>
  399. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lL3-ve-hng">
  400. <rect key="frame" x="735" y="0.0" width="170" height="130"/>
  401. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  402. </customView>
  403. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nEq-4H-q8D">
  404. <rect key="frame" x="920" y="0.0" width="170" height="130"/>
  405. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  406. </customView>
  407. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="wc2-lB-ZOG">
  408. <rect key="frame" x="847" y="25" width="73" height="30"/>
  409. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  410. <subviews>
  411. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="FNI-sE-hqK">
  412. <rect key="frame" x="0.0" y="0.0" width="73" height="30"/>
  413. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  414. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="WVM-70-mHQ"/>
  415. </imageView>
  416. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Znw-Zi-3j9">
  417. <rect key="frame" x="8" y="7" width="57" height="16"/>
  418. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  419. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="20% off" id="3Y5-kD-vmP">
  420. <font key="font" metaFont="system"/>
  421. <color key="textColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  422. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  423. </textFieldCell>
  424. </textField>
  425. </subviews>
  426. </customView>
  427. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KD9-Jz-pNW">
  428. <rect key="frame" x="662" y="25" width="73" height="30"/>
  429. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  430. <subviews>
  431. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cHj-D3-VbU">
  432. <rect key="frame" x="0.0" y="0.0" width="73" height="30"/>
  433. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  434. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="9Np-8H-jT9"/>
  435. </imageView>
  436. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rVM-Kv-Rbr">
  437. <rect key="frame" x="8" y="7" width="57" height="16"/>
  438. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  439. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="20% off" id="BVK-ER-JET">
  440. <font key="font" metaFont="system"/>
  441. <color key="textColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  442. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  443. </textFieldCell>
  444. </textField>
  445. </subviews>
  446. </customView>
  447. </subviews>
  448. </view>
  449. <color key="borderColor" red="0.92156862750000001" green="0.96078431369999995" blue="1" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  450. <color key="fillColor" red="0.0" green="0.4431372549" blue="0.93333333330000001" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  451. </box>
  452. </subviews>
  453. </view>
  454. <color key="fillColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  455. </box>
  456. <scrollView misplaced="YES" borderType="none" horizontalLineScroll="49" horizontalPageScroll="10" verticalLineScroll="49" verticalPageScroll="10" hasHorizontalScroller="NO" hasVerticalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Nug-mc-XVk">
  457. <rect key="frame" x="0.0" y="-50" width="970" height="518"/>
  458. <clipView key="contentView" drawsBackground="NO" id="mXx-Ex-E5u">
  459. <rect key="frame" x="0.0" y="0.0" width="970" height="518"/>
  460. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  461. <subviews>
  462. <tableView verticalHuggingPriority="750" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" tableStyle="plain" selectionHighlightStyle="none" columnSelection="YES" columnResizing="NO" multipleSelection="NO" autosaveColumns="NO" rowHeight="49" rowSizeStyle="automatic" viewBased="YES" id="UQf-R2-MfQ">
  463. <rect key="frame" x="0.0" y="0.0" width="970" height="518"/>
  464. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  465. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  466. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  467. <tableColumns>
  468. <tableColumn width="970" minWidth="40" maxWidth="10000" id="lLo-z5-2m3">
  469. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border">
  470. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  471. <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
  472. </tableHeaderCell>
  473. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="AVC-83-47I">
  474. <font key="font" metaFont="system"/>
  475. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  476. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  477. </textFieldCell>
  478. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  479. <prototypeCellViews>
  480. <tableCellView identifier="KMProductCompareTableHeaderCell" id="rUh-01-Vn4" customClass="KMProductCompareTableHeaderCell" customModule="PDF_Reader_Pro" customModuleProvider="target">
  481. <rect key="frame" x="0.0" y="0.0" width="970" height="32"/>
  482. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  483. <subviews>
  484. <customView translatesAutoresizingMaskIntoConstraints="NO" id="yZM-JH-Pej">
  485. <rect key="frame" x="0.0" y="0.0" width="970" height="32"/>
  486. <subviews>
  487. <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="vBF-W5-0Vf">
  488. <rect key="frame" x="60" y="8" width="105" height="17"/>
  489. <textFieldCell key="cell" lineBreakMode="truncatingTail" sendsActionOnEndEditing="YES" title="Table View Cell" id="qYu-hm-Ci1">
  490. <font key="font" metaFont="systemMedium" size="14"/>
  491. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  492. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  493. </textFieldCell>
  494. </textField>
  495. <box boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Jgf-Tg-8uu">
  496. <rect key="frame" x="506" y="-5" width="300" height="42"/>
  497. <view key="contentView" id="ysw-uB-PML">
  498. <rect key="frame" x="1" y="1" width="298" height="40"/>
  499. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  500. </view>
  501. <constraints>
  502. <constraint firstAttribute="width" constant="300" id="dsM-5m-jQx"/>
  503. </constraints>
  504. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  505. </box>
  506. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="NdO-Qv-LL5">
  507. <rect key="frame" x="32" y="6" width="20" height="20"/>
  508. <constraints>
  509. <constraint firstAttribute="width" constant="20" id="cMW-3v-tkE"/>
  510. <constraint firstAttribute="height" constant="20" id="iPV-tF-Fg5"/>
  511. </constraints>
  512. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MembershipBenefitsImage" id="pHg-95-o0Q"/>
  513. </imageView>
  514. </subviews>
  515. <constraints>
  516. <constraint firstItem="vBF-W5-0Vf" firstAttribute="leading" secondItem="yZM-JH-Pej" secondAttribute="leading" constant="62" id="OPT-Fj-HPB"/>
  517. <constraint firstItem="vBF-W5-0Vf" firstAttribute="centerY" secondItem="yZM-JH-Pej" secondAttribute="centerY" id="RKg-I4-TaY"/>
  518. <constraint firstItem="vBF-W5-0Vf" firstAttribute="centerY" secondItem="NdO-Qv-LL5" secondAttribute="centerY" id="VA4-h4-X33"/>
  519. <constraint firstItem="Jgf-Tg-8uu" firstAttribute="top" secondItem="yZM-JH-Pej" secondAttribute="top" constant="-5" id="dC9-MK-Ul2"/>
  520. <constraint firstItem="Jgf-Tg-8uu" firstAttribute="leading" secondItem="yZM-JH-Pej" secondAttribute="leading" constant="506" id="hb6-eN-hKH"/>
  521. <constraint firstItem="vBF-W5-0Vf" firstAttribute="leading" secondItem="NdO-Qv-LL5" secondAttribute="trailing" constant="10" id="reW-lV-dSv"/>
  522. <constraint firstAttribute="bottom" secondItem="Jgf-Tg-8uu" secondAttribute="bottom" constant="-5" id="v4C-MQ-NmI"/>
  523. </constraints>
  524. </customView>
  525. </subviews>
  526. <constraints>
  527. <constraint firstAttribute="bottom" secondItem="yZM-JH-Pej" secondAttribute="bottom" id="0Hs-Lj-U55"/>
  528. <constraint firstItem="yZM-JH-Pej" firstAttribute="leading" secondItem="rUh-01-Vn4" secondAttribute="leading" id="3kL-RO-bZJ"/>
  529. <constraint firstItem="yZM-JH-Pej" firstAttribute="top" secondItem="rUh-01-Vn4" secondAttribute="top" id="48O-eY-Yx3"/>
  530. <constraint firstAttribute="trailing" secondItem="yZM-JH-Pej" secondAttribute="trailing" id="WMq-Zx-JW3"/>
  531. </constraints>
  532. <connections>
  533. <outlet property="contentView" destination="yZM-JH-Pej" id="KUw-10-Su5"/>
  534. <outlet property="leftImageView" destination="NdO-Qv-LL5" id="2cm-YC-uAf"/>
  535. <outlet property="selectBoxLeft" destination="hb6-eN-hKH" id="Nfp-Sp-1OT"/>
  536. <outlet property="selectBoxWidth" destination="dsM-5m-jQx" id="Bz4-c3-uTy"/>
  537. <outlet property="textField" destination="vBF-W5-0Vf" id="PN9-OG-TCn"/>
  538. <outlet property="textfieldLeft" destination="OPT-Fj-HPB" id="9mU-aS-Fg6"/>
  539. </connections>
  540. </tableCellView>
  541. <tableCellView identifier="KMProductCompareTableCell" id="ax6-Po-8DY" customClass="KMProductCompareTableCell" customModule="PDF_Reader_Pro" customModuleProvider="target">
  542. <rect key="frame" x="0.0" y="32" width="970" height="49"/>
  543. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  544. <subviews>
  545. <customView translatesAutoresizingMaskIntoConstraints="NO" id="O9u-9e-atz">
  546. <rect key="frame" x="0.0" y="0.0" width="970" height="49"/>
  547. </customView>
  548. <box fixedFrame="YES" boxType="custom" borderType="none" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="lLf-YX-j0Y">
  549. <rect key="frame" x="20" y="0.0" width="1110" height="1"/>
  550. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  551. <view key="contentView" id="w1J-T2-rdP">
  552. <rect key="frame" x="0.0" y="0.0" width="1110" height="1"/>
  553. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  554. </view>
  555. <color key="fillColor" red="0.95294117649999999" green="0.95294117649999999" blue="0.95294117649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  556. </box>
  557. <customView translatesAutoresizingMaskIntoConstraints="NO" id="hPa-wJ-jja">
  558. <rect key="frame" x="32" y="0.0" width="938" height="49"/>
  559. <subviews>
  560. <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="eva-hu-gUk">
  561. <rect key="frame" x="-2" y="17" width="324" height="16"/>
  562. <constraints>
  563. <constraint firstAttribute="width" constant="320" id="MNS-Vt-8xt"/>
  564. </constraints>
  565. <textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" title="Multiline Label" id="o7n-AE-ABV">
  566. <font key="font" metaFont="system"/>
  567. <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="calibratedRGB"/>
  568. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  569. </textFieldCell>
  570. </textField>
  571. <customView translatesAutoresizingMaskIntoConstraints="NO" id="aGF-gc-JA0">
  572. <rect key="frame" x="320" y="0.0" width="144" height="49"/>
  573. <subviews>
  574. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="zke-UU-SYF">
  575. <rect key="frame" x="0.0" y="15" width="144" height="20"/>
  576. <view key="contentView" id="jaz-My-uNP">
  577. <rect key="frame" x="0.0" y="0.0" width="144" height="20"/>
  578. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  579. <subviews>
  580. <customView translatesAutoresizingMaskIntoConstraints="NO" id="R0L-Jp-d3S">
  581. <rect key="frame" x="8" y="0.0" width="128" height="20"/>
  582. <subviews>
  583. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0NP-Fe-Pb9">
  584. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  585. <constraints>
  586. <constraint firstAttribute="height" constant="20" id="0az-jx-BOl"/>
  587. <constraint firstAttribute="width" constant="20" id="Fci-2f-DDH"/>
  588. </constraints>
  589. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="nJo-tD-wD4"/>
  590. </imageView>
  591. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="4Dd-dE-aeB">
  592. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  593. <constraints>
  594. <constraint firstAttribute="height" constant="20" id="9Am-S3-O5v"/>
  595. <constraint firstAttribute="width" constant="20" id="rRI-0d-ifC"/>
  596. </constraints>
  597. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="Xo4-GP-q6j"/>
  598. </imageView>
  599. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Gti-Ae-odm">
  600. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  601. <constraints>
  602. <constraint firstAttribute="width" constant="20" id="HJe-HR-SsU"/>
  603. <constraint firstAttribute="height" constant="20" id="PiG-3S-0l1"/>
  604. </constraints>
  605. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="ZY6-fy-lLF"/>
  606. </imageView>
  607. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="lKl-1e-uDw">
  608. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  609. <constraints>
  610. <constraint firstAttribute="height" constant="20" id="D68-th-ZL3"/>
  611. <constraint firstAttribute="width" constant="20" id="ekL-Yf-5NH"/>
  612. </constraints>
  613. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="30e-dn-bxE"/>
  614. </imageView>
  615. </subviews>
  616. <constraints>
  617. <constraint firstItem="4Dd-dE-aeB" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="8Ql-7X-tT3"/>
  618. <constraint firstAttribute="bottom" secondItem="lKl-1e-uDw" secondAttribute="bottom" id="BUG-b7-dB7"/>
  619. <constraint firstItem="lKl-1e-uDw" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="EGq-XR-GHn"/>
  620. <constraint firstItem="0NP-Fe-Pb9" firstAttribute="leading" secondItem="R0L-Jp-d3S" secondAttribute="leading" id="Js2-mX-G6U"/>
  621. <constraint firstAttribute="bottom" secondItem="Gti-Ae-odm" secondAttribute="bottom" id="Unc-3h-84z"/>
  622. <constraint firstAttribute="trailing" secondItem="lKl-1e-uDw" secondAttribute="trailing" id="YlY-YN-A5h"/>
  623. <constraint firstAttribute="bottom" secondItem="0NP-Fe-Pb9" secondAttribute="bottom" id="cXg-Xd-IES"/>
  624. <constraint firstItem="0NP-Fe-Pb9" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="ffo-n5-nQb"/>
  625. <constraint firstAttribute="height" constant="20" id="ftk-pa-dkH"/>
  626. <constraint firstItem="4Dd-dE-aeB" firstAttribute="leading" secondItem="0NP-Fe-Pb9" secondAttribute="trailing" constant="16" id="gHr-5B-Rsa"/>
  627. <constraint firstItem="Gti-Ae-odm" firstAttribute="top" secondItem="R0L-Jp-d3S" secondAttribute="top" id="kcg-7G-UQf"/>
  628. <constraint firstItem="Gti-Ae-odm" firstAttribute="leading" secondItem="4Dd-dE-aeB" secondAttribute="trailing" constant="16" id="qEG-Jb-uiR"/>
  629. <constraint firstAttribute="bottom" secondItem="4Dd-dE-aeB" secondAttribute="bottom" id="qJC-cc-hz1"/>
  630. <constraint firstItem="lKl-1e-uDw" firstAttribute="leading" secondItem="Gti-Ae-odm" secondAttribute="trailing" constant="16" id="xfa-GV-zGt"/>
  631. </constraints>
  632. </customView>
  633. </subviews>
  634. </view>
  635. <constraints>
  636. <constraint firstAttribute="height" constant="20" id="Duw-7s-A7r"/>
  637. <constraint firstItem="R0L-Jp-d3S" firstAttribute="centerY" secondItem="zke-UU-SYF" secondAttribute="centerY" id="U2g-Tj-A8v"/>
  638. <constraint firstItem="R0L-Jp-d3S" firstAttribute="centerX" secondItem="zke-UU-SYF" secondAttribute="centerX" id="y0D-uN-Cwo"/>
  639. </constraints>
  640. </box>
  641. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="4B7-fb-f19">
  642. <rect key="frame" x="0.0" y="-4" width="144" height="57"/>
  643. <view key="contentView" id="G1i-Qf-9jx">
  644. <rect key="frame" x="1" y="1" width="142" height="55"/>
  645. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  646. </view>
  647. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  648. </box>
  649. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="yP8-88-gIa">
  650. <rect key="frame" x="-2" y="17" width="148" height="16"/>
  651. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="vtz-8V-Gxo">
  652. <font key="font" metaFont="system"/>
  653. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  654. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  655. </textFieldCell>
  656. </textField>
  657. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="NOL-fL-r6v">
  658. <rect key="frame" x="65" y="17" width="15" height="15"/>
  659. <constraints>
  660. <constraint firstAttribute="height" constant="15" id="YLX-6c-4uC"/>
  661. <constraint firstAttribute="width" constant="15" id="nLQ-sd-teV"/>
  662. </constraints>
  663. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="ohK-ia-X7v"/>
  664. </imageView>
  665. </subviews>
  666. <constraints>
  667. <constraint firstItem="yP8-88-gIa" firstAttribute="centerY" secondItem="aGF-gc-JA0" secondAttribute="centerY" id="Dnl-3c-Otk"/>
  668. <constraint firstAttribute="trailing" secondItem="zke-UU-SYF" secondAttribute="trailing" id="Ejy-9D-e22"/>
  669. <constraint firstAttribute="trailing" secondItem="yP8-88-gIa" secondAttribute="trailing" id="HWK-nG-Qrm"/>
  670. <constraint firstItem="yP8-88-gIa" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="leading" id="PUx-kA-4Cw"/>
  671. <constraint firstAttribute="bottom" secondItem="4B7-fb-f19" secondAttribute="bottom" constant="-4" id="Ymm-vd-ty9"/>
  672. <constraint firstItem="zke-UU-SYF" firstAttribute="centerY" secondItem="aGF-gc-JA0" secondAttribute="centerY" id="aXQ-MN-eA1"/>
  673. <constraint firstItem="zke-UU-SYF" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="leading" id="bH1-bJ-mBq"/>
  674. <constraint firstAttribute="width" constant="144" id="fkI-4Z-hGD"/>
  675. <constraint firstItem="NOL-fL-r6v" firstAttribute="centerX" secondItem="aGF-gc-JA0" secondAttribute="centerX" id="hfb-h5-Dvv"/>
  676. <constraint firstItem="4B7-fb-f19" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="leading" id="kyg-MT-aag"/>
  677. <constraint firstAttribute="trailing" secondItem="4B7-fb-f19" secondAttribute="trailing" id="l39-Lt-rzA"/>
  678. <constraint firstItem="NOL-fL-r6v" firstAttribute="centerY" secondItem="aGF-gc-JA0" secondAttribute="centerY" id="lgq-3h-AkD"/>
  679. <constraint firstItem="4B7-fb-f19" firstAttribute="top" secondItem="aGF-gc-JA0" secondAttribute="top" constant="-4" id="uic-Dd-SSD"/>
  680. </constraints>
  681. </customView>
  682. <customView translatesAutoresizingMaskIntoConstraints="NO" id="FgJ-qy-8H1">
  683. <rect key="frame" x="464" y="0.0" width="300" height="49"/>
  684. <subviews>
  685. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="U4h-vo-jXM">
  686. <rect key="frame" x="0.0" y="15" width="300" height="20"/>
  687. <view key="contentView" id="dLC-qS-hLE">
  688. <rect key="frame" x="0.0" y="0.0" width="300" height="20"/>
  689. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  690. <subviews>
  691. <customView translatesAutoresizingMaskIntoConstraints="NO" id="sto-qa-IGj">
  692. <rect key="frame" x="86" y="0.0" width="128" height="20"/>
  693. <subviews>
  694. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="o6e-ec-DiX">
  695. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  696. <constraints>
  697. <constraint firstAttribute="width" constant="20" id="dfj-U0-C48"/>
  698. <constraint firstAttribute="height" constant="20" id="g70-U0-PDt"/>
  699. </constraints>
  700. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="CTc-T1-0Rw"/>
  701. </imageView>
  702. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="1AM-fs-t9v">
  703. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  704. <constraints>
  705. <constraint firstAttribute="height" constant="20" id="EOj-CB-sdi"/>
  706. <constraint firstAttribute="width" constant="20" id="KNj-lL-Z9U"/>
  707. </constraints>
  708. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="84S-dW-hgp"/>
  709. </imageView>
  710. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="gAe-Vu-sYq">
  711. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  712. <constraints>
  713. <constraint firstAttribute="height" constant="20" id="AM2-Oy-8FA"/>
  714. <constraint firstAttribute="width" constant="20" id="qaf-zj-4U0"/>
  715. </constraints>
  716. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="qwp-Xf-Esz"/>
  717. </imageView>
  718. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="clT-TG-2Gu">
  719. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  720. <constraints>
  721. <constraint firstAttribute="width" constant="20" id="e6Y-DH-hm3"/>
  722. <constraint firstAttribute="height" constant="20" id="nD5-rg-4W7"/>
  723. </constraints>
  724. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="NxR-MD-BJY"/>
  725. </imageView>
  726. </subviews>
  727. <constraints>
  728. <constraint firstItem="gAe-Vu-sYq" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="36E-mH-yXe"/>
  729. <constraint firstItem="1AM-fs-t9v" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="B7R-0W-Lf8"/>
  730. <constraint firstItem="clT-TG-2Gu" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="BMM-4U-X0c"/>
  731. <constraint firstAttribute="trailing" secondItem="clT-TG-2Gu" secondAttribute="trailing" id="EMM-iF-WA6"/>
  732. <constraint firstItem="gAe-Vu-sYq" firstAttribute="leading" secondItem="1AM-fs-t9v" secondAttribute="trailing" constant="16" id="FCQ-VG-CdA"/>
  733. <constraint firstItem="o6e-ec-DiX" firstAttribute="leading" secondItem="sto-qa-IGj" secondAttribute="leading" id="I6I-oW-jhW"/>
  734. <constraint firstItem="o6e-ec-DiX" firstAttribute="top" secondItem="sto-qa-IGj" secondAttribute="top" id="LIE-Aj-wQg"/>
  735. <constraint firstItem="clT-TG-2Gu" firstAttribute="leading" secondItem="gAe-Vu-sYq" secondAttribute="trailing" constant="16" id="LIE-ih-Hxm"/>
  736. <constraint firstAttribute="height" constant="20" id="VLu-FH-iJv"/>
  737. <constraint firstItem="1AM-fs-t9v" firstAttribute="leading" secondItem="o6e-ec-DiX" secondAttribute="trailing" constant="16" id="XyI-Et-m6g"/>
  738. <constraint firstAttribute="bottom" secondItem="clT-TG-2Gu" secondAttribute="bottom" id="aLH-GO-h1t"/>
  739. <constraint firstAttribute="bottom" secondItem="1AM-fs-t9v" secondAttribute="bottom" id="kia-Dg-TFe"/>
  740. <constraint firstAttribute="bottom" secondItem="o6e-ec-DiX" secondAttribute="bottom" id="ku4-Dt-6TH"/>
  741. <constraint firstAttribute="bottom" secondItem="gAe-Vu-sYq" secondAttribute="bottom" id="mbv-iS-v0a"/>
  742. </constraints>
  743. </customView>
  744. </subviews>
  745. </view>
  746. <constraints>
  747. <constraint firstItem="sto-qa-IGj" firstAttribute="centerY" secondItem="U4h-vo-jXM" secondAttribute="centerY" id="A7Y-J8-90X"/>
  748. <constraint firstAttribute="height" constant="20" id="d0x-8D-OtC"/>
  749. <constraint firstItem="sto-qa-IGj" firstAttribute="centerX" secondItem="U4h-vo-jXM" secondAttribute="centerX" id="r8E-OP-cqn"/>
  750. </constraints>
  751. </box>
  752. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="rSJ-SM-SEg">
  753. <rect key="frame" x="0.0" y="-4" width="300" height="57"/>
  754. <view key="contentView" id="Afy-Ef-4FL">
  755. <rect key="frame" x="1" y="1" width="298" height="55"/>
  756. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  757. </view>
  758. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  759. </box>
  760. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="zkM-gU-DuR">
  761. <rect key="frame" x="-2" y="17" width="304" height="16"/>
  762. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="q2u-Kj-BQF">
  763. <font key="font" metaFont="system"/>
  764. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  765. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  766. </textFieldCell>
  767. </textField>
  768. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="BIW-Si-847">
  769. <rect key="frame" x="143" y="17" width="15" height="15"/>
  770. <constraints>
  771. <constraint firstAttribute="height" constant="15" id="nUW-bK-UfB"/>
  772. <constraint firstAttribute="width" constant="15" id="qg0-QB-yAr"/>
  773. </constraints>
  774. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="0uu-ML-MXC"/>
  775. </imageView>
  776. </subviews>
  777. <constraints>
  778. <constraint firstItem="U4h-vo-jXM" firstAttribute="centerY" secondItem="FgJ-qy-8H1" secondAttribute="centerY" id="1Yd-pU-s9Q"/>
  779. <constraint firstAttribute="trailing" secondItem="rSJ-SM-SEg" secondAttribute="trailing" id="A6H-D9-HNW"/>
  780. <constraint firstItem="U4h-vo-jXM" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="leading" id="HiC-3K-PCI"/>
  781. <constraint firstItem="BIW-Si-847" firstAttribute="centerY" secondItem="FgJ-qy-8H1" secondAttribute="centerY" id="MaW-ka-aqW"/>
  782. <constraint firstItem="zkM-gU-DuR" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="leading" id="XIj-dY-pKe"/>
  783. <constraint firstAttribute="trailing" secondItem="U4h-vo-jXM" secondAttribute="trailing" id="aQz-PA-grM"/>
  784. <constraint firstItem="zkM-gU-DuR" firstAttribute="centerY" secondItem="FgJ-qy-8H1" secondAttribute="centerY" id="cEY-bL-wk5"/>
  785. <constraint firstAttribute="width" constant="300" id="duv-mG-QwY"/>
  786. <constraint firstItem="BIW-Si-847" firstAttribute="centerX" secondItem="FgJ-qy-8H1" secondAttribute="centerX" id="eGT-Uh-Dfp"/>
  787. <constraint firstAttribute="bottom" secondItem="rSJ-SM-SEg" secondAttribute="bottom" constant="-4" id="kCL-ep-Qqv"/>
  788. <constraint firstItem="rSJ-SM-SEg" firstAttribute="top" secondItem="FgJ-qy-8H1" secondAttribute="top" constant="-4" id="vRp-zL-w4v"/>
  789. <constraint firstAttribute="trailing" secondItem="zkM-gU-DuR" secondAttribute="trailing" id="vSr-2r-lTq"/>
  790. <constraint firstItem="rSJ-SM-SEg" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="leading" id="xWF-sb-ah9"/>
  791. </constraints>
  792. </customView>
  793. <customView translatesAutoresizingMaskIntoConstraints="NO" id="z9x-S8-WZs">
  794. <rect key="frame" x="764" y="0.0" width="154" height="49"/>
  795. <subviews>
  796. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="3AU-Kv-VqK">
  797. <rect key="frame" x="0.0" y="15" width="154" height="20"/>
  798. <view key="contentView" id="eKo-kD-CBk">
  799. <rect key="frame" x="0.0" y="0.0" width="154" height="20"/>
  800. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  801. <subviews>
  802. <customView translatesAutoresizingMaskIntoConstraints="NO" id="JhF-TU-gFT">
  803. <rect key="frame" x="13" y="0.0" width="128" height="20"/>
  804. <subviews>
  805. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="T2M-Vh-6Z6">
  806. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  807. <constraints>
  808. <constraint firstAttribute="height" constant="20" id="gSK-0w-Ctf"/>
  809. <constraint firstAttribute="width" constant="20" id="nMY-co-vZ2"/>
  810. </constraints>
  811. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="6gm-Jt-PSL"/>
  812. </imageView>
  813. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Rfw-aJ-A5k">
  814. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  815. <constraints>
  816. <constraint firstAttribute="width" constant="20" id="Evi-3S-8RI"/>
  817. <constraint firstAttribute="height" constant="20" id="NvJ-Bn-0V7"/>
  818. </constraints>
  819. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="qj7-2h-dzw"/>
  820. </imageView>
  821. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="cU1-rr-6D9">
  822. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  823. <constraints>
  824. <constraint firstAttribute="height" constant="20" id="EUv-P5-EXw"/>
  825. <constraint firstAttribute="width" constant="20" id="ZYV-hD-1HT"/>
  826. </constraints>
  827. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="jBL-UW-gk9"/>
  828. </imageView>
  829. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="IeD-qy-w6C">
  830. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  831. <constraints>
  832. <constraint firstAttribute="width" constant="20" id="Peh-WD-gad"/>
  833. <constraint firstAttribute="height" constant="20" id="eDh-gM-raJ"/>
  834. </constraints>
  835. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="gKi-9R-w3o"/>
  836. </imageView>
  837. </subviews>
  838. <constraints>
  839. <constraint firstItem="T2M-Vh-6Z6" firstAttribute="leading" secondItem="JhF-TU-gFT" secondAttribute="leading" id="3Ci-EQ-4Vt"/>
  840. <constraint firstItem="cU1-rr-6D9" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="5Mo-hp-zTY"/>
  841. <constraint firstItem="IeD-qy-w6C" firstAttribute="leading" secondItem="cU1-rr-6D9" secondAttribute="trailing" constant="16" id="8M3-T1-bFY"/>
  842. <constraint firstItem="Rfw-aJ-A5k" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="BNn-7v-oYn"/>
  843. <constraint firstItem="cU1-rr-6D9" firstAttribute="leading" secondItem="Rfw-aJ-A5k" secondAttribute="trailing" constant="16" id="FVd-Yf-Cej"/>
  844. <constraint firstItem="Rfw-aJ-A5k" firstAttribute="leading" secondItem="T2M-Vh-6Z6" secondAttribute="trailing" constant="16" id="KpJ-Is-Ebj"/>
  845. <constraint firstAttribute="bottom" secondItem="IeD-qy-w6C" secondAttribute="bottom" id="PSb-5G-AoW"/>
  846. <constraint firstAttribute="bottom" secondItem="cU1-rr-6D9" secondAttribute="bottom" id="PeB-Uc-0gz"/>
  847. <constraint firstItem="T2M-Vh-6Z6" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="dnx-WK-rxf"/>
  848. <constraint firstAttribute="trailing" secondItem="IeD-qy-w6C" secondAttribute="trailing" id="i14-9O-elT"/>
  849. <constraint firstAttribute="height" constant="20" id="iMM-ov-xPd"/>
  850. <constraint firstAttribute="bottom" secondItem="Rfw-aJ-A5k" secondAttribute="bottom" id="pA2-8K-8oC"/>
  851. <constraint firstItem="IeD-qy-w6C" firstAttribute="top" secondItem="JhF-TU-gFT" secondAttribute="top" id="vpM-GB-owH"/>
  852. <constraint firstAttribute="bottom" secondItem="T2M-Vh-6Z6" secondAttribute="bottom" id="wRm-7b-nLB"/>
  853. </constraints>
  854. </customView>
  855. </subviews>
  856. </view>
  857. <constraints>
  858. <constraint firstItem="JhF-TU-gFT" firstAttribute="centerY" secondItem="3AU-Kv-VqK" secondAttribute="centerY" id="DCs-bY-bcr"/>
  859. <constraint firstItem="JhF-TU-gFT" firstAttribute="centerX" secondItem="3AU-Kv-VqK" secondAttribute="centerX" id="S1T-wV-jou"/>
  860. <constraint firstAttribute="height" constant="20" id="pDk-qh-oPn"/>
  861. </constraints>
  862. </box>
  863. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="1z7-m0-GLT">
  864. <rect key="frame" x="0.0" y="-4" width="154" height="57"/>
  865. <view key="contentView" id="9A4-ua-f6y">
  866. <rect key="frame" x="1" y="1" width="152" height="55"/>
  867. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  868. </view>
  869. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  870. </box>
  871. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="sHA-YJ-wQk">
  872. <rect key="frame" x="-2" y="17" width="158" height="16"/>
  873. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="Nud-gQ-npN">
  874. <font key="font" metaFont="system"/>
  875. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  876. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  877. </textFieldCell>
  878. </textField>
  879. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="zhs-ff-4yr">
  880. <rect key="frame" x="70" y="17" width="15" height="15"/>
  881. <constraints>
  882. <constraint firstAttribute="width" constant="15" id="UjA-7v-9HN"/>
  883. <constraint firstAttribute="height" constant="15" id="zF7-9G-wAl"/>
  884. </constraints>
  885. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="gn4-8v-QUr"/>
  886. </imageView>
  887. </subviews>
  888. <constraints>
  889. <constraint firstItem="3AU-Kv-VqK" firstAttribute="centerY" secondItem="z9x-S8-WZs" secondAttribute="centerY" id="75J-Ou-gm8"/>
  890. <constraint firstItem="zhs-ff-4yr" firstAttribute="centerY" secondItem="z9x-S8-WZs" secondAttribute="centerY" id="Byg-YO-Sa3"/>
  891. <constraint firstAttribute="trailing" secondItem="3AU-Kv-VqK" secondAttribute="trailing" id="Egm-UD-NJJ"/>
  892. <constraint firstAttribute="bottom" secondItem="1z7-m0-GLT" secondAttribute="bottom" constant="-4" id="JQG-zU-0SA"/>
  893. <constraint firstItem="sHA-YJ-wQk" firstAttribute="centerY" secondItem="z9x-S8-WZs" secondAttribute="centerY" id="Nhz-Gu-ps9"/>
  894. <constraint firstAttribute="trailing" secondItem="1z7-m0-GLT" secondAttribute="trailing" id="Ntx-cf-yqI"/>
  895. <constraint firstItem="zhs-ff-4yr" firstAttribute="centerX" secondItem="z9x-S8-WZs" secondAttribute="centerX" id="UXW-vr-odB"/>
  896. <constraint firstItem="1z7-m0-GLT" firstAttribute="top" secondItem="z9x-S8-WZs" secondAttribute="top" constant="-4" id="abn-g1-FqR"/>
  897. <constraint firstItem="1z7-m0-GLT" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="leading" id="cLl-Sk-zcn"/>
  898. <constraint firstAttribute="trailing" secondItem="sHA-YJ-wQk" secondAttribute="trailing" id="id9-qI-CNg"/>
  899. <constraint firstItem="3AU-Kv-VqK" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="leading" id="lZI-No-TG4"/>
  900. <constraint firstItem="sHA-YJ-wQk" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="leading" id="mSI-Ep-hda"/>
  901. <constraint firstAttribute="width" constant="154" id="thc-2E-V9z"/>
  902. </constraints>
  903. </customView>
  904. <customView translatesAutoresizingMaskIntoConstraints="NO" id="cDG-VY-47A">
  905. <rect key="frame" x="918" y="0.0" width="144" height="49"/>
  906. <subviews>
  907. <box boxType="custom" borderWidth="0.0" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="4lE-2l-Zsv">
  908. <rect key="frame" x="0.0" y="15" width="144" height="20"/>
  909. <view key="contentView" id="2pI-i7-1VL">
  910. <rect key="frame" x="0.0" y="0.0" width="144" height="20"/>
  911. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  912. <subviews>
  913. <customView translatesAutoresizingMaskIntoConstraints="NO" id="0Ed-nE-fOD">
  914. <rect key="frame" x="8" y="0.0" width="128" height="20"/>
  915. <subviews>
  916. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="wY1-Mu-y9L">
  917. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  918. <constraints>
  919. <constraint firstAttribute="width" constant="20" id="OeN-Ad-Zm4"/>
  920. <constraint firstAttribute="height" constant="20" id="y0I-SV-NJm"/>
  921. </constraints>
  922. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="BLY-RI-oN9"/>
  923. </imageView>
  924. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="A3J-JP-zec">
  925. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  926. <constraints>
  927. <constraint firstAttribute="height" constant="20" id="7Yk-2n-Vet"/>
  928. <constraint firstAttribute="width" constant="20" id="ewd-7Z-LEg"/>
  929. </constraints>
  930. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="q0S-SM-egO"/>
  931. </imageView>
  932. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Qql-Vi-Gd8">
  933. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  934. <constraints>
  935. <constraint firstAttribute="width" constant="20" id="dlD-kB-NbL"/>
  936. <constraint firstAttribute="height" constant="20" id="jBh-ro-2Xr"/>
  937. </constraints>
  938. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="iIF-dZ-LCN"/>
  939. </imageView>
  940. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="vjj-09-FpA">
  941. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  942. <constraints>
  943. <constraint firstAttribute="height" constant="20" id="5Uo-IE-cpe"/>
  944. <constraint firstAttribute="width" constant="20" id="gca-G2-YYL"/>
  945. </constraints>
  946. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="1ca-F6-594"/>
  947. </imageView>
  948. </subviews>
  949. <constraints>
  950. <constraint firstItem="vjj-09-FpA" firstAttribute="leading" secondItem="Qql-Vi-Gd8" secondAttribute="trailing" constant="16" id="A9b-wR-ZBH"/>
  951. <constraint firstItem="Qql-Vi-Gd8" firstAttribute="leading" secondItem="A3J-JP-zec" secondAttribute="trailing" constant="16" id="DRQ-hN-4Oa"/>
  952. <constraint firstItem="Qql-Vi-Gd8" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="IPI-Ha-aG9"/>
  953. <constraint firstAttribute="height" constant="20" id="JLt-fE-bbz"/>
  954. <constraint firstItem="vjj-09-FpA" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="ONX-Fa-I2P"/>
  955. <constraint firstItem="wY1-Mu-y9L" firstAttribute="leading" secondItem="0Ed-nE-fOD" secondAttribute="leading" id="R01-fx-Usn"/>
  956. <constraint firstItem="wY1-Mu-y9L" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="bQO-4v-tc1"/>
  957. <constraint firstAttribute="bottom" secondItem="Qql-Vi-Gd8" secondAttribute="bottom" id="bdt-vT-Xjj"/>
  958. <constraint firstItem="A3J-JP-zec" firstAttribute="top" secondItem="0Ed-nE-fOD" secondAttribute="top" id="cst-vK-aKa"/>
  959. <constraint firstItem="A3J-JP-zec" firstAttribute="leading" secondItem="wY1-Mu-y9L" secondAttribute="trailing" constant="16" id="djT-x6-zQQ"/>
  960. <constraint firstAttribute="bottom" secondItem="A3J-JP-zec" secondAttribute="bottom" id="f9u-zf-caT"/>
  961. <constraint firstAttribute="bottom" secondItem="vjj-09-FpA" secondAttribute="bottom" id="nhd-hh-fli"/>
  962. <constraint firstAttribute="trailing" secondItem="vjj-09-FpA" secondAttribute="trailing" id="r4t-KE-Tul"/>
  963. <constraint firstAttribute="bottom" secondItem="wY1-Mu-y9L" secondAttribute="bottom" id="vwH-Tm-VLm"/>
  964. </constraints>
  965. </customView>
  966. </subviews>
  967. </view>
  968. <constraints>
  969. <constraint firstItem="0Ed-nE-fOD" firstAttribute="centerY" secondItem="4lE-2l-Zsv" secondAttribute="centerY" id="CVD-0B-vxT"/>
  970. <constraint firstAttribute="height" constant="20" id="Ez6-c0-VTX"/>
  971. <constraint firstItem="0Ed-nE-fOD" firstAttribute="centerX" secondItem="4lE-2l-Zsv" secondAttribute="centerX" id="MlR-PH-jnG"/>
  972. </constraints>
  973. </box>
  974. <box hidden="YES" boxType="custom" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="zD0-by-iGB">
  975. <rect key="frame" x="0.0" y="-4" width="144" height="57"/>
  976. <view key="contentView" id="geH-VM-EJE">
  977. <rect key="frame" x="1" y="1" width="142" height="55"/>
  978. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  979. </view>
  980. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  981. </box>
  982. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="vIe-dY-eFV">
  983. <rect key="frame" x="-2" y="17" width="148" height="16"/>
  984. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="Label" id="IbC-9e-o3W">
  985. <font key="font" metaFont="system"/>
  986. <color key="textColor" red="0.40000000000000002" green="0.40000000000000002" blue="0.40000000000000002" alpha="0.84999999999999998" colorSpace="calibratedRGB"/>
  987. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  988. </textFieldCell>
  989. </textField>
  990. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="FpT-hS-4nv">
  991. <rect key="frame" x="65" y="17" width="15" height="15"/>
  992. <constraints>
  993. <constraint firstAttribute="height" constant="15" id="6SG-H9-Uye"/>
  994. <constraint firstAttribute="width" constant="15" id="779-Zu-HS9"/>
  995. </constraints>
  996. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="ULE-y8-ZGq"/>
  997. </imageView>
  998. </subviews>
  999. <constraints>
  1000. <constraint firstItem="vIe-dY-eFV" firstAttribute="leading" secondItem="cDG-VY-47A" secondAttribute="leading" id="9it-6c-RCf"/>
  1001. <constraint firstAttribute="width" constant="144" id="AW8-Bw-Ttu"/>
  1002. <constraint firstItem="4lE-2l-Zsv" firstAttribute="leading" secondItem="cDG-VY-47A" secondAttribute="leading" id="CMi-Uw-y2c"/>
  1003. <constraint firstItem="4lE-2l-Zsv" firstAttribute="centerY" secondItem="cDG-VY-47A" secondAttribute="centerY" id="L6o-8E-aPJ"/>
  1004. <constraint firstItem="FpT-hS-4nv" firstAttribute="centerX" secondItem="cDG-VY-47A" secondAttribute="centerX" id="O1c-z1-nxb"/>
  1005. <constraint firstItem="vIe-dY-eFV" firstAttribute="centerY" secondItem="cDG-VY-47A" secondAttribute="centerY" id="OBq-WD-Est"/>
  1006. <constraint firstItem="zD0-by-iGB" firstAttribute="leading" secondItem="cDG-VY-47A" secondAttribute="leading" id="P8G-SM-dDj"/>
  1007. <constraint firstItem="FpT-hS-4nv" firstAttribute="centerY" secondItem="cDG-VY-47A" secondAttribute="centerY" id="ZHH-pC-8ut"/>
  1008. <constraint firstAttribute="trailing" secondItem="zD0-by-iGB" secondAttribute="trailing" id="tep-Iw-oW6"/>
  1009. <constraint firstAttribute="bottom" secondItem="zD0-by-iGB" secondAttribute="bottom" constant="-4" id="try-qP-lE6"/>
  1010. <constraint firstItem="zD0-by-iGB" firstAttribute="top" secondItem="cDG-VY-47A" secondAttribute="top" constant="-4" id="v0w-fQ-daj"/>
  1011. <constraint firstAttribute="trailing" secondItem="4lE-2l-Zsv" secondAttribute="trailing" id="xXU-wg-hT5"/>
  1012. <constraint firstAttribute="trailing" secondItem="vIe-dY-eFV" secondAttribute="trailing" id="zHM-lK-gko"/>
  1013. </constraints>
  1014. </customView>
  1015. </subviews>
  1016. <constraints>
  1017. <constraint firstItem="z9x-S8-WZs" firstAttribute="leading" secondItem="FgJ-qy-8H1" secondAttribute="trailing" id="1W1-0e-fP9"/>
  1018. <constraint firstItem="cDG-VY-47A" firstAttribute="leading" secondItem="z9x-S8-WZs" secondAttribute="trailing" id="E0A-jO-qbX"/>
  1019. <constraint firstItem="aGF-gc-JA0" firstAttribute="leading" secondItem="eva-hu-gUk" secondAttribute="trailing" id="OaW-nA-qJ7"/>
  1020. <constraint firstItem="cDG-VY-47A" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="SVW-AT-OUI"/>
  1021. <constraint firstAttribute="bottom" secondItem="cDG-VY-47A" secondAttribute="bottom" id="XtK-Gc-OOJ"/>
  1022. <constraint firstItem="eva-hu-gUk" firstAttribute="leading" secondItem="hPa-wJ-jja" secondAttribute="leading" id="Zyp-BT-jky"/>
  1023. <constraint firstItem="aGF-gc-JA0" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="b2h-uC-g4N"/>
  1024. <constraint firstItem="FgJ-qy-8H1" firstAttribute="leading" secondItem="aGF-gc-JA0" secondAttribute="trailing" id="hfR-wp-DH8"/>
  1025. <constraint firstItem="z9x-S8-WZs" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="nGU-Jd-cf3"/>
  1026. <constraint firstAttribute="bottom" secondItem="z9x-S8-WZs" secondAttribute="bottom" id="ory-cY-1wx"/>
  1027. <constraint firstAttribute="bottom" secondItem="FgJ-qy-8H1" secondAttribute="bottom" id="rAH-Ti-7JZ"/>
  1028. <constraint firstItem="eva-hu-gUk" firstAttribute="centerY" secondItem="hPa-wJ-jja" secondAttribute="centerY" id="s1W-VX-U1C"/>
  1029. <constraint firstItem="FgJ-qy-8H1" firstAttribute="top" secondItem="hPa-wJ-jja" secondAttribute="top" id="vOB-SL-cbe"/>
  1030. <constraint firstAttribute="bottom" secondItem="aGF-gc-JA0" secondAttribute="bottom" id="xOi-pb-FA5"/>
  1031. </constraints>
  1032. </customView>
  1033. </subviews>
  1034. <constraints>
  1035. <constraint firstItem="hPa-wJ-jja" firstAttribute="leading" secondItem="ax6-Po-8DY" secondAttribute="leading" constant="32" id="1V0-nb-Qep"/>
  1036. <constraint firstItem="O9u-9e-atz" firstAttribute="top" secondItem="ax6-Po-8DY" secondAttribute="top" id="6TJ-p3-VQG"/>
  1037. <constraint firstAttribute="bottom" secondItem="hPa-wJ-jja" secondAttribute="bottom" id="G4J-xb-GIx"/>
  1038. <constraint firstItem="O9u-9e-atz" firstAttribute="leading" secondItem="ax6-Po-8DY" secondAttribute="leading" id="GGu-SO-Nfd"/>
  1039. <constraint firstAttribute="trailing" secondItem="O9u-9e-atz" secondAttribute="trailing" id="I1t-IY-cQY"/>
  1040. <constraint firstAttribute="trailing" secondItem="hPa-wJ-jja" secondAttribute="trailing" id="Iv3-77-6gh"/>
  1041. <constraint firstAttribute="bottom" secondItem="O9u-9e-atz" secondAttribute="bottom" id="d09-Fk-nAc"/>
  1042. <constraint firstItem="hPa-wJ-jja" firstAttribute="top" secondItem="ax6-Po-8DY" secondAttribute="top" id="yWd-Kd-l4i"/>
  1043. </constraints>
  1044. <connections>
  1045. <outlet property="bgColorView" destination="O9u-9e-atz" id="S5k-KY-RYz"/>
  1046. <outlet property="boxBottomConst" destination="kCL-ep-Qqv" id="z1q-lf-in4"/>
  1047. <outlet property="cellView1" destination="aGF-gc-JA0" id="1mN-Mh-yd5"/>
  1048. <outlet property="cellView2" destination="FgJ-qy-8H1" id="4i3-td-k3D"/>
  1049. <outlet property="cellView3" destination="z9x-S8-WZs" id="6Ao-in-AjU"/>
  1050. <outlet property="cellView4" destination="cDG-VY-47A" id="Wc2-nD-j2L"/>
  1051. <outlet property="lineBox" destination="lLf-YX-j0Y" id="I4H-K1-PFG"/>
  1052. <outlet property="platformsBox1" destination="zke-UU-SYF" id="XPi-zI-9bk"/>
  1053. <outlet property="platformsBox2" destination="U4h-vo-jXM" id="Ukt-1a-G3a"/>
  1054. <outlet property="platformsBox3" destination="3AU-Kv-VqK" id="P31-VL-adL"/>
  1055. <outlet property="platformsBox4" destination="4lE-2l-Zsv" id="6ug-Cg-4Sv"/>
  1056. <outlet property="selectBox1" destination="4B7-fb-f19" id="P8Q-TN-TI7"/>
  1057. <outlet property="selectBox2" destination="rSJ-SM-SEg" id="Fix-Hf-HD8"/>
  1058. <outlet property="selectBox3" destination="1z7-m0-GLT" id="FfS-WD-g0e"/>
  1059. <outlet property="selectBox4" destination="zD0-by-iGB" id="JZt-Qk-3gV"/>
  1060. <outlet property="textField" destination="eva-hu-gUk" id="TjR-4L-6ra"/>
  1061. <outlet property="value1ImageView" destination="NOL-fL-r6v" id="4EQ-oJ-Rgm"/>
  1062. <outlet property="value1Label" destination="yP8-88-gIa" id="5m7-mo-O3I"/>
  1063. <outlet property="value2ImageView" destination="BIW-Si-847" id="qRq-9b-ia2"/>
  1064. <outlet property="value2Label" destination="zkM-gU-DuR" id="a7b-F6-GRV"/>
  1065. <outlet property="value3ImageView" destination="zhs-ff-4yr" id="MwW-t0-lPA"/>
  1066. <outlet property="value3Label" destination="sHA-YJ-wQk" id="kYd-Et-SLf"/>
  1067. <outlet property="value4ImageView" destination="FpT-hS-4nv" id="6KL-hb-7UF"/>
  1068. <outlet property="value4Label" destination="vIe-dY-eFV" id="dB3-Yx-Udw"/>
  1069. <outlet property="viewWidth1" destination="fkI-4Z-hGD" id="PL4-nm-s4c"/>
  1070. <outlet property="viewWidth2" destination="duv-mG-QwY" id="WWp-rL-49f"/>
  1071. <outlet property="viewWidth3" destination="thc-2E-V9z" id="a0F-X9-vWa"/>
  1072. <outlet property="viewWidth4" destination="AW8-Bw-Ttu" id="Q7h-3S-k7W"/>
  1073. </connections>
  1074. </tableCellView>
  1075. <tableCellView identifier="KMProductCompareTableEmptyCell" id="g5k-gh-QUq" customClass="KMPurchaseCompareEmptyCell">
  1076. <rect key="frame" x="0.0" y="81" width="970" height="17"/>
  1077. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1078. </tableCellView>
  1079. </prototypeCellViews>
  1080. </tableColumn>
  1081. </tableColumns>
  1082. <connections>
  1083. <outlet property="dataSource" destination="-2" id="L9H-uH-Zed"/>
  1084. <outlet property="delegate" destination="-2" id="o5p-mQ-kPU"/>
  1085. </connections>
  1086. </tableView>
  1087. </subviews>
  1088. <nil key="backgroundColor"/>
  1089. </clipView>
  1090. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="JK2-Rh-Ry6">
  1091. <rect key="frame" x="-100" y="-100" width="223" height="15"/>
  1092. <autoresizingMask key="autoresizingMask"/>
  1093. </scroller>
  1094. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="CxV-Fx-vBi">
  1095. <rect key="frame" x="-100" y="-100" width="15" height="102"/>
  1096. <autoresizingMask key="autoresizingMask"/>
  1097. </scroller>
  1098. </scrollView>
  1099. </subviews>
  1100. <constraints>
  1101. <constraint firstItem="Nug-mc-XVk" firstAttribute="leading" secondItem="BHT-Ss-56B" secondAttribute="leading" id="Q4U-xE-Wrl"/>
  1102. <constraint firstAttribute="trailing" secondItem="Nug-mc-XVk" secondAttribute="trailing" id="ckg-Px-AvW"/>
  1103. <constraint firstItem="rhE-eG-YHH" firstAttribute="leading" secondItem="BHT-Ss-56B" secondAttribute="leading" id="r7o-Vn-hoO"/>
  1104. <constraint firstAttribute="bottom" secondItem="Nug-mc-XVk" secondAttribute="bottom" id="rRL-6S-cDc"/>
  1105. <constraint firstItem="rhE-eG-YHH" firstAttribute="top" secondItem="BHT-Ss-56B" secondAttribute="top" id="yMR-M9-1Vr"/>
  1106. <constraint firstItem="Nug-mc-XVk" firstAttribute="top" secondItem="rhE-eG-YHH" secondAttribute="bottom" id="ycM-8S-VYZ"/>
  1107. <constraint firstAttribute="trailing" secondItem="rhE-eG-YHH" secondAttribute="trailing" id="zCF-kp-OzQ"/>
  1108. </constraints>
  1109. </view>
  1110. <connections>
  1111. <outlet property="delegate" destination="-2" id="RuN-Vt-x4w"/>
  1112. </connections>
  1113. <point key="canvasLocation" x="96" y="-37"/>
  1114. </window>
  1115. <customView id="3eO-1v-ESh">
  1116. <rect key="frame" x="0.0" y="0.0" width="742" height="194"/>
  1117. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1118. <subviews>
  1119. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="rtR-EN-GZe">
  1120. <rect key="frame" x="0.0" y="0.0" width="144" height="194"/>
  1121. <view key="contentView" id="WCI-ju-KkU">
  1122. <rect key="frame" x="0.0" y="0.0" width="144" height="194"/>
  1123. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1124. </view>
  1125. <constraints>
  1126. <constraint firstAttribute="width" constant="144" id="dmj-ri-GBh"/>
  1127. </constraints>
  1128. </box>
  1129. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="TbI-cd-sd7">
  1130. <rect key="frame" x="0.0" y="-10" width="144" height="204"/>
  1131. <view key="contentView" id="Cgn-Mc-kdm">
  1132. <rect key="frame" x="1" y="1" width="142" height="202"/>
  1133. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1134. </view>
  1135. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1136. </box>
  1137. <imageView hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="YKE-fi-1tA">
  1138. <rect key="frame" x="29" y="178" width="122" height="26"/>
  1139. <constraints>
  1140. <constraint firstAttribute="height" constant="26" id="0dm-Ug-jVw"/>
  1141. </constraints>
  1142. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="giftYearAIImage" id="veV-U5-rsv"/>
  1143. </imageView>
  1144. <textField hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="umU-ZL-ZzR">
  1145. <rect key="frame" x="48" y="183" width="88" height="16"/>
  1146. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="Label" id="f8v-u5-61F">
  1147. <font key="font" metaFont="system"/>
  1148. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1149. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1150. </textFieldCell>
  1151. </textField>
  1152. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="vWg-fp-y8C">
  1153. <rect key="frame" x="144" y="0.0" width="300" height="194"/>
  1154. <view key="contentView" id="Ejr-hQ-Eb7">
  1155. <rect key="frame" x="0.0" y="0.0" width="300" height="194"/>
  1156. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1157. </view>
  1158. <constraints>
  1159. <constraint firstAttribute="width" constant="300" id="Fht-ba-6vO"/>
  1160. </constraints>
  1161. </box>
  1162. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="eSr-Ep-bND">
  1163. <rect key="frame" x="144" y="-10" width="300" height="204"/>
  1164. <view key="contentView" id="eqd-ll-M9M">
  1165. <rect key="frame" x="1" y="1" width="298" height="202"/>
  1166. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1167. </view>
  1168. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1169. </box>
  1170. <imageView hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="R8I-NQ-Qxa">
  1171. <rect key="frame" x="329" y="178" width="122" height="26"/>
  1172. <constraints>
  1173. <constraint firstAttribute="height" constant="26" id="a4G-0t-Q7l"/>
  1174. </constraints>
  1175. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="giftYearAIImage" id="nGz-gc-OzE"/>
  1176. </imageView>
  1177. <textField hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="WAw-xL-ges">
  1178. <rect key="frame" x="348" y="183" width="88" height="16"/>
  1179. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="Label" id="4nZ-AF-coc">
  1180. <font key="font" metaFont="system"/>
  1181. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1182. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1183. </textFieldCell>
  1184. </textField>
  1185. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="zIJ-y3-LlP">
  1186. <rect key="frame" x="444" y="0.0" width="154" height="194"/>
  1187. <view key="contentView" id="dE0-cI-QcR">
  1188. <rect key="frame" x="0.0" y="0.0" width="154" height="194"/>
  1189. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1190. </view>
  1191. <constraints>
  1192. <constraint firstAttribute="width" constant="154" id="UZc-yX-zJD"/>
  1193. </constraints>
  1194. </box>
  1195. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="LHQ-au-Z59">
  1196. <rect key="frame" x="444" y="-10" width="154" height="204"/>
  1197. <view key="contentView" id="Up6-RM-FdN">
  1198. <rect key="frame" x="1" y="1" width="152" height="202"/>
  1199. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1200. </view>
  1201. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1202. </box>
  1203. <imageView hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="zyK-EL-Zsm">
  1204. <rect key="frame" x="483" y="178" width="122" height="26"/>
  1205. <constraints>
  1206. <constraint firstAttribute="height" constant="26" id="Cea-mz-mSP"/>
  1207. </constraints>
  1208. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="giftYearAIImage" id="DtY-4W-nJD"/>
  1209. </imageView>
  1210. <textField hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="owb-KD-fFj">
  1211. <rect key="frame" x="502" y="183" width="88" height="16"/>
  1212. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="Label" id="MkA-gx-Pc6">
  1213. <font key="font" metaFont="system"/>
  1214. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1215. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1216. </textFieldCell>
  1217. </textField>
  1218. <box boxType="custom" borderWidth="0.0" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Qq2-ys-Kfy">
  1219. <rect key="frame" x="598" y="0.0" width="144" height="194"/>
  1220. <view key="contentView" id="d4Y-o0-LU2">
  1221. <rect key="frame" x="0.0" y="0.0" width="144" height="194"/>
  1222. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1223. </view>
  1224. <constraints>
  1225. <constraint firstAttribute="width" constant="144" id="Vd3-5i-fHR"/>
  1226. </constraints>
  1227. </box>
  1228. <box boxType="custom" cornerRadius="12" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="fpi-Pf-NfD">
  1229. <rect key="frame" x="598" y="-10" width="144" height="204"/>
  1230. <view key="contentView" id="3FX-SF-Qg1">
  1231. <rect key="frame" x="1" y="1" width="142" height="202"/>
  1232. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1233. </view>
  1234. <color key="borderColor" red="1" green="0.36862745099999999" blue="0.17254901959999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1235. </box>
  1236. <imageView hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="DOg-ny-vRF">
  1237. <rect key="frame" x="627" y="178" width="122" height="26"/>
  1238. <constraints>
  1239. <constraint firstAttribute="height" constant="26" id="3za-Zm-EKS"/>
  1240. </constraints>
  1241. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="giftYearAIImage" id="wbh-vM-Cc5"/>
  1242. </imageView>
  1243. <textField hidden="YES" horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="GAi-Em-6J2">
  1244. <rect key="frame" x="646" y="183" width="88" height="16"/>
  1245. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="Label" id="VUs-Hs-Tgr">
  1246. <font key="font" metaFont="system"/>
  1247. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1248. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1249. </textFieldCell>
  1250. </textField>
  1251. </subviews>
  1252. <constraints>
  1253. <constraint firstItem="LHQ-au-Z59" firstAttribute="trailing" secondItem="zyK-EL-Zsm" secondAttribute="trailing" constant="-7" id="1CV-mb-cD5"/>
  1254. <constraint firstItem="WAw-xL-ges" firstAttribute="trailing" secondItem="R8I-NQ-Qxa" secondAttribute="trailing" constant="-17.5" id="1MB-h8-XWN"/>
  1255. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="trailing" secondItem="fpi-Pf-NfD" secondAttribute="trailing" id="37c-ei-nKe"/>
  1256. <constraint firstItem="rtR-EN-GZe" firstAttribute="leading" secondItem="3eO-1v-ESh" secondAttribute="leading" id="3Sh-OV-Fcg"/>
  1257. <constraint firstAttribute="bottom" secondItem="TbI-cd-sd7" secondAttribute="bottom" constant="-10" id="5Kf-1s-q0v"/>
  1258. <constraint firstItem="zIJ-y3-LlP" firstAttribute="leading" secondItem="vWg-fp-y8C" secondAttribute="trailing" id="6oK-Ev-WT1"/>
  1259. <constraint firstAttribute="bottom" secondItem="eSr-Ep-bND" secondAttribute="bottom" constant="-10" id="82b-s7-JIM"/>
  1260. <constraint firstItem="WAw-xL-ges" firstAttribute="centerY" secondItem="R8I-NQ-Qxa" secondAttribute="centerY" id="8rp-d3-R2T"/>
  1261. <constraint firstItem="DOg-ny-vRF" firstAttribute="centerY" secondItem="GAi-Em-6J2" secondAttribute="centerY" id="9Yi-WC-oVO"/>
  1262. <constraint firstAttribute="bottom" secondItem="LHQ-au-Z59" secondAttribute="bottom" constant="-10" id="9rU-Zr-FNP"/>
  1263. <constraint firstAttribute="bottom" secondItem="rtR-EN-GZe" secondAttribute="bottom" id="A3n-Ux-Vej"/>
  1264. <constraint firstItem="vWg-fp-y8C" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="F0Z-DE-6NP"/>
  1265. <constraint firstAttribute="bottom" secondItem="zIJ-y3-LlP" secondAttribute="bottom" id="GqT-Yb-Baq"/>
  1266. <constraint firstItem="GAi-Em-6J2" firstAttribute="leading" secondItem="DOg-ny-vRF" secondAttribute="leading" constant="21" id="JJ0-0S-bZZ"/>
  1267. <constraint firstItem="eSr-Ep-bND" firstAttribute="leading" secondItem="vWg-fp-y8C" secondAttribute="leading" id="Jtz-8a-Xvr"/>
  1268. <constraint firstAttribute="bottom" secondItem="Qq2-ys-Kfy" secondAttribute="bottom" id="KfJ-gC-k2T"/>
  1269. <constraint firstItem="YKE-fi-1tA" firstAttribute="top" secondItem="TbI-cd-sd7" secondAttribute="top" constant="-10" id="LRk-QR-2aS"/>
  1270. <constraint firstItem="fpi-Pf-NfD" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="MT1-qg-p4B"/>
  1271. <constraint firstAttribute="bottom" secondItem="fpi-Pf-NfD" secondAttribute="bottom" constant="-10" id="Mkm-un-HZv"/>
  1272. <constraint firstItem="umU-ZL-ZzR" firstAttribute="leading" secondItem="YKE-fi-1tA" secondAttribute="leading" constant="21" id="NJC-GB-X49"/>
  1273. <constraint firstItem="zIJ-y3-LlP" firstAttribute="leading" secondItem="LHQ-au-Z59" secondAttribute="leading" id="OVh-rg-lza"/>
  1274. <constraint firstItem="owb-KD-fFj" firstAttribute="leading" secondItem="zyK-EL-Zsm" secondAttribute="leading" constant="21" id="PXd-ui-sb0"/>
  1275. <constraint firstItem="GAi-Em-6J2" firstAttribute="trailing" secondItem="DOg-ny-vRF" secondAttribute="trailing" constant="-17.5" id="R17-T7-rVe"/>
  1276. <constraint firstItem="LHQ-au-Z59" firstAttribute="top" secondItem="zyK-EL-Zsm" secondAttribute="top" constant="10" id="RRs-Dh-Qed"/>
  1277. <constraint firstItem="zIJ-y3-LlP" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="RaI-2h-tAF"/>
  1278. <constraint firstItem="R8I-NQ-Qxa" firstAttribute="trailing" secondItem="eSr-Ep-bND" secondAttribute="trailing" constant="7" id="RfB-dZ-AHx"/>
  1279. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="leading" secondItem="zIJ-y3-LlP" secondAttribute="trailing" id="Sem-ne-Tja"/>
  1280. <constraint firstItem="rtR-EN-GZe" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="Us2-G3-50n"/>
  1281. <constraint firstItem="R8I-NQ-Qxa" firstAttribute="top" secondItem="eSr-Ep-bND" secondAttribute="top" constant="-10" id="VbH-kU-93f"/>
  1282. <constraint firstItem="LHQ-au-Z59" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="Vtl-Az-JnH"/>
  1283. <constraint firstItem="WAw-xL-ges" firstAttribute="leading" secondItem="R8I-NQ-Qxa" secondAttribute="leading" constant="21" id="Yv9-Q2-W7e"/>
  1284. <constraint firstAttribute="bottom" secondItem="vWg-fp-y8C" secondAttribute="bottom" id="Z3V-dr-rQX"/>
  1285. <constraint firstItem="TbI-cd-sd7" firstAttribute="leading" secondItem="3eO-1v-ESh" secondAttribute="leading" id="a9p-q5-1jV"/>
  1286. <constraint firstItem="vWg-fp-y8C" firstAttribute="leading" secondItem="TbI-cd-sd7" secondAttribute="trailing" id="ae4-HM-fS1"/>
  1287. <constraint firstItem="TbI-cd-sd7" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="ah8-Oq-ibA"/>
  1288. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="leading" secondItem="fpi-Pf-NfD" secondAttribute="leading" id="bHj-e8-KYk"/>
  1289. <constraint firstItem="owb-KD-fFj" firstAttribute="trailing" secondItem="zyK-EL-Zsm" secondAttribute="trailing" constant="-17.5" id="cin-Gf-0tR"/>
  1290. <constraint firstItem="umU-ZL-ZzR" firstAttribute="trailing" secondItem="YKE-fi-1tA" secondAttribute="trailing" constant="-17.5" id="dls-PV-IzH"/>
  1291. <constraint firstItem="zyK-EL-Zsm" firstAttribute="centerY" secondItem="owb-KD-fFj" secondAttribute="centerY" id="is5-pD-PsU"/>
  1292. <constraint firstItem="fpi-Pf-NfD" firstAttribute="trailing" secondItem="DOg-ny-vRF" secondAttribute="trailing" constant="-7" id="kmQ-3u-d4X"/>
  1293. <constraint firstItem="fpi-Pf-NfD" firstAttribute="top" secondItem="DOg-ny-vRF" secondAttribute="top" constant="10" id="krE-03-UN6"/>
  1294. <constraint firstItem="eSr-Ep-bND" firstAttribute="trailing" secondItem="vWg-fp-y8C" secondAttribute="trailing" id="ldT-vt-7wA"/>
  1295. <constraint firstItem="vWg-fp-y8C" firstAttribute="leading" secondItem="rtR-EN-GZe" secondAttribute="trailing" id="ohS-zf-fO9"/>
  1296. <constraint firstItem="YKE-fi-1tA" firstAttribute="trailing" secondItem="TbI-cd-sd7" secondAttribute="trailing" constant="7" id="p4J-oz-n0I"/>
  1297. <constraint firstItem="Qq2-ys-Kfy" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="rBP-Gz-le1"/>
  1298. <constraint firstItem="zIJ-y3-LlP" firstAttribute="trailing" secondItem="LHQ-au-Z59" secondAttribute="trailing" id="vOt-uh-0yA"/>
  1299. <constraint firstItem="umU-ZL-ZzR" firstAttribute="centerY" secondItem="YKE-fi-1tA" secondAttribute="centerY" id="xBV-hX-q0U"/>
  1300. <constraint firstItem="eSr-Ep-bND" firstAttribute="top" secondItem="3eO-1v-ESh" secondAttribute="top" id="xg4-2n-ELz"/>
  1301. </constraints>
  1302. <point key="canvasLocation" x="666" y="479"/>
  1303. </customView>
  1304. <customView id="ZLd-Sg-G8w">
  1305. <rect key="frame" x="0.0" y="0.0" width="144" height="200"/>
  1306. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1307. <subviews>
  1308. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DVN-Eb-hSv">
  1309. <rect key="frame" x="53" y="92" width="38" height="17"/>
  1310. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="Free" id="QMA-CN-lD9">
  1311. <font key="font" metaFont="systemSemibold" size="14"/>
  1312. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1313. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1314. </textFieldCell>
  1315. </textField>
  1316. </subviews>
  1317. <constraints>
  1318. <constraint firstItem="DVN-Eb-hSv" firstAttribute="centerX" secondItem="ZLd-Sg-G8w" secondAttribute="centerX" id="5Dh-wD-QND"/>
  1319. <constraint firstItem="DVN-Eb-hSv" firstAttribute="centerY" secondItem="ZLd-Sg-G8w" secondAttribute="centerY" id="Qtk-Za-LYq"/>
  1320. </constraints>
  1321. <point key="canvasLocation" x="367" y="730"/>
  1322. </customView>
  1323. <customView id="Wx1-YC-wA8">
  1324. <rect key="frame" x="0.0" y="0.0" width="300" height="202"/>
  1325. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1326. <subviews>
  1327. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="mhT-uZ-2vj">
  1328. <rect key="frame" x="0.0" y="-10" width="300" height="212"/>
  1329. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="ComparativeBackground" id="wPS-b7-pyP"/>
  1330. </imageView>
  1331. <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="Cqg-bI-mdE">
  1332. <rect key="frame" x="0.0" y="162" width="300" height="30"/>
  1333. <view key="contentView" id="eGU-A5-Vij">
  1334. <rect key="frame" x="1" y="1" width="298" height="28"/>
  1335. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1336. <subviews>
  1337. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="DfJ-Zd-LMd">
  1338. <rect key="frame" x="10" y="6" width="111" height="16"/>
  1339. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="aJl-8b-xUw">
  1340. <font key="font" usesAppearanceFont="YES"/>
  1341. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1342. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1343. </textFieldCell>
  1344. </textField>
  1345. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="rzf-vX-hjW">
  1346. <rect key="frame" x="177" y="6" width="111" height="16"/>
  1347. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="Ait-CF-XxB">
  1348. <font key="font" metaFont="system"/>
  1349. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1350. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1351. </textFieldCell>
  1352. </textField>
  1353. <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="tpD-w8-ls0">
  1354. <rect key="frame" x="127" y="2" width="44" height="24"/>
  1355. <view key="contentView" id="tI3-cw-GeZ">
  1356. <rect key="frame" x="1" y="1" width="42" height="22"/>
  1357. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1358. <subviews>
  1359. <customView translatesAutoresizingMaskIntoConstraints="NO" id="CEE-TJ-pwY">
  1360. <rect key="frame" x="4" y="3" width="16" height="16"/>
  1361. <constraints>
  1362. <constraint firstAttribute="height" constant="16" id="eec-TI-9Cv"/>
  1363. <constraint firstAttribute="width" constant="16" id="iwE-1I-qw9"/>
  1364. </constraints>
  1365. </customView>
  1366. <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="85I-Ew-NJK">
  1367. <rect key="frame" x="0.0" y="0.0" width="42" height="22"/>
  1368. <buttonCell key="cell" type="bevel" title="Button" bezelStyle="rounded" alignment="center" imageScaling="proportionallyDown" inset="2" id="ciY-ac-E6h">
  1369. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1370. <font key="font" metaFont="system"/>
  1371. </buttonCell>
  1372. </button>
  1373. </subviews>
  1374. <constraints>
  1375. <constraint firstAttribute="trailing" secondItem="85I-Ew-NJK" secondAttribute="trailing" id="8eQ-5J-IdB"/>
  1376. <constraint firstItem="85I-Ew-NJK" firstAttribute="leading" secondItem="tI3-cw-GeZ" secondAttribute="leading" id="cfj-Sz-nEm"/>
  1377. <constraint firstItem="85I-Ew-NJK" firstAttribute="top" secondItem="tI3-cw-GeZ" secondAttribute="top" id="edD-0Z-ghJ"/>
  1378. <constraint firstAttribute="bottom" secondItem="85I-Ew-NJK" secondAttribute="bottom" id="edX-Ka-kOa"/>
  1379. <constraint firstItem="CEE-TJ-pwY" firstAttribute="centerY" secondItem="tI3-cw-GeZ" secondAttribute="centerY" id="uSi-9I-sSu"/>
  1380. <constraint firstItem="CEE-TJ-pwY" firstAttribute="leading" secondItem="tI3-cw-GeZ" secondAttribute="leading" constant="4" id="zfa-w6-GDp"/>
  1381. </constraints>
  1382. </view>
  1383. <constraints>
  1384. <constraint firstAttribute="height" constant="24" id="O4D-nW-Mcf"/>
  1385. <constraint firstAttribute="width" constant="44" id="WOx-ns-5zN"/>
  1386. </constraints>
  1387. </box>
  1388. </subviews>
  1389. <constraints>
  1390. <constraint firstItem="tpD-w8-ls0" firstAttribute="centerY" secondItem="eGU-A5-Vij" secondAttribute="centerY" id="G41-if-kMQ"/>
  1391. <constraint firstAttribute="trailing" secondItem="rzf-vX-hjW" secondAttribute="trailing" constant="12" id="J7o-Zz-OAB"/>
  1392. <constraint firstItem="rzf-vX-hjW" firstAttribute="leading" secondItem="tpD-w8-ls0" secondAttribute="trailing" constant="8" id="Thc-f8-LwG"/>
  1393. <constraint firstItem="rzf-vX-hjW" firstAttribute="centerY" secondItem="tpD-w8-ls0" secondAttribute="centerY" id="cyF-zn-vWS"/>
  1394. <constraint firstItem="tpD-w8-ls0" firstAttribute="centerX" secondItem="eGU-A5-Vij" secondAttribute="centerX" id="sb8-ty-HXf"/>
  1395. <constraint firstItem="DfJ-Zd-LMd" firstAttribute="centerY" secondItem="tpD-w8-ls0" secondAttribute="centerY" id="umY-Id-WCW"/>
  1396. <constraint firstItem="tpD-w8-ls0" firstAttribute="leading" secondItem="DfJ-Zd-LMd" secondAttribute="trailing" constant="8" id="vyt-NR-Prk"/>
  1397. <constraint firstItem="DfJ-Zd-LMd" firstAttribute="leading" secondItem="eGU-A5-Vij" secondAttribute="leading" constant="12" id="wdU-W2-gwK"/>
  1398. </constraints>
  1399. </view>
  1400. <constraints>
  1401. <constraint firstAttribute="height" constant="30" id="tWZ-3L-1WW"/>
  1402. </constraints>
  1403. <color key="fillColor" name="KMColor_Status_Err"/>
  1404. </box>
  1405. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="fHA-Fl-Rtx">
  1406. <rect key="frame" x="103" y="139" width="94" height="17"/>
  1407. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="6-Month Pro" id="Q6q-4G-dia">
  1408. <font key="font" metaFont="systemSemibold" size="14"/>
  1409. <color key="textColor" red="0.99999600649999998" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1410. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1411. </textFieldCell>
  1412. </textField>
  1413. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ljn-U5-Aje">
  1414. <rect key="frame" x="-1" y="116" width="302" height="19"/>
  1415. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $9.99/mouth" id="Xpd-LM-0MH">
  1416. <font key="font" metaFont="systemBold" size="16"/>
  1417. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1418. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1419. </textFieldCell>
  1420. </textField>
  1421. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Dv2-0w-DyH">
  1422. <rect key="frame" x="132" y="100" width="37" height="16"/>
  1423. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="cMt-gK-lPe">
  1424. <font key="font" metaFont="system"/>
  1425. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1426. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1427. </textFieldCell>
  1428. </textField>
  1429. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Rwz-e9-wOa">
  1430. <rect key="frame" x="-2" y="85" width="304" height="15"/>
  1431. <textFieldCell key="cell" alignment="center" title="Billed every 6 months at USD $9.99 " id="MhV-tX-Q4h">
  1432. <font key="font" metaFont="cellTitle"/>
  1433. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1434. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1435. </textFieldCell>
  1436. </textField>
  1437. <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Dql-gp-ebU" customClass="KMCustomButton" customModule="PDF_Reader_Pro" customModuleProvider="target">
  1438. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1439. <constraints>
  1440. <constraint firstAttribute="height" constant="40" id="0CV-wA-36I"/>
  1441. <constraint firstAttribute="width" constant="120" id="fCD-kh-DRQ"/>
  1442. </constraints>
  1443. <buttonCell key="cell" type="bevel" bezelStyle="regularSquare" alignment="center" imageScaling="proportionallyDown" inset="2" id="fgw-Yp-VRQ">
  1444. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1445. <font key="font" metaFont="system"/>
  1446. </buttonCell>
  1447. <connections>
  1448. <action selector="appstorePurchaseAction:" target="-2" id="33g-0T-Qzq"/>
  1449. </connections>
  1450. </button>
  1451. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsExpansionToolTips="YES" translatesAutoresizingMaskIntoConstraints="NO" id="TGG-tp-JR2">
  1452. <rect key="frame" x="88" y="30" width="124" height="17"/>
  1453. <constraints>
  1454. <constraint firstAttribute="width" constant="120" id="5Dg-NB-GPk"/>
  1455. </constraints>
  1456. <textFieldCell key="cell" lineBreakMode="truncatingTail" alignment="center" title="Free Trial" id="2PM-lR-R0L">
  1457. <font key="font" metaFont="systemBold" size="14"/>
  1458. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1459. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1460. </textFieldCell>
  1461. </textField>
  1462. <button verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ep1-iy-QCy">
  1463. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1464. <buttonCell key="cell" type="bevel" bezelStyle="rounded" alignment="center" imageScaling="proportionallyDown" inset="2" id="Aue-MU-4OW">
  1465. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1466. <font key="font" metaFont="system"/>
  1467. </buttonCell>
  1468. <connections>
  1469. <action selector="appstorePurchaseAction:" target="-2" id="P4Q-ZO-PSp"/>
  1470. </connections>
  1471. </button>
  1472. <box boxType="custom" cornerRadius="4" title="Box" translatesAutoresizingMaskIntoConstraints="NO" id="MGz-Hq-oCc">
  1473. <rect key="frame" x="244" y="94" width="66" height="68"/>
  1474. <view key="contentView" id="cvl-of-wUg">
  1475. <rect key="frame" x="1" y="1" width="64" height="66"/>
  1476. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1477. <subviews>
  1478. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="lFH-1X-rmJ">
  1479. <rect key="frame" x="0.0" y="0.0" width="64" height="66"/>
  1480. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="kWq-GO-kEi"/>
  1481. </imageView>
  1482. <customView translatesAutoresizingMaskIntoConstraints="NO" id="6HA-sM-lqd">
  1483. <rect key="frame" x="-12" y="25" width="88" height="16"/>
  1484. <subviews>
  1485. <textField verticalHuggingPriority="750" horizontalCompressionResistancePriority="250" translatesAutoresizingMaskIntoConstraints="NO" id="dKT-hk-xg2">
  1486. <rect key="frame" x="-2" y="0.0" width="92" height="16"/>
  1487. <textFieldCell key="cell" selectable="YES" title="Multiline Label" id="2rW-to-KQA">
  1488. <font key="font" metaFont="system"/>
  1489. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1490. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1491. </textFieldCell>
  1492. </textField>
  1493. </subviews>
  1494. <constraints>
  1495. <constraint firstItem="dKT-hk-xg2" firstAttribute="top" secondItem="6HA-sM-lqd" secondAttribute="top" id="E1f-Ab-P6Z"/>
  1496. <constraint firstAttribute="trailing" secondItem="dKT-hk-xg2" secondAttribute="trailing" id="Ngr-Sa-FJu"/>
  1497. <constraint firstItem="dKT-hk-xg2" firstAttribute="centerY" secondItem="6HA-sM-lqd" secondAttribute="centerY" id="cfa-Su-1RF"/>
  1498. <constraint firstItem="dKT-hk-xg2" firstAttribute="leading" secondItem="6HA-sM-lqd" secondAttribute="leading" id="fHb-hU-hDb"/>
  1499. <constraint firstAttribute="bottom" secondItem="dKT-hk-xg2" secondAttribute="bottom" id="fme-aF-eNZ"/>
  1500. <constraint firstItem="dKT-hk-xg2" firstAttribute="centerX" secondItem="6HA-sM-lqd" secondAttribute="centerX" id="nhs-M9-yJn"/>
  1501. </constraints>
  1502. </customView>
  1503. </subviews>
  1504. <constraints>
  1505. <constraint firstItem="lFH-1X-rmJ" firstAttribute="leading" secondItem="cvl-of-wUg" secondAttribute="leading" id="X5m-We-jdP"/>
  1506. <constraint firstAttribute="trailing" secondItem="lFH-1X-rmJ" secondAttribute="trailing" id="eCM-nv-OaI"/>
  1507. <constraint firstAttribute="bottom" secondItem="lFH-1X-rmJ" secondAttribute="bottom" id="gdn-5G-MBe"/>
  1508. <constraint firstItem="lFH-1X-rmJ" firstAttribute="top" secondItem="cvl-of-wUg" secondAttribute="top" id="kYn-Ir-WRM"/>
  1509. <constraint firstItem="6HA-sM-lqd" firstAttribute="centerY" secondItem="cvl-of-wUg" secondAttribute="centerY" id="lRV-ap-0RP"/>
  1510. <constraint firstItem="6HA-sM-lqd" firstAttribute="centerX" secondItem="cvl-of-wUg" secondAttribute="centerX" id="soV-rN-xTW"/>
  1511. </constraints>
  1512. </view>
  1513. <constraints>
  1514. <constraint firstAttribute="width" constant="66" id="N95-UW-9rd"/>
  1515. <constraint firstAttribute="height" constant="68" id="Zze-Cn-QYX"/>
  1516. </constraints>
  1517. </box>
  1518. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="3mf-Iq-URd">
  1519. <rect key="frame" x="196" y="20" width="46" height="47"/>
  1520. <constraints>
  1521. <constraint firstAttribute="width" constant="46.049999999999997" id="3bb-vj-l7C"/>
  1522. <constraint firstAttribute="height" constant="47.119999999999997" id="itV-Mi-2yQ"/>
  1523. </constraints>
  1524. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="l0b-1D-sfU"/>
  1525. </imageView>
  1526. </subviews>
  1527. <constraints>
  1528. <constraint firstItem="Cqg-bI-mdE" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" id="217-nn-7ai"/>
  1529. <constraint firstItem="3mf-Iq-URd" firstAttribute="leading" secondItem="Dql-gp-ebU" secondAttribute="trailing" constant="-14" id="2zg-Fu-cCj"/>
  1530. <constraint firstItem="Dql-gp-ebU" firstAttribute="leading" secondItem="ep1-iy-QCy" secondAttribute="leading" id="3VC-Yj-BTh"/>
  1531. <constraint firstItem="Rwz-e9-wOa" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" id="4bf-1G-d43"/>
  1532. <constraint firstAttribute="trailing" secondItem="ljn-U5-Aje" secondAttribute="trailing" constant="1" id="4tC-X6-bRb"/>
  1533. <constraint firstItem="fHA-Fl-Rtx" firstAttribute="centerX" secondItem="Wx1-YC-wA8" secondAttribute="centerX" id="5ba-13-weR"/>
  1534. <constraint firstAttribute="trailing" secondItem="Rwz-e9-wOa" secondAttribute="trailing" id="ANh-3a-Qbg"/>
  1535. <constraint firstAttribute="trailing" secondItem="Cqg-bI-mdE" secondAttribute="trailing" id="BTh-jS-VVp"/>
  1536. <constraint firstItem="ljn-U5-Aje" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" constant="1" id="Bph-XN-g2g"/>
  1537. <constraint firstItem="mhT-uZ-2vj" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" id="Ezt-qP-v3E"/>
  1538. <constraint firstItem="TGG-tp-JR2" firstAttribute="centerY" secondItem="Dql-gp-ebU" secondAttribute="centerY" constant="-2" id="FUN-av-zmW"/>
  1539. <constraint firstItem="Dql-gp-ebU" firstAttribute="centerX" secondItem="TGG-tp-JR2" secondAttribute="centerX" id="Fs0-pp-iOB"/>
  1540. <constraint firstAttribute="bottom" secondItem="mhT-uZ-2vj" secondAttribute="bottom" constant="-10" id="H0W-HG-mWH"/>
  1541. <constraint firstAttribute="trailing" secondItem="MGz-Hq-oCc" secondAttribute="trailing" constant="-10" id="NiW-ei-IVl"/>
  1542. <constraint firstAttribute="trailing" secondItem="mhT-uZ-2vj" secondAttribute="trailing" id="Ot6-aG-aco"/>
  1543. <constraint firstItem="Dv2-0w-DyH" firstAttribute="centerX" secondItem="ljn-U5-Aje" secondAttribute="centerX" id="Pf6-1k-n1b"/>
  1544. <constraint firstItem="fHA-Fl-Rtx" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" constant="46" id="Q1T-ao-f38"/>
  1545. <constraint firstItem="Rwz-e9-wOa" firstAttribute="top" secondItem="ljn-U5-Aje" secondAttribute="bottom" constant="16" id="TWZ-mS-ih1"/>
  1546. <constraint firstAttribute="bottom" secondItem="3mf-Iq-URd" secondAttribute="bottom" constant="20" id="UwV-Yp-7T1"/>
  1547. <constraint firstItem="Dql-gp-ebU" firstAttribute="top" secondItem="ep1-iy-QCy" secondAttribute="top" id="Yua-AA-way"/>
  1548. <constraint firstItem="Cqg-bI-mdE" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" constant="10" id="aJD-72-HLB"/>
  1549. <constraint firstAttribute="bottom" secondItem="Dql-gp-ebU" secondAttribute="bottom" constant="16" id="eEc-Uz-MsU"/>
  1550. <constraint firstItem="Dql-gp-ebU" firstAttribute="bottom" secondItem="ep1-iy-QCy" secondAttribute="bottom" id="eeY-Iy-I1w"/>
  1551. <constraint firstItem="MGz-Hq-oCc" firstAttribute="top" secondItem="Wx1-YC-wA8" secondAttribute="top" constant="40" id="f9B-A9-Ny9"/>
  1552. <constraint firstItem="Dql-gp-ebU" firstAttribute="centerX" secondItem="Wx1-YC-wA8" secondAttribute="centerX" id="gwq-xA-unG"/>
  1553. <constraint firstItem="mhT-uZ-2vj" firstAttribute="leading" secondItem="Wx1-YC-wA8" secondAttribute="leading" id="obr-qm-u0O"/>
  1554. <constraint firstItem="Dv2-0w-DyH" firstAttribute="top" secondItem="ljn-U5-Aje" secondAttribute="bottom" id="s6u-D3-fnU"/>
  1555. <constraint firstItem="Dql-gp-ebU" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Rwz-e9-wOa" secondAttribute="bottom" id="sel-N2-Tay"/>
  1556. <constraint firstItem="ljn-U5-Aje" firstAttribute="top" secondItem="fHA-Fl-Rtx" secondAttribute="bottom" constant="4" id="wYv-xt-d6s"/>
  1557. <constraint firstItem="Dql-gp-ebU" firstAttribute="trailing" secondItem="ep1-iy-QCy" secondAttribute="trailing" id="zzA-vd-ACh"/>
  1558. </constraints>
  1559. <point key="canvasLocation" x="632" y="730"/>
  1560. </customView>
  1561. <customView id="5cj-A5-MFN">
  1562. <rect key="frame" x="0.0" y="0.0" width="299" height="202"/>
  1563. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1564. <subviews>
  1565. <button verticalHuggingPriority="750" tag="1" translatesAutoresizingMaskIntoConstraints="NO" id="3Ik-8P-4RK">
  1566. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1567. <constraints>
  1568. <constraint firstAttribute="width" constant="120" id="JSg-MM-9wg"/>
  1569. <constraint firstAttribute="height" constant="40" id="b4I-Jh-WXV"/>
  1570. </constraints>
  1571. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="qe5-qU-Z1A">
  1572. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1573. <font key="font" metaFont="systemBold" size="14"/>
  1574. </buttonCell>
  1575. <connections>
  1576. <action selector="appstorePurchaseAction:" target="-2" id="nEz-Mc-W3X"/>
  1577. </connections>
  1578. </button>
  1579. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3QB-3J-VcS">
  1580. <rect key="frame" x="134" y="30" width="31" height="17"/>
  1581. <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="9Cm-Cs-vUl">
  1582. <font key="font" metaFont="systemBold" size="14"/>
  1583. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1584. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1585. </textFieldCell>
  1586. </textField>
  1587. <button verticalHuggingPriority="750" tag="1" translatesAutoresizingMaskIntoConstraints="NO" id="ZEN-97-7fT">
  1588. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1589. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="0Tg-Jy-lFf">
  1590. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1591. <font key="font" metaFont="systemBold" size="14"/>
  1592. </buttonCell>
  1593. <connections>
  1594. <action selector="appstorePurchaseAction:" target="-2" id="zY8-Ax-5UW"/>
  1595. </connections>
  1596. </button>
  1597. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="0ur-PV-kxY">
  1598. <rect key="frame" x="253" y="36" width="46" height="47"/>
  1599. <constraints>
  1600. <constraint firstAttribute="height" constant="47.119999999999997" id="X0M-9X-QTB"/>
  1601. <constraint firstAttribute="width" constant="46.049999999999997" id="yQZ-3y-J3b"/>
  1602. </constraints>
  1603. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="nwk-tb-Ov3"/>
  1604. </imageView>
  1605. <customView translatesAutoresizingMaskIntoConstraints="NO" id="YaA-Bf-f9V">
  1606. <rect key="frame" x="5" y="64" width="289" height="126"/>
  1607. <subviews>
  1608. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="cgF-jQ-Q0K">
  1609. <rect key="frame" x="93" y="51" width="103" height="19"/>
  1610. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $59.99" id="H9D-N9-VLY">
  1611. <font key="font" metaFont="systemBold" size="16"/>
  1612. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1613. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1614. </textFieldCell>
  1615. </textField>
  1616. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="u1v-EM-8Bp">
  1617. <rect key="frame" x="64" y="20" width="162" height="15"/>
  1618. <textFieldCell key="cell" alignment="center" title="Auto-renewal | Billed yearly" id="qC7-pK-mXD">
  1619. <font key="font" metaFont="cellTitle"/>
  1620. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1621. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1622. </textFieldCell>
  1623. </textField>
  1624. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Z2t-T7-CMh">
  1625. <rect key="frame" x="113" y="0.0" width="64" height="16"/>
  1626. <textFieldCell key="cell" lineBreakMode="clipping" title="(Tax Incl.)" id="a0F-6l-WNE">
  1627. <font key="font" usesAppearanceFont="YES"/>
  1628. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1629. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1630. </textFieldCell>
  1631. </textField>
  1632. <customView translatesAutoresizingMaskIntoConstraints="NO" id="06E-ch-V27">
  1633. <rect key="frame" x="0.0" y="74" width="289" height="52"/>
  1634. <subviews>
  1635. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="yl6-4d-E04">
  1636. <rect key="frame" x="-2" y="9" width="293" height="34"/>
  1637. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="PDF Reader Pro Standard
Annual Plan" id="6oh-fB-yXw">
  1638. <font key="font" metaFont="systemSemibold" size="14"/>
  1639. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1640. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1641. </textFieldCell>
  1642. </textField>
  1643. </subviews>
  1644. <constraints>
  1645. <constraint firstItem="yl6-4d-E04" firstAttribute="leading" secondItem="06E-ch-V27" secondAttribute="leading" id="2ai-Xb-xtC"/>
  1646. <constraint firstAttribute="trailing" secondItem="yl6-4d-E04" secondAttribute="trailing" id="Ate-xd-3p4"/>
  1647. <constraint firstItem="yl6-4d-E04" firstAttribute="centerX" secondItem="06E-ch-V27" secondAttribute="centerX" id="Oxs-RK-hjr"/>
  1648. <constraint firstItem="yl6-4d-E04" firstAttribute="centerY" secondItem="06E-ch-V27" secondAttribute="centerY" id="jz0-hF-OoW"/>
  1649. </constraints>
  1650. </customView>
  1651. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="6Pe-0P-Poq">
  1652. <rect key="frame" x="126" y="35" width="37" height="16"/>
  1653. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="bRZ-GN-WxX">
  1654. <font key="font" metaFont="system"/>
  1655. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1656. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1657. </textFieldCell>
  1658. </textField>
  1659. </subviews>
  1660. <constraints>
  1661. <constraint firstAttribute="bottom" secondItem="Z2t-T7-CMh" secondAttribute="bottom" id="4Or-03-2cT"/>
  1662. <constraint firstItem="06E-ch-V27" firstAttribute="top" secondItem="YaA-Bf-f9V" secondAttribute="top" id="5lH-kn-eSS"/>
  1663. <constraint firstItem="cgF-jQ-Q0K" firstAttribute="centerX" secondItem="YaA-Bf-f9V" secondAttribute="centerX" id="9s0-1y-Bm6"/>
  1664. <constraint firstItem="6Pe-0P-Poq" firstAttribute="top" secondItem="cgF-jQ-Q0K" secondAttribute="bottom" id="Cen-et-929"/>
  1665. <constraint firstItem="cgF-jQ-Q0K" firstAttribute="top" secondItem="06E-ch-V27" secondAttribute="bottom" constant="4" id="JcW-HC-hL5"/>
  1666. <constraint firstItem="u1v-EM-8Bp" firstAttribute="top" secondItem="cgF-jQ-Q0K" secondAttribute="bottom" constant="16" id="Ovy-Hj-Ev1"/>
  1667. <constraint firstItem="6Pe-0P-Poq" firstAttribute="centerX" secondItem="cgF-jQ-Q0K" secondAttribute="centerX" id="Pjd-Vx-a3c"/>
  1668. <constraint firstAttribute="trailing" secondItem="06E-ch-V27" secondAttribute="trailing" id="cKP-VM-kgc"/>
  1669. <constraint firstItem="06E-ch-V27" firstAttribute="leading" secondItem="YaA-Bf-f9V" secondAttribute="leading" id="ng0-7R-1P2"/>
  1670. <constraint firstItem="Z2t-T7-CMh" firstAttribute="centerX" secondItem="YaA-Bf-f9V" secondAttribute="centerX" id="rfY-a5-7tX"/>
  1671. <constraint firstItem="u1v-EM-8Bp" firstAttribute="centerX" secondItem="YaA-Bf-f9V" secondAttribute="centerX" id="xnd-KS-gc4"/>
  1672. <constraint firstItem="Z2t-T7-CMh" firstAttribute="top" secondItem="u1v-EM-8Bp" secondAttribute="bottom" constant="4" id="yhb-qp-CW6"/>
  1673. </constraints>
  1674. </customView>
  1675. </subviews>
  1676. <constraints>
  1677. <constraint firstItem="3Ik-8P-4RK" firstAttribute="leading" secondItem="ZEN-97-7fT" secondAttribute="leading" id="209-QG-usU"/>
  1678. <constraint firstItem="3Ik-8P-4RK" firstAttribute="top" secondItem="YaA-Bf-f9V" secondAttribute="bottom" constant="8" id="2tU-1I-acb"/>
  1679. <constraint firstItem="YaA-Bf-f9V" firstAttribute="leading" secondItem="5cj-A5-MFN" secondAttribute="leading" constant="4.75" id="7BQ-d5-yAe"/>
  1680. <constraint firstItem="3Ik-8P-4RK" firstAttribute="centerY" secondItem="3QB-3J-VcS" secondAttribute="centerY" constant="2" id="8la-f7-VXZ"/>
  1681. <constraint firstAttribute="trailing" secondItem="0ur-PV-kxY" secondAttribute="trailing" id="9kf-ej-V6O"/>
  1682. <constraint firstItem="3Ik-8P-4RK" firstAttribute="trailing" secondItem="ZEN-97-7fT" secondAttribute="trailing" id="LZU-nQ-IRZ"/>
  1683. <constraint firstItem="3Ik-8P-4RK" firstAttribute="centerX" secondItem="3QB-3J-VcS" secondAttribute="centerX" id="Rfn-t2-0hz"/>
  1684. <constraint firstItem="3Ik-8P-4RK" firstAttribute="bottom" secondItem="ZEN-97-7fT" secondAttribute="bottom" id="U77-Bw-rwm"/>
  1685. <constraint firstItem="3Ik-8P-4RK" firstAttribute="centerX" secondItem="5cj-A5-MFN" secondAttribute="centerX" id="kbg-fD-rST"/>
  1686. <constraint firstAttribute="bottom" secondItem="3Ik-8P-4RK" secondAttribute="bottom" constant="16" id="ozS-00-NXY"/>
  1687. <constraint firstItem="3Ik-8P-4RK" firstAttribute="top" secondItem="ZEN-97-7fT" secondAttribute="top" id="p1f-37-EfD"/>
  1688. <constraint firstItem="YaA-Bf-f9V" firstAttribute="top" secondItem="5cj-A5-MFN" secondAttribute="top" constant="12" id="pfv-KF-REV"/>
  1689. <constraint firstAttribute="trailing" secondItem="YaA-Bf-f9V" secondAttribute="trailing" constant="4.75" id="rZK-lV-YSQ"/>
  1690. <constraint firstAttribute="bottom" secondItem="0ur-PV-kxY" secondAttribute="bottom" constant="35.880000000000003" id="xjA-q7-eB7"/>
  1691. </constraints>
  1692. <point key="canvasLocation" x="1028" y="731"/>
  1693. </customView>
  1694. <customView id="fce-hX-IV6">
  1695. <rect key="frame" x="0.0" y="0.0" width="299" height="202"/>
  1696. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1697. <subviews>
  1698. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Y18-DK-FWw">
  1699. <rect key="frame" x="0.0" y="-10" width="299" height="212"/>
  1700. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="ComparativeBackground" id="tbr-y9-h9V"/>
  1701. </imageView>
  1702. <button verticalHuggingPriority="750" tag="2" translatesAutoresizingMaskIntoConstraints="NO" id="SFA-A0-TRs">
  1703. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1704. <constraints>
  1705. <constraint firstAttribute="width" constant="120" id="auG-ge-hJC"/>
  1706. <constraint firstAttribute="height" constant="40" id="uIb-xr-rLd"/>
  1707. </constraints>
  1708. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="fjI-CT-M5Z">
  1709. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1710. <font key="font" metaFont="systemBold" size="14"/>
  1711. </buttonCell>
  1712. <connections>
  1713. <action selector="appstorePurchaseAction:" target="-2" id="B3D-Np-IbR"/>
  1714. </connections>
  1715. </button>
  1716. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="D71-TX-fVd">
  1717. <rect key="frame" x="134" y="30" width="31" height="17"/>
  1718. <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="1Uu-6Q-0aw">
  1719. <font key="font" metaFont="systemBold" size="14"/>
  1720. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1721. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1722. </textFieldCell>
  1723. </textField>
  1724. <button verticalHuggingPriority="750" tag="2" translatesAutoresizingMaskIntoConstraints="NO" id="JRG-Tt-bke">
  1725. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1726. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="BxF-VB-cFe">
  1727. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1728. <font key="font" metaFont="systemBold" size="14"/>
  1729. </buttonCell>
  1730. <connections>
  1731. <action selector="appstorePurchaseAction:" target="-2" id="VhM-O5-7oH"/>
  1732. </connections>
  1733. </button>
  1734. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="DQR-1s-l8u">
  1735. <rect key="frame" x="178" y="36" width="47" height="47"/>
  1736. <constraints>
  1737. <constraint firstAttribute="height" constant="47.119999999999997" id="4v3-zu-Z3K"/>
  1738. <constraint firstAttribute="width" constant="46.049999999999997" id="P2O-Kg-a7h"/>
  1739. </constraints>
  1740. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="X2f-6s-2yK"/>
  1741. </imageView>
  1742. <customView translatesAutoresizingMaskIntoConstraints="NO" id="5lC-K6-aWW">
  1743. <rect key="frame" x="5" y="64" width="289" height="126"/>
  1744. <subviews>
  1745. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ABz-rY-vFD">
  1746. <rect key="frame" x="93" y="51" width="103" height="19"/>
  1747. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $59.99" id="C5d-NE-YDk">
  1748. <font key="font" metaFont="systemBold" size="16"/>
  1749. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1750. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1751. </textFieldCell>
  1752. </textField>
  1753. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="oie-PG-6He">
  1754. <rect key="frame" x="64" y="20" width="162" height="15"/>
  1755. <textFieldCell key="cell" alignment="center" title="Auto-renewal | Billed yearly" id="vaK-iW-5of">
  1756. <font key="font" metaFont="cellTitle"/>
  1757. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1758. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1759. </textFieldCell>
  1760. </textField>
  1761. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="0HH-bq-tk2">
  1762. <rect key="frame" x="113" y="0.0" width="64" height="16"/>
  1763. <textFieldCell key="cell" lineBreakMode="clipping" title="(Tax Incl.)" id="YkZ-Cd-Y3s">
  1764. <font key="font" usesAppearanceFont="YES"/>
  1765. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1766. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1767. </textFieldCell>
  1768. </textField>
  1769. <customView translatesAutoresizingMaskIntoConstraints="NO" id="OLo-E3-D6L">
  1770. <rect key="frame" x="0.0" y="74" width="289" height="52"/>
  1771. <subviews>
  1772. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="Ll7-An-0YH">
  1773. <rect key="frame" x="-2" y="9" width="293" height="34"/>
  1774. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="PDF Reader Pro Advanced
Annual Plan" id="nN2-mJ-xpd">
  1775. <font key="font" metaFont="systemSemibold" size="14"/>
  1776. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1777. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1778. </textFieldCell>
  1779. </textField>
  1780. </subviews>
  1781. <constraints>
  1782. <constraint firstItem="Ll7-An-0YH" firstAttribute="leading" secondItem="OLo-E3-D6L" secondAttribute="leading" id="WIQ-A4-UrG"/>
  1783. <constraint firstItem="Ll7-An-0YH" firstAttribute="centerX" secondItem="OLo-E3-D6L" secondAttribute="centerX" id="gKf-48-k48"/>
  1784. <constraint firstAttribute="trailing" secondItem="Ll7-An-0YH" secondAttribute="trailing" id="kDv-yU-Mhc"/>
  1785. <constraint firstItem="Ll7-An-0YH" firstAttribute="centerY" secondItem="OLo-E3-D6L" secondAttribute="centerY" id="wkM-UL-LQF"/>
  1786. </constraints>
  1787. </customView>
  1788. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="3VL-nh-gaY">
  1789. <rect key="frame" x="126" y="35" width="37" height="16"/>
  1790. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="aXQ-1H-rcW">
  1791. <font key="font" metaFont="system"/>
  1792. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1793. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1794. </textFieldCell>
  1795. </textField>
  1796. </subviews>
  1797. <constraints>
  1798. <constraint firstItem="OLo-E3-D6L" firstAttribute="top" secondItem="5lC-K6-aWW" secondAttribute="top" id="4uM-56-PGN"/>
  1799. <constraint firstItem="oie-PG-6He" firstAttribute="centerX" secondItem="5lC-K6-aWW" secondAttribute="centerX" id="F3X-QR-GG6"/>
  1800. <constraint firstItem="oie-PG-6He" firstAttribute="top" secondItem="ABz-rY-vFD" secondAttribute="bottom" constant="16" id="Mtq-Kq-LxB"/>
  1801. <constraint firstItem="0HH-bq-tk2" firstAttribute="top" secondItem="oie-PG-6He" secondAttribute="bottom" constant="4" id="Rlo-MH-klG"/>
  1802. <constraint firstItem="ABz-rY-vFD" firstAttribute="centerX" secondItem="5lC-K6-aWW" secondAttribute="centerX" id="ULd-tv-JoN"/>
  1803. <constraint firstItem="3VL-nh-gaY" firstAttribute="top" secondItem="ABz-rY-vFD" secondAttribute="bottom" id="VJj-dT-gIq"/>
  1804. <constraint firstItem="0HH-bq-tk2" firstAttribute="centerX" secondItem="5lC-K6-aWW" secondAttribute="centerX" id="WEc-zD-vMV"/>
  1805. <constraint firstItem="ABz-rY-vFD" firstAttribute="top" secondItem="OLo-E3-D6L" secondAttribute="bottom" constant="4" id="gnh-rp-Cem"/>
  1806. <constraint firstItem="OLo-E3-D6L" firstAttribute="leading" secondItem="5lC-K6-aWW" secondAttribute="leading" id="ja7-qa-m6K"/>
  1807. <constraint firstAttribute="bottom" secondItem="0HH-bq-tk2" secondAttribute="bottom" id="rJu-mV-Cp0"/>
  1808. <constraint firstItem="3VL-nh-gaY" firstAttribute="centerX" secondItem="ABz-rY-vFD" secondAttribute="centerX" id="w04-ca-3Ig"/>
  1809. <constraint firstAttribute="trailing" secondItem="OLo-E3-D6L" secondAttribute="trailing" id="wHv-u5-eTc"/>
  1810. </constraints>
  1811. </customView>
  1812. </subviews>
  1813. <constraints>
  1814. <constraint firstItem="SFA-A0-TRs" firstAttribute="top" secondItem="5lC-K6-aWW" secondAttribute="bottom" constant="8" id="1BI-cj-edg"/>
  1815. <constraint firstItem="SFA-A0-TRs" firstAttribute="centerX" secondItem="D71-TX-fVd" secondAttribute="centerX" id="7mx-Zo-GWI"/>
  1816. <constraint firstItem="Y18-DK-FWw" firstAttribute="leading" secondItem="fce-hX-IV6" secondAttribute="leading" id="961-gv-rLy"/>
  1817. <constraint firstAttribute="bottom" secondItem="DQR-1s-l8u" secondAttribute="bottom" constant="35.880000000000003" id="I3s-Gk-Huv"/>
  1818. <constraint firstItem="5lC-K6-aWW" firstAttribute="top" secondItem="fce-hX-IV6" secondAttribute="top" constant="12" id="IOk-kA-c6s"/>
  1819. <constraint firstAttribute="bottom" secondItem="SFA-A0-TRs" secondAttribute="bottom" constant="16" id="KWz-D1-Csu"/>
  1820. <constraint firstItem="SFA-A0-TRs" firstAttribute="top" secondItem="JRG-Tt-bke" secondAttribute="top" id="LXy-Dm-G0N"/>
  1821. <constraint firstItem="SFA-A0-TRs" firstAttribute="centerY" secondItem="D71-TX-fVd" secondAttribute="centerY" constant="2" id="QVG-kW-Uwr"/>
  1822. <constraint firstItem="SFA-A0-TRs" firstAttribute="centerX" secondItem="fce-hX-IV6" secondAttribute="centerX" id="Qas-sW-9s5"/>
  1823. <constraint firstItem="SFA-A0-TRs" firstAttribute="leading" secondItem="JRG-Tt-bke" secondAttribute="leading" id="S1h-53-Yh8"/>
  1824. <constraint firstAttribute="bottom" secondItem="Y18-DK-FWw" secondAttribute="bottom" constant="-10" id="WHV-cS-Pjt"/>
  1825. <constraint firstAttribute="trailing" secondItem="Y18-DK-FWw" secondAttribute="trailing" id="WuR-zE-Avi"/>
  1826. <constraint firstAttribute="trailing" secondItem="5lC-K6-aWW" secondAttribute="trailing" constant="4.75" id="ZuA-sX-o5L"/>
  1827. <constraint firstItem="SFA-A0-TRs" firstAttribute="trailing" secondItem="JRG-Tt-bke" secondAttribute="trailing" id="fVw-ws-ksN"/>
  1828. <constraint firstItem="5lC-K6-aWW" firstAttribute="leading" secondItem="fce-hX-IV6" secondAttribute="leading" constant="4.75" id="hDG-RD-9E2"/>
  1829. <constraint firstItem="SFA-A0-TRs" firstAttribute="bottom" secondItem="JRG-Tt-bke" secondAttribute="bottom" id="l1K-zH-lpR"/>
  1830. <constraint firstItem="Y18-DK-FWw" firstAttribute="top" secondItem="fce-hX-IV6" secondAttribute="top" id="wq9-Kr-SEO"/>
  1831. <constraint firstItem="DQR-1s-l8u" firstAttribute="trailing" secondItem="JRG-Tt-bke" secondAttribute="trailing" constant="15" id="xWr-ZZ-4ra"/>
  1832. </constraints>
  1833. <point key="canvasLocation" x="1389.5" y="731"/>
  1834. </customView>
  1835. <customView id="XVZ-jI-UYX">
  1836. <rect key="frame" x="0.0" y="0.0" width="299" height="202"/>
  1837. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1838. <subviews>
  1839. <button verticalHuggingPriority="750" tag="3" translatesAutoresizingMaskIntoConstraints="NO" id="zmz-yq-8SZ">
  1840. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1841. <constraints>
  1842. <constraint firstAttribute="width" constant="120" id="E7g-Ky-oXG"/>
  1843. <constraint firstAttribute="height" constant="40" id="bKt-uW-z4d"/>
  1844. </constraints>
  1845. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="9jy-F5-8Ox">
  1846. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1847. <font key="font" metaFont="systemBold" size="14"/>
  1848. </buttonCell>
  1849. <connections>
  1850. <action selector="appstorePurchaseAction:" target="-2" id="ldu-GI-W5M"/>
  1851. </connections>
  1852. </button>
  1853. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="w8I-Fc-Axv">
  1854. <rect key="frame" x="134" y="30" width="31" height="17"/>
  1855. <textFieldCell key="cell" lineBreakMode="clipping" title="Buy" id="9vY-xE-ZXc">
  1856. <font key="font" metaFont="systemBold" size="14"/>
  1857. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1858. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1859. </textFieldCell>
  1860. </textField>
  1861. <button verticalHuggingPriority="750" tag="3" translatesAutoresizingMaskIntoConstraints="NO" id="5cy-wO-SqL">
  1862. <rect key="frame" x="90" y="16" width="120" height="40"/>
  1863. <buttonCell key="cell" type="bevel" bezelStyle="rounded" imagePosition="overlaps" alignment="center" imageScaling="axesIndependently" inset="2" id="PEx-dX-RcI">
  1864. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1865. <font key="font" metaFont="systemBold" size="14"/>
  1866. </buttonCell>
  1867. <connections>
  1868. <action selector="appstorePurchaseAction:" target="-2" id="Fwa-9L-zZH"/>
  1869. </connections>
  1870. </button>
  1871. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="sn9-km-1Vm">
  1872. <rect key="frame" x="253" y="36" width="46" height="47"/>
  1873. <constraints>
  1874. <constraint firstAttribute="height" constant="47.119999999999997" id="T0Z-IT-cf1"/>
  1875. <constraint firstAttribute="width" constant="46.049999999999997" id="ayW-m1-She"/>
  1876. </constraints>
  1877. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="80x-IY-jyF"/>
  1878. </imageView>
  1879. <customView translatesAutoresizingMaskIntoConstraints="NO" id="C1f-JL-m0e">
  1880. <rect key="frame" x="5" y="64" width="289" height="126"/>
  1881. <subviews>
  1882. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="okn-VX-xhH">
  1883. <rect key="frame" x="93" y="51" width="103" height="19"/>
  1884. <textFieldCell key="cell" lineBreakMode="clipping" alignment="center" title="USD $59.99" id="cKO-QB-euV">
  1885. <font key="font" metaFont="systemBold" size="16"/>
  1886. <color key="textColor" red="0.0" green="0.53333333329999999" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1887. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1888. </textFieldCell>
  1889. </textField>
  1890. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="CHT-d8-7WR">
  1891. <rect key="frame" x="87" y="20" width="115" height="15"/>
  1892. <textFieldCell key="cell" alignment="center" title="one-time purchase" id="WpW-sG-ZnF">
  1893. <font key="font" metaFont="cellTitle"/>
  1894. <color key="textColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1895. <color key="backgroundColor" red="0.55294117649999996" green="0.55294117649999996" blue="0.55294117649999996" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1896. </textFieldCell>
  1897. </textField>
  1898. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="ctO-mu-ddI">
  1899. <rect key="frame" x="113" y="0.0" width="64" height="16"/>
  1900. <textFieldCell key="cell" lineBreakMode="clipping" title="(Tax Incl.)" id="rmF-E9-TTg">
  1901. <font key="font" usesAppearanceFont="YES"/>
  1902. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1903. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1904. </textFieldCell>
  1905. </textField>
  1906. <customView translatesAutoresizingMaskIntoConstraints="NO" id="9Wf-EF-Uhb">
  1907. <rect key="frame" x="0.0" y="74" width="289" height="52"/>
  1908. <subviews>
  1909. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="snj-Zj-OvD">
  1910. <rect key="frame" x="-2" y="18" width="293" height="17"/>
  1911. <textFieldCell key="cell" sendsActionOnEndEditing="YES" alignment="center" title="PDF Reader Pro Permanent" id="buB-bu-9Qo">
  1912. <font key="font" metaFont="systemSemibold" size="14"/>
  1913. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1914. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1915. </textFieldCell>
  1916. </textField>
  1917. </subviews>
  1918. <constraints>
  1919. <constraint firstItem="snj-Zj-OvD" firstAttribute="centerY" secondItem="9Wf-EF-Uhb" secondAttribute="centerY" id="61p-rd-K28"/>
  1920. <constraint firstItem="snj-Zj-OvD" firstAttribute="leading" secondItem="9Wf-EF-Uhb" secondAttribute="leading" id="QVE-kn-F6R"/>
  1921. <constraint firstAttribute="trailing" secondItem="snj-Zj-OvD" secondAttribute="trailing" id="aWP-oJ-MlK"/>
  1922. <constraint firstItem="snj-Zj-OvD" firstAttribute="centerX" secondItem="9Wf-EF-Uhb" secondAttribute="centerX" id="mAc-Ay-Bti"/>
  1923. </constraints>
  1924. </customView>
  1925. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO" id="bDg-XE-hsR">
  1926. <rect key="frame" x="126" y="35" width="37" height="16"/>
  1927. <textFieldCell key="cell" lineBreakMode="clipping" title="Label" id="0fF-QS-bAz">
  1928. <font key="font" metaFont="system"/>
  1929. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1930. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1931. </textFieldCell>
  1932. </textField>
  1933. </subviews>
  1934. <constraints>
  1935. <constraint firstItem="bDg-XE-hsR" firstAttribute="top" secondItem="okn-VX-xhH" secondAttribute="bottom" id="4FN-xG-CZy"/>
  1936. <constraint firstItem="ctO-mu-ddI" firstAttribute="top" secondItem="CHT-d8-7WR" secondAttribute="bottom" constant="4" id="P3e-P5-yjl"/>
  1937. <constraint firstItem="okn-VX-xhH" firstAttribute="centerX" secondItem="C1f-JL-m0e" secondAttribute="centerX" id="a5e-Ak-EMB"/>
  1938. <constraint firstItem="okn-VX-xhH" firstAttribute="top" secondItem="9Wf-EF-Uhb" secondAttribute="bottom" constant="4" id="bPW-0P-B8Q"/>
  1939. <constraint firstAttribute="bottom" secondItem="ctO-mu-ddI" secondAttribute="bottom" id="cU7-Sc-Cbb"/>
  1940. <constraint firstItem="9Wf-EF-Uhb" firstAttribute="top" secondItem="C1f-JL-m0e" secondAttribute="top" id="jtJ-M4-6qQ"/>
  1941. <constraint firstItem="CHT-d8-7WR" firstAttribute="top" secondItem="okn-VX-xhH" secondAttribute="bottom" constant="16" id="kbU-ad-U9f"/>
  1942. <constraint firstAttribute="trailing" secondItem="9Wf-EF-Uhb" secondAttribute="trailing" id="l5R-h7-HlE"/>
  1943. <constraint firstItem="ctO-mu-ddI" firstAttribute="centerX" secondItem="C1f-JL-m0e" secondAttribute="centerX" id="ncO-cn-uYk"/>
  1944. <constraint firstItem="bDg-XE-hsR" firstAttribute="centerX" secondItem="okn-VX-xhH" secondAttribute="centerX" id="sqV-oe-T5L"/>
  1945. <constraint firstItem="9Wf-EF-Uhb" firstAttribute="leading" secondItem="C1f-JL-m0e" secondAttribute="leading" id="vLy-tQ-QOc"/>
  1946. <constraint firstItem="CHT-d8-7WR" firstAttribute="centerX" secondItem="C1f-JL-m0e" secondAttribute="centerX" id="xlk-zg-B6h"/>
  1947. </constraints>
  1948. </customView>
  1949. </subviews>
  1950. <constraints>
  1951. <constraint firstItem="zmz-yq-8SZ" firstAttribute="leading" secondItem="5cy-wO-SqL" secondAttribute="leading" id="10r-JG-S80"/>
  1952. <constraint firstItem="C1f-JL-m0e" firstAttribute="top" secondItem="XVZ-jI-UYX" secondAttribute="top" constant="12" id="5wk-q7-vqt"/>
  1953. <constraint firstAttribute="trailing" secondItem="sn9-km-1Vm" secondAttribute="trailing" id="7W3-lT-xjk"/>
  1954. <constraint firstItem="zmz-yq-8SZ" firstAttribute="trailing" secondItem="5cy-wO-SqL" secondAttribute="trailing" id="Gf7-Os-UA6"/>
  1955. <constraint firstItem="zmz-yq-8SZ" firstAttribute="top" secondItem="5cy-wO-SqL" secondAttribute="top" id="LNq-Wk-bbq"/>
  1956. <constraint firstItem="zmz-yq-8SZ" firstAttribute="bottom" secondItem="5cy-wO-SqL" secondAttribute="bottom" id="QDx-ql-EOf"/>
  1957. <constraint firstAttribute="trailing" secondItem="C1f-JL-m0e" secondAttribute="trailing" constant="4.75" id="aJ4-95-CZA"/>
  1958. <constraint firstItem="zmz-yq-8SZ" firstAttribute="centerX" secondItem="w8I-Fc-Axv" secondAttribute="centerX" id="bwv-PZ-sI1"/>
  1959. <constraint firstItem="C1f-JL-m0e" firstAttribute="leading" secondItem="XVZ-jI-UYX" secondAttribute="leading" constant="4.75" id="cEb-pB-wI7"/>
  1960. <constraint firstAttribute="bottom" secondItem="sn9-km-1Vm" secondAttribute="bottom" constant="35.880000000000003" id="cII-Yo-viG"/>
  1961. <constraint firstItem="zmz-yq-8SZ" firstAttribute="centerX" secondItem="XVZ-jI-UYX" secondAttribute="centerX" id="ff9-8C-AUV"/>
  1962. <constraint firstItem="zmz-yq-8SZ" firstAttribute="top" secondItem="C1f-JL-m0e" secondAttribute="bottom" constant="8" id="m5C-PJ-xo6"/>
  1963. <constraint firstItem="zmz-yq-8SZ" firstAttribute="centerY" secondItem="w8I-Fc-Axv" secondAttribute="centerY" constant="2" id="shg-9N-bxE"/>
  1964. <constraint firstAttribute="bottom" secondItem="zmz-yq-8SZ" secondAttribute="bottom" constant="16" id="u4u-3k-sHR"/>
  1965. </constraints>
  1966. <point key="canvasLocation" x="1766" y="731"/>
  1967. </customView>
  1968. <customView id="fex-Hv-ZGc">
  1969. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  1970. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1971. <subviews>
  1972. <customView translatesAutoresizingMaskIntoConstraints="NO" id="SPe-th-KNs">
  1973. <rect key="frame" x="99" y="19" width="128" height="20"/>
  1974. <subviews>
  1975. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="iSQ-Xb-0Ua">
  1976. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  1977. <constraints>
  1978. <constraint firstAttribute="height" constant="20" id="5GN-lp-2iw"/>
  1979. <constraint firstAttribute="width" constant="20" id="w1k-DT-gPF"/>
  1980. </constraints>
  1981. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="je0-eH-fuk"/>
  1982. </imageView>
  1983. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="wMI-aK-ZHs">
  1984. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  1985. <constraints>
  1986. <constraint firstAttribute="height" constant="20" id="jqF-lL-2wN"/>
  1987. <constraint firstAttribute="width" constant="20" id="zGy-Wb-Ilg"/>
  1988. </constraints>
  1989. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="njg-z4-th1"/>
  1990. </imageView>
  1991. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="7mP-ad-q3U">
  1992. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  1993. <constraints>
  1994. <constraint firstAttribute="width" constant="20" id="6ab-nE-H1U"/>
  1995. <constraint firstAttribute="height" constant="20" id="9qK-47-1Om"/>
  1996. </constraints>
  1997. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="iOSPlatformImage" id="Hwc-I9-pR0"/>
  1998. </imageView>
  1999. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="ANB-Lx-Z8H">
  2000. <rect key="frame" x="108" y="0.0" width="20" height="20"/>
  2001. <constraints>
  2002. <constraint firstAttribute="height" constant="20" id="IbS-VR-lKe"/>
  2003. <constraint firstAttribute="width" constant="20" id="cw6-bF-SqA"/>
  2004. </constraints>
  2005. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="AndroidPlatformImage" id="lpI-CM-yzl"/>
  2006. </imageView>
  2007. </subviews>
  2008. <constraints>
  2009. <constraint firstAttribute="height" constant="20" id="07K-WW-eJY"/>
  2010. <constraint firstItem="wMI-aK-ZHs" firstAttribute="leading" secondItem="iSQ-Xb-0Ua" secondAttribute="trailing" constant="16" id="Av5-Tu-g9A"/>
  2011. <constraint firstItem="ANB-Lx-Z8H" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="IPZ-mz-WhU"/>
  2012. <constraint firstAttribute="bottom" secondItem="7mP-ad-q3U" secondAttribute="bottom" id="NfV-mb-Cmt"/>
  2013. <constraint firstAttribute="bottom" secondItem="wMI-aK-ZHs" secondAttribute="bottom" id="XgL-pt-bEH"/>
  2014. <constraint firstItem="7mP-ad-q3U" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="ZhN-Ey-dAg"/>
  2015. <constraint firstAttribute="trailing" secondItem="ANB-Lx-Z8H" secondAttribute="trailing" id="aJM-QB-BXB"/>
  2016. <constraint firstItem="wMI-aK-ZHs" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="bPe-3S-rWB"/>
  2017. <constraint firstItem="iSQ-Xb-0Ua" firstAttribute="top" secondItem="SPe-th-KNs" secondAttribute="top" id="dRO-yv-gyj"/>
  2018. <constraint firstAttribute="bottom" secondItem="ANB-Lx-Z8H" secondAttribute="bottom" id="eZA-If-513"/>
  2019. <constraint firstItem="7mP-ad-q3U" firstAttribute="leading" secondItem="wMI-aK-ZHs" secondAttribute="trailing" constant="16" id="jfc-u0-52M"/>
  2020. <constraint firstAttribute="bottom" secondItem="iSQ-Xb-0Ua" secondAttribute="bottom" id="lGr-gr-dnX"/>
  2021. <constraint firstItem="ANB-Lx-Z8H" firstAttribute="leading" secondItem="7mP-ad-q3U" secondAttribute="trailing" constant="16" id="pIt-lT-YcT"/>
  2022. <constraint firstItem="iSQ-Xb-0Ua" firstAttribute="leading" secondItem="SPe-th-KNs" secondAttribute="leading" id="wZK-Oi-S5p"/>
  2023. </constraints>
  2024. </customView>
  2025. </subviews>
  2026. <constraints>
  2027. <constraint firstItem="SPe-th-KNs" firstAttribute="centerY" secondItem="fex-Hv-ZGc" secondAttribute="centerY" id="HxJ-B1-JsD"/>
  2028. <constraint firstItem="SPe-th-KNs" firstAttribute="centerX" secondItem="fex-Hv-ZGc" secondAttribute="centerX" id="pY9-fQ-RHO"/>
  2029. </constraints>
  2030. <point key="canvasLocation" x="-289" y="437"/>
  2031. </customView>
  2032. <customView id="drW-Of-60w">
  2033. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  2034. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2035. <subviews>
  2036. <customView translatesAutoresizingMaskIntoConstraints="NO" id="NDZ-Ww-Nd9">
  2037. <rect key="frame" x="117" y="19" width="92" height="20"/>
  2038. <subviews>
  2039. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="tfU-DU-Sdp">
  2040. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  2041. <constraints>
  2042. <constraint firstAttribute="width" constant="20" id="0F1-le-tVb"/>
  2043. <constraint firstAttribute="height" constant="20" id="kQV-hX-zvl"/>
  2044. </constraints>
  2045. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="shp-oF-9fv"/>
  2046. </imageView>
  2047. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="WJQ-m7-bT5">
  2048. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  2049. <constraints>
  2050. <constraint firstAttribute="width" constant="20" id="1sL-Vp-7AC"/>
  2051. <constraint firstAttribute="height" constant="20" id="Ns5-6p-tJj"/>
  2052. </constraints>
  2053. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="LVu-0F-EJ3"/>
  2054. </imageView>
  2055. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="J0m-hR-TUI">
  2056. <rect key="frame" x="72" y="0.0" width="20" height="20"/>
  2057. <constraints>
  2058. <constraint firstAttribute="height" constant="20" id="gZC-DK-agg"/>
  2059. <constraint firstAttribute="width" constant="20" id="qEF-w3-rDK"/>
  2060. </constraints>
  2061. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="h0k-Uo-EqL"/>
  2062. </imageView>
  2063. </subviews>
  2064. <constraints>
  2065. <constraint firstAttribute="bottom" secondItem="tfU-DU-Sdp" secondAttribute="bottom" id="FW3-1T-IMh"/>
  2066. <constraint firstAttribute="trailing" secondItem="J0m-hR-TUI" secondAttribute="trailing" id="LtQ-cN-tzl"/>
  2067. <constraint firstItem="tfU-DU-Sdp" firstAttribute="top" secondItem="NDZ-Ww-Nd9" secondAttribute="top" id="O3K-rt-JFz"/>
  2068. <constraint firstAttribute="bottom" secondItem="WJQ-m7-bT5" secondAttribute="bottom" id="U82-6l-gxL"/>
  2069. <constraint firstItem="WJQ-m7-bT5" firstAttribute="leading" secondItem="tfU-DU-Sdp" secondAttribute="trailing" constant="16" id="fXN-XA-RbX"/>
  2070. <constraint firstItem="J0m-hR-TUI" firstAttribute="top" secondItem="NDZ-Ww-Nd9" secondAttribute="top" id="iN7-ev-Faw"/>
  2071. <constraint firstAttribute="height" constant="20" id="tEs-iJ-VZX"/>
  2072. <constraint firstItem="WJQ-m7-bT5" firstAttribute="top" secondItem="NDZ-Ww-Nd9" secondAttribute="top" id="ugx-lS-RfU"/>
  2073. <constraint firstItem="tfU-DU-Sdp" firstAttribute="leading" secondItem="NDZ-Ww-Nd9" secondAttribute="leading" id="uqG-fh-Yg8"/>
  2074. <constraint firstItem="J0m-hR-TUI" firstAttribute="leading" secondItem="WJQ-m7-bT5" secondAttribute="trailing" constant="16" id="xF3-Q7-huX"/>
  2075. <constraint firstAttribute="bottom" secondItem="J0m-hR-TUI" secondAttribute="bottom" id="xuN-Hk-a5e"/>
  2076. </constraints>
  2077. </customView>
  2078. </subviews>
  2079. <constraints>
  2080. <constraint firstItem="NDZ-Ww-Nd9" firstAttribute="centerX" secondItem="drW-Of-60w" secondAttribute="centerX" id="cDI-3Q-nUR"/>
  2081. <constraint firstItem="NDZ-Ww-Nd9" firstAttribute="centerY" secondItem="drW-Of-60w" secondAttribute="centerY" id="wwX-2k-F09"/>
  2082. </constraints>
  2083. <point key="canvasLocation" x="-289" y="587"/>
  2084. </customView>
  2085. <customView id="HRU-Hk-DQz">
  2086. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  2087. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2088. <subviews>
  2089. <customView translatesAutoresizingMaskIntoConstraints="NO" id="CYb-U1-WWs">
  2090. <rect key="frame" x="135" y="19" width="56" height="20"/>
  2091. <subviews>
  2092. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="43F-AM-fSR">
  2093. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  2094. <constraints>
  2095. <constraint firstAttribute="height" constant="20" id="gju-Nv-R8O"/>
  2096. <constraint firstAttribute="width" constant="20" id="lM7-No-wOl"/>
  2097. </constraints>
  2098. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="O1T-Fm-a4P"/>
  2099. </imageView>
  2100. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="X0k-HW-GgN">
  2101. <rect key="frame" x="36" y="0.0" width="20" height="20"/>
  2102. <constraints>
  2103. <constraint firstAttribute="width" constant="20" id="MCs-bA-yTz"/>
  2104. <constraint firstAttribute="height" constant="20" id="MyN-Iy-RRV"/>
  2105. </constraints>
  2106. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="WindowsPlatformImage" id="BAy-ky-4Kl"/>
  2107. </imageView>
  2108. </subviews>
  2109. <constraints>
  2110. <constraint firstAttribute="bottom" secondItem="43F-AM-fSR" secondAttribute="bottom" id="0kK-HL-Zlq"/>
  2111. <constraint firstAttribute="bottom" secondItem="X0k-HW-GgN" secondAttribute="bottom" id="Dde-nV-bXE"/>
  2112. <constraint firstItem="X0k-HW-GgN" firstAttribute="top" secondItem="CYb-U1-WWs" secondAttribute="top" id="Fl8-Pe-L4X"/>
  2113. <constraint firstItem="X0k-HW-GgN" firstAttribute="leading" secondItem="43F-AM-fSR" secondAttribute="trailing" constant="16" id="LEo-Pd-xPR"/>
  2114. <constraint firstAttribute="height" constant="20" id="NEL-0S-2JP"/>
  2115. <constraint firstItem="43F-AM-fSR" firstAttribute="leading" secondItem="CYb-U1-WWs" secondAttribute="leading" id="Oyh-MM-3DN"/>
  2116. <constraint firstAttribute="trailing" secondItem="X0k-HW-GgN" secondAttribute="trailing" id="sFj-pX-OEQ"/>
  2117. <constraint firstItem="43F-AM-fSR" firstAttribute="top" secondItem="CYb-U1-WWs" secondAttribute="top" id="uGl-kA-TGG"/>
  2118. </constraints>
  2119. </customView>
  2120. </subviews>
  2121. <constraints>
  2122. <constraint firstItem="CYb-U1-WWs" firstAttribute="centerY" secondItem="HRU-Hk-DQz" secondAttribute="centerY" id="MbQ-wt-42L"/>
  2123. <constraint firstItem="CYb-U1-WWs" firstAttribute="centerX" secondItem="HRU-Hk-DQz" secondAttribute="centerX" id="yPf-LD-5zF"/>
  2124. </constraints>
  2125. <point key="canvasLocation" x="-298" y="719"/>
  2126. </customView>
  2127. <customView id="kyQ-Jn-2Ny">
  2128. <rect key="frame" x="0.0" y="0.0" width="326" height="58"/>
  2129. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2130. <subviews>
  2131. <customView translatesAutoresizingMaskIntoConstraints="NO" id="dof-sb-gA5">
  2132. <rect key="frame" x="153" y="19" width="20" height="20"/>
  2133. <subviews>
  2134. <imageView horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="ETf-15-D0b">
  2135. <rect key="frame" x="0.0" y="0.0" width="20" height="20"/>
  2136. <constraints>
  2137. <constraint firstAttribute="width" constant="20" id="6wO-9g-xkb"/>
  2138. <constraint firstAttribute="height" constant="20" id="Cl4-m0-mau"/>
  2139. </constraints>
  2140. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" image="MacOSPlatformImage" id="PYl-Qp-uXU"/>
  2141. </imageView>
  2142. </subviews>
  2143. <constraints>
  2144. <constraint firstItem="ETf-15-D0b" firstAttribute="top" secondItem="dof-sb-gA5" secondAttribute="top" id="Gjp-lU-X3d"/>
  2145. <constraint firstItem="ETf-15-D0b" firstAttribute="leading" secondItem="dof-sb-gA5" secondAttribute="leading" id="I1H-9Y-Hfd"/>
  2146. <constraint firstAttribute="height" constant="20" id="oN9-WR-bsr"/>
  2147. <constraint firstAttribute="bottom" secondItem="ETf-15-D0b" secondAttribute="bottom" id="sZw-ui-8ED"/>
  2148. <constraint firstAttribute="trailing" secondItem="ETf-15-D0b" secondAttribute="trailing" id="zlX-hu-fgR"/>
  2149. </constraints>
  2150. </customView>
  2151. </subviews>
  2152. <constraints>
  2153. <constraint firstItem="dof-sb-gA5" firstAttribute="centerY" secondItem="kyQ-Jn-2Ny" secondAttribute="centerY" id="AMs-nx-8sQ"/>
  2154. <constraint firstItem="dof-sb-gA5" firstAttribute="centerX" secondItem="kyQ-Jn-2Ny" secondAttribute="centerX" id="W5o-qj-aBH"/>
  2155. </constraints>
  2156. <point key="canvasLocation" x="-298" y="829"/>
  2157. </customView>
  2158. </objects>
  2159. <resources>
  2160. <image name="AndroidPlatformImage" width="20" height="20"/>
  2161. <image name="ComparativeBackground" width="299" height="202"/>
  2162. <image name="KMImageNameCompareBG" width="970" height="192"/>
  2163. <image name="KMImageNamePurchaseBuy" width="16" height="16"/>
  2164. <image name="MacOSPlatformImage" width="20" height="20"/>
  2165. <image name="MembershipBenefitsImage" width="20" height="20"/>
  2166. <image name="WindowsPlatformImage" width="20" height="20"/>
  2167. <image name="giftYearAIImage" width="122" height="26"/>
  2168. <image name="iOSPlatformImage" width="20" height="20"/>
  2169. <namedColor name="KMColor_Status_Err">
  2170. <color red="0.98000001907348633" green="0.11800000071525574" blue="0.36500000953674316" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2171. </namedColor>
  2172. </resources>
  2173. </document>