ERP_Mobile_Search.storyboard 251 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="19529" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
  3. <device id="ipad9_7" orientation="portrait" layout="fullscreen" appearance="light"/>
  4. <dependencies>
  5. <deployment identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="19519"/>
  7. <capability name="Safe area layout guides" minToolsVersion="9.0"/>
  8. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  9. </dependencies>
  10. <scenes>
  11. <!--ItemSearchViewController-->
  12. <scene sceneID="69Z-e8-hFe">
  13. <objects>
  14. <viewController storyboardIdentifier="ItemSearchViewController" title="ItemSearchViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="OAq-wC-Znd" customClass="ItemSearchViewController" sceneMemberID="viewController">
  15. <view key="view" contentMode="scaleToFill" id="c2b-Th-UhH">
  16. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  17. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  18. <subviews>
  19. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" showsHorizontalScrollIndicator="NO" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="pB2-6j-vPr">
  20. <rect key="frame" x="0.0" y="44" width="768" height="980"/>
  21. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  22. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  23. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="g5x-OR-fUx">
  24. <size key="itemSize" width="175" height="250"/>
  25. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  26. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  27. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  28. </collectionViewFlowLayout>
  29. <cells>
  30. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" restorationIdentifier="CategoryCellNPDLarge" reuseIdentifier="CategoryCellNPDLarge" id="Nwc-li-02U" customClass="CategoryCellNPD">
  31. <rect key="frame" x="0.0" y="0.0" width="369" height="440"/>
  32. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  33. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  34. <rect key="frame" x="0.0" y="0.0" width="369" height="440"/>
  35. <autoresizingMask key="autoresizingMask"/>
  36. <subviews>
  37. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="oHD-9i-59X">
  38. <rect key="frame" x="1" y="1" width="367" height="367"/>
  39. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  40. <constraints>
  41. <constraint firstAttribute="width" constant="367" id="YNT-4f-YkG"/>
  42. <constraint firstAttribute="height" constant="367" id="zfr-mA-399"/>
  43. </constraints>
  44. </imageView>
  45. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="EAm-kB-1Tm">
  46. <rect key="frame" x="8" y="328" width="32" height="32"/>
  47. <constraints>
  48. <constraint firstAttribute="height" constant="32" id="KSn-A9-rEs"/>
  49. <constraint firstAttribute="width" constant="32" id="bic-g9-gOB"/>
  50. </constraints>
  51. </imageView>
  52. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qbF-hq-23d">
  53. <rect key="frame" x="0.0" y="407" width="369" height="21"/>
  54. <constraints>
  55. <constraint firstAttribute="height" constant="21" id="Cy0-vW-JqS"/>
  56. </constraints>
  57. <fontDescription key="fontDescription" type="boldSystem" pointSize="20"/>
  58. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  59. <nil key="highlightedColor"/>
  60. </label>
  61. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OGh-Rh-AZy">
  62. <rect key="frame" x="0.0" y="378" width="369" height="21"/>
  63. <constraints>
  64. <constraint firstAttribute="height" constant="21" id="qbK-Yu-gsV"/>
  65. </constraints>
  66. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  67. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  68. <nil key="highlightedColor"/>
  69. </label>
  70. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="auT-RU-RIz">
  71. <rect key="frame" x="337" y="8" width="24" height="24"/>
  72. <constraints>
  73. <constraint firstAttribute="width" constant="24" id="Lmi-8f-MBL"/>
  74. <constraint firstAttribute="height" constant="24" id="pla-EJ-FhR"/>
  75. </constraints>
  76. </imageView>
  77. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="KsT-jp-Dtc" userLabel="mark_order">
  78. <rect key="frame" x="329" y="328" width="32" height="32"/>
  79. <constraints>
  80. <constraint firstAttribute="height" constant="32" id="MMB-AL-vuh"/>
  81. <constraint firstAttribute="width" constant="32" id="cC6-0H-aCz"/>
  82. </constraints>
  83. </imageView>
  84. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="uGk-7Z-jtX" userLabel="mark_wish">
  85. <rect key="frame" x="293" y="328" width="32" height="32"/>
  86. <constraints>
  87. <constraint firstAttribute="width" constant="32" id="66h-zO-YpU"/>
  88. <constraint firstAttribute="height" constant="32" id="kbI-D2-4up"/>
  89. </constraints>
  90. </imageView>
  91. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="1FB-ZK-qvG" userLabel="mark_wish">
  92. <rect key="frame" x="8" y="8" width="32" height="32"/>
  93. <constraints>
  94. <constraint firstAttribute="height" constant="32" id="KdG-pr-olF"/>
  95. <constraint firstAttribute="width" constant="32" id="Mxn-q0-9tW"/>
  96. </constraints>
  97. </imageView>
  98. </subviews>
  99. </view>
  100. <color key="backgroundColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  101. <constraints>
  102. <constraint firstItem="EAm-kB-1Tm" firstAttribute="bottom" secondItem="oHD-9i-59X" secondAttribute="bottom" constant="-8" id="0B3-dl-cni"/>
  103. <constraint firstAttribute="trailing" secondItem="oHD-9i-59X" secondAttribute="trailing" constant="1" id="Dki-Hw-Alf"/>
  104. <constraint firstItem="1FB-ZK-qvG" firstAttribute="top" secondItem="Nwc-li-02U" secondAttribute="top" constant="8" id="Fft-NO-ajZ"/>
  105. <constraint firstAttribute="trailing" secondItem="KsT-jp-Dtc" secondAttribute="trailing" constant="8" id="JWZ-Q5-Vvu"/>
  106. <constraint firstItem="KsT-jp-Dtc" firstAttribute="leading" secondItem="uGk-7Z-jtX" secondAttribute="trailing" constant="4" id="RVL-He-amw"/>
  107. <constraint firstItem="EAm-kB-1Tm" firstAttribute="leading" secondItem="Nwc-li-02U" secondAttribute="leading" constant="8" id="RpN-IT-hqI"/>
  108. <constraint firstItem="auT-RU-RIz" firstAttribute="top" secondItem="Nwc-li-02U" secondAttribute="top" constant="8" id="WEA-dl-25V"/>
  109. <constraint firstItem="KsT-jp-Dtc" firstAttribute="bottom" secondItem="uGk-7Z-jtX" secondAttribute="bottom" id="Ymm-A6-zPk"/>
  110. <constraint firstAttribute="trailing" secondItem="auT-RU-RIz" secondAttribute="trailing" constant="8" id="fot-y7-1I8"/>
  111. <constraint firstItem="oHD-9i-59X" firstAttribute="leading" secondItem="Nwc-li-02U" secondAttribute="leading" constant="1" id="i97-Dp-AGd"/>
  112. <constraint firstAttribute="trailing" secondItem="OGh-Rh-AZy" secondAttribute="trailing" id="iil-ZG-4su"/>
  113. <constraint firstAttribute="trailing" secondItem="qbF-hq-23d" secondAttribute="trailing" id="m9w-HW-ZKN"/>
  114. <constraint firstItem="KsT-jp-Dtc" firstAttribute="bottom" secondItem="oHD-9i-59X" secondAttribute="bottom" constant="-8" id="mq4-OD-z2a"/>
  115. <constraint firstItem="1FB-ZK-qvG" firstAttribute="leading" secondItem="Nwc-li-02U" secondAttribute="leading" constant="8" id="q1d-8a-sAg"/>
  116. <constraint firstItem="qbF-hq-23d" firstAttribute="top" secondItem="OGh-Rh-AZy" secondAttribute="bottom" constant="8" id="tcc-bX-bdo"/>
  117. <constraint firstItem="qbF-hq-23d" firstAttribute="leading" secondItem="Nwc-li-02U" secondAttribute="leading" id="uGT-FW-vbq"/>
  118. <constraint firstItem="oHD-9i-59X" firstAttribute="top" secondItem="Nwc-li-02U" secondAttribute="top" constant="1" id="uae-Yu-YZM"/>
  119. <constraint firstItem="OGh-Rh-AZy" firstAttribute="leading" secondItem="Nwc-li-02U" secondAttribute="leading" id="uhj-gD-GHc"/>
  120. <constraint firstAttribute="bottom" secondItem="qbF-hq-23d" secondAttribute="bottom" constant="12" id="zhX-C7-cms"/>
  121. </constraints>
  122. <size key="customSize" width="369" height="440"/>
  123. <connections>
  124. <outlet property="cellImageView" destination="oHD-9i-59X" id="kGU-FU-fiI"/>
  125. <outlet property="checkImageView" destination="auT-RU-RIz" id="za0-7O-m3H"/>
  126. <outlet property="mark_closeout" destination="1FB-ZK-qvG" id="fXd-oC-ED9"/>
  127. <outlet property="mark_moreColor" destination="EAm-kB-1Tm" id="gk3-Jq-ahl"/>
  128. <outlet property="mark_order" destination="KsT-jp-Dtc" id="FUp-xY-c8g"/>
  129. <outlet property="mark_wish" destination="uGk-7Z-jtX" id="Mwz-q8-r2D"/>
  130. <outlet property="modelNoLabel" destination="qbF-hq-23d" id="0vN-jP-umC"/>
  131. <outlet property="nameLabel" destination="OGh-Rh-AZy" id="Vpd-SD-hCt"/>
  132. </connections>
  133. </collectionViewCell>
  134. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="CategoryCellNPD" id="YRD-3R-JTD" customClass="CategoryCellNPD">
  135. <rect key="frame" x="588" y="94.5" width="180" height="251"/>
  136. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  137. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  138. <rect key="frame" x="0.0" y="0.0" width="180" height="251"/>
  139. <autoresizingMask key="autoresizingMask"/>
  140. <subviews>
  141. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3ql-Bh-J3X">
  142. <rect key="frame" x="0.0" y="218" width="180" height="21"/>
  143. <constraints>
  144. <constraint firstAttribute="height" constant="21" id="OIY-Ij-9dK"/>
  145. </constraints>
  146. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  147. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  148. <nil key="highlightedColor"/>
  149. </label>
  150. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iKv-S0-0JB">
  151. <rect key="frame" x="0.0" y="189" width="180" height="21"/>
  152. <constraints>
  153. <constraint firstAttribute="height" constant="21" id="Td5-dL-xGA"/>
  154. </constraints>
  155. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  156. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  157. <nil key="highlightedColor"/>
  158. </label>
  159. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="R81-Mp-EQy">
  160. <rect key="frame" x="1" y="1" width="178" height="178"/>
  161. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  162. <constraints>
  163. <constraint firstAttribute="height" constant="178" id="IdQ-Za-4dG"/>
  164. <constraint firstAttribute="width" constant="178" id="VnB-fJ-d4I"/>
  165. </constraints>
  166. </imageView>
  167. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="7jt-Xl-6gg">
  168. <rect key="frame" x="8" y="155" width="16" height="16"/>
  169. <constraints>
  170. <constraint firstAttribute="width" constant="16" id="9zU-6a-rXu"/>
  171. <constraint firstAttribute="height" constant="16" id="Zsb-R3-qrs"/>
  172. </constraints>
  173. </imageView>
  174. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="VMw-Hq-pr9">
  175. <rect key="frame" x="148" y="8" width="24" height="24"/>
  176. <constraints>
  177. <constraint firstAttribute="width" constant="24" id="QmJ-Zf-eYa"/>
  178. <constraint firstAttribute="height" constant="24" id="txz-8r-VYE"/>
  179. </constraints>
  180. </imageView>
  181. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="e0q-n3-YHQ" userLabel="mark_wish">
  182. <rect key="frame" x="8" y="8" width="16" height="16"/>
  183. <constraints>
  184. <constraint firstAttribute="width" constant="16" id="7Vh-Ds-4iV"/>
  185. <constraint firstAttribute="height" constant="16" id="SMU-Xi-2zL"/>
  186. </constraints>
  187. </imageView>
  188. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="zYG-bm-pbp" userLabel="mark_order">
  189. <rect key="frame" x="156" y="155" width="16" height="16"/>
  190. <constraints>
  191. <constraint firstAttribute="width" constant="16" id="DkX-mJ-b3n"/>
  192. <constraint firstAttribute="height" constant="16" id="gVl-HH-f52"/>
  193. </constraints>
  194. </imageView>
  195. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="J0C-Zz-agO" userLabel="mark_wish">
  196. <rect key="frame" x="136" y="155" width="16" height="16"/>
  197. <constraints>
  198. <constraint firstAttribute="height" constant="16" id="BI9-d3-EGo"/>
  199. <constraint firstAttribute="width" constant="16" id="Ry8-lH-JaF"/>
  200. </constraints>
  201. </imageView>
  202. </subviews>
  203. </view>
  204. <color key="backgroundColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  205. <constraints>
  206. <constraint firstItem="zYG-bm-pbp" firstAttribute="bottom" secondItem="J0C-Zz-agO" secondAttribute="bottom" id="09a-Us-1jq"/>
  207. <constraint firstItem="7jt-Xl-6gg" firstAttribute="bottom" secondItem="R81-Mp-EQy" secondAttribute="bottom" constant="-8" id="5a6-jk-ql5"/>
  208. <constraint firstItem="R81-Mp-EQy" firstAttribute="top" secondItem="YRD-3R-JTD" secondAttribute="top" constant="1" id="6ri-eU-AWt"/>
  209. <constraint firstItem="3ql-Bh-J3X" firstAttribute="top" secondItem="iKv-S0-0JB" secondAttribute="bottom" constant="8" id="CA7-Xh-bIf"/>
  210. <constraint firstAttribute="trailing" secondItem="R81-Mp-EQy" secondAttribute="trailing" constant="1" id="FAf-f8-YcP"/>
  211. <constraint firstItem="zYG-bm-pbp" firstAttribute="leading" secondItem="J0C-Zz-agO" secondAttribute="trailing" constant="4" id="FBu-AH-30R"/>
  212. <constraint firstItem="3ql-Bh-J3X" firstAttribute="leading" secondItem="YRD-3R-JTD" secondAttribute="leading" id="K2R-Z4-G1s"/>
  213. <constraint firstAttribute="bottom" secondItem="3ql-Bh-J3X" secondAttribute="bottom" constant="12" id="L4F-aI-bkm"/>
  214. <constraint firstAttribute="trailing" secondItem="VMw-Hq-pr9" secondAttribute="trailing" constant="8" id="LuU-VV-C7u"/>
  215. <constraint firstItem="e0q-n3-YHQ" firstAttribute="top" secondItem="YRD-3R-JTD" secondAttribute="top" constant="8" id="N3P-4F-WGJ"/>
  216. <constraint firstItem="VMw-Hq-pr9" firstAttribute="top" secondItem="YRD-3R-JTD" secondAttribute="top" constant="8" id="Ujg-U5-ets"/>
  217. <constraint firstItem="iKv-S0-0JB" firstAttribute="leading" secondItem="YRD-3R-JTD" secondAttribute="leading" id="c4J-K4-Kgc"/>
  218. <constraint firstItem="7jt-Xl-6gg" firstAttribute="leading" secondItem="YRD-3R-JTD" secondAttribute="leading" constant="8" id="nEa-zQ-chL"/>
  219. <constraint firstItem="zYG-bm-pbp" firstAttribute="bottom" secondItem="R81-Mp-EQy" secondAttribute="bottom" constant="-8" id="nPo-3L-3Pt"/>
  220. <constraint firstItem="R81-Mp-EQy" firstAttribute="leading" secondItem="YRD-3R-JTD" secondAttribute="leading" constant="1" id="qJ2-op-PkC"/>
  221. <constraint firstItem="e0q-n3-YHQ" firstAttribute="leading" secondItem="YRD-3R-JTD" secondAttribute="leading" constant="8" id="vY9-TG-hPi"/>
  222. <constraint firstAttribute="trailing" secondItem="3ql-Bh-J3X" secondAttribute="trailing" id="wDO-YQ-O2M"/>
  223. <constraint firstAttribute="trailing" secondItem="zYG-bm-pbp" secondAttribute="trailing" constant="8" id="x6W-oO-vZr"/>
  224. <constraint firstAttribute="trailing" secondItem="iKv-S0-0JB" secondAttribute="trailing" id="xlr-mT-NWp"/>
  225. </constraints>
  226. <size key="customSize" width="180" height="251"/>
  227. <connections>
  228. <outlet property="cellImageView" destination="R81-Mp-EQy" id="NMj-A0-NSN"/>
  229. <outlet property="checkImageView" destination="VMw-Hq-pr9" id="Ra7-b2-NTU"/>
  230. <outlet property="mark_closeout" destination="e0q-n3-YHQ" id="0gg-Tr-HVh"/>
  231. <outlet property="mark_moreColor" destination="7jt-Xl-6gg" id="z51-AO-hL9"/>
  232. <outlet property="mark_order" destination="zYG-bm-pbp" id="lIH-jU-QWU"/>
  233. <outlet property="mark_wish" destination="J0C-Zz-agO" id="pD2-Zo-8eT"/>
  234. <outlet property="modelNoLabel" destination="3ql-Bh-J3X" id="Lur-wD-w7i"/>
  235. <outlet property="nameLabel" destination="iKv-S0-0JB" id="kPK-gL-FXs"/>
  236. </connections>
  237. </collectionViewCell>
  238. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" restorationIdentifier="CategoryCellNPDList" reuseIdentifier="CategoryCellNPDList" id="qW7-Ib-TfI" customClass="CategoryCellNPD">
  239. <rect key="frame" x="0.0" y="440" width="768" height="120"/>
  240. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  241. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  242. <rect key="frame" x="0.0" y="0.0" width="768" height="120"/>
  243. <autoresizingMask key="autoresizingMask"/>
  244. <subviews>
  245. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="NCs-wJ-GSa">
  246. <rect key="frame" x="10" y="10" width="100" height="100"/>
  247. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  248. <constraints>
  249. <constraint firstAttribute="height" constant="100" id="OH4-QN-pBv"/>
  250. <constraint firstAttribute="width" constant="100" id="jg6-iH-bbC"/>
  251. </constraints>
  252. </imageView>
  253. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Vz9-iH-oM9">
  254. <rect key="frame" x="118" y="89" width="512" height="21"/>
  255. <constraints>
  256. <constraint firstAttribute="height" constant="21" id="9FL-St-qRN"/>
  257. </constraints>
  258. <fontDescription key="fontDescription" type="boldSystem" pointSize="20"/>
  259. <nil key="highlightedColor"/>
  260. </label>
  261. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dtC-6Z-vf4">
  262. <rect key="frame" x="118" y="10" width="512" height="71"/>
  263. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  264. <nil key="highlightedColor"/>
  265. </label>
  266. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="3bH-mx-k9k">
  267. <rect key="frame" x="729" y="10" width="24" height="24"/>
  268. <constraints>
  269. <constraint firstAttribute="width" constant="24" id="Klh-aE-XjL"/>
  270. <constraint firstAttribute="height" constant="24" id="oyT-UW-2zs"/>
  271. </constraints>
  272. </imageView>
  273. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="qUr-8D-HJ5" userLabel="mark_order">
  274. <rect key="frame" x="729" y="86" width="24" height="24"/>
  275. <constraints>
  276. <constraint firstAttribute="width" constant="24" id="8cf-jR-Twe"/>
  277. <constraint firstAttribute="height" constant="24" id="jHV-H2-Oo4"/>
  278. </constraints>
  279. </imageView>
  280. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="coJ-3F-UdB" userLabel="mark_wish">
  281. <rect key="frame" x="701" y="86" width="24" height="24"/>
  282. <constraints>
  283. <constraint firstAttribute="width" constant="24" id="C9a-FC-YE5"/>
  284. <constraint firstAttribute="height" constant="24" id="M0F-N5-THL"/>
  285. </constraints>
  286. </imageView>
  287. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="tMG-9W-1tH" userLabel="mark_wish">
  288. <rect key="frame" x="673" y="86" width="24" height="24"/>
  289. <constraints>
  290. <constraint firstAttribute="height" constant="24" id="Hxp-be-m14"/>
  291. <constraint firstAttribute="width" constant="24" id="lIw-x9-5j3"/>
  292. </constraints>
  293. </imageView>
  294. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="cDS-4Q-8PX">
  295. <rect key="frame" x="645" y="86" width="24" height="24"/>
  296. <constraints>
  297. <constraint firstAttribute="width" constant="24" id="oo4-ga-XYp"/>
  298. <constraint firstAttribute="height" constant="24" id="tIs-zS-e1a"/>
  299. </constraints>
  300. </imageView>
  301. </subviews>
  302. </view>
  303. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  304. <constraints>
  305. <constraint firstItem="NCs-wJ-GSa" firstAttribute="centerY" secondItem="qW7-Ib-TfI" secondAttribute="centerY" id="2cg-Ul-d3k"/>
  306. <constraint firstItem="tMG-9W-1tH" firstAttribute="leading" secondItem="cDS-4Q-8PX" secondAttribute="trailing" constant="4" id="3xJ-V9-soD"/>
  307. <constraint firstItem="Vz9-iH-oM9" firstAttribute="bottom" secondItem="NCs-wJ-GSa" secondAttribute="bottom" id="54y-7C-woa"/>
  308. <constraint firstItem="cDS-4Q-8PX" firstAttribute="leading" secondItem="Vz9-iH-oM9" secondAttribute="trailing" constant="15" id="5dl-XQ-bBJ"/>
  309. <constraint firstItem="dtC-6Z-vf4" firstAttribute="top" secondItem="NCs-wJ-GSa" secondAttribute="top" id="6Kv-gR-3Ev"/>
  310. <constraint firstItem="Vz9-iH-oM9" firstAttribute="top" secondItem="dtC-6Z-vf4" secondAttribute="bottom" constant="8" id="CZ9-5B-xdB"/>
  311. <constraint firstItem="Vz9-iH-oM9" firstAttribute="leading" secondItem="NCs-wJ-GSa" secondAttribute="trailing" constant="8" id="Nsp-I8-k2P"/>
  312. <constraint firstAttribute="trailing" secondItem="qUr-8D-HJ5" secondAttribute="trailing" constant="15" id="Vd8-Qg-27J"/>
  313. <constraint firstItem="dtC-6Z-vf4" firstAttribute="leading" secondItem="NCs-wJ-GSa" secondAttribute="trailing" constant="8" id="WRO-xx-LHA"/>
  314. <constraint firstItem="qUr-8D-HJ5" firstAttribute="leading" secondItem="coJ-3F-UdB" secondAttribute="trailing" constant="4" id="a2H-Qf-gst"/>
  315. <constraint firstItem="Vz9-iH-oM9" firstAttribute="trailing" secondItem="dtC-6Z-vf4" secondAttribute="trailing" id="hpF-5s-aBh"/>
  316. <constraint firstAttribute="trailing" secondItem="3bH-mx-k9k" secondAttribute="trailing" constant="15" id="iHh-Ee-xoc"/>
  317. <constraint firstItem="3bH-mx-k9k" firstAttribute="top" secondItem="NCs-wJ-GSa" secondAttribute="top" id="jlr-Mr-B3U"/>
  318. <constraint firstItem="NCs-wJ-GSa" firstAttribute="leading" secondItem="qW7-Ib-TfI" secondAttribute="leading" constant="10" id="kdA-k6-9Mj"/>
  319. <constraint firstItem="cDS-4Q-8PX" firstAttribute="bottom" secondItem="NCs-wJ-GSa" secondAttribute="bottom" id="lNM-ct-oT2"/>
  320. <constraint firstItem="coJ-3F-UdB" firstAttribute="bottom" secondItem="NCs-wJ-GSa" secondAttribute="bottom" id="mDE-pd-gSe"/>
  321. <constraint firstItem="tMG-9W-1tH" firstAttribute="bottom" secondItem="NCs-wJ-GSa" secondAttribute="bottom" id="oFZ-LW-dO0"/>
  322. <constraint firstItem="coJ-3F-UdB" firstAttribute="leading" secondItem="tMG-9W-1tH" secondAttribute="trailing" constant="4" id="pDV-q0-yBq"/>
  323. <constraint firstItem="qUr-8D-HJ5" firstAttribute="bottom" secondItem="NCs-wJ-GSa" secondAttribute="bottom" id="xZi-C9-zUK"/>
  324. </constraints>
  325. <size key="customSize" width="768" height="120"/>
  326. <connections>
  327. <outlet property="cellImageView" destination="NCs-wJ-GSa" id="bZT-R6-U0d"/>
  328. <outlet property="checkImageView" destination="3bH-mx-k9k" id="dWU-zf-Han"/>
  329. <outlet property="mark_closeout" destination="tMG-9W-1tH" id="eqd-pZ-TpN"/>
  330. <outlet property="mark_moreColor" destination="cDS-4Q-8PX" id="q5K-D2-irm"/>
  331. <outlet property="mark_order" destination="qUr-8D-HJ5" id="VYi-YW-NjA"/>
  332. <outlet property="mark_wish" destination="coJ-3F-UdB" id="rwA-JC-Xmf"/>
  333. <outlet property="modelNoLabel" destination="Vz9-iH-oM9" id="aoL-No-7b2"/>
  334. <outlet property="nameLabel" destination="dtC-6Z-vf4" id="rAF-Qx-hG3"/>
  335. </connections>
  336. </collectionViewCell>
  337. </cells>
  338. <connections>
  339. <outlet property="dataSource" destination="OAq-wC-Znd" id="c1x-nK-Mad"/>
  340. <outlet property="delegate" destination="OAq-wC-Znd" id="Cof-lF-9dZ"/>
  341. </connections>
  342. </collectionView>
  343. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="liz-4V-QlK">
  344. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  345. <subviews>
  346. <button opaque="NO" tag="3" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4Dr-50-C28" userLabel="Display_large">
  347. <rect key="frame" x="669" y="6" width="32" height="32"/>
  348. <constraints>
  349. <constraint firstAttribute="height" constant="32" id="Cbt-Q4-Rxa"/>
  350. <constraint firstAttribute="width" constant="32" id="cts-nG-e2R"/>
  351. </constraints>
  352. <state key="normal" image="laytou_large">
  353. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  354. </state>
  355. <connections>
  356. <action selector="onChangeDisplay:" destination="OAq-wC-Znd" eventType="touchUpInside" id="UPh-Mx-gxo"/>
  357. </connections>
  358. </button>
  359. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7rl-VN-VwT">
  360. <rect key="frame" x="713" y="7" width="45" height="30"/>
  361. <constraints>
  362. <constraint firstAttribute="width" constant="45" id="awh-3z-JNv"/>
  363. <constraint firstAttribute="height" constant="30" id="uda-I3-YA3"/>
  364. </constraints>
  365. <state key="normal" title="Select"/>
  366. <connections>
  367. <action selector="onSelectClick:" destination="OAq-wC-Znd" eventType="touchUpInside" id="oTx-l9-aR2"/>
  368. </connections>
  369. </button>
  370. <button opaque="NO" tag="4" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ACS-Rq-wWj" userLabel="Display_list">
  371. <rect key="frame" x="581" y="6" width="32" height="32"/>
  372. <constraints>
  373. <constraint firstAttribute="width" constant="32" id="jwk-id-ggh"/>
  374. <constraint firstAttribute="height" constant="32" id="rw7-pF-Obq"/>
  375. </constraints>
  376. <state key="normal" title="Button" image="layout_list"/>
  377. <connections>
  378. <action selector="onChangeDisplay:" destination="OAq-wC-Znd" eventType="touchUpInside" id="qKn-b8-lV9"/>
  379. </connections>
  380. </button>
  381. <button opaque="NO" tag="2" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="LJx-Kd-d5k" userLabel="Display_small">
  382. <rect key="frame" x="625" y="6" width="32" height="32"/>
  383. <constraints>
  384. <constraint firstAttribute="height" constant="32" id="F9v-a8-Nij"/>
  385. <constraint firstAttribute="width" constant="32" id="idQ-iO-0mZ"/>
  386. </constraints>
  387. <state key="normal" image="layout_small">
  388. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  389. </state>
  390. <connections>
  391. <action selector="onChangeDisplay:" destination="OAq-wC-Znd" eventType="touchUpInside" id="IMH-nw-vuL"/>
  392. </connections>
  393. </button>
  394. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0 Items" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ut9-y4-tAP">
  395. <rect key="frame" x="15" y="11.5" width="180" height="21"/>
  396. <constraints>
  397. <constraint firstAttribute="width" constant="180" id="4RW-YO-WMw"/>
  398. <constraint firstAttribute="height" constant="21" id="R6W-E6-hpr"/>
  399. </constraints>
  400. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  401. <color key="textColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  402. <nil key="highlightedColor"/>
  403. </label>
  404. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MNy-Uo-r2r">
  405. <rect key="frame" x="537" y="6" width="32" height="32"/>
  406. <constraints>
  407. <constraint firstAttribute="width" constant="32" id="4eK-ip-LqP"/>
  408. <constraint firstAttribute="height" constant="32" id="UUi-t3-BPc"/>
  409. </constraints>
  410. <state key="normal" backgroundImage="filter"/>
  411. <connections>
  412. <action selector="onFilterClicked:" destination="OAq-wC-Znd" eventType="touchUpInside" id="Zii-r5-qx3"/>
  413. </connections>
  414. </button>
  415. </subviews>
  416. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  417. <constraints>
  418. <constraint firstItem="4Dr-50-C28" firstAttribute="leading" secondItem="LJx-Kd-d5k" secondAttribute="trailing" constant="12" id="4Ys-pW-74D"/>
  419. <constraint firstItem="4Dr-50-C28" firstAttribute="centerY" secondItem="liz-4V-QlK" secondAttribute="centerY" id="AF3-ZM-Iud"/>
  420. <constraint firstItem="7rl-VN-VwT" firstAttribute="centerY" secondItem="liz-4V-QlK" secondAttribute="centerY" id="BiZ-8g-sRa"/>
  421. <constraint firstItem="MNy-Uo-r2r" firstAttribute="centerY" secondItem="liz-4V-QlK" secondAttribute="centerY" id="KZC-at-8cX"/>
  422. <constraint firstItem="ACS-Rq-wWj" firstAttribute="leading" secondItem="MNy-Uo-r2r" secondAttribute="trailing" constant="12" id="NPS-f0-6BS"/>
  423. <constraint firstItem="ACS-Rq-wWj" firstAttribute="centerY" secondItem="liz-4V-QlK" secondAttribute="centerY" id="Tog-na-ZLq"/>
  424. <constraint firstItem="7rl-VN-VwT" firstAttribute="leading" secondItem="4Dr-50-C28" secondAttribute="trailing" constant="12" id="XzJ-9S-Xjo"/>
  425. <constraint firstAttribute="height" constant="44" id="bXJ-LW-jKj"/>
  426. <constraint firstItem="Ut9-y4-tAP" firstAttribute="centerY" secondItem="liz-4V-QlK" secondAttribute="centerY" id="jMy-Xv-hH3"/>
  427. <constraint firstItem="LJx-Kd-d5k" firstAttribute="leading" secondItem="ACS-Rq-wWj" secondAttribute="trailing" constant="12" id="kFD-XI-Icf"/>
  428. <constraint firstAttribute="trailing" secondItem="7rl-VN-VwT" secondAttribute="trailing" constant="10" id="ui6-6B-ChP"/>
  429. <constraint firstItem="LJx-Kd-d5k" firstAttribute="centerY" secondItem="liz-4V-QlK" secondAttribute="centerY" id="wZr-Eo-T8b"/>
  430. <constraint firstItem="Ut9-y4-tAP" firstAttribute="leading" secondItem="liz-4V-QlK" secondAttribute="leading" constant="15" id="z6D-bN-ZWG"/>
  431. </constraints>
  432. </view>
  433. <toolbar hidden="YES" opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cIx-ve-3Su">
  434. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  435. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  436. <items>
  437. <barButtonItem title="Add To Wish List" id="pyH-dB-NnA">
  438. <connections>
  439. <action selector="onAddWishlistClick:" destination="OAq-wC-Znd" id="fjU-iO-3wp"/>
  440. </connections>
  441. </barButtonItem>
  442. <barButtonItem style="plain" systemItem="flexibleSpace" id="ALE-5K-jeu"/>
  443. <barButtonItem title="Add to Cart" id="wio-8j-q9t">
  444. <connections>
  445. <action selector="onAddCartClick:" destination="OAq-wC-Znd" id="Z6O-jZ-u7S"/>
  446. </connections>
  447. </barButtonItem>
  448. <barButtonItem style="plain" systemItem="flexibleSpace" id="Mxj-Da-gsj"/>
  449. <barButtonItem title="Add to Portfolio" id="nJQ-di-ijs">
  450. <connections>
  451. <action selector="onAddPortfolioClick:" destination="OAq-wC-Znd" id="sac-KK-SnW"/>
  452. </connections>
  453. </barButtonItem>
  454. <barButtonItem style="plain" systemItem="flexibleSpace" id="Hty-LR-nRR"/>
  455. <barButtonItem image="check_1_24" width="18" id="F3S-T0-Ogh">
  456. <connections>
  457. <action selector="addAllCheckBtnClick:" destination="OAq-wC-Znd" id="gRd-8S-L0o"/>
  458. </connections>
  459. </barButtonItem>
  460. <barButtonItem title="Add All" id="388-Ug-Mxj">
  461. <connections>
  462. <action selector="addAllBtnClick:" destination="OAq-wC-Znd" id="hlx-RG-UEq"/>
  463. </connections>
  464. </barButtonItem>
  465. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="aTe-uN-Ccw"/>
  466. <barButtonItem title="Select" id="Ynd-xH-2UO">
  467. <connections>
  468. <action selector="onSelectAllClick:" destination="OAq-wC-Znd" id="2NM-jF-lCK"/>
  469. </connections>
  470. </barButtonItem>
  471. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="b92-bJ-r0p"/>
  472. <barButtonItem title="Cancel" id="ltW-oi-wN6" userLabel="Cancel">
  473. <connections>
  474. <action selector="onCancelSelectClick:" destination="OAq-wC-Znd" id="axH-uI-WAq"/>
  475. </connections>
  476. </barButtonItem>
  477. </items>
  478. </toolbar>
  479. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9wz-xR-dz8">
  480. <rect key="frame" x="263.5" y="489.5" width="241.5" height="45.5"/>
  481. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  482. <color key="textColor" red="0.33333333329999998" green="0.33333333329999998" blue="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  483. <nil key="highlightedColor"/>
  484. </label>
  485. <activityIndicatorView hidden="YES" opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="G9n-cr-BZw">
  486. <rect key="frame" x="365.5" y="493.5" width="37" height="37"/>
  487. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  488. </activityIndicatorView>
  489. </subviews>
  490. <viewLayoutGuide key="safeArea" id="Y97-Y9-Uum"/>
  491. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  492. <constraints>
  493. <constraint firstItem="liz-4V-QlK" firstAttribute="top" secondItem="c2b-Th-UhH" secondAttribute="top" id="MeY-WH-hvE"/>
  494. <constraint firstItem="G9n-cr-BZw" firstAttribute="centerX" secondItem="Y97-Y9-Uum" secondAttribute="centerX" id="TAf-zl-QWd"/>
  495. <constraint firstItem="G9n-cr-BZw" firstAttribute="centerY" secondItem="c2b-Th-UhH" secondAttribute="centerY" id="fcs-c3-ZwA"/>
  496. <constraint firstItem="9wz-xR-dz8" firstAttribute="centerX" secondItem="Y97-Y9-Uum" secondAttribute="centerX" id="mXI-33-ehy"/>
  497. <constraint firstItem="9wz-xR-dz8" firstAttribute="centerY" secondItem="c2b-Th-UhH" secondAttribute="centerY" id="qNY-54-Ile"/>
  498. <constraint firstItem="liz-4V-QlK" firstAttribute="trailing" secondItem="Y97-Y9-Uum" secondAttribute="trailing" id="tQa-FA-GvW"/>
  499. <constraint firstItem="liz-4V-QlK" firstAttribute="leading" secondItem="Y97-Y9-Uum" secondAttribute="leading" id="thr-1H-24J"/>
  500. </constraints>
  501. </view>
  502. <connections>
  503. <outlet property="addAllBtn" destination="388-Ug-Mxj" id="SsU-35-N0e"/>
  504. <outlet property="addAllCheckBtn" destination="F3S-T0-Ogh" id="iax-UI-LQn"/>
  505. <outlet property="addCartBtn" destination="wio-8j-q9t" id="73T-e1-tEG"/>
  506. <outlet property="addPortfolioBtn" destination="nJQ-di-ijs" id="c9h-RX-QU1"/>
  507. <outlet property="addWishBtn" destination="pyH-dB-NnA" id="fQE-ZO-tgS"/>
  508. <outlet property="btn_select" destination="7rl-VN-VwT" id="GlM-tf-iGh"/>
  509. <outlet property="collectionview" destination="pB2-6j-vPr" id="jR6-Oc-ZVp"/>
  510. <outlet property="headerView" destination="liz-4V-QlK" id="AST-Jd-rTG"/>
  511. <outlet property="labelTotal" destination="Ut9-y4-tAP" id="tES-tb-vDJ"/>
  512. <outlet property="label_net_err" destination="9wz-xR-dz8" id="UIc-kR-Nmp"/>
  513. <outlet property="mum" destination="G9n-cr-BZw" id="GDd-2v-GJV"/>
  514. <outlet property="selectToolbar" destination="cIx-ve-3Su" id="IUz-Rh-1aj"/>
  515. <outlet property="selectallBtn" destination="Ynd-xH-2UO" id="LsW-0n-UJO"/>
  516. </connections>
  517. </viewController>
  518. <placeholder placeholderIdentifier="IBFirstResponder" id="i48-T0-tEl" userLabel="First Responder" sceneMemberID="firstResponder"/>
  519. </objects>
  520. <point key="canvasLocation" x="-1849.21875" y="438.8671875"/>
  521. </scene>
  522. <!--SearchViewController-->
  523. <scene sceneID="5aV-he-25V">
  524. <objects>
  525. <viewController storyboardIdentifier="SearchViewController" title="SearchViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="7Gd-Dn-BSm" customClass="SearchViewController" sceneMemberID="viewController">
  526. <view key="view" contentMode="scaleToFill" id="t7y-zK-XJN">
  527. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  528. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  529. <subviews>
  530. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" showsHorizontalScrollIndicator="NO" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="FPu-v5-Zte">
  531. <rect key="frame" x="0.0" y="44" width="768" height="980"/>
  532. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  533. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  534. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="7sA-j6-mUh">
  535. <size key="itemSize" width="175" height="250"/>
  536. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  537. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  538. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  539. </collectionViewFlowLayout>
  540. <cells>
  541. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" restorationIdentifier="CategoryCellNPDLarge" reuseIdentifier="CategoryCellNPDLarge" id="aCf-RF-cqy" customClass="CategoryCellNPD">
  542. <rect key="frame" x="0.0" y="0.0" width="369" height="440"/>
  543. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  544. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  545. <rect key="frame" x="0.0" y="0.0" width="369" height="440"/>
  546. <autoresizingMask key="autoresizingMask"/>
  547. <subviews>
  548. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="mQY-ea-Bdd">
  549. <rect key="frame" x="1" y="1" width="367" height="367"/>
  550. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  551. <constraints>
  552. <constraint firstAttribute="width" secondItem="mQY-ea-Bdd" secondAttribute="height" multiplier="1:1" id="th7-2q-TdG"/>
  553. </constraints>
  554. </imageView>
  555. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="lDC-yE-RrV">
  556. <rect key="frame" x="8" y="328" width="32" height="32"/>
  557. <constraints>
  558. <constraint firstAttribute="height" constant="32" id="36X-12-jSj"/>
  559. <constraint firstAttribute="width" constant="32" id="xCO-ta-zKR"/>
  560. </constraints>
  561. </imageView>
  562. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aZ9-9J-WC6">
  563. <rect key="frame" x="0.0" y="407" width="369" height="21"/>
  564. <constraints>
  565. <constraint firstAttribute="height" constant="21" id="z48-aJ-K3P"/>
  566. </constraints>
  567. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  568. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  569. <nil key="highlightedColor"/>
  570. </label>
  571. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RtF-X3-RER">
  572. <rect key="frame" x="0.0" y="378" width="369" height="21"/>
  573. <constraints>
  574. <constraint firstAttribute="height" constant="21" id="D74-hP-JeD"/>
  575. </constraints>
  576. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  577. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  578. <nil key="highlightedColor"/>
  579. </label>
  580. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="EXO-cc-rFq">
  581. <rect key="frame" x="337" y="8" width="24" height="24"/>
  582. <constraints>
  583. <constraint firstAttribute="height" constant="24" id="5Sj-qw-5tX"/>
  584. <constraint firstAttribute="width" constant="24" id="gfd-jS-si2"/>
  585. </constraints>
  586. </imageView>
  587. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="Qkj-9k-qGc" userLabel="mark_order">
  588. <rect key="frame" x="329" y="328" width="32" height="32"/>
  589. <constraints>
  590. <constraint firstAttribute="width" constant="32" id="Ilf-BQ-PpS"/>
  591. <constraint firstAttribute="height" constant="32" id="MmV-Jv-Kwp"/>
  592. </constraints>
  593. </imageView>
  594. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="fit-6W-4wc" userLabel="mark_wish">
  595. <rect key="frame" x="293" y="328" width="32" height="32"/>
  596. <constraints>
  597. <constraint firstAttribute="height" constant="32" id="DRc-fc-FWv"/>
  598. <constraint firstAttribute="width" constant="32" id="ohF-ha-AVx"/>
  599. </constraints>
  600. </imageView>
  601. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="myu-IT-hrE" userLabel="mark_wish">
  602. <rect key="frame" x="8" y="8" width="32" height="32"/>
  603. <constraints>
  604. <constraint firstAttribute="width" constant="32" id="Eev-dS-9OU"/>
  605. <constraint firstAttribute="height" constant="32" id="M50-RA-df8"/>
  606. </constraints>
  607. </imageView>
  608. </subviews>
  609. </view>
  610. <color key="backgroundColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  611. <constraints>
  612. <constraint firstItem="EXO-cc-rFq" firstAttribute="top" secondItem="aCf-RF-cqy" secondAttribute="top" constant="8" id="47b-bu-atf"/>
  613. <constraint firstItem="lDC-yE-RrV" firstAttribute="leading" secondItem="aCf-RF-cqy" secondAttribute="leading" constant="8" id="754-hI-nB9"/>
  614. <constraint firstAttribute="trailing" secondItem="aZ9-9J-WC6" secondAttribute="trailing" id="8Bb-4a-qWO"/>
  615. <constraint firstItem="RtF-X3-RER" firstAttribute="leading" secondItem="aCf-RF-cqy" secondAttribute="leading" id="9xC-7c-xXo"/>
  616. <constraint firstItem="mQY-ea-Bdd" firstAttribute="leading" secondItem="aCf-RF-cqy" secondAttribute="leading" constant="1" id="Bfe-9m-IM7"/>
  617. <constraint firstItem="fit-6W-4wc" firstAttribute="bottom" secondItem="lDC-yE-RrV" secondAttribute="bottom" id="Bnh-qY-j8H"/>
  618. <constraint firstAttribute="trailing" secondItem="EXO-cc-rFq" secondAttribute="trailing" constant="8" id="E8g-8N-o7v"/>
  619. <constraint firstAttribute="trailing" secondItem="RtF-X3-RER" secondAttribute="trailing" id="HEL-iV-vp5"/>
  620. <constraint firstItem="myu-IT-hrE" firstAttribute="leading" secondItem="aCf-RF-cqy" secondAttribute="leading" constant="8" id="J1G-Qe-nu0"/>
  621. <constraint firstAttribute="trailing" secondItem="mQY-ea-Bdd" secondAttribute="trailing" constant="1" id="LOF-Tq-Ce2"/>
  622. <constraint firstAttribute="trailing" secondItem="Qkj-9k-qGc" secondAttribute="trailing" constant="8" id="MU1-1e-oaB"/>
  623. <constraint firstItem="aZ9-9J-WC6" firstAttribute="top" secondItem="RtF-X3-RER" secondAttribute="bottom" constant="8" id="SX6-Kq-Cui"/>
  624. <constraint firstItem="mQY-ea-Bdd" firstAttribute="bottom" secondItem="lDC-yE-RrV" secondAttribute="bottom" constant="8" id="Swf-dz-geR"/>
  625. <constraint firstItem="Qkj-9k-qGc" firstAttribute="leading" secondItem="fit-6W-4wc" secondAttribute="trailing" constant="4" id="XbZ-69-kNh"/>
  626. <constraint firstItem="myu-IT-hrE" firstAttribute="top" secondItem="aCf-RF-cqy" secondAttribute="top" constant="8" id="bRD-lA-g2v"/>
  627. <constraint firstItem="mQY-ea-Bdd" firstAttribute="top" secondItem="aCf-RF-cqy" secondAttribute="top" constant="1" id="iOw-Rx-XBl"/>
  628. <constraint firstAttribute="bottom" secondItem="aZ9-9J-WC6" secondAttribute="bottom" constant="12" id="qAI-rZ-rcz"/>
  629. <constraint firstItem="aZ9-9J-WC6" firstAttribute="leading" secondItem="aCf-RF-cqy" secondAttribute="leading" id="ued-sw-423"/>
  630. <constraint firstItem="Qkj-9k-qGc" firstAttribute="bottom" secondItem="lDC-yE-RrV" secondAttribute="bottom" id="vsb-Ah-od4"/>
  631. </constraints>
  632. <size key="customSize" width="369" height="440"/>
  633. <connections>
  634. <outlet property="cellImageView" destination="mQY-ea-Bdd" id="Arb-ab-afM"/>
  635. <outlet property="checkImageView" destination="EXO-cc-rFq" id="Q2v-Vr-RQJ"/>
  636. <outlet property="mark_closeout" destination="myu-IT-hrE" id="zwp-w7-c9W"/>
  637. <outlet property="mark_moreColor" destination="lDC-yE-RrV" id="YUX-MI-6wC"/>
  638. <outlet property="mark_order" destination="Qkj-9k-qGc" id="et3-EB-hW0"/>
  639. <outlet property="mark_wish" destination="fit-6W-4wc" id="olp-x0-C7d"/>
  640. <outlet property="modelNoLabel" destination="aZ9-9J-WC6" id="QyU-A8-ayY"/>
  641. <outlet property="nameLabel" destination="RtF-X3-RER" id="YWg-aM-DU9"/>
  642. </connections>
  643. </collectionViewCell>
  644. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="CategoryCellNPD" id="oKQ-UZ-bSj" customClass="CategoryCellNPD">
  645. <rect key="frame" x="588" y="94.5" width="180" height="251"/>
  646. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  647. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  648. <rect key="frame" x="0.0" y="0.0" width="180" height="251"/>
  649. <autoresizingMask key="autoresizingMask"/>
  650. <subviews>
  651. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Lt-nX-hr1">
  652. <rect key="frame" x="0.0" y="218" width="180" height="21"/>
  653. <constraints>
  654. <constraint firstAttribute="height" constant="21" id="D22-MY-qoI"/>
  655. </constraints>
  656. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  657. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  658. <nil key="highlightedColor"/>
  659. </label>
  660. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bpQ-W4-lvh">
  661. <rect key="frame" x="0.0" y="189" width="180" height="21"/>
  662. <constraints>
  663. <constraint firstAttribute="height" constant="21" id="VXg-Gy-gcY"/>
  664. </constraints>
  665. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  666. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  667. <nil key="highlightedColor"/>
  668. </label>
  669. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="9DJ-2R-3Hh">
  670. <rect key="frame" x="1" y="1" width="178" height="178"/>
  671. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  672. <constraints>
  673. <constraint firstAttribute="width" constant="178" id="HaG-Ob-ABs"/>
  674. <constraint firstAttribute="height" constant="178" id="lOB-cN-9SA"/>
  675. </constraints>
  676. </imageView>
  677. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="9dX-sK-nJF">
  678. <rect key="frame" x="8" y="155" width="16" height="16"/>
  679. <constraints>
  680. <constraint firstAttribute="height" constant="16" id="5fH-jP-X5Q"/>
  681. <constraint firstAttribute="width" constant="16" id="Zpf-ay-ETN"/>
  682. </constraints>
  683. </imageView>
  684. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="nbF-Ja-rZ2">
  685. <rect key="frame" x="148" y="8" width="24" height="24"/>
  686. <constraints>
  687. <constraint firstAttribute="height" constant="24" id="M8h-zy-MgN"/>
  688. <constraint firstAttribute="width" constant="24" id="tEY-Mc-n7x"/>
  689. </constraints>
  690. </imageView>
  691. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="oWb-AH-BpQ" userLabel="mark_wish">
  692. <rect key="frame" x="8" y="8" width="16" height="16"/>
  693. <constraints>
  694. <constraint firstAttribute="width" constant="16" id="2NK-1o-FxV"/>
  695. <constraint firstAttribute="height" constant="16" id="HwE-Fa-a7H"/>
  696. </constraints>
  697. </imageView>
  698. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="uSw-HC-WxB" userLabel="mark_order">
  699. <rect key="frame" x="156" y="155" width="16" height="16"/>
  700. <constraints>
  701. <constraint firstAttribute="width" constant="16" id="5zJ-30-xUt"/>
  702. <constraint firstAttribute="height" constant="16" id="FJb-FE-m3q"/>
  703. </constraints>
  704. </imageView>
  705. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="sg5-gi-Wkq" userLabel="mark_wish">
  706. <rect key="frame" x="136" y="155" width="16" height="16"/>
  707. <constraints>
  708. <constraint firstAttribute="height" constant="16" id="5yu-8R-Wli"/>
  709. <constraint firstAttribute="width" constant="16" id="uop-g9-u6p"/>
  710. </constraints>
  711. </imageView>
  712. </subviews>
  713. </view>
  714. <color key="backgroundColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  715. <constraints>
  716. <constraint firstAttribute="trailing" secondItem="9DJ-2R-3Hh" secondAttribute="trailing" constant="1" id="3L7-uX-qWM"/>
  717. <constraint firstAttribute="trailing" secondItem="nbF-Ja-rZ2" secondAttribute="trailing" constant="8" id="BB5-uf-4QP"/>
  718. <constraint firstAttribute="trailing" secondItem="uSw-HC-WxB" secondAttribute="trailing" constant="8" id="C7N-ah-Ckl"/>
  719. <constraint firstItem="sg5-gi-Wkq" firstAttribute="bottom" secondItem="9dX-sK-nJF" secondAttribute="bottom" id="Ch8-WS-qSD"/>
  720. <constraint firstItem="5Lt-nX-hr1" firstAttribute="top" secondItem="bpQ-W4-lvh" secondAttribute="bottom" constant="8" id="Zll-QE-zI4"/>
  721. <constraint firstItem="9DJ-2R-3Hh" firstAttribute="top" secondItem="oKQ-UZ-bSj" secondAttribute="top" constant="1" id="b13-qt-6Fl"/>
  722. <constraint firstItem="9DJ-2R-3Hh" firstAttribute="bottom" secondItem="uSw-HC-WxB" secondAttribute="bottom" constant="8" id="c7P-Vn-B09"/>
  723. <constraint firstItem="5Lt-nX-hr1" firstAttribute="leading" secondItem="oKQ-UZ-bSj" secondAttribute="leading" id="dK8-KB-T6r"/>
  724. <constraint firstItem="bpQ-W4-lvh" firstAttribute="leading" secondItem="oKQ-UZ-bSj" secondAttribute="leading" id="dc3-L0-WSF"/>
  725. <constraint firstItem="uSw-HC-WxB" firstAttribute="leading" secondItem="sg5-gi-Wkq" secondAttribute="trailing" constant="4" id="eNH-sH-SNc"/>
  726. <constraint firstItem="9dX-sK-nJF" firstAttribute="leading" secondItem="oKQ-UZ-bSj" secondAttribute="leading" constant="8" id="gSe-qF-Rev"/>
  727. <constraint firstItem="nbF-Ja-rZ2" firstAttribute="top" secondItem="oKQ-UZ-bSj" secondAttribute="top" constant="8" id="hhJ-9o-Gdt"/>
  728. <constraint firstItem="oWb-AH-BpQ" firstAttribute="top" secondItem="oKQ-UZ-bSj" secondAttribute="top" constant="8" id="iLP-Qe-gj2"/>
  729. <constraint firstItem="9DJ-2R-3Hh" firstAttribute="leading" secondItem="oKQ-UZ-bSj" secondAttribute="leading" constant="1" id="jjU-HG-CMW"/>
  730. <constraint firstAttribute="bottom" secondItem="5Lt-nX-hr1" secondAttribute="bottom" constant="12" id="kMX-S9-fqd"/>
  731. <constraint firstAttribute="trailing" secondItem="bpQ-W4-lvh" secondAttribute="trailing" id="krv-2P-c9u"/>
  732. <constraint firstAttribute="trailing" secondItem="5Lt-nX-hr1" secondAttribute="trailing" id="r8y-xg-SqW"/>
  733. <constraint firstItem="oWb-AH-BpQ" firstAttribute="leading" secondItem="oKQ-UZ-bSj" secondAttribute="leading" constant="8" id="rGR-7B-uwf"/>
  734. <constraint firstItem="uSw-HC-WxB" firstAttribute="bottom" secondItem="sg5-gi-Wkq" secondAttribute="bottom" id="xma-HC-VVY"/>
  735. </constraints>
  736. <size key="customSize" width="180" height="251"/>
  737. <connections>
  738. <outlet property="cellImageView" destination="9DJ-2R-3Hh" id="3YT-pm-zed"/>
  739. <outlet property="checkImageView" destination="nbF-Ja-rZ2" id="tzf-eQ-iyh"/>
  740. <outlet property="mark_closeout" destination="oWb-AH-BpQ" id="60u-Sm-bdq"/>
  741. <outlet property="mark_moreColor" destination="9dX-sK-nJF" id="0vh-dq-is7"/>
  742. <outlet property="mark_order" destination="uSw-HC-WxB" id="xJt-Pn-PNB"/>
  743. <outlet property="mark_wish" destination="sg5-gi-Wkq" id="Tib-FV-DJl"/>
  744. <outlet property="modelNoLabel" destination="5Lt-nX-hr1" id="twM-R3-O8W"/>
  745. <outlet property="nameLabel" destination="bpQ-W4-lvh" id="I91-Br-YHu"/>
  746. </connections>
  747. </collectionViewCell>
  748. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" restorationIdentifier="CategoryCellNPDList" reuseIdentifier="CategoryCellNPDList" id="esa-1T-7uG" customClass="CategoryCellNPD">
  749. <rect key="frame" x="0.0" y="440" width="768" height="120"/>
  750. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  751. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  752. <rect key="frame" x="0.0" y="0.0" width="768" height="120"/>
  753. <autoresizingMask key="autoresizingMask"/>
  754. <subviews>
  755. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="6Ti-pK-NIb">
  756. <rect key="frame" x="10" y="10" width="100" height="100"/>
  757. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  758. <constraints>
  759. <constraint firstAttribute="height" constant="100" id="FN8-g9-x3X"/>
  760. <constraint firstAttribute="width" constant="100" id="KfC-mY-wYf"/>
  761. </constraints>
  762. </imageView>
  763. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fQl-NO-f3U">
  764. <rect key="frame" x="118" y="89" width="512" height="21"/>
  765. <constraints>
  766. <constraint firstAttribute="height" constant="21" id="5u7-i7-yx9"/>
  767. </constraints>
  768. <fontDescription key="fontDescription" type="boldSystem" pointSize="20"/>
  769. <nil key="highlightedColor"/>
  770. </label>
  771. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tz7-2I-RM1">
  772. <rect key="frame" x="118" y="10" width="512" height="71"/>
  773. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  774. <nil key="highlightedColor"/>
  775. </label>
  776. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="qER-uU-VdS">
  777. <rect key="frame" x="729" y="10" width="24" height="24"/>
  778. <constraints>
  779. <constraint firstAttribute="width" constant="24" id="dE0-YT-Acm"/>
  780. <constraint firstAttribute="height" constant="24" id="fik-Zc-2wJ"/>
  781. </constraints>
  782. </imageView>
  783. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="PfW-Zp-bUe" userLabel="mark_order">
  784. <rect key="frame" x="729" y="86" width="24" height="24"/>
  785. <constraints>
  786. <constraint firstAttribute="height" constant="24" id="LoV-UD-Mge"/>
  787. <constraint firstAttribute="width" constant="24" id="tgm-5I-PJu"/>
  788. </constraints>
  789. </imageView>
  790. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="wed-bm-Ezx" userLabel="mark_wish">
  791. <rect key="frame" x="701" y="86" width="24" height="24"/>
  792. <constraints>
  793. <constraint firstAttribute="width" constant="24" id="wYh-qj-QFJ"/>
  794. <constraint firstAttribute="height" constant="24" id="xco-oD-Szv"/>
  795. </constraints>
  796. </imageView>
  797. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="h5B-7S-yqZ" userLabel="mark_wish">
  798. <rect key="frame" x="673" y="86" width="24" height="24"/>
  799. <constraints>
  800. <constraint firstAttribute="width" constant="24" id="8C2-aj-uBa"/>
  801. <constraint firstAttribute="height" constant="24" id="flz-Ym-kZk"/>
  802. </constraints>
  803. </imageView>
  804. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="73d-id-nqO">
  805. <rect key="frame" x="645" y="86" width="24" height="24"/>
  806. <constraints>
  807. <constraint firstAttribute="height" constant="24" id="A7v-Tq-BMB"/>
  808. <constraint firstAttribute="width" constant="24" id="tef-b9-ena"/>
  809. </constraints>
  810. </imageView>
  811. </subviews>
  812. </view>
  813. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  814. <constraints>
  815. <constraint firstItem="h5B-7S-yqZ" firstAttribute="bottom" secondItem="73d-id-nqO" secondAttribute="bottom" id="3GC-b0-wsm"/>
  816. <constraint firstItem="PfW-Zp-bUe" firstAttribute="bottom" secondItem="wed-bm-Ezx" secondAttribute="bottom" id="3zO-iG-GMk"/>
  817. <constraint firstItem="fQl-NO-f3U" firstAttribute="bottom" secondItem="6Ti-pK-NIb" secondAttribute="bottom" id="8Yh-wx-xIS"/>
  818. <constraint firstItem="tz7-2I-RM1" firstAttribute="leading" secondItem="fQl-NO-f3U" secondAttribute="leading" id="9lK-CU-H0L"/>
  819. <constraint firstItem="tz7-2I-RM1" firstAttribute="top" secondItem="6Ti-pK-NIb" secondAttribute="top" id="E0t-XT-m0Z"/>
  820. <constraint firstItem="wed-bm-Ezx" firstAttribute="bottom" secondItem="h5B-7S-yqZ" secondAttribute="bottom" id="Evz-Mq-cIr"/>
  821. <constraint firstItem="6Ti-pK-NIb" firstAttribute="leading" secondItem="esa-1T-7uG" secondAttribute="leading" constant="10" id="KbR-2c-rE1"/>
  822. <constraint firstItem="6Ti-pK-NIb" firstAttribute="centerY" secondItem="esa-1T-7uG" secondAttribute="centerY" id="OyK-tb-udv"/>
  823. <constraint firstAttribute="trailing" secondItem="PfW-Zp-bUe" secondAttribute="trailing" constant="15" id="Qcw-h7-Rsb"/>
  824. <constraint firstItem="fQl-NO-f3U" firstAttribute="top" secondItem="tz7-2I-RM1" secondAttribute="bottom" constant="8" id="Rv0-lg-0DU"/>
  825. <constraint firstItem="73d-id-nqO" firstAttribute="leading" secondItem="fQl-NO-f3U" secondAttribute="trailing" constant="15" id="ZdD-RC-Q13"/>
  826. <constraint firstItem="h5B-7S-yqZ" firstAttribute="leading" secondItem="73d-id-nqO" secondAttribute="trailing" constant="4" id="a0l-gr-ays"/>
  827. <constraint firstItem="fQl-NO-f3U" firstAttribute="trailing" secondItem="tz7-2I-RM1" secondAttribute="trailing" id="aab-mL-fBI"/>
  828. <constraint firstAttribute="bottom" secondItem="PfW-Zp-bUe" secondAttribute="bottom" constant="10" id="enK-Kt-pXi"/>
  829. <constraint firstItem="fQl-NO-f3U" firstAttribute="leading" secondItem="6Ti-pK-NIb" secondAttribute="trailing" constant="8" id="gfz-19-W6b"/>
  830. <constraint firstItem="qER-uU-VdS" firstAttribute="top" secondItem="esa-1T-7uG" secondAttribute="top" constant="10" id="hjH-ZJ-HmB"/>
  831. <constraint firstItem="wed-bm-Ezx" firstAttribute="leading" secondItem="h5B-7S-yqZ" secondAttribute="trailing" constant="4" id="uwI-ap-pdZ"/>
  832. <constraint firstItem="PfW-Zp-bUe" firstAttribute="leading" secondItem="wed-bm-Ezx" secondAttribute="trailing" constant="4" id="y73-Zs-SDf"/>
  833. <constraint firstAttribute="trailing" secondItem="qER-uU-VdS" secondAttribute="trailing" constant="15" id="z2i-RK-1E4"/>
  834. </constraints>
  835. <size key="customSize" width="768" height="120"/>
  836. <connections>
  837. <outlet property="cellImageView" destination="6Ti-pK-NIb" id="EXE-dl-w3U"/>
  838. <outlet property="checkImageView" destination="qER-uU-VdS" id="bED-DX-jkP"/>
  839. <outlet property="mark_closeout" destination="h5B-7S-yqZ" id="rgh-oD-Bfx"/>
  840. <outlet property="mark_moreColor" destination="73d-id-nqO" id="Ry3-UW-iyc"/>
  841. <outlet property="mark_order" destination="PfW-Zp-bUe" id="t0F-an-7Hl"/>
  842. <outlet property="mark_wish" destination="wed-bm-Ezx" id="Ud0-Vo-zxh"/>
  843. <outlet property="modelNoLabel" destination="fQl-NO-f3U" id="prg-r4-G2n"/>
  844. <outlet property="nameLabel" destination="tz7-2I-RM1" id="JXE-H9-EBy"/>
  845. </connections>
  846. </collectionViewCell>
  847. </cells>
  848. <connections>
  849. <outlet property="dataSource" destination="7Gd-Dn-BSm" id="ozO-9T-ekZ"/>
  850. <outlet property="delegate" destination="7Gd-Dn-BSm" id="b3D-BK-l9f"/>
  851. </connections>
  852. </collectionView>
  853. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="k7R-UE-n8t">
  854. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  855. <subviews>
  856. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="Sl6-77-cvo">
  857. <rect key="frame" x="275" y="6.5" width="51" height="31"/>
  858. <constraints>
  859. <constraint firstAttribute="width" constant="49" id="aRS-OH-qIT"/>
  860. <constraint firstAttribute="height" constant="31" id="nYz-J8-jvf"/>
  861. </constraints>
  862. <connections>
  863. <action selector="onMatchFullChanged:" destination="7Gd-Dn-BSm" eventType="valueChanged" id="yIm-VF-a8h"/>
  864. </connections>
  865. </switch>
  866. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Search by factory code" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ich-Le-vsA">
  867. <rect key="frame" x="332" y="11.5" width="194" height="21"/>
  868. <constraints>
  869. <constraint firstAttribute="height" constant="21" id="v4a-hW-nuf"/>
  870. <constraint firstAttribute="width" constant="194" id="wMa-Er-O88"/>
  871. </constraints>
  872. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  873. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  874. <nil key="highlightedColor"/>
  875. </label>
  876. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0 Items" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="91B-3m-MPI">
  877. <rect key="frame" x="355.5" y="11.5" width="57" height="21"/>
  878. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  879. <color key="textColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  880. <nil key="highlightedColor"/>
  881. </label>
  882. <searchBar contentMode="redraw" searchBarStyle="minimal" placeholder="Enter keyword" translatesAutoresizingMaskIntoConstraints="NO" id="NGS-iB-FCe">
  883. <rect key="frame" x="15" y="0.0" width="240" height="44"/>
  884. <constraints>
  885. <constraint firstAttribute="height" constant="44" id="SAc-QH-g4G"/>
  886. <constraint firstAttribute="width" constant="240" id="za9-BF-j20"/>
  887. </constraints>
  888. <textInputTraits key="textInputTraits"/>
  889. <connections>
  890. <outlet property="delegate" destination="7Gd-Dn-BSm" id="7Eg-iR-K8g"/>
  891. </connections>
  892. </searchBar>
  893. <button opaque="NO" tag="3" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gbf-Qb-7nC" userLabel="Display_large">
  894. <rect key="frame" x="669" y="6" width="32" height="32"/>
  895. <constraints>
  896. <constraint firstAttribute="width" constant="32" id="5Ck-L9-ChU"/>
  897. <constraint firstAttribute="height" constant="32" id="dSc-QO-c6i"/>
  898. </constraints>
  899. <state key="normal" image="laytou_large">
  900. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  901. </state>
  902. <connections>
  903. <action selector="onChangeDisplay:" destination="7Gd-Dn-BSm" eventType="touchUpInside" id="4Cg-Gq-sFj"/>
  904. </connections>
  905. </button>
  906. <button opaque="NO" tag="2" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jv9-kx-vDl" userLabel="Display_small">
  907. <rect key="frame" x="625" y="6" width="32" height="32"/>
  908. <constraints>
  909. <constraint firstAttribute="height" constant="32" id="Gc7-tY-VyF"/>
  910. <constraint firstAttribute="width" constant="32" id="mYb-vN-6ZD"/>
  911. </constraints>
  912. <state key="normal" image="layout_small">
  913. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  914. </state>
  915. <connections>
  916. <action selector="onChangeDisplay:" destination="7Gd-Dn-BSm" eventType="touchUpInside" id="kXA-LL-yUY"/>
  917. </connections>
  918. </button>
  919. <button opaque="NO" tag="4" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ait-NW-0NW" userLabel="Display_list">
  920. <rect key="frame" x="581" y="6" width="32" height="32"/>
  921. <constraints>
  922. <constraint firstAttribute="height" constant="32" id="Y5h-8N-yRh"/>
  923. <constraint firstAttribute="width" constant="32" id="pyH-eZ-nYH"/>
  924. </constraints>
  925. <state key="normal" title="Button" image="layout_list"/>
  926. <connections>
  927. <action selector="onChangeDisplay:" destination="7Gd-Dn-BSm" eventType="touchUpInside" id="HXM-Nc-YEx"/>
  928. </connections>
  929. </button>
  930. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Vol-Dr-c7u">
  931. <rect key="frame" x="713" y="7" width="45" height="30"/>
  932. <constraints>
  933. <constraint firstAttribute="width" constant="45" id="7ly-74-v6D"/>
  934. <constraint firstAttribute="height" constant="30" id="JnN-u9-oze"/>
  935. </constraints>
  936. <state key="normal" title="Select"/>
  937. <connections>
  938. <action selector="onSelectClick:" destination="7Gd-Dn-BSm" eventType="touchUpInside" id="9bt-r6-Jum"/>
  939. </connections>
  940. </button>
  941. </subviews>
  942. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  943. <constraints>
  944. <constraint firstItem="91B-3m-MPI" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="1Sn-Lo-ArI"/>
  945. <constraint firstItem="NGS-iB-FCe" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="3Gk-wa-17n"/>
  946. <constraint firstItem="gbf-Qb-7nC" firstAttribute="leading" secondItem="jv9-kx-vDl" secondAttribute="trailing" constant="12" id="6ZK-Hh-HVU"/>
  947. <constraint firstItem="gbf-Qb-7nC" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="9t2-ir-LIA"/>
  948. <constraint firstItem="jv9-kx-vDl" firstAttribute="leading" secondItem="ait-NW-0NW" secondAttribute="trailing" constant="12" id="F5K-Xe-taJ"/>
  949. <constraint firstAttribute="height" constant="44" id="LLX-gV-XBV"/>
  950. <constraint firstItem="NGS-iB-FCe" firstAttribute="leading" secondItem="k7R-UE-n8t" secondAttribute="leading" constant="15" id="Omw-Nn-FvG"/>
  951. <constraint firstItem="Vol-Dr-c7u" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="Qyb-Go-cqJ"/>
  952. <constraint firstAttribute="trailing" secondItem="Vol-Dr-c7u" secondAttribute="trailing" constant="10" id="arq-xL-Mq4"/>
  953. <constraint firstItem="Sl6-77-cvo" firstAttribute="leading" secondItem="NGS-iB-FCe" secondAttribute="trailing" constant="20" id="d6C-NS-dtY"/>
  954. <constraint firstItem="ait-NW-0NW" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="fW9-K9-EQg"/>
  955. <constraint firstItem="jv9-kx-vDl" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="gxc-zG-9NG"/>
  956. <constraint firstItem="Sl6-77-cvo" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="hc2-ZT-Nji"/>
  957. <constraint firstItem="Ich-Le-vsA" firstAttribute="leading" secondItem="Sl6-77-cvo" secondAttribute="trailing" constant="8" id="hlv-ad-G08"/>
  958. <constraint firstItem="Vol-Dr-c7u" firstAttribute="leading" secondItem="gbf-Qb-7nC" secondAttribute="trailing" constant="12" id="iUZ-yf-RMq"/>
  959. <constraint firstItem="91B-3m-MPI" firstAttribute="centerX" secondItem="k7R-UE-n8t" secondAttribute="centerX" id="nm3-aJ-7Wa"/>
  960. <constraint firstItem="Ich-Le-vsA" firstAttribute="centerY" secondItem="k7R-UE-n8t" secondAttribute="centerY" id="uAS-zt-lGK"/>
  961. </constraints>
  962. </view>
  963. <toolbar hidden="YES" opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="u2P-Ry-o8C">
  964. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  965. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  966. <items>
  967. <barButtonItem title="Add To Wish List" id="QQW-Zd-grC">
  968. <connections>
  969. <action selector="onAddWishlistClick:" destination="7Gd-Dn-BSm" id="hIa-hP-BPs"/>
  970. </connections>
  971. </barButtonItem>
  972. <barButtonItem style="plain" systemItem="flexibleSpace" id="bLF-3m-2rp"/>
  973. <barButtonItem title="Add to Cart" id="x6P-EC-NXg">
  974. <connections>
  975. <action selector="onAddCartClick:" destination="7Gd-Dn-BSm" id="U5M-CJ-0oC"/>
  976. </connections>
  977. </barButtonItem>
  978. <barButtonItem style="plain" systemItem="flexibleSpace" id="pMC-T7-6SX"/>
  979. <barButtonItem title="Add to Portfolio" id="z8d-To-1sb">
  980. <connections>
  981. <action selector="onAddPortfolioClick:" destination="7Gd-Dn-BSm" id="e75-8i-6uD"/>
  982. </connections>
  983. </barButtonItem>
  984. <barButtonItem style="plain" systemItem="flexibleSpace" id="Smd-5C-gQ1"/>
  985. <barButtonItem image="check_0_24" width="18" id="0Xy-tJ-RnG">
  986. <connections>
  987. <action selector="addAllCheckBtnClick:" destination="7Gd-Dn-BSm" id="OkZ-YO-301"/>
  988. </connections>
  989. </barButtonItem>
  990. <barButtonItem title="Add All" id="1bP-Ac-JaX">
  991. <connections>
  992. <action selector="addAllClick:" destination="7Gd-Dn-BSm" id="J2F-ba-g9N"/>
  993. </connections>
  994. </barButtonItem>
  995. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="d46-R1-5dp"/>
  996. <barButtonItem title="Select" id="oCm-1F-6rw">
  997. <connections>
  998. <action selector="onSelectAllClick:" destination="7Gd-Dn-BSm" id="AVB-VY-RYh"/>
  999. </connections>
  1000. </barButtonItem>
  1001. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="vqh-BW-uob"/>
  1002. <barButtonItem title="Cancel" id="Uht-bx-CMf" userLabel="Cancel">
  1003. <connections>
  1004. <action selector="onCancelSelectClick:" destination="7Gd-Dn-BSm" id="KjO-uZ-fQk"/>
  1005. </connections>
  1006. </barButtonItem>
  1007. </items>
  1008. </toolbar>
  1009. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="423-YP-V6q">
  1010. <rect key="frame" x="263.5" y="489.5" width="241.5" height="45.5"/>
  1011. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1012. <color key="textColor" red="0.33333333329999998" green="0.33333333329999998" blue="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1013. <nil key="highlightedColor"/>
  1014. </label>
  1015. <activityIndicatorView hidden="YES" opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="wIZ-01-YqU">
  1016. <rect key="frame" x="365.5" y="493.5" width="37" height="37"/>
  1017. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1018. </activityIndicatorView>
  1019. </subviews>
  1020. <viewLayoutGuide key="safeArea" id="TYD-IC-O3a"/>
  1021. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1022. <constraints>
  1023. <constraint firstItem="wIZ-01-YqU" firstAttribute="centerX" secondItem="TYD-IC-O3a" secondAttribute="centerX" id="2iC-Ju-3Wh"/>
  1024. <constraint firstItem="k7R-UE-n8t" firstAttribute="top" secondItem="t7y-zK-XJN" secondAttribute="top" id="3a0-x0-Xza"/>
  1025. <constraint firstItem="k7R-UE-n8t" firstAttribute="trailing" secondItem="TYD-IC-O3a" secondAttribute="trailing" id="b52-Of-S0d"/>
  1026. <constraint firstItem="k7R-UE-n8t" firstAttribute="leading" secondItem="TYD-IC-O3a" secondAttribute="leading" id="bUQ-AN-BV1"/>
  1027. <constraint firstItem="wIZ-01-YqU" firstAttribute="centerY" secondItem="t7y-zK-XJN" secondAttribute="centerY" id="kCQ-HC-plT"/>
  1028. <constraint firstItem="423-YP-V6q" firstAttribute="centerY" secondItem="t7y-zK-XJN" secondAttribute="centerY" id="lyx-f9-ris"/>
  1029. <constraint firstItem="423-YP-V6q" firstAttribute="centerX" secondItem="TYD-IC-O3a" secondAttribute="centerX" id="na8-q6-24Z"/>
  1030. </constraints>
  1031. </view>
  1032. <connections>
  1033. <outlet property="addAllBtn" destination="1bP-Ac-JaX" id="V2C-rY-Rw3"/>
  1034. <outlet property="addAllCheckBtn" destination="0Xy-tJ-RnG" id="3lw-6R-8bA"/>
  1035. <outlet property="addCartBtn" destination="x6P-EC-NXg" id="pb2-Bw-Q8t"/>
  1036. <outlet property="addPortfolioBtn" destination="z8d-To-1sb" id="tHd-Tq-Wol"/>
  1037. <outlet property="addWishBtn" destination="QQW-Zd-grC" id="Gld-Kl-JGq"/>
  1038. <outlet property="btn_select" destination="Vol-Dr-c7u" id="0Ff-Bx-SKJ"/>
  1039. <outlet property="collectionview" destination="FPu-v5-Zte" id="6pG-Qt-LEc"/>
  1040. <outlet property="headerView" destination="k7R-UE-n8t" id="COX-u2-QDa"/>
  1041. <outlet property="labelTotal" destination="91B-3m-MPI" id="KhN-OT-18E"/>
  1042. <outlet property="label_matchfull" destination="Ich-Le-vsA" id="jyZ-9F-Dqv"/>
  1043. <outlet property="label_net_err" destination="423-YP-V6q" id="GfN-WL-y7P"/>
  1044. <outlet property="mum" destination="wIZ-01-YqU" id="Dkg-gH-wPn"/>
  1045. <outlet property="searchBar" destination="NGS-iB-FCe" id="uAj-AE-kqF"/>
  1046. <outlet property="selectToolbar" destination="u2P-Ry-o8C" id="fbG-wb-jtd"/>
  1047. <outlet property="selectallBtn" destination="oCm-1F-6rw" id="ecg-c2-qiV"/>
  1048. <outlet property="switch_matchfull" destination="Sl6-77-cvo" id="OkP-mu-YqV"/>
  1049. </connections>
  1050. </viewController>
  1051. <placeholder placeholderIdentifier="IBFirstResponder" id="MjH-2l-Oi3" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1052. </objects>
  1053. <point key="canvasLocation" x="-939.0625" y="438.8671875"/>
  1054. </scene>
  1055. <!--Item Search Filter-->
  1056. <scene sceneID="Xx9-ZR-FjS">
  1057. <objects>
  1058. <viewController storyboardIdentifier="ItemSearchFilterViewController" title="Item Search Filter" useStoryboardIdentifierAsRestorationIdentifier="YES" id="7KM-2e-YVW" customClass="ItemSearchFilterViewController" sceneMemberID="viewController">
  1059. <view key="view" contentMode="scaleToFill" id="tzb-Sy-Soy">
  1060. <rect key="frame" x="0.0" y="0.0" width="540" height="680"/>
  1061. <autoresizingMask key="autoresizingMask"/>
  1062. <subviews>
  1063. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="VVf-hI-5G1">
  1064. <rect key="frame" x="0.0" y="0.0" width="540" height="680"/>
  1065. <subviews>
  1066. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lF5-wJ-YMQ">
  1067. <rect key="frame" x="0.0" y="0.0" width="540" height="680"/>
  1068. <subviews>
  1069. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Item Number:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SwC-Ln-c68">
  1070. <rect key="frame" x="20" y="337" width="133" height="21"/>
  1071. <constraints>
  1072. <constraint firstAttribute="height" constant="21" id="9VL-eP-Vwa"/>
  1073. <constraint firstAttribute="width" constant="133" id="eVx-I7-UVH"/>
  1074. </constraints>
  1075. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1076. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1077. <nil key="highlightedColor"/>
  1078. </label>
  1079. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Description:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="f3R-Q6-vRK">
  1080. <rect key="frame" x="280" y="337" width="133" height="21"/>
  1081. <constraints>
  1082. <constraint firstAttribute="width" constant="133" id="E7C-lO-z4Z"/>
  1083. </constraints>
  1084. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1085. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1086. <nil key="highlightedColor"/>
  1087. </label>
  1088. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="0Od-XM-2kQ">
  1089. <rect key="frame" x="20" y="366" width="240" height="30"/>
  1090. <constraints>
  1091. <constraint firstAttribute="height" constant="30" id="VzF-hv-5XU"/>
  1092. <constraint firstAttribute="width" constant="240" id="YI7-fh-1ON"/>
  1093. </constraints>
  1094. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1095. <textInputTraits key="textInputTraits"/>
  1096. </textField>
  1097. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="uMF-kI-vmY">
  1098. <rect key="frame" x="280" y="366" width="240" height="30"/>
  1099. <constraints>
  1100. <constraint firstAttribute="height" constant="30" id="FAG-qR-KTq"/>
  1101. <constraint firstAttribute="width" constant="240" id="nbt-AL-FIW"/>
  1102. </constraints>
  1103. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1104. <textInputTraits key="textInputTraits"/>
  1105. </textField>
  1106. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jz1-eL-bX5" customClass="DefaultImageButton">
  1107. <rect key="frame" x="20" y="630" width="102" height="30"/>
  1108. <constraints>
  1109. <constraint firstAttribute="height" constant="30" id="I6w-Gn-RXQ"/>
  1110. <constraint firstAttribute="width" constant="102" id="nHk-lC-Fyt"/>
  1111. </constraints>
  1112. <state key="normal" title="Cancel" backgroundImage="btn_cancel">
  1113. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1114. </state>
  1115. <userDefinedRuntimeAttributes>
  1116. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1117. <integer key="value" value="15"/>
  1118. </userDefinedRuntimeAttribute>
  1119. </userDefinedRuntimeAttributes>
  1120. <connections>
  1121. <action selector="onCloseClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="sh2-Xo-gNK"/>
  1122. </connections>
  1123. </button>
  1124. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="fLS-Yn-00O">
  1125. <rect key="frame" x="10" y="5" width="520" height="320"/>
  1126. <constraints>
  1127. <constraint firstAttribute="height" constant="320" id="Wyb-to-M5i"/>
  1128. </constraints>
  1129. </view>
  1130. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Rgu-uk-snk" customClass="DefaultImageButton">
  1131. <rect key="frame" x="219" y="630" width="102" height="30"/>
  1132. <constraints>
  1133. <constraint firstAttribute="height" constant="30" id="Md2-Gv-iEy"/>
  1134. <constraint firstAttribute="width" constant="102" id="kIc-NO-suP"/>
  1135. </constraints>
  1136. <state key="normal" title="Reset" backgroundImage="btn_reset">
  1137. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1138. </state>
  1139. <connections>
  1140. <action selector="onResetClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="ZVz-Qz-KME"/>
  1141. </connections>
  1142. </button>
  1143. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zo9-e6-33l" customClass="DefaultImageButton">
  1144. <rect key="frame" x="418" y="630" width="102" height="30"/>
  1145. <constraints>
  1146. <constraint firstAttribute="width" constant="102" id="ULk-GQ-auH"/>
  1147. <constraint firstAttribute="height" constant="30" id="fys-fW-wto"/>
  1148. </constraints>
  1149. <state key="normal" title="Search" backgroundImage="btn_search">
  1150. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1151. </state>
  1152. <userDefinedRuntimeAttributes>
  1153. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1154. <integer key="value" value="15"/>
  1155. </userDefinedRuntimeAttribute>
  1156. </userDefinedRuntimeAttributes>
  1157. <connections>
  1158. <action selector="onSearchClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="Pyk-0U-ery"/>
  1159. </connections>
  1160. </button>
  1161. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Availability:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="73M-vv-4Va">
  1162. <rect key="frame" x="20" y="416" width="120" height="21"/>
  1163. <constraints>
  1164. <constraint firstAttribute="height" constant="21" id="qAS-eS-eWI"/>
  1165. <constraint firstAttribute="width" constant="120" id="vg9-Ny-D57"/>
  1166. </constraints>
  1167. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1168. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1169. <nil key="highlightedColor"/>
  1170. </label>
  1171. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Jfe-5Y-slQ">
  1172. <rect key="frame" x="148" y="483.5" width="372" height="30"/>
  1173. <constraints>
  1174. <constraint firstAttribute="height" constant="30" id="lRh-ct-NRc"/>
  1175. <constraint firstAttribute="width" constant="372" id="zGe-gE-sPY"/>
  1176. </constraints>
  1177. <state key="normal" title="Click to select">
  1178. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1179. </state>
  1180. <connections>
  1181. <action selector="onQTYClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="dbG-Qa-0iG"/>
  1182. </connections>
  1183. </button>
  1184. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="2Qp-FH-fAz">
  1185. <rect key="frame" x="148" y="519.5" width="372" height="30"/>
  1186. <constraints>
  1187. <constraint firstAttribute="width" constant="372" id="Gwh-OR-mkF"/>
  1188. <constraint firstAttribute="height" constant="30" id="ppt-j6-4gD"/>
  1189. </constraints>
  1190. <state key="normal" title="Click to select">
  1191. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1192. </state>
  1193. <connections>
  1194. <action selector="onBestSellerClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="YWp-wb-mcn"/>
  1195. </connections>
  1196. </button>
  1197. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sold by QTY:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ylk-cI-f1y">
  1198. <rect key="frame" x="20" y="488" width="120" height="21"/>
  1199. <constraints>
  1200. <constraint firstAttribute="width" constant="120" id="5Ef-sO-odI"/>
  1201. <constraint firstAttribute="height" constant="21" id="dbr-rG-QDN"/>
  1202. </constraints>
  1203. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1204. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1205. <nil key="highlightedColor"/>
  1206. </label>
  1207. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Best Seller:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pnu-Qv-4cA">
  1208. <rect key="frame" x="20" y="524" width="120" height="21"/>
  1209. <constraints>
  1210. <constraint firstAttribute="height" constant="21" id="ncZ-wk-Hd4"/>
  1211. <constraint firstAttribute="width" constant="120" id="zsv-fx-fpf"/>
  1212. </constraints>
  1213. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1214. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1215. <nil key="highlightedColor"/>
  1216. </label>
  1217. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Price:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VkN-9z-S8u">
  1218. <rect key="frame" x="20" y="560" width="120" height="21"/>
  1219. <constraints>
  1220. <constraint firstAttribute="height" constant="21" id="Hht-Fq-WDy"/>
  1221. <constraint firstAttribute="width" constant="120" id="WOQ-1H-6Nl"/>
  1222. </constraints>
  1223. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1224. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1225. <nil key="highlightedColor"/>
  1226. </label>
  1227. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5mh-pW-BYL">
  1228. <rect key="frame" x="148" y="411.5" width="372" height="30"/>
  1229. <constraints>
  1230. <constraint firstAttribute="width" constant="372" id="7V5-hg-IOc"/>
  1231. <constraint firstAttribute="height" constant="30" id="aCP-lA-LnX"/>
  1232. </constraints>
  1233. <state key="normal" title="Click to select">
  1234. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1235. </state>
  1236. <connections>
  1237. <action selector="onAvailabilityClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="IUO-os-vdX"/>
  1238. </connections>
  1239. </button>
  1240. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="bAe-Za-GgE">
  1241. <rect key="frame" x="148" y="555.5" width="372" height="30"/>
  1242. <constraints>
  1243. <constraint firstAttribute="width" constant="372" id="7uj-7x-l8U"/>
  1244. <constraint firstAttribute="height" constant="30" id="r8p-I0-jfF"/>
  1245. </constraints>
  1246. <state key="normal" title="Click to select">
  1247. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1248. </state>
  1249. <connections>
  1250. <action selector="onPriceClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="faV-ta-oaJ"/>
  1251. </connections>
  1252. </button>
  1253. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8zh-Mf-35k">
  1254. <rect key="frame" x="148" y="447.5" width="372" height="30"/>
  1255. <constraints>
  1256. <constraint firstAttribute="height" constant="30" id="BuO-pO-KfJ"/>
  1257. <constraint firstAttribute="width" constant="372" id="fsz-30-O6I"/>
  1258. </constraints>
  1259. <state key="normal" title="Click to select">
  1260. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1261. </state>
  1262. <connections>
  1263. <action selector="onAlertClick:" destination="7KM-2e-YVW" eventType="touchUpInside" id="5MD-ob-5Ly"/>
  1264. </connections>
  1265. </button>
  1266. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Alert:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="PfB-gh-cVi">
  1267. <rect key="frame" x="20" y="452" width="120" height="21"/>
  1268. <constraints>
  1269. <constraint firstAttribute="width" constant="120" id="6dP-SN-S8D"/>
  1270. <constraint firstAttribute="height" constant="21" id="hiK-FL-r0u"/>
  1271. </constraints>
  1272. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1273. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1274. <nil key="highlightedColor"/>
  1275. </label>
  1276. </subviews>
  1277. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1278. <constraints>
  1279. <constraint firstItem="VkN-9z-S8u" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="0Cv-dx-9Sf"/>
  1280. <constraint firstItem="ylk-cI-f1y" firstAttribute="top" secondItem="PfB-gh-cVi" secondAttribute="bottom" constant="15" id="4Jd-tt-Y5c"/>
  1281. <constraint firstAttribute="trailing" secondItem="5mh-pW-BYL" secondAttribute="trailing" constant="20" id="5ez-UH-oX7"/>
  1282. <constraint firstItem="Rgu-uk-snk" firstAttribute="centerX" secondItem="lF5-wJ-YMQ" secondAttribute="centerX" id="6yD-Zb-Pxc"/>
  1283. <constraint firstItem="0Od-XM-2kQ" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="7T6-NW-9fD"/>
  1284. <constraint firstItem="VkN-9z-S8u" firstAttribute="top" secondItem="pnu-Qv-4cA" secondAttribute="bottom" constant="15" id="9N2-aZ-Bze"/>
  1285. <constraint firstAttribute="trailing" secondItem="2Qp-FH-fAz" secondAttribute="trailing" constant="20" id="DnE-h2-VfX"/>
  1286. <constraint firstItem="ylk-cI-f1y" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="EsJ-Ut-q16"/>
  1287. <constraint firstItem="0Od-XM-2kQ" firstAttribute="top" secondItem="SwC-Ln-c68" secondAttribute="bottom" constant="8" id="FmP-p1-Xes"/>
  1288. <constraint firstItem="8zh-Mf-35k" firstAttribute="firstBaseline" secondItem="PfB-gh-cVi" secondAttribute="firstBaseline" id="GO7-2a-c1s"/>
  1289. <constraint firstItem="PfB-gh-cVi" firstAttribute="top" secondItem="73M-vv-4Va" secondAttribute="bottom" constant="15" id="Mx8-ZR-ab8"/>
  1290. <constraint firstAttribute="bottom" secondItem="Zo9-e6-33l" secondAttribute="bottom" constant="20" id="Nt2-32-bgA"/>
  1291. <constraint firstItem="5mh-pW-BYL" firstAttribute="firstBaseline" secondItem="73M-vv-4Va" secondAttribute="firstBaseline" id="Obu-Xw-Cgc"/>
  1292. <constraint firstAttribute="trailing" secondItem="bAe-Za-GgE" secondAttribute="trailing" constant="20" id="PJR-NF-XxZ"/>
  1293. <constraint firstItem="jz1-eL-bX5" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="PVz-z0-KGX"/>
  1294. <constraint firstItem="73M-vv-4Va" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="Q02-wZ-LUU"/>
  1295. <constraint firstAttribute="trailing" secondItem="Zo9-e6-33l" secondAttribute="trailing" constant="20" id="QVa-Ri-b7Q"/>
  1296. <constraint firstItem="bAe-Za-GgE" firstAttribute="firstBaseline" secondItem="VkN-9z-S8u" secondAttribute="firstBaseline" id="S8Y-u3-m5N"/>
  1297. <constraint firstItem="SwC-Ln-c68" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="T8T-dp-slf"/>
  1298. <constraint firstItem="SwC-Ln-c68" firstAttribute="top" secondItem="fLS-Yn-00O" secondAttribute="bottom" constant="12" id="TNr-BS-2ra"/>
  1299. <constraint firstItem="PfB-gh-cVi" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="ana-O1-dui"/>
  1300. <constraint firstAttribute="bottom" secondItem="Rgu-uk-snk" secondAttribute="bottom" constant="20" id="bcK-zx-mn6"/>
  1301. <constraint firstItem="uMF-kI-vmY" firstAttribute="leading" secondItem="f3R-Q6-vRK" secondAttribute="leading" id="cVS-7W-tT8"/>
  1302. <constraint firstItem="fLS-Yn-00O" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="10" id="d2N-eB-amD"/>
  1303. <constraint firstAttribute="bottom" secondItem="jz1-eL-bX5" secondAttribute="bottom" constant="20" id="gLc-3d-64k"/>
  1304. <constraint firstItem="uMF-kI-vmY" firstAttribute="top" secondItem="f3R-Q6-vRK" secondAttribute="bottom" constant="8" id="gfu-4c-NEV"/>
  1305. <constraint firstItem="Jfe-5Y-slQ" firstAttribute="firstBaseline" secondItem="ylk-cI-f1y" secondAttribute="firstBaseline" id="hVh-fX-gjg"/>
  1306. <constraint firstItem="fLS-Yn-00O" firstAttribute="top" secondItem="lF5-wJ-YMQ" secondAttribute="top" constant="5" id="i0N-0R-QDU"/>
  1307. <constraint firstItem="f3R-Q6-vRK" firstAttribute="top" secondItem="fLS-Yn-00O" secondAttribute="bottom" constant="12" id="i14-XK-PJe"/>
  1308. <constraint firstAttribute="trailing" secondItem="uMF-kI-vmY" secondAttribute="trailing" constant="20" id="iNa-Sw-dgh"/>
  1309. <constraint firstAttribute="trailing" secondItem="8zh-Mf-35k" secondAttribute="trailing" constant="20" id="lzd-w0-BtI"/>
  1310. <constraint firstAttribute="trailing" secondItem="Jfe-5Y-slQ" secondAttribute="trailing" constant="20" id="pYd-lP-qb9"/>
  1311. <constraint firstItem="73M-vv-4Va" firstAttribute="top" secondItem="0Od-XM-2kQ" secondAttribute="bottom" constant="20" id="tyA-zP-iaY"/>
  1312. <constraint firstItem="2Qp-FH-fAz" firstAttribute="firstBaseline" secondItem="pnu-Qv-4cA" secondAttribute="firstBaseline" id="wFb-vX-OCA"/>
  1313. <constraint firstItem="pnu-Qv-4cA" firstAttribute="leading" secondItem="lF5-wJ-YMQ" secondAttribute="leading" constant="20" id="wVD-Qd-0dB"/>
  1314. <constraint firstAttribute="trailing" secondItem="fLS-Yn-00O" secondAttribute="trailing" constant="10" id="y0A-ma-UfB"/>
  1315. <constraint firstItem="pnu-Qv-4cA" firstAttribute="top" secondItem="ylk-cI-f1y" secondAttribute="bottom" constant="15" id="zoU-zi-TIO"/>
  1316. </constraints>
  1317. </view>
  1318. </subviews>
  1319. <constraints>
  1320. <constraint firstItem="lF5-wJ-YMQ" firstAttribute="leading" secondItem="VVf-hI-5G1" secondAttribute="leading" id="I9a-av-LgK"/>
  1321. <constraint firstItem="lF5-wJ-YMQ" firstAttribute="centerY" secondItem="VVf-hI-5G1" secondAttribute="centerY" id="LIY-VX-fLf"/>
  1322. <constraint firstAttribute="bottom" secondItem="lF5-wJ-YMQ" secondAttribute="bottom" id="cQz-Kr-s61"/>
  1323. <constraint firstItem="lF5-wJ-YMQ" firstAttribute="centerX" secondItem="VVf-hI-5G1" secondAttribute="centerX" id="ler-lB-c6s"/>
  1324. <constraint firstAttribute="trailing" secondItem="lF5-wJ-YMQ" secondAttribute="trailing" id="rKg-sx-1Tm"/>
  1325. <constraint firstItem="lF5-wJ-YMQ" firstAttribute="top" secondItem="VVf-hI-5G1" secondAttribute="top" id="soP-ad-0xc"/>
  1326. </constraints>
  1327. </scrollView>
  1328. </subviews>
  1329. <viewLayoutGuide key="safeArea" id="wyb-4p-ncE"/>
  1330. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1331. <constraints>
  1332. <constraint firstItem="VVf-hI-5G1" firstAttribute="leading" secondItem="wyb-4p-ncE" secondAttribute="leading" id="PmB-ub-vIq"/>
  1333. <constraint firstItem="VVf-hI-5G1" firstAttribute="trailing" secondItem="wyb-4p-ncE" secondAttribute="trailing" id="Yem-Tg-7LN"/>
  1334. <constraint firstAttribute="bottom" secondItem="VVf-hI-5G1" secondAttribute="bottom" id="hfJ-wU-eZ0"/>
  1335. <constraint firstItem="VVf-hI-5G1" firstAttribute="top" secondItem="tzb-Sy-Soy" secondAttribute="top" id="l4V-Th-7xM"/>
  1336. </constraints>
  1337. </view>
  1338. <value key="contentSizeForViewInPopover" type="size" width="540" height="680"/>
  1339. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1340. <size key="freeformSize" width="540" height="680"/>
  1341. <connections>
  1342. <outlet property="buttonAlert" destination="8zh-Mf-35k" id="2n2-2d-1NY"/>
  1343. <outlet property="buttonAvailability" destination="5mh-pW-BYL" id="myh-EJ-Lvn"/>
  1344. <outlet property="buttonBestSeller" destination="2Qp-FH-fAz" id="lnk-R5-hyD"/>
  1345. <outlet property="buttonPrice" destination="bAe-Za-GgE" id="yif-pK-3u6"/>
  1346. <outlet property="buttonQTY" destination="Jfe-5Y-slQ" id="1gg-Qw-Ybu"/>
  1347. <outlet property="labelPrice" destination="VkN-9z-S8u" id="dfX-K8-Gib"/>
  1348. <outlet property="scrollView" destination="VVf-hI-5G1" id="zyc-gZ-K7G"/>
  1349. <outlet property="textModelDescription" destination="uMF-kI-vmY" id="vIo-z2-RZQ"/>
  1350. <outlet property="textModelName" destination="0Od-XM-2kQ" id="lkn-eM-7Fp"/>
  1351. <outlet property="treeContainer" destination="fLS-Yn-00O" id="HpP-Tf-x1g"/>
  1352. </connections>
  1353. </viewController>
  1354. <placeholder placeholderIdentifier="IBFirstResponder" id="3iu-eX-epb" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1355. </objects>
  1356. <point key="canvasLocation" x="-598" y="1358"/>
  1357. </scene>
  1358. <!--Category View Controller-->
  1359. <scene sceneID="vTQ-Ry-D8H">
  1360. <objects>
  1361. <viewController storyboardIdentifier="CategoryViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="ayt-8S-R1j" customClass="CategoryViewController" sceneMemberID="viewController">
  1362. <view key="view" contentMode="scaleToFill" id="uLt-37-b3b">
  1363. <rect key="frame" x="0.0" y="0.0" width="768" height="1024"/>
  1364. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1365. <subviews>
  1366. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" showsHorizontalScrollIndicator="NO" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="bxA-xr-f6h">
  1367. <rect key="frame" x="0.0" y="44" width="768" height="980"/>
  1368. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1369. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1370. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="750-UW-B8W">
  1371. <size key="itemSize" width="175" height="250"/>
  1372. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  1373. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  1374. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  1375. </collectionViewFlowLayout>
  1376. <cells>
  1377. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="CategoryCellNPD" id="JSt-6l-I6L" customClass="CategoryCellNPD">
  1378. <rect key="frame" x="0.0" y="94.5" width="180" height="251"/>
  1379. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  1380. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  1381. <rect key="frame" x="0.0" y="0.0" width="180" height="251"/>
  1382. <autoresizingMask key="autoresizingMask"/>
  1383. <subviews>
  1384. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bOe-K7-vNm">
  1385. <rect key="frame" x="0.0" y="218" width="180" height="21"/>
  1386. <constraints>
  1387. <constraint firstAttribute="height" constant="21" id="4Qe-P1-ZHU"/>
  1388. </constraints>
  1389. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1390. <nil key="highlightedColor"/>
  1391. </label>
  1392. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Fvn-9b-Ra3">
  1393. <rect key="frame" x="0.0" y="189" width="180" height="21"/>
  1394. <constraints>
  1395. <constraint firstAttribute="height" constant="21" id="FPP-Rj-9c6"/>
  1396. </constraints>
  1397. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  1398. <nil key="highlightedColor"/>
  1399. </label>
  1400. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="1e9-UO-t5m">
  1401. <rect key="frame" x="1" y="1" width="178" height="178"/>
  1402. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1403. <constraints>
  1404. <constraint firstAttribute="width" secondItem="1e9-UO-t5m" secondAttribute="height" multiplier="1:1" id="lLL-5B-QxJ"/>
  1405. </constraints>
  1406. </imageView>
  1407. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="y6q-1y-cri">
  1408. <rect key="frame" x="8" y="155" width="16" height="16"/>
  1409. <constraints>
  1410. <constraint firstAttribute="height" constant="16" id="Hic-DO-BUf"/>
  1411. <constraint firstAttribute="width" constant="16" id="h7l-BV-wi3"/>
  1412. </constraints>
  1413. </imageView>
  1414. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="8Wk-74-Cdp">
  1415. <rect key="frame" x="148" y="8" width="24" height="24"/>
  1416. <constraints>
  1417. <constraint firstAttribute="height" constant="24" id="f98-32-lfK"/>
  1418. <constraint firstAttribute="width" constant="24" id="sO5-XI-f9O"/>
  1419. </constraints>
  1420. </imageView>
  1421. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="GmC-VZ-4Gy" userLabel="mark_wish">
  1422. <rect key="frame" x="8" y="8" width="16" height="16"/>
  1423. <constraints>
  1424. <constraint firstAttribute="width" constant="16" id="2aB-uj-U5c"/>
  1425. <constraint firstAttribute="height" constant="16" id="Dld-ue-GOf"/>
  1426. </constraints>
  1427. </imageView>
  1428. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="Upe-Zb-vDl" userLabel="mark_order">
  1429. <rect key="frame" x="156" y="155" width="16" height="16"/>
  1430. <constraints>
  1431. <constraint firstAttribute="width" constant="16" id="K0c-x2-F4Y"/>
  1432. <constraint firstAttribute="height" constant="16" id="PoK-cE-r1D"/>
  1433. </constraints>
  1434. </imageView>
  1435. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="qUd-v0-rYO" userLabel="mark_wish">
  1436. <rect key="frame" x="136" y="155" width="16" height="16"/>
  1437. <constraints>
  1438. <constraint firstAttribute="width" constant="16" id="HBo-1K-5Sc"/>
  1439. <constraint firstAttribute="height" constant="16" id="UO2-a5-hWC"/>
  1440. </constraints>
  1441. </imageView>
  1442. </subviews>
  1443. </view>
  1444. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1445. <constraints>
  1446. <constraint firstItem="1e9-UO-t5m" firstAttribute="bottom" secondItem="y6q-1y-cri" secondAttribute="bottom" constant="8" id="1Ll-Pp-xCr"/>
  1447. <constraint firstItem="Upe-Zb-vDl" firstAttribute="leading" secondItem="qUd-v0-rYO" secondAttribute="trailing" constant="4" id="1RV-WJ-8fg"/>
  1448. <constraint firstItem="Fvn-9b-Ra3" firstAttribute="leading" secondItem="JSt-6l-I6L" secondAttribute="leading" id="5eO-uw-OcV"/>
  1449. <constraint firstItem="y6q-1y-cri" firstAttribute="leading" secondItem="JSt-6l-I6L" secondAttribute="leading" constant="8" id="7pE-gw-FR5"/>
  1450. <constraint firstItem="1e9-UO-t5m" firstAttribute="leading" secondItem="JSt-6l-I6L" secondAttribute="leading" constant="1" id="9ts-fR-Azl"/>
  1451. <constraint firstAttribute="bottom" secondItem="bOe-K7-vNm" secondAttribute="bottom" constant="12" id="Bt3-x4-XiH"/>
  1452. <constraint firstItem="qUd-v0-rYO" firstAttribute="bottom" secondItem="y6q-1y-cri" secondAttribute="bottom" id="EF8-sp-tIq"/>
  1453. <constraint firstAttribute="trailing" secondItem="Upe-Zb-vDl" secondAttribute="trailing" constant="8" id="Ghb-4g-It6"/>
  1454. <constraint firstItem="1e9-UO-t5m" firstAttribute="top" secondItem="JSt-6l-I6L" secondAttribute="top" constant="1" id="GxR-4u-nXE"/>
  1455. <constraint firstItem="GmC-VZ-4Gy" firstAttribute="top" secondItem="JSt-6l-I6L" secondAttribute="top" constant="8" id="KqT-Fc-IjQ"/>
  1456. <constraint firstItem="8Wk-74-Cdp" firstAttribute="top" secondItem="JSt-6l-I6L" secondAttribute="top" constant="8" id="No2-Vo-Xyd"/>
  1457. <constraint firstItem="GmC-VZ-4Gy" firstAttribute="leading" secondItem="JSt-6l-I6L" secondAttribute="leading" constant="8" id="Qje-8h-BUj"/>
  1458. <constraint firstItem="bOe-K7-vNm" firstAttribute="top" secondItem="Fvn-9b-Ra3" secondAttribute="bottom" constant="8" id="aDd-cZ-eqx"/>
  1459. <constraint firstAttribute="trailing" secondItem="8Wk-74-Cdp" secondAttribute="trailing" constant="8" id="exD-Na-2fM"/>
  1460. <constraint firstItem="Upe-Zb-vDl" firstAttribute="bottom" secondItem="y6q-1y-cri" secondAttribute="bottom" id="kM5-B4-rNr"/>
  1461. <constraint firstAttribute="trailing" secondItem="1e9-UO-t5m" secondAttribute="trailing" constant="1" id="kmR-h9-fC9"/>
  1462. <constraint firstItem="bOe-K7-vNm" firstAttribute="leading" secondItem="JSt-6l-I6L" secondAttribute="leading" id="tAE-w6-Uj2"/>
  1463. <constraint firstAttribute="trailing" secondItem="bOe-K7-vNm" secondAttribute="trailing" id="uDc-ey-2AL"/>
  1464. <constraint firstAttribute="trailing" secondItem="Fvn-9b-Ra3" secondAttribute="trailing" id="ujA-Pv-JAs"/>
  1465. </constraints>
  1466. <size key="customSize" width="180" height="251"/>
  1467. <connections>
  1468. <outlet property="cellImageView" destination="1e9-UO-t5m" id="tC5-G2-T97"/>
  1469. <outlet property="checkImageView" destination="8Wk-74-Cdp" id="M2n-eX-Gg1"/>
  1470. <outlet property="mark_closeout" destination="GmC-VZ-4Gy" id="nCf-eG-sTy"/>
  1471. <outlet property="mark_moreColor" destination="y6q-1y-cri" id="Rwn-gW-Piv"/>
  1472. <outlet property="mark_order" destination="Upe-Zb-vDl" id="Rva-zT-BXW"/>
  1473. <outlet property="mark_wish" destination="qUd-v0-rYO" id="4jb-0J-fLJ"/>
  1474. <outlet property="modelNoLabel" destination="bOe-K7-vNm" id="tI1-ki-8Qx"/>
  1475. <outlet property="nameLabel" destination="Fvn-9b-Ra3" id="iQN-wU-eLG"/>
  1476. </connections>
  1477. </collectionViewCell>
  1478. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" restorationIdentifier="CategoryCellNPDLarge" reuseIdentifier="CategoryCellNPDLarge" id="K32-am-PAY" customClass="CategoryCellNPD">
  1479. <rect key="frame" x="399" y="0.0" width="369" height="440"/>
  1480. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  1481. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  1482. <rect key="frame" x="0.0" y="0.0" width="369" height="440"/>
  1483. <autoresizingMask key="autoresizingMask"/>
  1484. <subviews>
  1485. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Zey-fc-8B3">
  1486. <rect key="frame" x="1" y="1" width="367" height="367"/>
  1487. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1488. <constraints>
  1489. <constraint firstAttribute="width" secondItem="Zey-fc-8B3" secondAttribute="height" multiplier="1:1" id="fgd-p3-dRT"/>
  1490. </constraints>
  1491. </imageView>
  1492. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="e4u-Kd-A53">
  1493. <rect key="frame" x="0.0" y="407" width="369" height="21"/>
  1494. <constraints>
  1495. <constraint firstAttribute="height" constant="21" id="lYh-CT-dBr"/>
  1496. </constraints>
  1497. <fontDescription key="fontDescription" type="boldSystem" pointSize="20"/>
  1498. <nil key="highlightedColor"/>
  1499. </label>
  1500. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ryc-mO-jYR">
  1501. <rect key="frame" x="0.0" y="378" width="369" height="21"/>
  1502. <constraints>
  1503. <constraint firstAttribute="height" constant="21" id="Xig-EQ-4pR"/>
  1504. </constraints>
  1505. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  1506. <nil key="highlightedColor"/>
  1507. </label>
  1508. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="6Ku-jk-s5F">
  1509. <rect key="frame" x="337" y="8" width="24" height="24"/>
  1510. <constraints>
  1511. <constraint firstAttribute="width" constant="24" id="DV4-bI-h9k"/>
  1512. <constraint firstAttribute="height" constant="24" id="JWO-qa-o6L"/>
  1513. </constraints>
  1514. </imageView>
  1515. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="4PG-LD-XIU" userLabel="mark_order">
  1516. <rect key="frame" x="329" y="328" width="32" height="32"/>
  1517. <constraints>
  1518. <constraint firstAttribute="width" constant="32" id="1wi-qr-IoP"/>
  1519. <constraint firstAttribute="height" constant="32" id="kzR-il-L4l"/>
  1520. </constraints>
  1521. </imageView>
  1522. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="qyb-cW-yKb" userLabel="mark_wish">
  1523. <rect key="frame" x="293" y="328" width="32" height="32"/>
  1524. <constraints>
  1525. <constraint firstAttribute="height" constant="32" id="RHC-7L-sfJ"/>
  1526. <constraint firstAttribute="width" constant="32" id="XjX-5w-Amg"/>
  1527. </constraints>
  1528. </imageView>
  1529. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="RLn-aX-hnZ" userLabel="mark_wish">
  1530. <rect key="frame" x="8" y="8" width="32" height="32"/>
  1531. <constraints>
  1532. <constraint firstAttribute="width" constant="32" id="5fA-Zl-ZWX"/>
  1533. <constraint firstAttribute="height" constant="32" id="i7u-fF-Qey"/>
  1534. </constraints>
  1535. </imageView>
  1536. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="Ndj-fl-8sA">
  1537. <rect key="frame" x="8" y="328" width="32" height="32"/>
  1538. <constraints>
  1539. <constraint firstAttribute="height" constant="32" id="b7R-0j-PRS"/>
  1540. <constraint firstAttribute="width" constant="32" id="swB-9x-YKD"/>
  1541. </constraints>
  1542. </imageView>
  1543. </subviews>
  1544. </view>
  1545. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1546. <constraints>
  1547. <constraint firstItem="ryc-mO-jYR" firstAttribute="leading" secondItem="K32-am-PAY" secondAttribute="leading" id="1mG-7V-olO"/>
  1548. <constraint firstItem="e4u-Kd-A53" firstAttribute="leading" secondItem="K32-am-PAY" secondAttribute="leading" id="267-yB-Ozp"/>
  1549. <constraint firstItem="RLn-aX-hnZ" firstAttribute="leading" secondItem="K32-am-PAY" secondAttribute="leading" constant="8" id="3G0-Ct-Fdu"/>
  1550. <constraint firstAttribute="bottom" secondItem="e4u-Kd-A53" secondAttribute="bottom" constant="12" id="8tM-bQ-LTA"/>
  1551. <constraint firstAttribute="trailing" secondItem="Zey-fc-8B3" secondAttribute="trailing" constant="1" id="Aj6-ae-ayz"/>
  1552. <constraint firstItem="4PG-LD-XIU" firstAttribute="leading" secondItem="qyb-cW-yKb" secondAttribute="trailing" constant="4" id="Co1-Pe-7z4"/>
  1553. <constraint firstItem="Ndj-fl-8sA" firstAttribute="leading" secondItem="K32-am-PAY" secondAttribute="leading" constant="8" id="K08-Oc-lYd"/>
  1554. <constraint firstAttribute="trailing" secondItem="6Ku-jk-s5F" secondAttribute="trailing" constant="8" id="Kp5-yf-LD0"/>
  1555. <constraint firstItem="e4u-Kd-A53" firstAttribute="top" secondItem="ryc-mO-jYR" secondAttribute="bottom" constant="8" id="Oto-2d-MA7"/>
  1556. <constraint firstAttribute="trailing" secondItem="ryc-mO-jYR" secondAttribute="trailing" id="PVs-wX-yTQ"/>
  1557. <constraint firstItem="RLn-aX-hnZ" firstAttribute="top" secondItem="K32-am-PAY" secondAttribute="top" constant="8" id="SF6-hN-Lxg"/>
  1558. <constraint firstAttribute="trailing" secondItem="e4u-Kd-A53" secondAttribute="trailing" id="TeL-x6-367"/>
  1559. <constraint firstItem="6Ku-jk-s5F" firstAttribute="top" secondItem="K32-am-PAY" secondAttribute="top" constant="8" id="XdH-MG-X8U"/>
  1560. <constraint firstAttribute="trailing" secondItem="4PG-LD-XIU" secondAttribute="trailing" constant="8" id="YVo-HO-8iA"/>
  1561. <constraint firstItem="4PG-LD-XIU" firstAttribute="bottom" secondItem="Ndj-fl-8sA" secondAttribute="bottom" id="ZMq-RB-Pdj"/>
  1562. <constraint firstItem="Zey-fc-8B3" firstAttribute="top" secondItem="K32-am-PAY" secondAttribute="top" constant="1" id="bqz-AK-kai"/>
  1563. <constraint firstItem="Zey-fc-8B3" firstAttribute="bottom" secondItem="Ndj-fl-8sA" secondAttribute="bottom" constant="8" id="kXa-rw-uTb"/>
  1564. <constraint firstItem="qyb-cW-yKb" firstAttribute="bottom" secondItem="Ndj-fl-8sA" secondAttribute="bottom" id="vKf-tq-KKw"/>
  1565. <constraint firstItem="Zey-fc-8B3" firstAttribute="leading" secondItem="K32-am-PAY" secondAttribute="leading" constant="1" id="zg0-DT-0br"/>
  1566. </constraints>
  1567. <size key="customSize" width="369" height="440"/>
  1568. <connections>
  1569. <outlet property="cellImageView" destination="Zey-fc-8B3" id="KeG-en-xHZ"/>
  1570. <outlet property="checkImageView" destination="6Ku-jk-s5F" id="jby-R3-6Gj"/>
  1571. <outlet property="mark_closeout" destination="RLn-aX-hnZ" id="Pof-bN-JOK"/>
  1572. <outlet property="mark_moreColor" destination="Ndj-fl-8sA" id="DBe-7X-5Xr"/>
  1573. <outlet property="mark_order" destination="4PG-LD-XIU" id="La7-le-INY"/>
  1574. <outlet property="mark_wish" destination="qyb-cW-yKb" id="h1D-8c-O73"/>
  1575. <outlet property="modelNoLabel" destination="e4u-Kd-A53" id="1cH-Gx-e0s"/>
  1576. <outlet property="nameLabel" destination="ryc-mO-jYR" id="hd1-bo-oRX"/>
  1577. </connections>
  1578. </collectionViewCell>
  1579. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" restorationIdentifier="CategoryCellNPDList" reuseIdentifier="CategoryCellNPDList" id="0sG-Pk-s5M" customClass="CategoryCellNPD">
  1580. <rect key="frame" x="0.0" y="440" width="768" height="120"/>
  1581. <autoresizingMask key="autoresizingMask" flexibleMinY="YES"/>
  1582. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  1583. <rect key="frame" x="0.0" y="0.0" width="768" height="120"/>
  1584. <autoresizingMask key="autoresizingMask"/>
  1585. <subviews>
  1586. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="uzh-aY-Ai8">
  1587. <rect key="frame" x="10" y="10" width="100" height="100"/>
  1588. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1589. <constraints>
  1590. <constraint firstAttribute="width" constant="100" id="L4k-bo-nKQ"/>
  1591. <constraint firstAttribute="height" constant="100" id="snb-IK-PJP"/>
  1592. </constraints>
  1593. </imageView>
  1594. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="$139.99" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Q8n-IA-WO1">
  1595. <rect key="frame" x="118" y="89" width="519" height="21"/>
  1596. <constraints>
  1597. <constraint firstAttribute="height" constant="21" id="7Rd-gQ-7qw"/>
  1598. </constraints>
  1599. <fontDescription key="fontDescription" type="boldSystem" pointSize="20"/>
  1600. <nil key="highlightedColor"/>
  1601. </label>
  1602. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Name&amp;Description" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="R8j-zR-hXX">
  1603. <rect key="frame" x="118" y="10" width="519" height="68"/>
  1604. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  1605. <nil key="highlightedColor"/>
  1606. </label>
  1607. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="7IK-Hd-HO3">
  1608. <rect key="frame" x="729" y="10" width="24" height="24"/>
  1609. <constraints>
  1610. <constraint firstAttribute="height" constant="24" id="9na-zR-i0K"/>
  1611. <constraint firstAttribute="width" constant="24" id="R8h-tP-ojG"/>
  1612. </constraints>
  1613. </imageView>
  1614. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_cart_32" translatesAutoresizingMaskIntoConstraints="NO" id="bTT-FN-amj" userLabel="mark_order">
  1615. <rect key="frame" x="729" y="86" width="24" height="24"/>
  1616. <constraints>
  1617. <constraint firstAttribute="height" constant="24" id="1Yy-2S-lpC"/>
  1618. <constraint firstAttribute="width" constant="24" id="YXe-I7-Z1M"/>
  1619. </constraints>
  1620. </imageView>
  1621. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_wish_32" translatesAutoresizingMaskIntoConstraints="NO" id="QSz-EU-cYf" userLabel="mark_wish">
  1622. <rect key="frame" x="701" y="86" width="24" height="24"/>
  1623. <constraints>
  1624. <constraint firstAttribute="height" constant="24" id="8i5-o5-3ux"/>
  1625. <constraint firstAttribute="width" constant="24" id="MqY-ls-JMe"/>
  1626. </constraints>
  1627. </imageView>
  1628. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mark_closeout_32" translatesAutoresizingMaskIntoConstraints="NO" id="BNL-V7-e4b" userLabel="mark_wish">
  1629. <rect key="frame" x="673" y="86" width="24" height="24"/>
  1630. <constraints>
  1631. <constraint firstAttribute="height" constant="24" id="Kfv-OK-GZP"/>
  1632. <constraint firstAttribute="width" constant="24" id="qQE-vN-ENV"/>
  1633. </constraints>
  1634. </imageView>
  1635. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="more_color_larger" translatesAutoresizingMaskIntoConstraints="NO" id="44A-MO-v4u">
  1636. <rect key="frame" x="645" y="86" width="24" height="24"/>
  1637. <constraints>
  1638. <constraint firstAttribute="width" constant="24" id="2MP-Yy-IzD"/>
  1639. <constraint firstAttribute="height" constant="24" id="Pd4-ST-eNg"/>
  1640. </constraints>
  1641. </imageView>
  1642. </subviews>
  1643. </view>
  1644. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1645. <constraints>
  1646. <constraint firstItem="uzh-aY-Ai8" firstAttribute="leading" secondItem="0sG-Pk-s5M" secondAttribute="leading" constant="10" id="0tn-f2-WGj"/>
  1647. <constraint firstItem="bTT-FN-amj" firstAttribute="top" secondItem="R8j-zR-hXX" secondAttribute="bottom" constant="8" id="4ZL-TQ-aBw"/>
  1648. <constraint firstItem="bTT-FN-amj" firstAttribute="leading" secondItem="QSz-EU-cYf" secondAttribute="trailing" constant="4" id="5JR-YX-gr4"/>
  1649. <constraint firstItem="Q8n-IA-WO1" firstAttribute="leading" secondItem="uzh-aY-Ai8" secondAttribute="trailing" constant="8" id="6Zz-zA-r3r"/>
  1650. <constraint firstItem="Q8n-IA-WO1" firstAttribute="bottom" secondItem="uzh-aY-Ai8" secondAttribute="bottom" id="6v1-b3-zKI"/>
  1651. <constraint firstAttribute="bottom" secondItem="uzh-aY-Ai8" secondAttribute="bottom" constant="10" id="Ckd-Jr-Cfy"/>
  1652. <constraint firstAttribute="trailing" secondItem="bTT-FN-amj" secondAttribute="trailing" constant="15" id="F37-cm-qZz"/>
  1653. <constraint firstItem="BNL-V7-e4b" firstAttribute="bottom" secondItem="uzh-aY-Ai8" secondAttribute="bottom" id="L93-Za-ouW"/>
  1654. <constraint firstItem="44A-MO-v4u" firstAttribute="leading" secondItem="Q8n-IA-WO1" secondAttribute="trailing" constant="8" id="Lzc-us-qmT"/>
  1655. <constraint firstItem="BNL-V7-e4b" firstAttribute="leading" secondItem="44A-MO-v4u" secondAttribute="trailing" constant="4" id="VIN-Pu-l8Q"/>
  1656. <constraint firstItem="44A-MO-v4u" firstAttribute="bottom" secondItem="uzh-aY-Ai8" secondAttribute="bottom" id="aEm-06-Uz2"/>
  1657. <constraint firstItem="QSz-EU-cYf" firstAttribute="leading" secondItem="BNL-V7-e4b" secondAttribute="trailing" constant="4" id="akR-Ba-83R"/>
  1658. <constraint firstAttribute="trailing" secondItem="7IK-Hd-HO3" secondAttribute="trailing" constant="15" id="baM-gg-pZv"/>
  1659. <constraint firstItem="Q8n-IA-WO1" firstAttribute="trailing" secondItem="R8j-zR-hXX" secondAttribute="trailing" id="eTo-DP-CbP"/>
  1660. <constraint firstItem="R8j-zR-hXX" firstAttribute="top" secondItem="uzh-aY-Ai8" secondAttribute="top" id="j5r-NU-in8"/>
  1661. <constraint firstItem="QSz-EU-cYf" firstAttribute="bottom" secondItem="uzh-aY-Ai8" secondAttribute="bottom" id="m5A-Ho-04p"/>
  1662. <constraint firstItem="7IK-Hd-HO3" firstAttribute="top" secondItem="uzh-aY-Ai8" secondAttribute="top" id="rLG-1D-uLh"/>
  1663. <constraint firstItem="Q8n-IA-WO1" firstAttribute="leading" secondItem="R8j-zR-hXX" secondAttribute="leading" id="rjI-Sk-QaQ"/>
  1664. <constraint firstItem="bTT-FN-amj" firstAttribute="bottom" secondItem="uzh-aY-Ai8" secondAttribute="bottom" id="wS2-sr-FcB"/>
  1665. <constraint firstItem="uzh-aY-Ai8" firstAttribute="top" secondItem="0sG-Pk-s5M" secondAttribute="top" constant="10" id="zcR-KR-Rwz"/>
  1666. </constraints>
  1667. <size key="customSize" width="768" height="120"/>
  1668. <connections>
  1669. <outlet property="cellImageView" destination="uzh-aY-Ai8" id="uJ0-jY-D8E"/>
  1670. <outlet property="checkImageView" destination="7IK-Hd-HO3" id="Q2B-l5-clY"/>
  1671. <outlet property="mark_closeout" destination="BNL-V7-e4b" id="38d-Ej-7P7"/>
  1672. <outlet property="mark_moreColor" destination="44A-MO-v4u" id="lod-FE-RAa"/>
  1673. <outlet property="mark_order" destination="bTT-FN-amj" id="fXk-Vl-DSs"/>
  1674. <outlet property="mark_wish" destination="QSz-EU-cYf" id="bia-Ri-AcZ"/>
  1675. <outlet property="modelNoLabel" destination="Q8n-IA-WO1" id="Ku4-Jh-AlM"/>
  1676. <outlet property="nameLabel" destination="R8j-zR-hXX" id="bx2-oL-Dfe"/>
  1677. </connections>
  1678. </collectionViewCell>
  1679. </cells>
  1680. <connections>
  1681. <outlet property="dataSource" destination="ayt-8S-R1j" id="89b-jw-0mk"/>
  1682. <outlet property="delegate" destination="ayt-8S-R1j" id="oMg-nz-szi"/>
  1683. </connections>
  1684. </collectionView>
  1685. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0tN-LM-2Xd" customClass="CategoryHeaderView">
  1686. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  1687. <subviews>
  1688. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="r17-6z-y2f">
  1689. <rect key="frame" x="713" y="7" width="45" height="30"/>
  1690. <constraints>
  1691. <constraint firstAttribute="height" constant="30" id="aLX-of-izd"/>
  1692. <constraint firstAttribute="width" constant="45" id="yCx-eC-nPk"/>
  1693. </constraints>
  1694. <state key="normal" title="Select"/>
  1695. <connections>
  1696. <action selector="onSelectClick:" destination="ayt-8S-R1j" eventType="touchUpInside" id="LnX-as-lJS"/>
  1697. </connections>
  1698. </button>
  1699. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="99999 Items" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hzj-7S-cNi">
  1700. <rect key="frame" x="425" y="11.5" width="100" height="21"/>
  1701. <constraints>
  1702. <constraint firstAttribute="width" constant="100" id="Tf2-xl-Dkl"/>
  1703. <constraint firstAttribute="height" constant="21" id="iGr-lq-P56"/>
  1704. </constraints>
  1705. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1706. <color key="textColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1707. <nil key="highlightedColor"/>
  1708. </label>
  1709. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Category&gt;some type&gt;some subtype" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LHu-yy-RWe">
  1710. <rect key="frame" x="8" y="11.5" width="397" height="21"/>
  1711. <constraints>
  1712. <constraint firstAttribute="height" constant="21" id="qig-MF-8ue"/>
  1713. </constraints>
  1714. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1715. <color key="textColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1716. <nil key="highlightedColor"/>
  1717. </label>
  1718. <button opaque="NO" tag="3" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Mgs-C7-4Mi" userLabel="Display_large">
  1719. <rect key="frame" x="669" y="6" width="32" height="32"/>
  1720. <constraints>
  1721. <constraint firstAttribute="height" constant="32" id="M1K-aI-OMo"/>
  1722. <constraint firstAttribute="width" constant="32" id="Xj1-9s-Sgc"/>
  1723. </constraints>
  1724. <state key="normal" image="laytou_large">
  1725. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1726. </state>
  1727. <connections>
  1728. <action selector="onChangeDisplay:" destination="ayt-8S-R1j" eventType="touchUpInside" id="gXO-Ot-Hfd"/>
  1729. </connections>
  1730. </button>
  1731. <button opaque="NO" tag="2" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pYA-7j-MS5" userLabel="Display_small">
  1732. <rect key="frame" x="625" y="6" width="32" height="32"/>
  1733. <constraints>
  1734. <constraint firstAttribute="height" constant="32" id="Rle-Qv-YWg"/>
  1735. <constraint firstAttribute="width" constant="32" id="jBi-m6-wsU"/>
  1736. </constraints>
  1737. <state key="normal" image="layout_small">
  1738. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1739. </state>
  1740. <connections>
  1741. <action selector="onChangeDisplay:" destination="ayt-8S-R1j" eventType="touchUpInside" id="x1f-oO-Rnf"/>
  1742. </connections>
  1743. </button>
  1744. <button opaque="NO" tag="4" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jzu-Il-JH3" userLabel="Display_list">
  1745. <rect key="frame" x="581" y="6" width="32" height="32"/>
  1746. <constraints>
  1747. <constraint firstAttribute="height" constant="32" id="EXY-g6-wmn"/>
  1748. <constraint firstAttribute="width" constant="32" id="dFm-qU-1BL"/>
  1749. </constraints>
  1750. <state key="normal" title="Button" image="layout_list"/>
  1751. <connections>
  1752. <action selector="onChangeDisplay:" destination="ayt-8S-R1j" eventType="touchUpInside" id="SSm-GQ-tq4"/>
  1753. </connections>
  1754. </button>
  1755. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MJz-NK-Tfa">
  1756. <rect key="frame" x="537" y="6" width="32" height="32"/>
  1757. <constraints>
  1758. <constraint firstAttribute="height" constant="32" id="0SY-Zq-Fdt"/>
  1759. <constraint firstAttribute="width" constant="32" id="xDZ-kk-5gJ"/>
  1760. </constraints>
  1761. <state key="normal" backgroundImage="filter"/>
  1762. <connections>
  1763. <action selector="onFilterClicked:" destination="ayt-8S-R1j" eventType="touchUpInside" id="atV-Lp-EfE"/>
  1764. </connections>
  1765. </button>
  1766. </subviews>
  1767. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1768. <constraints>
  1769. <constraint firstItem="LHu-yy-RWe" firstAttribute="leading" secondItem="0tN-LM-2Xd" secondAttribute="leading" constant="8" id="3aw-vk-CGX"/>
  1770. <constraint firstItem="pYA-7j-MS5" firstAttribute="leading" secondItem="jzu-Il-JH3" secondAttribute="trailing" constant="12" id="9W9-Z9-Qsr"/>
  1771. <constraint firstAttribute="height" constant="44" id="DvD-YQ-kl3"/>
  1772. <constraint firstItem="r17-6z-y2f" firstAttribute="centerY" secondItem="0tN-LM-2Xd" secondAttribute="centerY" id="FfD-Ms-8kC"/>
  1773. <constraint firstItem="r17-6z-y2f" firstAttribute="leading" secondItem="Mgs-C7-4Mi" secondAttribute="trailing" constant="12" id="GWm-Ns-Ot1"/>
  1774. <constraint firstItem="hzj-7S-cNi" firstAttribute="leading" secondItem="LHu-yy-RWe" secondAttribute="trailing" constant="20" id="QwD-Xd-a1J"/>
  1775. <constraint firstItem="MJz-NK-Tfa" firstAttribute="leading" secondItem="hzj-7S-cNi" secondAttribute="trailing" constant="12" id="Rzw-10-5Ws"/>
  1776. <constraint firstItem="hzj-7S-cNi" firstAttribute="centerY" secondItem="0tN-LM-2Xd" secondAttribute="centerY" id="Vm9-aj-Nfk"/>
  1777. <constraint firstItem="Mgs-C7-4Mi" firstAttribute="leading" secondItem="pYA-7j-MS5" secondAttribute="trailing" constant="12" id="cXw-nl-h2c"/>
  1778. <constraint firstItem="MJz-NK-Tfa" firstAttribute="centerY" secondItem="0tN-LM-2Xd" secondAttribute="centerY" id="i9z-2m-tSu"/>
  1779. <constraint firstItem="pYA-7j-MS5" firstAttribute="centerY" secondItem="0tN-LM-2Xd" secondAttribute="centerY" id="rW9-i9-daf"/>
  1780. <constraint firstItem="jzu-Il-JH3" firstAttribute="centerY" secondItem="0tN-LM-2Xd" secondAttribute="centerY" id="rki-e2-nsh"/>
  1781. <constraint firstItem="LHu-yy-RWe" firstAttribute="centerY" secondItem="0tN-LM-2Xd" secondAttribute="centerY" id="vbh-HZ-ysZ"/>
  1782. <constraint firstItem="Mgs-C7-4Mi" firstAttribute="centerY" secondItem="0tN-LM-2Xd" secondAttribute="centerY" id="x0I-Db-76I"/>
  1783. <constraint firstAttribute="trailing" secondItem="r17-6z-y2f" secondAttribute="trailing" constant="10" id="xGb-8e-A2f"/>
  1784. <constraint firstItem="jzu-Il-JH3" firstAttribute="leading" secondItem="MJz-NK-Tfa" secondAttribute="trailing" constant="12" id="yQR-gc-HAb"/>
  1785. </constraints>
  1786. </view>
  1787. <toolbar hidden="YES" opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="FOk-8J-App">
  1788. <rect key="frame" x="0.0" y="0.0" width="768" height="44"/>
  1789. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1790. <items>
  1791. <barButtonItem title="Add To Wish List" id="BTI-av-g18">
  1792. <connections>
  1793. <action selector="onAddWishlistClick:" destination="ayt-8S-R1j" id="sho-mD-wtH"/>
  1794. </connections>
  1795. </barButtonItem>
  1796. <barButtonItem style="plain" systemItem="flexibleSpace" id="1gz-ll-tyz"/>
  1797. <barButtonItem title="Add to Cart" id="O4l-88-I1H">
  1798. <connections>
  1799. <action selector="onAddCartClick:" destination="ayt-8S-R1j" id="dbt-bv-yAR"/>
  1800. </connections>
  1801. </barButtonItem>
  1802. <barButtonItem style="plain" systemItem="flexibleSpace" id="zUD-gA-l6r"/>
  1803. <barButtonItem title="Add to Portfolio" id="bSw-yP-hBK">
  1804. <connections>
  1805. <action selector="onAddPortfolioClick:" destination="ayt-8S-R1j" id="yiN-KB-bz5"/>
  1806. </connections>
  1807. </barButtonItem>
  1808. <barButtonItem style="plain" systemItem="flexibleSpace" id="fuR-BG-2WM"/>
  1809. <barButtonItem image="check_1_24" width="18" id="9L5-8U-ege">
  1810. <connections>
  1811. <action selector="allAllCheckBtnClick:" destination="ayt-8S-R1j" id="4sj-YN-7gC"/>
  1812. </connections>
  1813. </barButtonItem>
  1814. <barButtonItem title="Add All" id="4nE-gy-r5m">
  1815. <connections>
  1816. <action selector="addAllBtnClick:" destination="ayt-8S-R1j" id="Law-hS-8w5"/>
  1817. </connections>
  1818. </barButtonItem>
  1819. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="jXn-va-od3"/>
  1820. <barButtonItem title="Select" id="sny-zy-peB">
  1821. <connections>
  1822. <action selector="onSelectAllClick:" destination="ayt-8S-R1j" id="adS-zI-m7z"/>
  1823. </connections>
  1824. </barButtonItem>
  1825. <barButtonItem width="30" style="plain" systemItem="fixedSpace" id="2M0-2f-CVf"/>
  1826. <barButtonItem title="Cancel" id="6sn-fM-bTr" userLabel="Cancel">
  1827. <connections>
  1828. <action selector="onCancelSelectClick:" destination="ayt-8S-R1j" id="elB-A5-ntd"/>
  1829. </connections>
  1830. </barButtonItem>
  1831. </items>
  1832. </toolbar>
  1833. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="WTH-xD-Oln">
  1834. <rect key="frame" x="365.5" y="493.5" width="37" height="37"/>
  1835. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1836. </activityIndicatorView>
  1837. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CYf-aH-yiE">
  1838. <rect key="frame" x="263.5" y="489.5" width="241.5" height="45.5"/>
  1839. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1840. <color key="textColor" red="0.33333333329999998" green="0.33333333329999998" blue="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1841. <nil key="highlightedColor"/>
  1842. </label>
  1843. </subviews>
  1844. <viewLayoutGuide key="safeArea" id="Fr5-Zu-LYs"/>
  1845. <constraints>
  1846. <constraint firstItem="WTH-xD-Oln" firstAttribute="centerY" secondItem="uLt-37-b3b" secondAttribute="centerY" id="7Sq-dV-qwd"/>
  1847. <constraint firstItem="0tN-LM-2Xd" firstAttribute="top" secondItem="uLt-37-b3b" secondAttribute="top" id="EgZ-q3-18O"/>
  1848. <constraint firstItem="0tN-LM-2Xd" firstAttribute="leading" secondItem="Fr5-Zu-LYs" secondAttribute="leading" id="FOr-b1-jbd"/>
  1849. <constraint firstItem="WTH-xD-Oln" firstAttribute="centerX" secondItem="Fr5-Zu-LYs" secondAttribute="centerX" id="Mhv-ZL-6Ty"/>
  1850. <constraint firstItem="CYf-aH-yiE" firstAttribute="centerY" secondItem="uLt-37-b3b" secondAttribute="centerY" id="Z5v-uQ-Sau"/>
  1851. <constraint firstItem="CYf-aH-yiE" firstAttribute="centerX" secondItem="Fr5-Zu-LYs" secondAttribute="centerX" id="j28-7X-iSH"/>
  1852. <constraint firstItem="0tN-LM-2Xd" firstAttribute="trailing" secondItem="Fr5-Zu-LYs" secondAttribute="trailing" id="uBf-Wk-QcI"/>
  1853. </constraints>
  1854. </view>
  1855. <connections>
  1856. <outlet property="addAllBtn" destination="4nE-gy-r5m" id="MNr-3d-xkS"/>
  1857. <outlet property="addAllCheckBtn" destination="9L5-8U-ege" id="L5w-QJ-ZLL"/>
  1858. <outlet property="addCartBtn" destination="O4l-88-I1H" id="Lvq-BX-oCB"/>
  1859. <outlet property="addPortfolioBtn" destination="bSw-yP-hBK" id="a7G-k3-GTm"/>
  1860. <outlet property="addWishBtn" destination="BTI-av-g18" id="mzM-5e-mIN"/>
  1861. <outlet property="btn_select" destination="r17-6z-y2f" id="ib1-0M-swc"/>
  1862. <outlet property="cagegoryLabel" destination="LHu-yy-RWe" id="7Sz-mj-DDx"/>
  1863. <outlet property="collectionview" destination="bxA-xr-f6h" id="kIZ-pa-JAS"/>
  1864. <outlet property="headerView" destination="0tN-LM-2Xd" id="aAU-KA-VRt"/>
  1865. <outlet property="labelTotal" destination="hzj-7S-cNi" id="nzF-sF-Kiv"/>
  1866. <outlet property="label_net_err" destination="CYf-aH-yiE" id="Hoq-Fs-eHY"/>
  1867. <outlet property="mum" destination="WTH-xD-Oln" id="4bT-Rh-RNU"/>
  1868. <outlet property="selectToolbar" destination="FOk-8J-App" id="FIY-zK-PYm"/>
  1869. <outlet property="selectallBtn" destination="sny-zy-peB" id="Qbd-sN-ubk"/>
  1870. </connections>
  1871. </viewController>
  1872. <placeholder placeholderIdentifier="IBFirstResponder" id="UuU-3D-xIz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1873. </objects>
  1874. <point key="canvasLocation" x="-2725" y="438.8671875"/>
  1875. </scene>
  1876. <!--Category Selection-->
  1877. <scene sceneID="voB-Cf-rOL">
  1878. <objects>
  1879. <viewController storyboardIdentifier="RAViewController" title="Category Selection" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Dnb-uE-W12" customClass="RAViewController" sceneMemberID="viewController">
  1880. <view key="view" contentMode="scaleToFill" id="eFT-gS-v0L">
  1881. <rect key="frame" x="0.0" y="0.0" width="540" height="620"/>
  1882. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1883. <subviews>
  1884. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="axf-kj-0b6" userLabel="treeview container">
  1885. <rect key="frame" x="0.0" y="44" width="540" height="576"/>
  1886. </view>
  1887. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="kRL-ks-spB">
  1888. <rect key="frame" x="131" y="274" width="277" height="73"/>
  1889. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1890. <color key="textColor" red="0.33333333329999998" green="0.33333333329999998" blue="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1891. <nil key="highlightedColor"/>
  1892. </label>
  1893. </subviews>
  1894. <viewLayoutGuide key="safeArea" id="dIL-G4-QNB"/>
  1895. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1896. <constraints>
  1897. <constraint firstAttribute="bottom" secondItem="axf-kj-0b6" secondAttribute="bottom" id="2BW-pD-F7U"/>
  1898. <constraint firstItem="axf-kj-0b6" firstAttribute="leading" secondItem="dIL-G4-QNB" secondAttribute="leading" id="S8a-MF-thI"/>
  1899. <constraint firstItem="axf-kj-0b6" firstAttribute="trailing" secondItem="dIL-G4-QNB" secondAttribute="trailing" id="eTY-SI-Zn8"/>
  1900. <constraint firstItem="axf-kj-0b6" firstAttribute="top" secondItem="dIL-G4-QNB" secondAttribute="top" constant="24" id="o2Z-67-eYO"/>
  1901. <constraint firstItem="axf-kj-0b6" firstAttribute="centerX" secondItem="kRL-ks-spB" secondAttribute="centerX" id="prS-AL-Hfi"/>
  1902. </constraints>
  1903. </view>
  1904. <value key="contentSizeForViewInPopover" type="size" width="540" height="620"/>
  1905. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1906. <size key="freeformSize" width="540" height="620"/>
  1907. <connections>
  1908. <outlet property="label_net_err" destination="kRL-ks-spB" id="YMR-Tv-vB4"/>
  1909. <outlet property="treeContainer" destination="axf-kj-0b6" id="v1b-OK-aT7"/>
  1910. </connections>
  1911. </viewController>
  1912. <placeholder placeholderIdentifier="IBFirstResponder" id="pf1-iJ-8F7" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1913. </objects>
  1914. <point key="canvasLocation" x="-1938" y="1376"/>
  1915. </scene>
  1916. <!--Category Filter-->
  1917. <scene sceneID="OUb-Si-EbE">
  1918. <objects>
  1919. <viewController storyboardIdentifier="CategorySearchFilterViewController" title="Category Filter" useStoryboardIdentifierAsRestorationIdentifier="YES" id="g8P-mU-4x1" customClass="CategorySearchFilterViewController" sceneMemberID="viewController">
  1920. <view key="view" contentMode="scaleToFill" id="VMz-d0-X7j">
  1921. <rect key="frame" x="0.0" y="0.0" width="540" height="680"/>
  1922. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1923. <subviews>
  1924. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="9pl-MJ-YCv">
  1925. <rect key="frame" x="0.0" y="0.0" width="540" height="680"/>
  1926. <subviews>
  1927. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="WOe-yi-wQa">
  1928. <rect key="frame" x="0.0" y="0.0" width="540" height="680"/>
  1929. <subviews>
  1930. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Alert:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="l19-cb-AjS">
  1931. <rect key="frame" x="20" y="451" width="150" height="21"/>
  1932. <constraints>
  1933. <constraint firstAttribute="width" constant="150" id="NIf-zb-VmG"/>
  1934. <constraint firstAttribute="height" constant="21" id="tVH-Mh-H5d"/>
  1935. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="120" id="xNy-VH-Hnc"/>
  1936. </constraints>
  1937. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1938. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1939. <nil key="highlightedColor"/>
  1940. </label>
  1941. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Availability:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fJR-PY-2MQ">
  1942. <rect key="frame" x="20" y="415" width="150" height="21"/>
  1943. <constraints>
  1944. <constraint firstAttribute="height" constant="21" id="LGz-aj-9x0"/>
  1945. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="120" id="Yv2-hi-qjS"/>
  1946. <constraint firstAttribute="width" constant="150" id="aJc-8t-WKh"/>
  1947. </constraints>
  1948. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1949. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1950. <nil key="highlightedColor"/>
  1951. </label>
  1952. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ei3-Zk-MvM">
  1953. <rect key="frame" x="126" y="482.5" width="394" height="30"/>
  1954. <constraints>
  1955. <constraint firstAttribute="height" constant="30" id="3T8-Zn-kaw"/>
  1956. </constraints>
  1957. <state key="normal" title="Click to select">
  1958. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1959. </state>
  1960. <connections>
  1961. <action selector="onQTYClick:" destination="g8P-mU-4x1" eventType="touchUpInside" id="1uH-z8-fxT"/>
  1962. </connections>
  1963. </button>
  1964. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7ds-kb-06q">
  1965. <rect key="frame" x="176" y="518.5" width="344" height="30"/>
  1966. <constraints>
  1967. <constraint firstAttribute="height" constant="30" id="NrN-ga-xBg"/>
  1968. </constraints>
  1969. <state key="normal" title="Click to select">
  1970. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1971. </state>
  1972. <connections>
  1973. <action selector="onBestSellerClick:" destination="g8P-mU-4x1" eventType="touchUpInside" id="5XS-bb-xcO"/>
  1974. </connections>
  1975. </button>
  1976. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sold by QTY:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="W2W-6W-20Q">
  1977. <rect key="frame" x="20" y="487" width="100" height="21"/>
  1978. <constraints>
  1979. <constraint firstAttribute="height" constant="21" id="UIO-DC-B1k"/>
  1980. <constraint firstAttribute="width" constant="100" id="iDL-YQ-aO1"/>
  1981. </constraints>
  1982. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1983. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1984. <nil key="highlightedColor"/>
  1985. </label>
  1986. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Best Seller:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MdI-LH-ehb">
  1987. <rect key="frame" x="20" y="523" width="150" height="21"/>
  1988. <constraints>
  1989. <constraint firstAttribute="height" constant="21" id="0jh-tO-vJX"/>
  1990. <constraint firstAttribute="width" constant="150" id="Chb-Uz-Oba"/>
  1991. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="120" id="eiy-Dm-bn1"/>
  1992. </constraints>
  1993. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1994. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1995. <nil key="highlightedColor"/>
  1996. </label>
  1997. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Price:" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XyL-AU-Twt">
  1998. <rect key="frame" x="20" y="559" width="150" height="21"/>
  1999. <constraints>
  2000. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="120" id="L0C-DS-4oG"/>
  2001. <constraint firstAttribute="width" constant="150" id="anc-Bi-vYh"/>
  2002. <constraint firstAttribute="height" constant="21" id="dfH-Q1-ujw"/>
  2003. </constraints>
  2004. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2005. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2006. <nil key="highlightedColor"/>
  2007. </label>
  2008. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="T1S-Bo-LHK">
  2009. <rect key="frame" x="176" y="446.5" width="344" height="30"/>
  2010. <constraints>
  2011. <constraint firstAttribute="height" constant="30" id="4hG-qy-GVW"/>
  2012. </constraints>
  2013. <state key="normal" title="Click to select">
  2014. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2015. </state>
  2016. <connections>
  2017. <action selector="onAlertClick:" destination="g8P-mU-4x1" eventType="touchUpInside" id="WBe-2V-rSi"/>
  2018. </connections>
  2019. </button>
  2020. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Qwu-mH-sLI">
  2021. <rect key="frame" x="176" y="410.5" width="344" height="30"/>
  2022. <constraints>
  2023. <constraint firstAttribute="height" constant="30" id="oQr-aV-xte"/>
  2024. </constraints>
  2025. <state key="normal" title="Click to select">
  2026. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2027. </state>
  2028. <connections>
  2029. <action selector="onAvailabilityClick:" destination="g8P-mU-4x1" eventType="touchUpInside" id="J9J-de-7eR"/>
  2030. </connections>
  2031. </button>
  2032. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qBx-yX-au5" customClass="DefaultImageButton">
  2033. <rect key="frame" x="50" y="630" width="100" height="30"/>
  2034. <constraints>
  2035. <constraint firstAttribute="height" constant="30" id="kWV-44-Jxb"/>
  2036. <constraint firstAttribute="width" constant="100" id="yk6-ln-V5s"/>
  2037. </constraints>
  2038. <state key="normal" title="Reset" backgroundImage="btn_reset">
  2039. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  2040. </state>
  2041. <userDefinedRuntimeAttributes>
  2042. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  2043. <integer key="value" value="15"/>
  2044. </userDefinedRuntimeAttribute>
  2045. </userDefinedRuntimeAttributes>
  2046. <connections>
  2047. <action selector="onResetClick:" destination="g8P-mU-4x1" eventType="touchUpInside" id="4X8-QH-2Pq"/>
  2048. </connections>
  2049. </button>
  2050. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xAv-TP-7vv" customClass="DefaultImageButton">
  2051. <rect key="frame" x="390" y="630" width="100" height="30"/>
  2052. <constraints>
  2053. <constraint firstAttribute="width" constant="100" id="agn-G2-wis"/>
  2054. <constraint firstAttribute="height" constant="30" id="r7R-Zk-SVF"/>
  2055. </constraints>
  2056. <state key="normal" title="OK" backgroundImage="btn_ok">
  2057. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  2058. </state>
  2059. <userDefinedRuntimeAttributes>
  2060. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  2061. <integer key="value" value="15"/>
  2062. </userDefinedRuntimeAttribute>
  2063. </userDefinedRuntimeAttributes>
  2064. <connections>
  2065. <action selector="onSearchClick:" destination="g8P-mU-4x1" eventType="touchUpInside" id="9tX-1O-OSE"/>
  2066. </connections>
  2067. </button>
  2068. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="a8R-bc-me5">
  2069. <rect key="frame" x="176" y="554.5" width="344" height="30"/>
  2070. <constraints>
  2071. <constraint firstAttribute="height" constant="30" id="ZzD-F7-mWc"/>
  2072. </constraints>
  2073. <state key="normal" title="Click to select">
  2074. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2075. </state>
  2076. <connections>
  2077. <action selector="onPriceClick:" destination="g8P-mU-4x1" eventType="touchUpInside" id="c9b-fR-1Sz"/>
  2078. </connections>
  2079. </button>
  2080. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Item Number:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MvV-eq-cCO">
  2081. <rect key="frame" x="20" y="337" width="104" height="21"/>
  2082. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2083. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2084. <nil key="highlightedColor"/>
  2085. </label>
  2086. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Description:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EGa-0v-X88">
  2087. <rect key="frame" x="280" y="337" width="92" height="21"/>
  2088. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2089. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2090. <nil key="highlightedColor"/>
  2091. </label>
  2092. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="cQn-hR-TUa">
  2093. <rect key="frame" x="20" y="366" width="240" height="34"/>
  2094. <constraints>
  2095. <constraint firstAttribute="width" constant="240" id="7Mc-nG-fcC"/>
  2096. </constraints>
  2097. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  2098. <textInputTraits key="textInputTraits"/>
  2099. </textField>
  2100. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="eHZ-vh-dRW">
  2101. <rect key="frame" x="280" y="366" width="240" height="34"/>
  2102. <constraints>
  2103. <constraint firstAttribute="width" constant="240" id="Dfv-f3-YUU"/>
  2104. </constraints>
  2105. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  2106. <textInputTraits key="textInputTraits"/>
  2107. </textField>
  2108. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="e3B-9N-eea">
  2109. <rect key="frame" x="10" y="5" width="520" height="320"/>
  2110. <constraints>
  2111. <constraint firstAttribute="height" constant="320" id="y3a-7t-tJT"/>
  2112. </constraints>
  2113. </view>
  2114. </subviews>
  2115. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2116. <constraints>
  2117. <constraint firstItem="cQn-hR-TUa" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="20" id="0Y3-vz-6Mj"/>
  2118. <constraint firstItem="MvV-eq-cCO" firstAttribute="top" secondItem="e3B-9N-eea" secondAttribute="bottom" constant="12" id="9G1-HX-0jj"/>
  2119. <constraint firstAttribute="bottom" secondItem="xAv-TP-7vv" secondAttribute="bottom" constant="20" id="9iG-gs-4Bu"/>
  2120. <constraint firstItem="EGa-0v-X88" firstAttribute="top" secondItem="e3B-9N-eea" secondAttribute="bottom" constant="12" id="Bsh-to-fql"/>
  2121. <constraint firstAttribute="trailing" secondItem="Qwu-mH-sLI" secondAttribute="trailing" constant="20" id="By6-z4-TNa"/>
  2122. <constraint firstItem="W2W-6W-20Q" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="20" id="DAa-Mw-XjH"/>
  2123. <constraint firstItem="Qwu-mH-sLI" firstAttribute="leading" secondItem="fJR-PY-2MQ" secondAttribute="trailing" constant="6" id="DMz-uB-Moo"/>
  2124. <constraint firstItem="7ds-kb-06q" firstAttribute="firstBaseline" secondItem="MdI-LH-ehb" secondAttribute="firstBaseline" id="EI7-Uc-2IM"/>
  2125. <constraint firstItem="T1S-Bo-LHK" firstAttribute="firstBaseline" secondItem="l19-cb-AjS" secondAttribute="firstBaseline" id="JSg-UW-eb2"/>
  2126. <constraint firstItem="e3B-9N-eea" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="10" id="LdZ-ek-vxT"/>
  2127. <constraint firstItem="7ds-kb-06q" firstAttribute="leading" secondItem="MdI-LH-ehb" secondAttribute="trailing" constant="6" id="NIp-au-Tdc"/>
  2128. <constraint firstAttribute="trailing" secondItem="T1S-Bo-LHK" secondAttribute="trailing" constant="20" id="O5Q-dA-xfC"/>
  2129. <constraint firstAttribute="bottom" secondItem="qBx-yX-au5" secondAttribute="bottom" constant="20" id="Rz6-rU-8EU"/>
  2130. <constraint firstItem="ei3-Zk-MvM" firstAttribute="leading" secondItem="W2W-6W-20Q" secondAttribute="trailing" constant="6" id="TDh-3E-18t"/>
  2131. <constraint firstItem="cQn-hR-TUa" firstAttribute="leading" secondItem="MvV-eq-cCO" secondAttribute="leading" id="TIc-R3-QAj"/>
  2132. <constraint firstItem="eHZ-vh-dRW" firstAttribute="leading" secondItem="EGa-0v-X88" secondAttribute="leading" id="Tyh-Qj-2T0"/>
  2133. <constraint firstItem="l19-cb-AjS" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="20" id="Wqx-WA-0z5"/>
  2134. <constraint firstItem="fJR-PY-2MQ" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="20" id="YS8-pC-fnp"/>
  2135. <constraint firstItem="a8R-bc-me5" firstAttribute="firstBaseline" secondItem="XyL-AU-Twt" secondAttribute="firstBaseline" id="afR-mo-Rwc"/>
  2136. <constraint firstAttribute="trailing" secondItem="eHZ-vh-dRW" secondAttribute="trailing" constant="20" id="aqs-Ne-kgY"/>
  2137. <constraint firstItem="XyL-AU-Twt" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="20" id="ceK-BH-rpf"/>
  2138. <constraint firstItem="cQn-hR-TUa" firstAttribute="top" secondItem="MvV-eq-cCO" secondAttribute="bottom" constant="8" id="eHl-un-Ezc"/>
  2139. <constraint firstItem="fJR-PY-2MQ" firstAttribute="top" secondItem="cQn-hR-TUa" secondAttribute="bottom" constant="15" id="fs7-Ht-syn"/>
  2140. <constraint firstItem="a8R-bc-me5" firstAttribute="leading" secondItem="XyL-AU-Twt" secondAttribute="trailing" constant="6" id="hKy-Os-wMq"/>
  2141. <constraint firstAttribute="trailing" secondItem="xAv-TP-7vv" secondAttribute="trailing" constant="50" id="hf8-7r-K7K"/>
  2142. <constraint firstItem="qBx-yX-au5" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="50" id="mTe-cZ-gf5"/>
  2143. <constraint firstItem="ei3-Zk-MvM" firstAttribute="firstBaseline" secondItem="W2W-6W-20Q" secondAttribute="firstBaseline" id="mej-SZ-HVj"/>
  2144. <constraint firstAttribute="trailing" secondItem="a8R-bc-me5" secondAttribute="trailing" constant="20" id="pcn-0T-7KP"/>
  2145. <constraint firstItem="l19-cb-AjS" firstAttribute="top" secondItem="fJR-PY-2MQ" secondAttribute="bottom" constant="15" id="reO-oQ-qJ1"/>
  2146. <constraint firstAttribute="trailing" secondItem="7ds-kb-06q" secondAttribute="trailing" constant="20" id="rgh-8o-gya"/>
  2147. <constraint firstAttribute="trailing" secondItem="e3B-9N-eea" secondAttribute="trailing" constant="10" id="rjG-zW-IC1"/>
  2148. <constraint firstItem="Qwu-mH-sLI" firstAttribute="firstBaseline" secondItem="fJR-PY-2MQ" secondAttribute="firstBaseline" id="s0h-Na-bEo"/>
  2149. <constraint firstItem="XyL-AU-Twt" firstAttribute="top" secondItem="MdI-LH-ehb" secondAttribute="bottom" constant="15" id="tmI-Ok-BKL"/>
  2150. <constraint firstItem="eHZ-vh-dRW" firstAttribute="top" secondItem="EGa-0v-X88" secondAttribute="bottom" constant="8" id="uFW-xf-Pgj"/>
  2151. <constraint firstItem="W2W-6W-20Q" firstAttribute="top" secondItem="l19-cb-AjS" secondAttribute="bottom" constant="15" id="vgB-hN-MXK"/>
  2152. <constraint firstItem="T1S-Bo-LHK" firstAttribute="leading" secondItem="l19-cb-AjS" secondAttribute="trailing" constant="6" id="w78-sJ-hER"/>
  2153. <constraint firstItem="MdI-LH-ehb" firstAttribute="leading" secondItem="WOe-yi-wQa" secondAttribute="leading" constant="20" id="xLZ-bt-Y2e"/>
  2154. <constraint firstItem="e3B-9N-eea" firstAttribute="top" secondItem="WOe-yi-wQa" secondAttribute="top" constant="5" id="yu7-x6-dEo"/>
  2155. <constraint firstItem="MdI-LH-ehb" firstAttribute="top" secondItem="W2W-6W-20Q" secondAttribute="bottom" constant="15" id="z7S-GE-fpQ"/>
  2156. <constraint firstAttribute="trailing" secondItem="ei3-Zk-MvM" secondAttribute="trailing" constant="20" id="zMD-Sw-zyI"/>
  2157. </constraints>
  2158. </view>
  2159. </subviews>
  2160. <constraints>
  2161. <constraint firstItem="WOe-yi-wQa" firstAttribute="centerY" secondItem="9pl-MJ-YCv" secondAttribute="centerY" id="101-gd-EvD"/>
  2162. <constraint firstItem="WOe-yi-wQa" firstAttribute="top" secondItem="9pl-MJ-YCv" secondAttribute="top" id="14j-zx-0VF"/>
  2163. <constraint firstItem="WOe-yi-wQa" firstAttribute="leading" secondItem="9pl-MJ-YCv" secondAttribute="leading" id="DCK-nt-pau"/>
  2164. <constraint firstAttribute="trailing" secondItem="WOe-yi-wQa" secondAttribute="trailing" id="FSY-cX-wQ0"/>
  2165. <constraint firstAttribute="trailing" secondItem="WOe-yi-wQa" secondAttribute="trailing" id="Ler-PQ-596"/>
  2166. <constraint firstAttribute="bottom" secondItem="WOe-yi-wQa" secondAttribute="bottom" id="Lhe-T4-ev0"/>
  2167. <constraint firstAttribute="bottom" secondItem="WOe-yi-wQa" secondAttribute="bottom" id="MPq-Zl-Fih"/>
  2168. <constraint firstItem="WOe-yi-wQa" firstAttribute="leading" secondItem="9pl-MJ-YCv" secondAttribute="leading" id="Tcw-YE-eFW"/>
  2169. <constraint firstItem="WOe-yi-wQa" firstAttribute="centerX" secondItem="9pl-MJ-YCv" secondAttribute="centerX" id="arN-AZ-acw"/>
  2170. <constraint firstItem="WOe-yi-wQa" firstAttribute="top" secondItem="9pl-MJ-YCv" secondAttribute="top" id="ePv-Zf-Eof"/>
  2171. </constraints>
  2172. </scrollView>
  2173. </subviews>
  2174. <viewLayoutGuide key="safeArea" id="d47-Eq-xrt"/>
  2175. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2176. <constraints>
  2177. <constraint firstAttribute="bottom" secondItem="9pl-MJ-YCv" secondAttribute="bottom" id="OAv-1Q-EOX"/>
  2178. <constraint firstItem="9pl-MJ-YCv" firstAttribute="trailing" secondItem="d47-Eq-xrt" secondAttribute="trailing" id="OCV-mJ-BJA"/>
  2179. <constraint firstItem="9pl-MJ-YCv" firstAttribute="top" secondItem="VMz-d0-X7j" secondAttribute="top" id="ZYl-ra-F9e"/>
  2180. <constraint firstItem="9pl-MJ-YCv" firstAttribute="leading" secondItem="d47-Eq-xrt" secondAttribute="leading" id="odv-Ba-YiA"/>
  2181. </constraints>
  2182. </view>
  2183. <value key="contentSizeForViewInPopover" type="size" width="540" height="680"/>
  2184. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  2185. <size key="freeformSize" width="540" height="680"/>
  2186. <connections>
  2187. <outlet property="buttonAlert" destination="T1S-Bo-LHK" id="X0E-IS-uLc"/>
  2188. <outlet property="buttonAvailability" destination="Qwu-mH-sLI" id="d2v-ZX-sJR"/>
  2189. <outlet property="buttonBestSeller" destination="7ds-kb-06q" id="G1A-nS-Za3"/>
  2190. <outlet property="buttonPrice" destination="a8R-bc-me5" id="VgZ-nh-i8L"/>
  2191. <outlet property="buttonQTY" destination="ei3-Zk-MvM" id="tqq-B9-afU"/>
  2192. <outlet property="labelPrice" destination="XyL-AU-Twt" id="vgb-qY-Cbc"/>
  2193. <outlet property="scrollView" destination="9pl-MJ-YCv" id="ZWC-7z-Ohr"/>
  2194. <outlet property="textModelDescription" destination="eHZ-vh-dRW" id="UuF-Sw-GRT"/>
  2195. <outlet property="textModelName" destination="cQn-hR-TUa" id="xhk-Ep-O3G"/>
  2196. <outlet property="treeContainer" destination="e3B-9N-eea" id="JfL-Yq-1q0"/>
  2197. </connections>
  2198. </viewController>
  2199. <placeholder placeholderIdentifier="IBFirstResponder" id="V3O-eZ-8fv" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2200. </objects>
  2201. <point key="canvasLocation" x="268" y="1358"/>
  2202. </scene>
  2203. </scenes>
  2204. <resources>
  2205. <image name="btn_cancel" width="102" height="30"/>
  2206. <image name="btn_ok" width="102" height="30"/>
  2207. <image name="btn_reset" width="102" height="30"/>
  2208. <image name="btn_search" width="102" height="30"/>
  2209. <image name="check_0_24" width="24" height="24"/>
  2210. <image name="check_1_24" width="24" height="24"/>
  2211. <image name="filter" width="32" height="32"/>
  2212. <image name="layout_list" width="40" height="40"/>
  2213. <image name="layout_small" width="40" height="40"/>
  2214. <image name="laytou_large" width="40" height="40"/>
  2215. <image name="mark_cart_32" width="32" height="32"/>
  2216. <image name="mark_closeout_32" width="32" height="32"/>
  2217. <image name="mark_wish_32" width="32" height="32"/>
  2218. <image name="more_color_larger" width="32" height="32"/>
  2219. </resources>
  2220. </document>