KMProductCompareWC.xib 227 KB

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