Main.storyboard 215 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="20037" targetRuntime="iOS.CocoaTouch.iPad" propertyAccessControl="none" useAutolayout="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="jsC-F8-zYF">
  3. <device id="ipad7_9" orientation="portrait" layout="fullscreen" appearance="light"/>
  4. <dependencies>
  5. <deployment version="4352" identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="20020"/>
  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. <!--Main View Controller-->
  12. <scene sceneID="tne-QT-ifu">
  13. <objects>
  14. <viewController storyboardIdentifier="MainViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BYZ-38-t0r" customClass="MainViewController" sceneMemberID="viewController">
  15. <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
  16. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  17. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  18. <subviews>
  19. <containerView contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Knj-5z-t35">
  20. <rect key="frame" x="0.0" y="100" width="744" height="1033"/>
  21. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  22. </containerView>
  23. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NhN-BH-vsu" userLabel="headerView">
  24. <rect key="frame" x="0.0" y="0.0" width="744" height="100"/>
  25. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  26. <subviews>
  27. <view clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hTL-PV-pUp" customClass="MainHeaderViewColorPanel">
  28. <rect key="frame" x="130" y="24" width="460" height="76"/>
  29. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  30. <subviews>
  31. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qK2-gY-nOG" userLabel="cart button">
  32. <rect key="frame" x="0.0" y="0.0" width="72" height="76"/>
  33. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  34. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  35. <state key="normal" image="cart_empty">
  36. <color key="titleColor" systemColor="systemYellowColor"/>
  37. <preferredSymbolConfiguration key="preferredSymbolConfiguration"/>
  38. </state>
  39. <connections>
  40. <action selector="switchToCart:" destination="BYZ-38-t0r" eventType="touchUpInside" id="MmJ-aK-UGJ"/>
  41. </connections>
  42. </button>
  43. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="9" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1R3-At-QFU">
  44. <rect key="frame" x="45" y="0.0" width="21" height="21"/>
  45. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  46. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  47. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  48. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  49. <nil key="highlightedColor"/>
  50. <userDefinedRuntimeAttributes>
  51. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  52. <integer key="value" value="5"/>
  53. </userDefinedRuntimeAttribute>
  54. </userDefinedRuntimeAttributes>
  55. </label>
  56. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Nz4-iJ-NSG" userLabel="setting button">
  57. <rect key="frame" x="388" y="0.0" width="72" height="76"/>
  58. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  59. <state key="normal" image="setting"/>
  60. <connections>
  61. <action selector="onScanOrderSetting:" destination="BYZ-38-t0r" eventType="touchUpInside" id="LzV-0I-k5y"/>
  62. </connections>
  63. </button>
  64. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="04b-vI-vkz" userLabel="order button">
  65. <rect key="frame" x="79" y="0.0" width="72" height="76"/>
  66. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  67. <state key="normal" image="order"/>
  68. <connections>
  69. <action selector="switchToOrder:" destination="BYZ-38-t0r" eventType="touchUpInside" id="GdL-E5-zaV"/>
  70. </connections>
  71. </button>
  72. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OLi-re-vUv" userLabel="list button">
  73. <rect key="frame" x="230" y="0.0" width="72" height="76"/>
  74. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  75. <state key="normal" image="wishlist"/>
  76. <connections>
  77. <action selector="switchToList:" destination="BYZ-38-t0r" eventType="touchUpInside" id="a6g-zn-YIl"/>
  78. </connections>
  79. </button>
  80. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="U68-uF-QmO" userLabel="search button">
  81. <rect key="frame" x="309" y="0.0" width="72" height="76"/>
  82. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  83. <state key="normal" image="search"/>
  84. <connections>
  85. <action selector="switchToSearch:" destination="BYZ-38-t0r" eventType="touchUpInside" id="AnX-0p-4Vh"/>
  86. </connections>
  87. </button>
  88. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nIa-ra-HBo" userLabel="scan button">
  89. <rect key="frame" x="151" y="0.0" width="72" height="76"/>
  90. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  91. <state key="normal" image="scan"/>
  92. <connections>
  93. <action selector="onScanClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Pgk-0c-nqg"/>
  94. </connections>
  95. </button>
  96. </subviews>
  97. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  98. </view>
  99. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="W7z-q5-hQg" userLabel="npd_logo">
  100. <rect key="frame" x="15" y="21" width="99" height="50"/>
  101. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  102. <state key="normal" image="npd_logo">
  103. <color key="titleColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  104. </state>
  105. <connections>
  106. <action selector="switchToHome:" destination="BYZ-38-t0r" eventType="touchUpInside" id="R5g-Vs-NdR"/>
  107. </connections>
  108. </button>
  109. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="A6K-Xr-CN6" userLabel="server">
  110. <rect key="frame" x="5" y="50" width="120" height="21"/>
  111. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  112. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  113. <color key="textColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  114. <nil key="highlightedColor"/>
  115. </label>
  116. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0eT-W5-bga" userLabel="login">
  117. <rect key="frame" x="583" y="20" width="161" height="30"/>
  118. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  119. <state key="normal" title="Sign in">
  120. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  121. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  122. </state>
  123. <connections>
  124. <action selector="onUserButtonClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="XQ8-89-GOk"/>
  125. </connections>
  126. </button>
  127. <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zoc-d5-pNq" userLabel="mode">
  128. <rect key="frame" x="126" y="30" width="32" height="30"/>
  129. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  130. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  131. <nil key="highlightedColor"/>
  132. </label>
  133. <button hidden="YES" opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="top" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="A7D-bo-1PR" userLabel="contact">
  134. <rect key="frame" x="583" y="50" width="161" height="50"/>
  135. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  136. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  137. <state key="normal" title="aaa">
  138. <color key="titleColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  139. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  140. </state>
  141. <connections>
  142. <action selector="onContactClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="vfj-Y2-dIU"/>
  143. </connections>
  144. </button>
  145. <view hidden="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bQ2-5t-t5t" customClass="MainHeaderViewColorPanel">
  146. <rect key="frame" x="0.0" y="20" width="48" height="48"/>
  147. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  148. <subviews>
  149. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Kx0-AQ-Y5o" userLabel="MenuButton">
  150. <rect key="frame" x="0.0" y="0.0" width="48" height="48"/>
  151. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  152. <state key="normal" image="menu_open"/>
  153. <connections>
  154. <action selector="onmenuButtonClicked:" destination="BYZ-38-t0r" eventType="touchUpInside" id="8Jk-HI-USO"/>
  155. </connections>
  156. </button>
  157. </subviews>
  158. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  159. </view>
  160. </subviews>
  161. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  162. </view>
  163. <imageView userInteractionEnabled="NO" alpha="0.0" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tzq-zw-ENK">
  164. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  165. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  166. </imageView>
  167. <button hidden="YES" opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DGA-Jz-ciO">
  168. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  169. <state key="normal">
  170. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  171. </state>
  172. <connections>
  173. <action selector="onhideMenuClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Hn2-OW-gDn"/>
  174. </connections>
  175. </button>
  176. <view hidden="YES" contentMode="scaleToFill" fixedFrame="YES" restorationIdentifier="menuView" translatesAutoresizingMaskIntoConstraints="NO" id="Qz1-qV-4fT" userLabel="sidemenuView">
  177. <rect key="frame" x="-300" y="0.0" width="364" height="1133"/>
  178. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
  179. <subviews>
  180. <view alpha="0.80000000000000004" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dR0-Te-FbY" userLabel="backgroundView">
  181. <rect key="frame" x="0.0" y="0.0" width="290" height="1133"/>
  182. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
  183. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  184. </view>
  185. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Wtv-1e-MtM" userLabel="rightsideColorbar">
  186. <rect key="frame" x="290" y="0.0" width="10" height="1133"/>
  187. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" heightSizable="YES"/>
  188. <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  189. </view>
  190. <tableView clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" translatesAutoresizingMaskIntoConstraints="NO" id="h0d-S7-vmO">
  191. <rect key="frame" x="0.0" y="150" width="290" height="900"/>
  192. <autoresizingMask key="autoresizingMask" heightSizable="YES" flexibleMaxY="YES"/>
  193. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  194. <color key="separatorColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  195. <color key="sectionIndexBackgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  196. <color key="sectionIndexTrackingBackgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  197. <prototypes>
  198. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SideMenuItem" textLabel="pki-xD-OOT" detailTextLabel="a18-fA-KeX" style="IBUITableViewCellStyleValue1" id="3MW-qC-tOm">
  199. <rect key="frame" x="0.0" y="49.5" width="290" height="44"/>
  200. <autoresizingMask key="autoresizingMask"/>
  201. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3MW-qC-tOm" id="1li-xE-7Vx">
  202. <rect key="frame" x="0.0" y="0.0" width="290" height="44"/>
  203. <autoresizingMask key="autoresizingMask"/>
  204. <subviews>
  205. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="pki-xD-OOT">
  206. <rect key="frame" x="16" y="13" width="31.5" height="19.5"/>
  207. <autoresizingMask key="autoresizingMask"/>
  208. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  209. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  210. <nil key="highlightedColor"/>
  211. </label>
  212. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="a18-fA-KeX">
  213. <rect key="frame" x="232" y="13" width="42" height="19.5"/>
  214. <autoresizingMask key="autoresizingMask"/>
  215. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  216. <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  217. <nil key="highlightedColor"/>
  218. </label>
  219. </subviews>
  220. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  221. </tableViewCellContentView>
  222. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  223. </tableViewCell>
  224. </prototypes>
  225. <connections>
  226. <outlet property="dataSource" destination="BYZ-38-t0r" id="Vs3-Mt-c0H"/>
  227. <outlet property="delegate" destination="BYZ-38-t0r" id="PzD-54-dP2"/>
  228. </connections>
  229. </tableView>
  230. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="profle" translatesAutoresizingMaskIntoConstraints="NO" id="1d7-Ma-AAj">
  231. <rect key="frame" x="86" y="20" width="128" height="128"/>
  232. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  233. </imageView>
  234. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YYM-6v-Qnk" userLabel="Label username">
  235. <rect key="frame" x="50" y="100" width="200" height="21"/>
  236. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  237. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  238. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  239. <nil key="highlightedColor"/>
  240. </label>
  241. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Rki-F9-VV1">
  242. <rect key="frame" x="50" y="100" width="200" height="30"/>
  243. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  244. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  245. <connections>
  246. <action selector="onUserListClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="UId-03-oQL"/>
  247. </connections>
  248. </button>
  249. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="M7a-qh-Dgr">
  250. <rect key="frame" x="110" y="130" width="80" height="30"/>
  251. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  252. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  253. <state key="normal" title="Sign in">
  254. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  255. </state>
  256. <connections>
  257. <action selector="OnLoginClick:" destination="BYZ-38-t0r" eventType="touchUpInside" id="wAx-ab-MTQ"/>
  258. </connections>
  259. </button>
  260. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KeC-8h-nz6" customClass="MainHeaderViewColorPanel">
  261. <rect key="frame" x="300" y="20" width="36" height="36"/>
  262. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  263. <subviews>
  264. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="z6K-Ge-vfg" userLabel="MenuButton">
  265. <rect key="frame" x="0.0" y="0.0" width="36" height="36"/>
  266. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  267. <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  268. <state key="normal" image="menu_open"/>
  269. <connections>
  270. <action selector="switchMenu:" destination="BYZ-38-t0r" eventType="touchUpInside" id="Xb6-0d-MOX"/>
  271. </connections>
  272. </button>
  273. </subviews>
  274. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  275. </view>
  276. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Ver:1.0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MTI-0q-XWj" userLabel="ver">
  277. <rect key="frame" x="25" y="1089" width="250" height="21"/>
  278. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  279. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  280. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  281. <nil key="highlightedColor"/>
  282. </label>
  283. </subviews>
  284. </view>
  285. </subviews>
  286. <viewLayoutGuide key="safeArea" id="bGI-U1-84v"/>
  287. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  288. </view>
  289. <navigationItem key="navigationItem" id="fTz-mt-KEq"/>
  290. <simulatedStatusBarMetrics key="simulatedStatusBarMetrics" statusBarStyle="lightContent"/>
  291. <connections>
  292. <outlet property="backgroundButton" destination="DGA-Jz-ciO" id="8gB-vF-uFJ"/>
  293. <outlet property="blurView" destination="tzq-zw-ENK" id="035-vB-pet"/>
  294. <outlet property="btnContact" destination="A7D-bo-1PR" id="Ysj-gK-LSa"/>
  295. <outlet property="btnLogin" destination="M7a-qh-Dgr" id="0do-TO-1FM"/>
  296. <outlet property="btnScan" destination="nIa-ra-HBo" id="9NC-Bf-vic"/>
  297. <outlet property="btn_LogoHome" destination="W7z-q5-hQg" id="lr2-rw-0yi"/>
  298. <outlet property="btn_sideMenu_UserName" destination="Rki-F9-VV1" id="U1D-pK-gzg"/>
  299. <outlet property="btncart" destination="qK2-gY-nOG" id="aqC-p5-Agr"/>
  300. <outlet property="btnlist" destination="OLi-re-vUv" id="mGh-no-SPe"/>
  301. <outlet property="btnorder" destination="04b-vI-vkz" id="d9x-9n-75Q"/>
  302. <outlet property="btnsearch" destination="U68-uF-QmO" id="jFv-Xz-JGP"/>
  303. <outlet property="btnsetting" destination="Nz4-iJ-NSG" id="bKj-Vu-fqX"/>
  304. <outlet property="buttonUser" destination="0eT-W5-bga" id="F4r-LC-G5r"/>
  305. <outlet property="container" destination="Knj-5z-t35" id="xY9-0x-HET"/>
  306. <outlet property="employee_bp" destination="hTL-PV-pUp" id="WrQ-II-a4s"/>
  307. <outlet property="headerView" destination="NhN-BH-vsu" id="ueD-EJ-r33"/>
  308. <outlet property="labelMode" destination="zoc-d5-pNq" id="7Cb-3e-Hxa"/>
  309. <outlet property="labelServer" destination="A6K-Xr-CN6" id="EsZ-It-lcM"/>
  310. <outlet property="labelVer" destination="MTI-0q-XWj" id="aGz-th-8qe"/>
  311. <outlet property="label_ccount" destination="1R3-At-QFU" id="lGc-YZ-9hq"/>
  312. <outlet property="menuButton" destination="z6K-Ge-vfg" id="9iM-Kq-gAy"/>
  313. <outlet property="openMenuButton" destination="Kx0-AQ-Y5o" id="bai-7G-ELP"/>
  314. <outlet property="sideMenu" destination="Qz1-qV-4fT" id="IoN-rl-Zdl"/>
  315. <outlet property="sideMenuTable" destination="h0d-S7-vmO" id="fnv-zj-M67"/>
  316. <outlet property="sideMenu_UserName" destination="YYM-6v-Qnk" id="izC-hM-IsH"/>
  317. <outlet property="user_head" destination="1d7-Ma-AAj" id="IEA-a5-je3"/>
  318. </connections>
  319. </viewController>
  320. <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
  321. </objects>
  322. <point key="canvasLocation" x="991.9354838709678" y="-130.00882612533098"/>
  323. </scene>
  324. <!--Watch List View Controller-->
  325. <scene sceneID="D3N-vL-MY1">
  326. <objects>
  327. <viewController storyboardIdentifier="WatchListViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="dSV-Dg-id4" customClass="WatchListViewController" sceneMemberID="viewController">
  328. <view key="view" opaque="NO" clipsSubviews="YES" contentMode="center" id="l8z-x6-eMf">
  329. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  330. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  331. <subviews>
  332. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="120" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="Bod-ih-aFz">
  333. <rect key="frame" x="0.0" y="24" width="744" height="1045"/>
  334. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  335. <prototypes>
  336. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="WatchListItemCell" rowHeight="120" id="Hjj-gq-Qs5" customClass="ModelItemCell">
  337. <rect key="frame" x="0.0" y="44.5" width="744" height="120"/>
  338. <autoresizingMask key="autoresizingMask"/>
  339. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Hjj-gq-Qs5" id="bKF-1X-6DE">
  340. <rect key="frame" x="0.0" y="0.0" width="744" height="120"/>
  341. <autoresizingMask key="autoresizingMask"/>
  342. <subviews>
  343. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1234567890.00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MZM-06-tL3" userLabel="item price">
  344. <rect key="frame" x="530" y="49.5" width="160" height="21"/>
  345. <constraints>
  346. <constraint firstAttribute="width" constant="160" id="Fhy-Ln-lVa"/>
  347. <constraint firstAttribute="height" constant="21" id="ckn-TY-IX1"/>
  348. </constraints>
  349. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  350. <nil key="highlightedColor"/>
  351. </label>
  352. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="2nP-ZX-zLk" userLabel="img">
  353. <rect key="frame" x="15" y="10" width="100" height="100"/>
  354. <constraints>
  355. <constraint firstAttribute="height" constant="100" id="Mzw-yA-vpq"/>
  356. <constraint firstAttribute="width" constant="100" id="wXJ-DF-1gr"/>
  357. </constraints>
  358. <state key="normal">
  359. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  360. </state>
  361. <connections>
  362. <action selector="imgbtnClicked:" destination="dSV-Dg-id4" eventType="touchUpInside" id="pFx-3Y-Zm7"/>
  363. </connections>
  364. </button>
  365. <label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Portfolio price ($)" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vzl-HZ-1my">
  366. <rect key="frame" x="530" y="20.5" width="160" height="21"/>
  367. <constraints>
  368. <constraint firstAttribute="height" constant="21" id="Bce-vf-6p9"/>
  369. <constraint firstAttribute="width" constant="160" id="GkL-38-phk"/>
  370. </constraints>
  371. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  372. <nil key="highlightedColor"/>
  373. </label>
  374. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="check_1_24" translatesAutoresizingMaskIntoConstraints="NO" id="pUy-h6-w0Y">
  375. <rect key="frame" x="705" y="48" width="24" height="24"/>
  376. <constraints>
  377. <constraint firstAttribute="width" constant="24" id="Mhk-Yc-rbi"/>
  378. <constraint firstAttribute="height" constant="24" id="WHk-5U-u9V"/>
  379. </constraints>
  380. </imageView>
  381. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="QTY:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lbZ-RY-0aG">
  382. <rect key="frame" x="530" y="49.5" width="160" height="21"/>
  383. <constraints>
  384. <constraint firstAttribute="height" constant="21" id="S81-Ar-Fk2"/>
  385. <constraint firstAttribute="width" constant="160" id="Su9-Od-CTZ"/>
  386. </constraints>
  387. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  388. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  389. <nil key="highlightedColor"/>
  390. </label>
  391. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="name aaaaaaaaaaaaa aaaaaaaaaa BBBBB CCCCC" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="H2E-H1-CLA" userLabel="description">
  392. <rect key="frame" x="130" y="10" width="385" height="100"/>
  393. <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="22"/>
  394. <nil key="highlightedColor"/>
  395. </label>
  396. </subviews>
  397. <constraints>
  398. <constraint firstItem="MZM-06-tL3" firstAttribute="top" secondItem="vzl-HZ-1my" secondAttribute="bottom" constant="8" id="0mV-Rw-E7y"/>
  399. <constraint firstItem="MZM-06-tL3" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="2M6-cA-Jsx"/>
  400. <constraint firstItem="pUy-h6-w0Y" firstAttribute="leading" secondItem="MZM-06-tL3" secondAttribute="trailing" constant="15" id="4rL-1T-YvJ"/>
  401. <constraint firstItem="2nP-ZX-zLk" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="6p1-c7-Q3T"/>
  402. <constraint firstItem="H2E-H1-CLA" firstAttribute="leading" secondItem="2nP-ZX-zLk" secondAttribute="trailing" constant="15" id="8lH-Kf-uTJ"/>
  403. <constraint firstItem="H2E-H1-CLA" firstAttribute="top" secondItem="2nP-ZX-zLk" secondAttribute="top" id="DJf-MX-ygN"/>
  404. <constraint firstItem="pUy-h6-w0Y" firstAttribute="leading" secondItem="lbZ-RY-0aG" secondAttribute="trailing" constant="15" id="JKX-6K-4UQ"/>
  405. <constraint firstAttribute="trailing" secondItem="pUy-h6-w0Y" secondAttribute="trailing" constant="15" id="OU7-Gg-aU9"/>
  406. <constraint firstItem="vzl-HZ-1my" firstAttribute="trailing" secondItem="lbZ-RY-0aG" secondAttribute="trailing" id="Yu3-Wb-hGl"/>
  407. <constraint firstItem="MZM-06-tL3" firstAttribute="leading" secondItem="H2E-H1-CLA" secondAttribute="trailing" constant="15" id="ZP8-5v-QXI"/>
  408. <constraint firstItem="lbZ-RY-0aG" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="aBJ-84-zrU"/>
  409. <constraint firstItem="2nP-ZX-zLk" firstAttribute="leading" secondItem="bKF-1X-6DE" secondAttribute="leading" constant="15" id="aso-A8-sB5"/>
  410. <constraint firstItem="H2E-H1-CLA" firstAttribute="bottom" secondItem="2nP-ZX-zLk" secondAttribute="bottom" id="jAg-QZ-Ow5"/>
  411. <constraint firstItem="pUy-h6-w0Y" firstAttribute="centerY" secondItem="bKF-1X-6DE" secondAttribute="centerY" id="mX3-ax-XpX"/>
  412. </constraints>
  413. </tableViewCellContentView>
  414. <connections>
  415. <outlet property="btnImage" destination="2nP-ZX-zLk" id="gie-TT-qkI"/>
  416. <outlet property="img_checkmark" destination="pUy-h6-w0Y" id="Cgg-LS-Dd1"/>
  417. <outlet property="labelDescription" destination="H2E-H1-CLA" id="3fb-Y0-b1W"/>
  418. <outlet property="labelPrice" destination="MZM-06-tL3" id="rqh-V1-3va"/>
  419. <outlet property="qty_Label" destination="lbZ-RY-0aG" id="oen-ae-JoO"/>
  420. </connections>
  421. </tableViewCell>
  422. </prototypes>
  423. <connections>
  424. <outlet property="dataSource" destination="dSV-Dg-id4" id="fMK-ne-m6F"/>
  425. <outlet property="delegate" destination="dSV-Dg-id4" id="QVP-8c-X2Y"/>
  426. </connections>
  427. </tableView>
  428. <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="VoW-od-XKq">
  429. <rect key="frame" x="251.5" y="544" width="241.5" height="45.5"/>
  430. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  431. <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  432. <nil key="highlightedColor"/>
  433. </label>
  434. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="P7H-gM-8cZ">
  435. <rect key="frame" x="353.5" y="548" width="37" height="37"/>
  436. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  437. </activityIndicatorView>
  438. <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TEJ-4m-gTF">
  439. <rect key="frame" x="0.0" y="1069" width="744" height="44"/>
  440. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  441. <constraints>
  442. <constraint firstAttribute="height" constant="44" id="bKb-j5-iBR"/>
  443. </constraints>
  444. <items>
  445. <barButtonItem title="Select all" id="4ut-I6-lhS">
  446. <connections>
  447. <action selector="onSelectClick:" destination="dSV-Dg-id4" id="OW2-Fn-aja"/>
  448. </connections>
  449. </barButtonItem>
  450. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="WGd-QY-X9M"/>
  451. <barButtonItem title="Delete" id="1fK-gC-zJQ">
  452. <connections>
  453. <action selector="onDeleteClick:" destination="dSV-Dg-id4" id="1q5-N8-tEV"/>
  454. </connections>
  455. </barButtonItem>
  456. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="ded-Mq-Wdh"/>
  457. <barButtonItem title="Move to Cart" id="nkH-wk-LKl">
  458. <connections>
  459. <action selector="onAddtoCart:" destination="dSV-Dg-id4" id="3mi-fA-zV0"/>
  460. </connections>
  461. </barButtonItem>
  462. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="4gV-KQ-JJH"/>
  463. <barButtonItem title="Print" id="ElH-Kz-wRI">
  464. <connections>
  465. <action selector="printWishlistClick:" destination="dSV-Dg-id4" id="NES-Ca-dNd"/>
  466. </connections>
  467. </barButtonItem>
  468. <barButtonItem width="42" style="plain" systemItem="fixedSpace" id="QHn-B4-Kox"/>
  469. <barButtonItem title="Email" id="d4C-NX-kua">
  470. <connections>
  471. <action selector="emailWishlistClick:" destination="dSV-Dg-id4" id="BHS-9B-vyX"/>
  472. </connections>
  473. </barButtonItem>
  474. <barButtonItem style="plain" systemItem="flexibleSpace" id="GCT-Zy-PVt"/>
  475. </items>
  476. <color key="tintColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  477. </toolbar>
  478. </subviews>
  479. <viewLayoutGuide key="safeArea" id="9A9-l3-cE9"/>
  480. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  481. <constraints>
  482. <constraint firstItem="TEJ-4m-gTF" firstAttribute="leading" secondItem="9A9-l3-cE9" secondAttribute="leading" id="0wy-Et-xPm"/>
  483. <constraint firstItem="TEJ-4m-gTF" firstAttribute="bottom" secondItem="9A9-l3-cE9" secondAttribute="bottom" id="HDi-LI-gfD"/>
  484. <constraint firstItem="VoW-od-XKq" firstAttribute="centerY" secondItem="l8z-x6-eMf" secondAttribute="centerY" id="KyC-mN-Xs3"/>
  485. <constraint firstItem="Bod-ih-aFz" firstAttribute="trailing" secondItem="9A9-l3-cE9" secondAttribute="trailing" id="ON6-wM-68H"/>
  486. <constraint firstItem="P7H-gM-8cZ" firstAttribute="centerX" secondItem="l8z-x6-eMf" secondAttribute="centerX" id="Pz2-3o-UPc"/>
  487. <constraint firstItem="TEJ-4m-gTF" firstAttribute="trailing" secondItem="9A9-l3-cE9" secondAttribute="trailing" id="RQs-R0-TJD"/>
  488. <constraint firstItem="Bod-ih-aFz" firstAttribute="leading" secondItem="9A9-l3-cE9" secondAttribute="leading" id="STo-5t-b3M"/>
  489. <constraint firstItem="Bod-ih-aFz" firstAttribute="top" secondItem="9A9-l3-cE9" secondAttribute="top" id="XCg-bR-os6"/>
  490. <constraint firstItem="P7H-gM-8cZ" firstAttribute="centerY" secondItem="l8z-x6-eMf" secondAttribute="centerY" id="XuB-N4-Qys"/>
  491. <constraint firstItem="TEJ-4m-gTF" firstAttribute="top" secondItem="Bod-ih-aFz" secondAttribute="bottom" id="kbX-1g-yLb"/>
  492. <constraint firstItem="VoW-od-XKq" firstAttribute="centerX" secondItem="l8z-x6-eMf" secondAttribute="centerX" id="tld-nd-ODf"/>
  493. </constraints>
  494. </view>
  495. <connections>
  496. <outlet property="btnAddtoCart" destination="nkH-wk-LKl" id="qv8-L1-WS9"/>
  497. <outlet property="btnselect" destination="4ut-I6-lhS" id="fBU-bd-mXV"/>
  498. <outlet property="emailBtn" destination="d4C-NX-kua" id="mn5-pm-tCk"/>
  499. <outlet property="itemListTable" destination="Bod-ih-aFz" id="8co-dm-KPz"/>
  500. <outlet property="label_net_err" destination="VoW-od-XKq" id="AxP-Qf-bN0"/>
  501. <outlet property="mum" destination="P7H-gM-8cZ" id="V5L-M8-XG2"/>
  502. <outlet property="printBtn" destination="ElH-Kz-wRI" id="cxR-aA-76k"/>
  503. <outlet property="toolbar" destination="TEJ-4m-gTF" id="LR0-Lb-tMy"/>
  504. </connections>
  505. </viewController>
  506. <placeholder placeholderIdentifier="IBFirstResponder" id="dde-Oc-fqI" userLabel="First Responder" sceneMemberID="firstResponder"/>
  507. </objects>
  508. <point key="canvasLocation" x="-248.4375" y="-1649.4140625"/>
  509. </scene>
  510. <!--Sales Navigation Controller-->
  511. <scene sceneID="gmF-am-6mB">
  512. <objects>
  513. <navigationController storyboardIdentifier="iSalesNavigationController" definesPresentationContext="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="jsC-F8-zYF" customClass="iSalesNavigationController" sceneMemberID="viewController">
  514. <navigationBar key="navigationBar" contentMode="scaleToFill" id="gCJ-vt-f01">
  515. <rect key="frame" x="0.0" y="24" width="744" height="50"/>
  516. <autoresizingMask key="autoresizingMask"/>
  517. </navigationBar>
  518. <connections>
  519. <segue destination="BYZ-38-t0r" kind="relationship" relationship="rootViewController" id="WXk-4e-Kuu"/>
  520. </connections>
  521. </navigationController>
  522. <placeholder placeholderIdentifier="IBFirstResponder" id="5Jd-Qo-yfT" userLabel="First Responder" sceneMemberID="firstResponder"/>
  523. </objects>
  524. <point key="canvasLocation" x="196.09375" y="-129.4921875"/>
  525. </scene>
  526. <!--Sign_in-->
  527. <scene sceneID="nj3-gQ-5tx">
  528. <objects>
  529. <viewController storyboardIdentifier="LoginViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Q1j-qK-Nq8" userLabel="Sign_in" customClass="LoginViewController" sceneMemberID="viewController">
  530. <view key="view" contentMode="scaleToFill" id="vfL-PU-G6Q">
  531. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  532. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  533. <subviews>
  534. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="User" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="e4L-J6-NNX">
  535. <rect key="frame" x="60" y="127" width="360" height="30"/>
  536. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  537. <constraints>
  538. <constraint firstAttribute="height" constant="30" id="y7F-m4-eUT"/>
  539. </constraints>
  540. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  541. <textInputTraits key="textInputTraits" autocorrectionType="no"/>
  542. <connections>
  543. <outlet property="delegate" destination="Q1j-qK-Nq8" id="uSE-GC-A0y"/>
  544. </connections>
  545. </textField>
  546. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="oCu-XS-jr9">
  547. <rect key="frame" x="60" y="166" width="360" height="34"/>
  548. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  549. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  550. <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
  551. </textField>
  552. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="B5F-AY-BkK">
  553. <rect key="frame" x="60" y="224" width="360" height="22"/>
  554. <constraints>
  555. <constraint firstAttribute="height" constant="22" id="CFK-iY-Os2"/>
  556. </constraints>
  557. <inset key="contentEdgeInsets" minX="4" minY="0.0" maxX="0.0" maxY="0.0"/>
  558. <inset key="imageEdgeInsets" minX="-4" minY="0.0" maxX="0.0" maxY="0.0"/>
  559. <state key="normal" title="Save password" image="checkbox">
  560. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  561. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  562. </state>
  563. </button>
  564. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="20z-6W-PvH">
  565. <rect key="frame" x="296" y="224" width="124" height="22"/>
  566. <constraints>
  567. <constraint firstAttribute="height" constant="22" id="LG5-Yp-tPQ"/>
  568. </constraints>
  569. <inset key="contentEdgeInsets" minX="4" minY="0.0" maxX="0.0" maxY="0.0"/>
  570. <inset key="imageEdgeInsets" minX="-4" minY="0.0" maxX="0.0" maxY="0.0"/>
  571. <state key="normal" title="Offline mode" image="checkbox">
  572. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  573. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  574. </state>
  575. </button>
  576. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sign in" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2AI-yS-Vfe">
  577. <rect key="frame" x="60" y="91" width="59" height="26"/>
  578. <constraints>
  579. <constraint firstAttribute="height" constant="26" id="wGm-YM-Mtp"/>
  580. </constraints>
  581. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  582. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  583. <nil key="highlightedColor"/>
  584. </label>
  585. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pO9-Lj-YQb">
  586. <rect key="frame" x="294" y="89.5" width="126" height="30"/>
  587. <constraints>
  588. <constraint firstAttribute="height" constant="30" id="zLX-yr-Dvk"/>
  589. </constraints>
  590. <state key="normal" title="Retrieve password">
  591. <color key="titleColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  592. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  593. </state>
  594. <connections>
  595. <action selector="onRetrievePassword:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="y8v-bK-749"/>
  596. </connections>
  597. </button>
  598. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CZM-O3-JlR" customClass="DefaultImageButton">
  599. <rect key="frame" x="358" y="250" width="102" height="30"/>
  600. <constraints>
  601. <constraint firstAttribute="width" constant="102" id="ANs-ln-cLS"/>
  602. <constraint firstAttribute="height" constant="30" id="P45-ke-sKG"/>
  603. </constraints>
  604. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  605. <state key="normal" title="Sign in" backgroundImage="btn_signin">
  606. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  607. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  608. </state>
  609. <userDefinedRuntimeAttributes>
  610. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  611. <integer key="value" value="19"/>
  612. </userDefinedRuntimeAttribute>
  613. </userDefinedRuntimeAttributes>
  614. <connections>
  615. <action selector="onLoginClick:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="u09-UA-ScX"/>
  616. </connections>
  617. </button>
  618. <tableView hidden="YES" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="3dj-qP-iVc">
  619. <rect key="frame" x="60" y="157" width="360" height="85"/>
  620. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  621. <prototypes>
  622. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LoginListCell" textLabel="AxX-hS-Jtg" style="IBUITableViewCellStyleDefault" id="kAP-gb-Gce">
  623. <rect key="frame" x="0.0" y="44.5" width="360" height="44"/>
  624. <autoresizingMask key="autoresizingMask"/>
  625. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kAP-gb-Gce" id="Ilc-6o-RhI">
  626. <rect key="frame" x="0.0" y="0.0" width="360" height="44"/>
  627. <autoresizingMask key="autoresizingMask"/>
  628. <subviews>
  629. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AxX-hS-Jtg">
  630. <rect key="frame" x="16" y="0.0" width="328" height="44"/>
  631. <autoresizingMask key="autoresizingMask"/>
  632. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  633. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  634. <nil key="highlightedColor"/>
  635. </label>
  636. </subviews>
  637. </tableViewCellContentView>
  638. </tableViewCell>
  639. </prototypes>
  640. <connections>
  641. <outlet property="dataSource" destination="Q1j-qK-Nq8" id="xu3-jC-atg"/>
  642. <outlet property="delegate" destination="Q1j-qK-Nq8" id="N2l-yO-mxO"/>
  643. </connections>
  644. </tableView>
  645. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FqB-9p-WZO">
  646. <rect key="frame" x="228" y="250" width="100" height="30"/>
  647. <constraints>
  648. <constraint firstAttribute="width" constant="100" id="rVB-KF-ePd"/>
  649. <constraint firstAttribute="height" constant="30" id="y7g-Tz-bPx"/>
  650. </constraints>
  651. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  652. <state key="normal" title="Request Login">
  653. <color key="titleColor" red="0.60000002379999995" green="0.40000000600000002" blue="0.20000000300000001" alpha="1" colorSpace="calibratedRGB"/>
  654. </state>
  655. <connections>
  656. <action selector="requestLoginBtnClicked:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="Er6-GZ-JiA"/>
  657. </connections>
  658. </button>
  659. </subviews>
  660. <viewLayoutGuide key="safeArea" id="E3s-Bo-qWx"/>
  661. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  662. <constraints>
  663. <constraint firstItem="e4L-J6-NNX" firstAttribute="leading" secondItem="E3s-Bo-qWx" secondAttribute="leading" constant="60" id="5rN-Bq-Gp0"/>
  664. <constraint firstItem="3dj-qP-iVc" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="8YV-ca-ONJ"/>
  665. <constraint firstItem="CZM-O3-JlR" firstAttribute="centerY" secondItem="FqB-9p-WZO" secondAttribute="centerY" id="BFh-sl-lkW"/>
  666. <constraint firstItem="CZM-O3-JlR" firstAttribute="leading" secondItem="FqB-9p-WZO" secondAttribute="trailing" constant="30" id="C4e-ia-JDM"/>
  667. <constraint firstItem="B5F-AY-BkK" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="C5V-5F-xxp"/>
  668. <constraint firstItem="20z-6W-PvH" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="F8M-cK-QME"/>
  669. <constraint firstItem="CZM-O3-JlR" firstAttribute="top" secondItem="3dj-qP-iVc" secondAttribute="bottom" constant="8" id="FSS-Qf-IC9"/>
  670. <constraint firstItem="E3s-Bo-qWx" firstAttribute="trailing" secondItem="CZM-O3-JlR" secondAttribute="trailing" constant="20" id="QNS-eu-p2q"/>
  671. <constraint firstItem="E3s-Bo-qWx" firstAttribute="bottom" secondItem="CZM-O3-JlR" secondAttribute="bottom" constant="20" id="RFM-nE-ZoK"/>
  672. <constraint firstItem="2AI-yS-Vfe" firstAttribute="top" secondItem="E3s-Bo-qWx" secondAttribute="top" constant="67" id="X4o-Ve-shM"/>
  673. <constraint firstItem="oCu-XS-jr9" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="XPY-Xr-orm"/>
  674. <constraint firstItem="e4L-J6-NNX" firstAttribute="leading" secondItem="2AI-yS-Vfe" secondAttribute="leading" id="cdu-6c-yVK"/>
  675. <constraint firstItem="B5F-AY-BkK" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="eaR-VW-73d"/>
  676. <constraint firstItem="pO9-Lj-YQb" firstAttribute="firstBaseline" secondItem="2AI-yS-Vfe" secondAttribute="firstBaseline" id="ek0-eD-CdQ"/>
  677. <constraint firstItem="20z-6W-PvH" firstAttribute="top" secondItem="oCu-XS-jr9" secondAttribute="bottom" constant="24" id="m0g-cr-Isk"/>
  678. <constraint firstItem="3dj-qP-iVc" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="nvE-gE-XeQ"/>
  679. <constraint firstItem="20z-6W-PvH" firstAttribute="bottom" secondItem="B5F-AY-BkK" secondAttribute="bottom" id="oiO-3K-qoF"/>
  680. <constraint firstItem="pO9-Lj-YQb" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="p1K-RF-wFX"/>
  681. <constraint firstItem="E3s-Bo-qWx" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" constant="60" id="pN5-Nz-h0t"/>
  682. <constraint firstItem="oCu-XS-jr9" firstAttribute="trailing" secondItem="e4L-J6-NNX" secondAttribute="trailing" id="x8C-kd-WnK"/>
  683. <constraint firstItem="3dj-qP-iVc" firstAttribute="top" secondItem="e4L-J6-NNX" secondAttribute="bottom" id="xIq-bZ-ffe"/>
  684. <constraint firstItem="oCu-XS-jr9" firstAttribute="top" secondItem="e4L-J6-NNX" secondAttribute="bottom" constant="9" id="xiC-xJ-kR0"/>
  685. <constraint firstItem="e4L-J6-NNX" firstAttribute="top" secondItem="2AI-yS-Vfe" secondAttribute="bottom" constant="10" id="zWZ-Ih-Z7f"/>
  686. </constraints>
  687. </view>
  688. <navigationItem key="navigationItem" title="Sign In" id="InA-1X-4Kd">
  689. <barButtonItem key="rightBarButtonItem" image="close" style="plain" id="Rl4-6e-kHm">
  690. <connections>
  691. <action selector="CloseClick:" destination="Q1j-qK-Nq8" id="pAM-ui-IMx"/>
  692. </connections>
  693. </barButtonItem>
  694. </navigationItem>
  695. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  696. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  697. <size key="freeformSize" width="480" height="320"/>
  698. <connections>
  699. <outlet property="Loginlist" destination="3dj-qP-iVc" id="XaJ-eX-qBn"/>
  700. <outlet property="bb_close" destination="Rl4-6e-kHm" id="0Mj-Do-OjV"/>
  701. <outlet property="btnLogin" destination="CZM-O3-JlR" id="unz-tZ-32M"/>
  702. <outlet property="checkOfflineMode" destination="20z-6W-PvH" id="dce-H9-djn"/>
  703. <outlet property="checkSavePassword" destination="B5F-AY-BkK" id="zzE-TR-Jcm"/>
  704. <outlet property="editpass" destination="oCu-XS-jr9" id="Tqo-ji-zau"/>
  705. <outlet property="edituser" destination="e4L-J6-NNX" id="MPR-BH-UPe"/>
  706. <outlet property="requestLoginBtn" destination="FqB-9p-WZO" id="hGJ-jt-j5G"/>
  707. </connections>
  708. </viewController>
  709. <placeholder placeholderIdentifier="IBFirstResponder" id="LPP-1Z-0yh" userLabel="First Responder" sceneMemberID="firstResponder"/>
  710. </objects>
  711. <point key="canvasLocation" x="885" y="-1033"/>
  712. </scene>
  713. <!--Home View Controller-->
  714. <scene sceneID="ooR-wa-PJg">
  715. <objects>
  716. <viewController storyboardIdentifier="HomeViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="qnc-8g-ecq" customClass="HomeViewController" sceneMemberID="viewController">
  717. <view key="view" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="uyL-pB-aij">
  718. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  719. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  720. <subviews>
  721. <view hidden="YES" contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hF1-Cm-X4t" userLabel="home category menu">
  722. <rect key="frame" x="-280" y="0.0" width="256" height="1133"/>
  723. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" heightSizable="YES" flexibleMaxY="YES"/>
  724. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  725. </view>
  726. <tableView clipsSubviews="YES" contentMode="scaleToFill" fixedFrame="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="nqT-Hf-Ep7" userLabel="home content table">
  727. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  728. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" flexibleMaxY="YES"/>
  729. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  730. <prototypes>
  731. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellSlide" id="c21-Hy-QJU" customClass="HomeTableViewCellSlide">
  732. <rect key="frame" x="0.0" y="44.5" width="744" height="44"/>
  733. <autoresizingMask key="autoresizingMask"/>
  734. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="c21-Hy-QJU" id="2Mt-ve-YI4">
  735. <rect key="frame" x="0.0" y="0.0" width="744" height="44"/>
  736. <autoresizingMask key="autoresizingMask"/>
  737. </tableViewCellContentView>
  738. </tableViewCell>
  739. <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellBanner" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellBanner" rowHeight="317" id="rvl-UX-dny" customClass="HomeTableViewCellBanner">
  740. <rect key="frame" x="0.0" y="88.5" width="744" height="317"/>
  741. <autoresizingMask key="autoresizingMask"/>
  742. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rvl-UX-dny" id="ULg-i3-NWf">
  743. <rect key="frame" x="0.0" y="0.0" width="744" height="317"/>
  744. <autoresizingMask key="autoresizingMask"/>
  745. <subviews>
  746. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3Rk-k3-zwC">
  747. <rect key="frame" x="9" y="-13" width="746" height="308"/>
  748. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  749. </imageView>
  750. </subviews>
  751. </tableViewCellContentView>
  752. <connections>
  753. <outlet property="BannerImageView" destination="3Rk-k3-zwC" id="Lyx-HU-JK1"/>
  754. </connections>
  755. </tableViewCell>
  756. <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellButtonBanner" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="HomeTableViewCellButtonBanner" rowHeight="317" id="Put-35-LxJ" customClass="HomeTableViewCellButtonBanner">
  757. <rect key="frame" x="0.0" y="405.5" width="744" height="317"/>
  758. <autoresizingMask key="autoresizingMask"/>
  759. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Put-35-LxJ" id="Lai-zl-Z6Z">
  760. <rect key="frame" x="0.0" y="0.0" width="744" height="317"/>
  761. <autoresizingMask key="autoresizingMask"/>
  762. </tableViewCellContentView>
  763. </tableViewCell>
  764. <tableViewCell contentMode="scaleToFill" restorationIdentifier="HomeTableViewCellTopic" selectionStyle="default" indentationWidth="10" reuseIdentifier="HomeTableViewCellTopic" rowHeight="310" id="Pbg-ua-PLt" customClass="HomeTableViewCellTopic">
  765. <rect key="frame" x="0.0" y="722.5" width="744" height="310"/>
  766. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  767. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Pbg-ua-PLt" id="dGe-fL-Pfl">
  768. <rect key="frame" x="0.0" y="0.0" width="744" height="310"/>
  769. <autoresizingMask key="autoresizingMask"/>
  770. <subviews>
  771. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="AJc-gj-4ib">
  772. <rect key="frame" x="-5" y="11" width="744" height="15"/>
  773. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  774. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  775. </view>
  776. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" minimumZoomScale="0.0" maximumZoomScale="0.0" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="YZB-OJ-1Vt">
  777. <rect key="frame" x="-5" y="16" width="744" height="268"/>
  778. <autoresizingMask key="autoresizingMask" widthSizable="YES"/>
  779. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  780. <collectionViewFlowLayout key="collectionViewLayout" scrollDirection="horizontal" minimumLineSpacing="10" minimumInteritemSpacing="10" id="saz-yz-bIb">
  781. <size key="itemSize" width="175" height="234"/>
  782. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  783. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  784. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  785. </collectionViewFlowLayout>
  786. <cells>
  787. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="RelatedModelCell" id="uoK-xx-tpx" customClass="CategoryCellSmall">
  788. <rect key="frame" x="0.0" y="17" width="175" height="234"/>
  789. <autoresizingMask key="autoresizingMask"/>
  790. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  791. <rect key="frame" x="0.0" y="0.0" width="175" height="234"/>
  792. <autoresizingMask key="autoresizingMask"/>
  793. <subviews>
  794. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mhk-as-czM">
  795. <rect key="frame" x="1" y="1" width="173" height="172"/>
  796. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  797. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  798. </imageView>
  799. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WFK-py-itc" userLabel="Label -description">
  800. <rect key="frame" x="8" y="195" width="159" height="21"/>
  801. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  802. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  803. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  804. <nil key="highlightedColor"/>
  805. </label>
  806. </subviews>
  807. </view>
  808. <color key="backgroundColor" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  809. <connections>
  810. <outlet property="cellDescription" destination="WFK-py-itc" id="LSc-M2-YzH"/>
  811. <outlet property="cellImageView" destination="mhk-as-czM" id="uwx-Yj-WTi"/>
  812. </connections>
  813. </collectionViewCell>
  814. </cells>
  815. <connections>
  816. <outlet property="dataSource" destination="Pbg-ua-PLt" id="0dK-Wn-1rU"/>
  817. <outlet property="delegate" destination="Pbg-ua-PLt" id="gFa-AT-pP5"/>
  818. </connections>
  819. </collectionView>
  820. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Title" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QPi-DJ-gSR">
  821. <rect key="frame" x="0.0" y="11" width="768" height="21"/>
  822. <autoresizingMask key="autoresizingMask"/>
  823. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  824. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  825. <nil key="highlightedColor"/>
  826. </label>
  827. </subviews>
  828. </tableViewCellContentView>
  829. <connections>
  830. <outlet property="label_title" destination="QPi-DJ-gSR" id="FQ2-0h-DvQ"/>
  831. <outlet property="topicCollectionView" destination="YZB-OJ-1Vt" id="njr-zM-l0b"/>
  832. </connections>
  833. </tableViewCell>
  834. </prototypes>
  835. <connections>
  836. <outlet property="dataSource" destination="qnc-8g-ecq" id="4tg-zU-tQk"/>
  837. <outlet property="delegate" destination="qnc-8g-ecq" id="AG3-4l-k38"/>
  838. </connections>
  839. </tableView>
  840. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" hidesWhenStopped="YES" animating="YES" style="whiteLarge" translatesAutoresizingMaskIntoConstraints="NO" id="Fnh-SM-ihl">
  841. <rect key="frame" x="354" y="547" width="37" height="37"/>
  842. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
  843. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  844. </activityIndicatorView>
  845. <label hidden="YES" opaque="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="Cannot get data from server.
Tap to try again." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="95F-9e-vAS">
  846. <rect key="frame" x="233" y="531" width="277" height="73"/>
  847. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
  848. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  849. <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  850. <nil key="highlightedColor"/>
  851. </label>
  852. </subviews>
  853. <viewLayoutGuide key="safeArea" id="zyS-ws-jOo"/>
  854. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  855. </view>
  856. <toolbarItems/>
  857. <connections>
  858. <outlet property="homeTable" destination="nqT-Hf-Ep7" id="qZ3-Q2-bgS"/>
  859. <outlet property="label_net_err" destination="95F-9e-vAS" id="gkX-k5-PJE"/>
  860. <outlet property="mum" destination="Fnh-SM-ihl" id="72b-Kj-R5h"/>
  861. <outlet property="treeContainer" destination="hF1-Cm-X4t" id="68v-WT-wDe"/>
  862. </connections>
  863. </viewController>
  864. <placeholder placeholderIdentifier="IBFirstResponder" id="k7p-uv-DeY" userLabel="First Responder" sceneMemberID="firstResponder"/>
  865. </objects>
  866. <point key="canvasLocation" x="1792.96875" y="-100.1953125"/>
  867. </scene>
  868. <!--ScannerViewController-->
  869. <scene sceneID="tgY-Nq-Wd9">
  870. <objects>
  871. <viewController storyboardIdentifier="ScannerViewController" title="ScannerViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="EIb-H4-v4U" customClass="ScannerViewController" sceneMemberID="viewController">
  872. <view key="view" contentMode="scaleToFill" id="NHM-5E-iC6">
  873. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  874. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  875. <subviews>
  876. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="G66-bZ-5AK" customClass="ScannerControllerView">
  877. <rect key="frame" x="0.0" y="24" width="744" height="1089"/>
  878. <subviews>
  879. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="dHM-WV-ZSO" userLabel="Button scan">
  880. <rect key="frame" x="589" y="726" width="108" height="108"/>
  881. <color key="backgroundColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  882. <constraints>
  883. <constraint firstAttribute="width" constant="108" id="cxB-uv-UGA"/>
  884. <constraint firstAttribute="height" constant="108" id="vqs-UD-ndn"/>
  885. </constraints>
  886. <fontDescription key="fontDescription" type="system" pointSize="0.0"/>
  887. <state key="normal">
  888. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  889. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  890. </state>
  891. <userDefinedRuntimeAttributes>
  892. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  893. <integer key="value" value="54"/>
  894. </userDefinedRuntimeAttribute>
  895. </userDefinedRuntimeAttributes>
  896. <connections>
  897. <action selector="ScanButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="xkf-x8-8N4"/>
  898. </connections>
  899. </button>
  900. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="pick_bg" translatesAutoresizingMaskIntoConstraints="NO" id="nxQ-Fb-gF5">
  901. <rect key="frame" x="122" y="394.5" width="500" height="300"/>
  902. <constraints>
  903. <constraint firstAttribute="width" constant="500" id="1g6-UG-b63"/>
  904. <constraint firstAttribute="height" constant="300" id="Ep8-fT-FON"/>
  905. </constraints>
  906. </imageView>
  907. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zfm-0K-VDC">
  908. <rect key="frame" x="122" y="754.5" width="500" height="51"/>
  909. <constraints>
  910. <constraint firstAttribute="height" constant="51" id="b8K-xQ-vVg"/>
  911. </constraints>
  912. <fontDescription key="fontDescription" type="system" weight="heavy" pointSize="20"/>
  913. <state key="normal" title="Target: Model Detail"/>
  914. <connections>
  915. <action selector="TargetButtonClick:" destination="EIb-H4-v4U" eventType="touchUpInside" id="9Mf-ms-ZCb"/>
  916. </connections>
  917. </button>
  918. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Scan QR code to review product info" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cEj-j3-KnR">
  919. <rect key="frame" x="233" y="293.5" width="278.5" height="21"/>
  920. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  921. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="calibratedRGB"/>
  922. <nil key="highlightedColor"/>
  923. </label>
  924. </subviews>
  925. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  926. <constraints>
  927. <constraint firstItem="dHM-WV-ZSO" firstAttribute="centerY" secondItem="Zfm-0K-VDC" secondAttribute="centerY" id="3Tu-om-no6"/>
  928. <constraint firstItem="nxQ-Fb-gF5" firstAttribute="top" secondItem="cEj-j3-KnR" secondAttribute="bottom" constant="80" id="BJe-ob-Vqo"/>
  929. <constraint firstItem="nxQ-Fb-gF5" firstAttribute="centerX" secondItem="G66-bZ-5AK" secondAttribute="centerX" id="BnE-cg-2FL"/>
  930. <constraint firstAttribute="trailing" secondItem="dHM-WV-ZSO" secondAttribute="trailing" constant="47" id="CkA-Dv-7BS"/>
  931. <constraint firstItem="nxQ-Fb-gF5" firstAttribute="centerY" secondItem="G66-bZ-5AK" secondAttribute="centerY" id="E1I-kP-Upr"/>
  932. <constraint firstItem="cEj-j3-KnR" firstAttribute="centerX" secondItem="G66-bZ-5AK" secondAttribute="centerX" id="Jdm-eP-iOw"/>
  933. <constraint firstItem="Zfm-0K-VDC" firstAttribute="trailing" secondItem="nxQ-Fb-gF5" secondAttribute="trailing" id="Nxl-G2-3f7"/>
  934. <constraint firstItem="Zfm-0K-VDC" firstAttribute="leading" secondItem="nxQ-Fb-gF5" secondAttribute="leading" id="dPZ-Wb-EbB"/>
  935. <constraint firstItem="Zfm-0K-VDC" firstAttribute="top" secondItem="nxQ-Fb-gF5" secondAttribute="bottom" constant="60" id="fzg-pY-V2d"/>
  936. </constraints>
  937. </view>
  938. </subviews>
  939. <viewLayoutGuide key="safeArea" id="qfZ-AN-nm6"/>
  940. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  941. <constraints>
  942. <constraint firstItem="G66-bZ-5AK" firstAttribute="top" secondItem="qfZ-AN-nm6" secondAttribute="top" id="A0p-mk-G29"/>
  943. <constraint firstItem="G66-bZ-5AK" firstAttribute="bottom" secondItem="qfZ-AN-nm6" secondAttribute="bottom" id="R2y-gL-KVz"/>
  944. <constraint firstItem="G66-bZ-5AK" firstAttribute="leading" secondItem="qfZ-AN-nm6" secondAttribute="leading" id="hSP-Fa-Pn5"/>
  945. <constraint firstItem="G66-bZ-5AK" firstAttribute="trailing" secondItem="qfZ-AN-nm6" secondAttribute="trailing" id="i7z-Nr-ZrM"/>
  946. </constraints>
  947. </view>
  948. <navigationItem key="navigationItem" title="Scanner" id="E95-sd-zz2"/>
  949. <connections>
  950. <outlet property="backgroundView" destination="G66-bZ-5AK" id="SO2-aS-Hjz"/>
  951. <outlet property="focusZone" destination="nxQ-Fb-gF5" id="mgU-R3-NhT"/>
  952. <outlet property="scanButton" destination="dHM-WV-ZSO" id="zJA-gj-H7R"/>
  953. <outlet property="targetButton" destination="Zfm-0K-VDC" id="REG-YG-Zej"/>
  954. </connections>
  955. </viewController>
  956. <placeholder placeholderIdentifier="IBFirstResponder" id="5qg-tr-rF5" userLabel="First Responder" sceneMemberID="firstResponder"/>
  957. </objects>
  958. <point key="canvasLocation" x="2221.875" y="-2534.1796875"/>
  959. </scene>
  960. <!--Cache-->
  961. <scene sceneID="1T2-gR-ILK">
  962. <objects>
  963. <tableViewController storyboardIdentifier="CacheViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="SCh-P5-b9w" customClass="CacheViewController" sceneMemberID="viewController">
  964. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="ESr-hp-wy1">
  965. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  966. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  967. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  968. <sections>
  969. <tableViewSection id="Dxk-o0-QTQ">
  970. <cells>
  971. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="QWz-EJ-Yzy">
  972. <rect key="frame" x="0.0" y="44.5" width="744" height="44"/>
  973. <autoresizingMask key="autoresizingMask"/>
  974. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QWz-EJ-Yzy" id="E1L-su-dvV">
  975. <rect key="frame" x="0.0" y="0.0" width="744" height="44"/>
  976. <autoresizingMask key="autoresizingMask"/>
  977. <subviews>
  978. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="PJV-YE-GvQ">
  979. <rect key="frame" x="680" y="6" width="51" height="31"/>
  980. <connections>
  981. <action selector="cacheSwitchChanged:" destination="SCh-P5-b9w" eventType="valueChanged" id="Qx0-8P-8Gq"/>
  982. </connections>
  983. </switch>
  984. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable cache" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qKR-8L-xrc">
  985. <rect key="frame" x="20" y="11" width="102" height="21"/>
  986. <constraints>
  987. <constraint firstAttribute="height" constant="21" id="9Dl-FZ-2gr"/>
  988. </constraints>
  989. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  990. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  991. <nil key="highlightedColor"/>
  992. </label>
  993. </subviews>
  994. <constraints>
  995. <constraint firstAttribute="bottom" secondItem="qKR-8L-xrc" secondAttribute="bottom" constant="12" id="EFz-o0-YVX"/>
  996. <constraint firstItem="qKR-8L-xrc" firstAttribute="leading" secondItem="E1L-su-dvV" secondAttribute="leading" constant="20" id="Jg5-6V-X6C"/>
  997. <constraint firstItem="PJV-YE-GvQ" firstAttribute="top" secondItem="E1L-su-dvV" secondAttribute="top" constant="6" id="O5K-GW-h4E"/>
  998. <constraint firstAttribute="trailing" secondItem="PJV-YE-GvQ" secondAttribute="trailing" constant="15" id="ft6-bR-Std"/>
  999. <constraint firstAttribute="bottom" secondItem="PJV-YE-GvQ" secondAttribute="bottom" constant="7" id="kNR-v5-XsK"/>
  1000. <constraint firstItem="qKR-8L-xrc" firstAttribute="top" secondItem="E1L-su-dvV" secondAttribute="top" constant="11" id="oPE-GW-FM7"/>
  1001. </constraints>
  1002. </tableViewCellContentView>
  1003. </tableViewCell>
  1004. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="TID-OY-afi">
  1005. <rect key="frame" x="0.0" y="88.5" width="744" height="44"/>
  1006. <autoresizingMask key="autoresizingMask"/>
  1007. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="TID-OY-afi" id="yuC-0D-Ebs">
  1008. <rect key="frame" x="0.0" y="0.0" width="744" height="44"/>
  1009. <autoresizingMask key="autoresizingMask"/>
  1010. <subviews>
  1011. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Diskspace" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pVO-Tx-wMs">
  1012. <rect key="frame" x="20" y="11" width="100" height="21"/>
  1013. <constraints>
  1014. <constraint firstAttribute="width" constant="100" id="Bju-ob-q4a"/>
  1015. <constraint firstAttribute="height" constant="21" id="j82-Bi-Gpi"/>
  1016. </constraints>
  1017. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1018. <nil key="highlightedColor"/>
  1019. </label>
  1020. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="el1-Tc-PkB">
  1021. <rect key="frame" x="474" y="11" width="255" height="21"/>
  1022. <constraints>
  1023. <constraint firstAttribute="width" constant="255" id="eVQ-NU-rQp"/>
  1024. <constraint firstAttribute="height" constant="21" id="g09-MR-GgQ"/>
  1025. </constraints>
  1026. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1027. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1028. <nil key="highlightedColor"/>
  1029. </label>
  1030. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" animating="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="D0F-Ed-Wng">
  1031. <rect key="frame" x="119" y="12" width="20" height="20"/>
  1032. <constraints>
  1033. <constraint firstAttribute="height" constant="20" id="3hA-JL-hmO"/>
  1034. <constraint firstAttribute="width" constant="20" id="WbA-UI-86q"/>
  1035. </constraints>
  1036. <color key="color" red="0.59999999999999998" green="0.40000000000000002" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1037. </activityIndicatorView>
  1038. </subviews>
  1039. <constraints>
  1040. <constraint firstAttribute="bottom" secondItem="el1-Tc-PkB" secondAttribute="bottom" constant="12" id="0gc-DT-htb"/>
  1041. <constraint firstItem="pVO-Tx-wMs" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="11" id="3UI-gz-YvE"/>
  1042. <constraint firstAttribute="bottom" secondItem="D0F-Ed-Wng" secondAttribute="bottom" constant="12" id="98y-fg-NAY"/>
  1043. <constraint firstAttribute="trailing" secondItem="el1-Tc-PkB" secondAttribute="trailing" constant="15" id="BwW-nS-sCh"/>
  1044. <constraint firstItem="D0F-Ed-Wng" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="12" id="Ji8-Jf-bBZ"/>
  1045. <constraint firstItem="D0F-Ed-Wng" firstAttribute="leading" secondItem="yuC-0D-Ebs" secondAttribute="leadingMargin" constant="99" id="KaA-Tr-zhF"/>
  1046. <constraint firstAttribute="bottom" secondItem="pVO-Tx-wMs" secondAttribute="bottom" constant="12" id="VZz-Tt-uSj"/>
  1047. <constraint firstItem="el1-Tc-PkB" firstAttribute="top" secondItem="yuC-0D-Ebs" secondAttribute="top" constant="11" id="X6e-Vb-WxL"/>
  1048. <constraint firstItem="pVO-Tx-wMs" firstAttribute="leading" secondItem="yuC-0D-Ebs" secondAttribute="leading" constant="20" id="nce-yw-8xF"/>
  1049. </constraints>
  1050. </tableViewCellContentView>
  1051. </tableViewCell>
  1052. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Pol-lE-P45">
  1053. <rect key="frame" x="0.0" y="132.5" width="744" height="44"/>
  1054. <autoresizingMask key="autoresizingMask"/>
  1055. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Pol-lE-P45" id="FAm-1c-nX0">
  1056. <rect key="frame" x="0.0" y="0.0" width="715.5" height="44"/>
  1057. <autoresizingMask key="autoresizingMask"/>
  1058. <subviews>
  1059. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Clean Cache" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AHm-p1-51h">
  1060. <rect key="frame" x="20" y="11" width="120" height="21"/>
  1061. <constraints>
  1062. <constraint firstAttribute="width" constant="120" id="S5w-mj-bdv"/>
  1063. <constraint firstAttribute="height" constant="21" id="fAE-p9-tse"/>
  1064. </constraints>
  1065. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1066. <nil key="highlightedColor"/>
  1067. </label>
  1068. </subviews>
  1069. <constraints>
  1070. <constraint firstItem="AHm-p1-51h" firstAttribute="leading" secondItem="FAm-1c-nX0" secondAttribute="leading" constant="20" id="8ZZ-3L-je6"/>
  1071. <constraint firstItem="AHm-p1-51h" firstAttribute="top" secondItem="FAm-1c-nX0" secondAttribute="top" constant="11" id="PVx-Cs-UHa"/>
  1072. <constraint firstAttribute="bottom" secondItem="AHm-p1-51h" secondAttribute="bottom" constant="12" id="lks-1h-E4B"/>
  1073. </constraints>
  1074. </tableViewCellContentView>
  1075. </tableViewCell>
  1076. </cells>
  1077. </tableViewSection>
  1078. </sections>
  1079. <connections>
  1080. <outlet property="dataSource" destination="SCh-P5-b9w" id="V7V-Rb-Kav"/>
  1081. <outlet property="delegate" destination="SCh-P5-b9w" id="B4H-r7-aS3"/>
  1082. </connections>
  1083. </tableView>
  1084. <navigationItem key="navigationItem" title="Cache" id="IG0-Dw-a0J"/>
  1085. <connections>
  1086. <outlet property="catchSwitch" destination="PJV-YE-GvQ" id="2N3-Pq-QXJ"/>
  1087. <outlet property="mum" destination="D0F-Ed-Wng" id="1mp-TU-vTM"/>
  1088. <outlet property="sizeLabel" destination="el1-Tc-PkB" id="ooE-we-dgL"/>
  1089. </connections>
  1090. </tableViewController>
  1091. <placeholder placeholderIdentifier="IBFirstResponder" id="FEW-hW-hPv" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1092. </objects>
  1093. <point key="canvasLocation" x="937.5" y="-2527.1484375"/>
  1094. </scene>
  1095. <!--Popup Navigation Controller-->
  1096. <scene sceneID="huE-IR-N6G">
  1097. <objects>
  1098. <navigationController storyboardIdentifier="PopupNavi" definesPresentationContext="YES" useStoryboardIdentifierAsRestorationIdentifier="YES" id="O4f-Xf-sca" customClass="PopupNavigationController" sceneMemberID="viewController">
  1099. <navigationBar key="navigationBar" contentMode="scaleToFill" id="jDv-A4-an8">
  1100. <rect key="frame" x="0.0" y="24" width="744" height="50"/>
  1101. <autoresizingMask key="autoresizingMask"/>
  1102. </navigationBar>
  1103. </navigationController>
  1104. <placeholder placeholderIdentifier="IBFirstResponder" id="Tew-5G-eJV" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1105. </objects>
  1106. <point key="canvasLocation" x="-453.125" y="-816.796875"/>
  1107. </scene>
  1108. <!--Black Box-->
  1109. <scene sceneID="cVU-iS-CVg">
  1110. <objects>
  1111. <viewController storyboardIdentifier="FunctionTestViewController" title="Black Box" useStoryboardIdentifierAsRestorationIdentifier="YES" id="kPm-vh-Xir" customClass="FunctionTestViewController" sceneMemberID="viewController">
  1112. <view key="view" contentMode="scaleToFill" id="c5B-Gi-I5E">
  1113. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  1114. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1115. <subviews>
  1116. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="f2s-mC-wXH">
  1117. <rect key="frame" x="60" y="262" width="250" height="30"/>
  1118. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1119. <state key="normal" title="Background print"/>
  1120. <connections>
  1121. <action selector="onBackgroundprintClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="ADx-Bs-IY1"/>
  1122. </connections>
  1123. </button>
  1124. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3Vw-af-LUM">
  1125. <rect key="frame" x="60" y="201" width="250" height="30"/>
  1126. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1127. <state key="normal" title="Printer Setting"/>
  1128. <connections>
  1129. <action selector="onPrintersettingClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="ign-k9-WDe"/>
  1130. </connections>
  1131. </button>
  1132. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" text="printer will show here" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hx4-8E-afz">
  1133. <rect key="frame" x="342" y="210" width="190" height="21"/>
  1134. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1135. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1136. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1137. <nil key="highlightedColor"/>
  1138. </label>
  1139. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4aT-F9-r30">
  1140. <rect key="frame" x="94" y="388" width="183" height="30"/>
  1141. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1142. <state key="normal" title="Print"/>
  1143. <connections>
  1144. <action selector="OnPrintParamsClick:" destination="kPm-vh-Xir" eventType="touchUpInside" id="5NP-He-9AA"/>
  1145. </connections>
  1146. </button>
  1147. </subviews>
  1148. <viewLayoutGuide key="safeArea" id="TDE-LW-r8Y"/>
  1149. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1150. </view>
  1151. <connections>
  1152. <outlet property="labelPrintername" destination="hx4-8E-afz" id="Uu8-1I-s5L"/>
  1153. </connections>
  1154. </viewController>
  1155. <placeholder placeholderIdentifier="IBFirstResponder" id="SqT-Vo-cY8" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1156. </objects>
  1157. <point key="canvasLocation" x="949.21875" y="2638.4765625"/>
  1158. </scene>
  1159. <!--Upload Photo-->
  1160. <scene sceneID="kaQ-l6-cav">
  1161. <objects>
  1162. <viewController storyboardIdentifier="ImageUploadViewController" title="Upload Photo" useStoryboardIdentifierAsRestorationIdentifier="YES" id="yoP-dB-tvg" customClass="ImageUploadViewController" sceneMemberID="viewController">
  1163. <view key="view" contentMode="scaleToFill" id="Jl1-Pm-bf5">
  1164. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  1165. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1166. <subviews>
  1167. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" insetsLayoutMarginsFromSafeArea="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5ri-5V-GiE">
  1168. <rect key="frame" x="84" y="144" width="576" height="809"/>
  1169. <color key="backgroundColor" red="0.79277843236923218" green="0.79277843236923218" blue="0.79277843236923218" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1170. </imageView>
  1171. <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Na7-Cn-iPo">
  1172. <rect key="frame" x="82" y="989" width="48" height="48"/>
  1173. <constraints>
  1174. <constraint firstAttribute="height" constant="48" id="U6r-4X-yDY"/>
  1175. <constraint firstAttribute="width" constant="48" id="n8g-R9-DsX"/>
  1176. </constraints>
  1177. <state key="normal" image="album"/>
  1178. <connections>
  1179. <action selector="onClickAlbum:" destination="yoP-dB-tvg" eventType="touchUpInside" id="r6T-zf-AOR"/>
  1180. </connections>
  1181. </button>
  1182. <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="t9M-g5-jQa">
  1183. <rect key="frame" x="173" y="989" width="48" height="48"/>
  1184. <constraints>
  1185. <constraint firstAttribute="height" constant="48" id="acz-Es-WzN"/>
  1186. <constraint firstAttribute="width" constant="48" id="bc7-FB-hAx"/>
  1187. </constraints>
  1188. <state key="normal" image="camera"/>
  1189. <connections>
  1190. <action selector="onClickCamera:" destination="yoP-dB-tvg" eventType="touchUpInside" id="I9k-Sb-ExD"/>
  1191. </connections>
  1192. </button>
  1193. <button opaque="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8fL-NB-sPV">
  1194. <rect key="frame" x="611" y="989" width="48" height="48"/>
  1195. <constraints>
  1196. <constraint firstAttribute="width" constant="48" id="78F-O0-z56"/>
  1197. <constraint firstAttribute="height" constant="48" id="AaV-ZZ-MJT"/>
  1198. </constraints>
  1199. <state key="normal" image="upload"/>
  1200. <connections>
  1201. <action selector="onClickUpload:" destination="yoP-dB-tvg" eventType="touchUpInside" id="gwB-hs-npR"/>
  1202. </connections>
  1203. </button>
  1204. <progressView opaque="NO" contentMode="scaleToFill" verticalHuggingPriority="750" insetsLayoutMarginsFromSafeArea="NO" progressViewStyle="bar" translatesAutoresizingMaskIntoConstraints="NO" id="N7c-8k-EE4">
  1205. <rect key="frame" x="84" y="968" width="576" height="4"/>
  1206. <color key="backgroundColor" red="0.081770886230000006" green="0.40781933069999998" blue="0.094417002809999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1207. <constraints>
  1208. <constraint firstAttribute="height" constant="3" id="1Yh-dZ-FJ4"/>
  1209. </constraints>
  1210. </progressView>
  1211. </subviews>
  1212. <viewLayoutGuide key="safeArea" id="IAj-uF-ECE"/>
  1213. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1214. <constraints>
  1215. <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="8fL-NB-sPV" secondAttribute="bottom" constant="76" id="0eH-FM-71C"/>
  1216. <constraint firstItem="N7c-8k-EE4" firstAttribute="top" secondItem="5ri-5V-GiE" secondAttribute="bottom" constant="15" id="2PS-5E-slp"/>
  1217. <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="Na7-Cn-iPo" secondAttribute="bottom" constant="76" id="3rv-Do-e6v"/>
  1218. <constraint firstItem="IAj-uF-ECE" firstAttribute="trailing" secondItem="8fL-NB-sPV" secondAttribute="trailing" constant="85" id="Iqg-OS-LcZ"/>
  1219. <constraint firstItem="Na7-Cn-iPo" firstAttribute="leading" secondItem="IAj-uF-ECE" secondAttribute="leading" constant="82" id="TW0-dW-ONy"/>
  1220. <constraint firstItem="N7c-8k-EE4" firstAttribute="leading" secondItem="Jl1-Pm-bf5" secondAttribute="leading" constant="84" id="WV3-sb-COE"/>
  1221. <constraint firstAttribute="trailing" secondItem="N7c-8k-EE4" secondAttribute="trailing" constant="84" id="cDi-0d-udq"/>
  1222. <constraint firstItem="Na7-Cn-iPo" firstAttribute="top" secondItem="N7c-8k-EE4" secondAttribute="bottom" constant="18" id="gO1-oX-3mT"/>
  1223. <constraint firstItem="t9M-g5-jQa" firstAttribute="leading" secondItem="Na7-Cn-iPo" secondAttribute="trailing" constant="43" id="lio-Uh-NDK"/>
  1224. <constraint firstItem="5ri-5V-GiE" firstAttribute="leading" secondItem="IAj-uF-ECE" secondAttribute="leading" constant="84" id="scL-Br-dHn"/>
  1225. <constraint firstItem="5ri-5V-GiE" firstAttribute="top" secondItem="IAj-uF-ECE" secondAttribute="top" constant="120" id="uKF-tN-2Mh"/>
  1226. <constraint firstItem="IAj-uF-ECE" firstAttribute="trailing" secondItem="5ri-5V-GiE" secondAttribute="trailing" constant="84" id="voQ-ho-iap"/>
  1227. <constraint firstItem="IAj-uF-ECE" firstAttribute="bottom" secondItem="t9M-g5-jQa" secondAttribute="bottom" constant="76" id="z4T-7B-jfS"/>
  1228. </constraints>
  1229. </view>
  1230. <connections>
  1231. <outlet property="buttonAlbum" destination="Na7-Cn-iPo" id="69T-ox-Obc"/>
  1232. <outlet property="buttonCamera" destination="t9M-g5-jQa" id="Q5w-84-qiU"/>
  1233. <outlet property="buttonUpload" destination="8fL-NB-sPV" id="nt7-iR-m69"/>
  1234. <outlet property="imgview" destination="5ri-5V-GiE" id="DVk-hE-8i0"/>
  1235. <outlet property="uploadProgress" destination="N7c-8k-EE4" id="lZo-Gc-okV"/>
  1236. </connections>
  1237. </viewController>
  1238. <placeholder placeholderIdentifier="IBFirstResponder" id="t9J-cc-PR0" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1239. </objects>
  1240. <point key="canvasLocation" x="5323.4375" y="445.89843749999994"/>
  1241. </scene>
  1242. <!--RetrievePassViewController-->
  1243. <scene sceneID="UaH-26-0Pi">
  1244. <objects>
  1245. <viewController storyboardIdentifier="RetrievePassViewController" title="RetrievePassViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="A7H-cd-cEh" customClass="RetrievePassViewController" sceneMemberID="viewController">
  1246. <view key="view" contentMode="scaleToFill" id="8T3-kQ-dJ2">
  1247. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1248. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1249. <subviews>
  1250. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="User" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="qk3-tB-bW0">
  1251. <rect key="frame" x="60" y="168" width="360" height="34"/>
  1252. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1253. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1254. <textInputTraits key="textInputTraits"/>
  1255. </textField>
  1256. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Email" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="bZG-Uc-zBh">
  1257. <rect key="frame" x="60" y="217" width="360" height="34"/>
  1258. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1259. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1260. <textInputTraits key="textInputTraits" keyboardType="emailAddress"/>
  1261. </textField>
  1262. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Fill Username and email address, then click Retrieve button.Reset password email will be sent to your email address shortly." lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Hyd-5M-IPx">
  1263. <rect key="frame" x="60" y="84" width="360" height="74"/>
  1264. <constraints>
  1265. <constraint firstAttribute="height" constant="74" id="ywg-QF-UYx"/>
  1266. </constraints>
  1267. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1268. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1269. <nil key="highlightedColor"/>
  1270. </label>
  1271. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NtX-di-oxp" customClass="DefaultImageButton">
  1272. <rect key="frame" x="358" y="250" width="102" height="30"/>
  1273. <constraints>
  1274. <constraint firstAttribute="width" constant="102" id="gCp-Ua-0Pb"/>
  1275. <constraint firstAttribute="height" constant="30" id="kBg-ZD-rin"/>
  1276. </constraints>
  1277. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  1278. <state key="normal" title="Retrieve" backgroundImage="btn_retrieve">
  1279. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1280. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1281. </state>
  1282. <userDefinedRuntimeAttributes>
  1283. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1284. <integer key="value" value="19"/>
  1285. </userDefinedRuntimeAttribute>
  1286. </userDefinedRuntimeAttributes>
  1287. <connections>
  1288. <action selector="onLoginClick:" destination="Q1j-qK-Nq8" eventType="touchUpInside" id="Ypk-0a-iRJ"/>
  1289. <action selector="onRetrieveClicked:" destination="A7H-cd-cEh" eventType="touchUpInside" id="2P5-4Y-0SI"/>
  1290. </connections>
  1291. </button>
  1292. </subviews>
  1293. <viewLayoutGuide key="safeArea" id="pDW-qe-5Kr"/>
  1294. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1295. <constraints>
  1296. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="NtX-di-oxp" secondAttribute="trailing" constant="20" id="DE6-Ut-aCG"/>
  1297. <constraint firstItem="Hyd-5M-IPx" firstAttribute="top" secondItem="pDW-qe-5Kr" secondAttribute="top" constant="60" id="Loc-rI-fja"/>
  1298. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="qk3-tB-bW0" secondAttribute="trailing" constant="60" id="RYG-7U-HVf"/>
  1299. <constraint firstItem="bZG-Uc-zBh" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="f4m-aM-TV8"/>
  1300. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="Hyd-5M-IPx" secondAttribute="trailing" constant="60" id="lTI-dt-cIC"/>
  1301. <constraint firstItem="Hyd-5M-IPx" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="mVk-qY-5bG"/>
  1302. <constraint firstItem="pDW-qe-5Kr" firstAttribute="bottom" secondItem="NtX-di-oxp" secondAttribute="bottom" constant="20" id="mqm-s6-Vzl"/>
  1303. <constraint firstItem="qk3-tB-bW0" firstAttribute="top" secondItem="Hyd-5M-IPx" secondAttribute="bottom" constant="10" id="nkN-4f-g9E"/>
  1304. <constraint firstItem="bZG-Uc-zBh" firstAttribute="top" secondItem="qk3-tB-bW0" secondAttribute="bottom" constant="15" id="ogb-oR-mXK"/>
  1305. <constraint firstItem="pDW-qe-5Kr" firstAttribute="trailing" secondItem="bZG-Uc-zBh" secondAttribute="trailing" constant="60" id="vkd-E1-zxy"/>
  1306. <constraint firstItem="qk3-tB-bW0" firstAttribute="leading" secondItem="pDW-qe-5Kr" secondAttribute="leading" constant="60" id="wfW-1p-qls"/>
  1307. </constraints>
  1308. </view>
  1309. <navigationItem key="navigationItem" title="Retrieve password" id="DaL-NM-hQp"/>
  1310. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1311. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1312. <size key="freeformSize" width="480" height="320"/>
  1313. <connections>
  1314. <outlet property="buttonRetrieve" destination="NtX-di-oxp" id="hnp-du-mwt"/>
  1315. <outlet property="editEmail" destination="bZG-Uc-zBh" id="aXN-c2-1og"/>
  1316. <outlet property="editUser" destination="qk3-tB-bW0" id="kx5-yH-QAZ"/>
  1317. </connections>
  1318. </viewController>
  1319. <placeholder placeholderIdentifier="IBFirstResponder" id="VMB-gd-nbo" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1320. </objects>
  1321. <point key="canvasLocation" x="1135.9375" y="-669.140625"/>
  1322. </scene>
  1323. <!--Scanner Setting-->
  1324. <scene sceneID="Q8f-rb-b7i">
  1325. <objects>
  1326. <viewController storyboardIdentifier="ScannerSettingViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Vzz-Pc-fRk" customClass="ScannerSettingViewController" sceneMemberID="viewController">
  1327. <view key="view" contentMode="scaleToFill" id="bSK-wT-Xlu">
  1328. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  1329. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1330. <subviews>
  1331. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="VyB-jG-KP0">
  1332. <rect key="frame" x="15" y="136" width="714" height="180"/>
  1333. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1334. <constraints>
  1335. <constraint firstAttribute="height" constant="180" id="2cR-CK-9h6"/>
  1336. </constraints>
  1337. <prototypes>
  1338. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="device_cell" textLabel="HwF-54-hzr" style="IBUITableViewCellStyleDefault" id="nP5-gn-0Jl">
  1339. <rect key="frame" x="0.0" y="44.5" width="714" height="44"/>
  1340. <autoresizingMask key="autoresizingMask"/>
  1341. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nP5-gn-0Jl" id="MCy-CI-ivv">
  1342. <rect key="frame" x="0.0" y="0.0" width="714" height="44"/>
  1343. <autoresizingMask key="autoresizingMask"/>
  1344. <subviews>
  1345. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HwF-54-hzr">
  1346. <rect key="frame" x="16" y="0.0" width="682" height="44"/>
  1347. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1348. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1349. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1350. <nil key="highlightedColor"/>
  1351. </label>
  1352. </subviews>
  1353. </tableViewCellContentView>
  1354. </tableViewCell>
  1355. </prototypes>
  1356. <connections>
  1357. <outlet property="dataSource" destination="Vzz-Pc-fRk" id="1Ij-sX-H77"/>
  1358. <outlet property="delegate" destination="Vzz-Pc-fRk" id="vLi-BX-e7c"/>
  1359. </connections>
  1360. </tableView>
  1361. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="OJ7-LV-Bht">
  1362. <rect key="frame" x="163" y="44" width="51" height="31"/>
  1363. <connections>
  1364. <action selector="onSwitchChanged:" destination="Vzz-Pc-fRk" eventType="valueChanged" id="gnp-Sn-kzz"/>
  1365. </connections>
  1366. </switch>
  1367. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable scanner" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZiN-wp-62B">
  1368. <rect key="frame" x="15" y="49" width="140" height="21"/>
  1369. <constraints>
  1370. <constraint firstAttribute="width" constant="140" id="N1G-pB-rq5"/>
  1371. <constraint firstAttribute="height" constant="21" id="b2y-i9-FAs"/>
  1372. </constraints>
  1373. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1374. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1375. <nil key="highlightedColor"/>
  1376. </label>
  1377. <activityIndicatorView hidden="YES" opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" hidesWhenStopped="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="LCZ-qf-CXh">
  1378. <rect key="frame" x="220" y="49.5" width="20" height="20"/>
  1379. <constraints>
  1380. <constraint firstAttribute="width" constant="20" id="Mtf-Nd-fgo"/>
  1381. <constraint firstAttribute="height" constant="20" id="e6k-Ig-ObT"/>
  1382. </constraints>
  1383. </activityIndicatorView>
  1384. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="JYl-x5-cTc">
  1385. <rect key="frame" x="15" y="402.5" width="714" height="645.5"/>
  1386. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1387. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1388. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  1389. </textView>
  1390. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Scan result should display here" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="fWr-gY-E10">
  1391. <rect key="frame" x="163" y="331" width="566" height="34"/>
  1392. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1393. <textInputTraits key="textInputTraits"/>
  1394. </textField>
  1395. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Off" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bOR-xy-Td3">
  1396. <rect key="frame" x="248" y="49" width="481" height="21"/>
  1397. <constraints>
  1398. <constraint firstAttribute="height" constant="21" id="Egj-ta-wwE"/>
  1399. </constraints>
  1400. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1401. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1402. <nil key="highlightedColor"/>
  1403. </label>
  1404. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Test Scanner" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ECq-fH-MLi">
  1405. <rect key="frame" x="15" y="337.5" width="140" height="21"/>
  1406. <constraints>
  1407. <constraint firstAttribute="width" constant="140" id="5He-AN-tMo"/>
  1408. <constraint firstAttribute="height" constant="21" id="P8f-wS-lXd"/>
  1409. </constraints>
  1410. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1411. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1412. <nil key="highlightedColor"/>
  1413. </label>
  1414. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="right" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="iby-OM-AKk">
  1415. <rect key="frame" x="650" y="1063" width="74" height="30"/>
  1416. <constraints>
  1417. <constraint firstAttribute="width" constant="74" id="CsX-ar-pk3"/>
  1418. <constraint firstAttribute="height" constant="30" id="sDj-r5-vnF"/>
  1419. </constraints>
  1420. <state key="normal" title="Send Log"/>
  1421. <connections>
  1422. <action selector="onEmailClicked:" destination="Vzz-Pc-fRk" eventType="touchUpInside" id="Zpf-p1-pzw"/>
  1423. </connections>
  1424. </button>
  1425. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable on launch" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MT9-hb-STe">
  1426. <rect key="frame" x="15" y="95" width="140" height="21"/>
  1427. <constraints>
  1428. <constraint firstAttribute="height" constant="21" id="2KN-V5-vPB"/>
  1429. <constraint firstAttribute="width" constant="140" id="9ES-CD-8Az"/>
  1430. </constraints>
  1431. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1432. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1433. <nil key="highlightedColor"/>
  1434. </label>
  1435. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="LjS-4t-q6l">
  1436. <rect key="frame" x="163" y="90" width="51" height="31"/>
  1437. <connections>
  1438. <action selector="onChangeAutolaunch:" destination="Vzz-Pc-fRk" eventType="valueChanged" id="lNd-bl-eYL"/>
  1439. </connections>
  1440. </switch>
  1441. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Log" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mDb-R3-eZv">
  1442. <rect key="frame" x="15" y="373.5" width="140" height="21"/>
  1443. <constraints>
  1444. <constraint firstAttribute="height" constant="21" id="2mG-Th-8Cu"/>
  1445. <constraint firstAttribute="width" constant="140" id="JKa-Fa-yML"/>
  1446. </constraints>
  1447. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1448. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1449. <nil key="highlightedColor"/>
  1450. </label>
  1451. </subviews>
  1452. <viewLayoutGuide key="safeArea" id="KKD-kZ-g9f"/>
  1453. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1454. <constraints>
  1455. <constraint firstItem="iby-OM-AKk" firstAttribute="top" secondItem="JYl-x5-cTc" secondAttribute="bottom" constant="15" id="2GK-lD-nDa"/>
  1456. <constraint firstItem="KKD-kZ-g9f" firstAttribute="bottom" secondItem="iby-OM-AKk" secondAttribute="bottom" constant="20" id="7bN-jC-jEs"/>
  1457. <constraint firstItem="OJ7-LV-Bht" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="AbP-bp-XFs"/>
  1458. <constraint firstItem="fWr-gY-E10" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="BOV-e1-Btb"/>
  1459. <constraint firstItem="ZiN-wp-62B" firstAttribute="leading" secondItem="KKD-kZ-g9f" secondAttribute="leading" constant="15" id="Bx5-1Q-mtz"/>
  1460. <constraint firstItem="KKD-kZ-g9f" firstAttribute="trailing" secondItem="bOR-xy-Td3" secondAttribute="trailing" constant="15" id="Cax-ct-94Z"/>
  1461. <constraint firstItem="KKD-kZ-g9f" firstAttribute="trailing" secondItem="iby-OM-AKk" secondAttribute="trailing" constant="20" id="CtY-aV-NHm"/>
  1462. <constraint firstItem="bOR-xy-Td3" firstAttribute="leading" secondItem="LCZ-qf-CXh" secondAttribute="trailing" constant="8" id="Euw-Ug-Yhf"/>
  1463. <constraint firstItem="LjS-4t-q6l" firstAttribute="centerY" secondItem="MT9-hb-STe" secondAttribute="centerY" id="IMq-O5-zbI"/>
  1464. <constraint firstItem="bOR-xy-Td3" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="IxN-FF-hts"/>
  1465. <constraint firstItem="ZiN-wp-62B" firstAttribute="top" secondItem="KKD-kZ-g9f" secondAttribute="top" constant="25" id="JGh-sx-eLE"/>
  1466. <constraint firstItem="JYl-x5-cTc" firstAttribute="top" secondItem="mDb-R3-eZv" secondAttribute="bottom" constant="8" id="MDe-RS-kEl"/>
  1467. <constraint firstItem="mDb-R3-eZv" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="NI9-6l-uOW"/>
  1468. <constraint firstItem="ECq-fH-MLi" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="NyU-gc-tV6"/>
  1469. <constraint firstItem="JYl-x5-cTc" firstAttribute="trailing" secondItem="VyB-jG-KP0" secondAttribute="trailing" id="PZN-wV-4cr"/>
  1470. <constraint firstItem="LjS-4t-q6l" firstAttribute="top" secondItem="OJ7-LV-Bht" secondAttribute="bottom" constant="15" id="Pr4-Fs-Qqa"/>
  1471. <constraint firstItem="LCZ-qf-CXh" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="V5V-lZ-Y4K"/>
  1472. <constraint firstItem="bOR-xy-Td3" firstAttribute="centerY" secondItem="ZiN-wp-62B" secondAttribute="centerY" id="Vd4-v6-ox5"/>
  1473. <constraint firstItem="mDb-R3-eZv" firstAttribute="top" secondItem="ECq-fH-MLi" secondAttribute="bottom" constant="15" id="ZCb-pX-JWm"/>
  1474. <constraint firstItem="fWr-gY-E10" firstAttribute="leading" secondItem="ECq-fH-MLi" secondAttribute="trailing" constant="8" id="cqX-Gb-Kf2"/>
  1475. <constraint firstItem="fWr-gY-E10" firstAttribute="top" secondItem="VyB-jG-KP0" secondAttribute="bottom" constant="15" id="dDp-P8-94U"/>
  1476. <constraint firstItem="VyB-jG-KP0" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="gqI-kj-WDN"/>
  1477. <constraint firstItem="MT9-hb-STe" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="j8e-Xt-tM4"/>
  1478. <constraint firstItem="LjS-4t-q6l" firstAttribute="leading" secondItem="MT9-hb-STe" secondAttribute="trailing" constant="8" id="p6f-pu-RiZ"/>
  1479. <constraint firstItem="VyB-jG-KP0" firstAttribute="top" secondItem="LjS-4t-q6l" secondAttribute="bottom" constant="15" id="syM-xg-CQk"/>
  1480. <constraint firstItem="LCZ-qf-CXh" firstAttribute="leading" secondItem="OJ7-LV-Bht" secondAttribute="trailing" constant="8" id="vaa-eq-qxO"/>
  1481. <constraint firstItem="fWr-gY-E10" firstAttribute="centerY" secondItem="ECq-fH-MLi" secondAttribute="centerY" id="vqb-Zw-fEe"/>
  1482. <constraint firstItem="JYl-x5-cTc" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="leading" id="xIx-5T-HaU"/>
  1483. <constraint firstItem="OJ7-LV-Bht" firstAttribute="leading" secondItem="ZiN-wp-62B" secondAttribute="trailing" constant="8" id="xmI-Sx-xFm"/>
  1484. </constraints>
  1485. </view>
  1486. <navigationItem key="navigationItem" title="Scanner Setting" id="0x7-eV-68o"/>
  1487. <connections>
  1488. <outlet property="Entry" destination="fWr-gY-E10" id="UMk-lh-s7b"/>
  1489. <outlet property="Status" destination="bOR-xy-Td3" id="juN-iS-3Oq"/>
  1490. <outlet property="auto_launch_switch" destination="LjS-4t-q6l" id="qmB-PX-xvu"/>
  1491. <outlet property="dev_table" destination="VyB-jG-KP0" id="WgJ-Ad-WdL"/>
  1492. <outlet property="scan_switch" destination="OJ7-LV-Bht" id="ZuE-wH-ueW"/>
  1493. <outlet property="tv_info" destination="JYl-x5-cTc" id="usE-t3-8di"/>
  1494. </connections>
  1495. </viewController>
  1496. <placeholder placeholderIdentifier="IBFirstResponder" id="VLx-Vj-QtX" sceneMemberID="firstResponder"/>
  1497. </objects>
  1498. <point key="canvasLocation" x="-1217.1875" y="-231.44531249999997"/>
  1499. </scene>
  1500. <!--UserList-->
  1501. <scene sceneID="Wq4-cC-3aA">
  1502. <objects>
  1503. <viewController storyboardIdentifier="UserListViewController" title="User List" useStoryboardIdentifierAsRestorationIdentifier="YES" id="7jS-F0-BYF" userLabel="UserList" customClass="UserListViewController" sceneMemberID="viewController">
  1504. <view key="view" contentMode="scaleToFill" id="ejd-Pb-3pQ">
  1505. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1506. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1507. <subviews>
  1508. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="3aO-EE-nul" customClass="DefaultImageButton">
  1509. <rect key="frame" x="358" y="250" width="102" height="30"/>
  1510. <constraints>
  1511. <constraint firstAttribute="width" constant="102" id="Lrd-BO-vRu"/>
  1512. <constraint firstAttribute="height" constant="30" id="pkH-Zw-uEn"/>
  1513. </constraints>
  1514. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  1515. <state key="normal" title="Cancel" backgroundImage="btn_cancel">
  1516. <color key="titleColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1517. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1518. </state>
  1519. <userDefinedRuntimeAttributes>
  1520. <userDefinedRuntimeAttribute type="number" keyPath="layer.cornerRadius">
  1521. <integer key="value" value="19"/>
  1522. </userDefinedRuntimeAttribute>
  1523. </userDefinedRuntimeAttributes>
  1524. <connections>
  1525. <action selector="CloseClick:" destination="7jS-F0-BYF" eventType="touchUpInside" id="jCk-Zm-feM"/>
  1526. </connections>
  1527. </button>
  1528. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="PEc-Rn-eBz">
  1529. <rect key="frame" x="20" y="44" width="440" height="198"/>
  1530. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1531. <prototypes>
  1532. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LoginListCell" textLabel="NOt-hZ-Ysa" style="IBUITableViewCellStyleDefault" id="FV6-lD-g7T">
  1533. <rect key="frame" x="0.0" y="44.5" width="440" height="44"/>
  1534. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1535. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FV6-lD-g7T" id="FCT-G6-wmp">
  1536. <rect key="frame" x="0.0" y="0.0" width="440" height="44"/>
  1537. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1538. <subviews>
  1539. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NOt-hZ-Ysa">
  1540. <rect key="frame" x="16" y="0.0" width="408" height="44"/>
  1541. <autoresizingMask key="autoresizingMask"/>
  1542. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1543. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1544. <nil key="highlightedColor"/>
  1545. </label>
  1546. </subviews>
  1547. </tableViewCellContentView>
  1548. </tableViewCell>
  1549. </prototypes>
  1550. <connections>
  1551. <outlet property="dataSource" destination="7jS-F0-BYF" id="BAQ-lr-809"/>
  1552. <outlet property="delegate" destination="7jS-F0-BYF" id="PIs-xH-kbx"/>
  1553. </connections>
  1554. </tableView>
  1555. </subviews>
  1556. <viewLayoutGuide key="safeArea" id="Beg-sK-fzg"/>
  1557. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1558. <constraints>
  1559. <constraint firstItem="Beg-sK-fzg" firstAttribute="trailing" secondItem="PEc-Rn-eBz" secondAttribute="trailing" constant="20" id="1r6-xs-UTS"/>
  1560. <constraint firstItem="3aO-EE-nul" firstAttribute="top" secondItem="PEc-Rn-eBz" secondAttribute="bottom" constant="8" id="Ghn-tl-3rf"/>
  1561. <constraint firstItem="PEc-Rn-eBz" firstAttribute="top" secondItem="Beg-sK-fzg" secondAttribute="top" constant="20" id="OhA-gF-8Hj"/>
  1562. <constraint firstItem="PEc-Rn-eBz" firstAttribute="leading" secondItem="Beg-sK-fzg" secondAttribute="leading" constant="20" id="dfG-DC-Q7J"/>
  1563. <constraint firstItem="Beg-sK-fzg" firstAttribute="bottom" secondItem="3aO-EE-nul" secondAttribute="bottom" constant="20" id="oyl-5q-jiX"/>
  1564. <constraint firstItem="Beg-sK-fzg" firstAttribute="trailing" secondItem="3aO-EE-nul" secondAttribute="trailing" constant="20" id="uTj-HD-d87"/>
  1565. </constraints>
  1566. </view>
  1567. <navigationItem key="navigationItem" title="NPD" id="5uK-LV-Wk4">
  1568. <barButtonItem key="rightBarButtonItem" image="close" style="plain" id="3MC-QS-uFr">
  1569. <connections>
  1570. <action selector="CloseClick:" destination="7jS-F0-BYF" id="his-7P-5QX"/>
  1571. </connections>
  1572. </barButtonItem>
  1573. </navigationItem>
  1574. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1575. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1576. <size key="freeformSize" width="480" height="320"/>
  1577. <connections>
  1578. <outlet property="bb_close" destination="3MC-QS-uFr" id="4Ww-1Z-bhS"/>
  1579. <outlet property="btnclose" destination="3aO-EE-nul" id="suf-9R-p6N"/>
  1580. </connections>
  1581. </viewController>
  1582. <placeholder placeholderIdentifier="IBFirstResponder" id="xUX-Lu-v8H" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1583. </objects>
  1584. <point key="canvasLocation" x="1548.4375" y="-1224.0234375"/>
  1585. </scene>
  1586. <!--About us-->
  1587. <scene sceneID="L5K-JL-t01">
  1588. <objects>
  1589. <viewController storyboardIdentifier="AboutViewController" title="About us" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BJK-Xc-rOI" customClass="AboutViewController" sceneMemberID="viewController">
  1590. <view key="view" contentMode="scaleToFill" id="Tg0-Yd-fvX">
  1591. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1592. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1593. <subviews>
  1594. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cA7-od-VYw">
  1595. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1596. <subviews>
  1597. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="NPD Mobile" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="u8k-9F-gQG">
  1598. <rect key="frame" x="128" y="33" width="317" height="21"/>
  1599. <constraints>
  1600. <constraint firstAttribute="height" constant="21" id="Ifh-bc-FmB"/>
  1601. </constraints>
  1602. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1603. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1604. <nil key="highlightedColor"/>
  1605. </label>
  1606. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="about" translatesAutoresizingMaskIntoConstraints="NO" id="tQE-Kl-1v3">
  1607. <rect key="frame" x="24" y="19" width="96" height="96"/>
  1608. <constraints>
  1609. <constraint firstAttribute="width" constant="96" id="CbL-zf-w1P"/>
  1610. <constraint firstAttribute="height" constant="96" id="kzE-hA-dq5"/>
  1611. </constraints>
  1612. </imageView>
  1613. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="New Pacific Direct" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Jh9-JO-Lbj">
  1614. <rect key="frame" x="128" y="54" width="317" height="61"/>
  1615. <fontDescription key="fontDescription" type="system" pointSize="24"/>
  1616. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1617. <nil key="highlightedColor"/>
  1618. </label>
  1619. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="red_ant_logo" translatesAutoresizingMaskIntoConstraints="NO" id="7er-Pu-WBZ">
  1620. <rect key="frame" x="24" y="223" width="36" height="36"/>
  1621. <constraints>
  1622. <constraint firstAttribute="width" constant="36" id="EKI-by-JCU"/>
  1623. <constraint firstAttribute="height" constant="36" id="eWz-Oq-rWf"/>
  1624. </constraints>
  1625. </imageView>
  1626. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" editable="NO" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="4Fi-0g-FiI">
  1627. <rect key="frame" x="24" y="115" width="420" height="60"/>
  1628. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1629. <constraints>
  1630. <constraint firstAttribute="height" constant="60" id="xaf-0H-Hqr"/>
  1631. </constraints>
  1632. <string key="text">Sales: sales@newpacificdirect.com
  1633. Phone: 510.818.9388</string>
  1634. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1635. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  1636. <dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES"/>
  1637. </textView>
  1638. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dd8-jB-tBc">
  1639. <rect key="frame" x="68" y="202" width="377" height="78"/>
  1640. <constraints>
  1641. <constraint firstAttribute="height" constant="78" id="vl3-wA-qey"/>
  1642. </constraints>
  1643. <string key="text">Developed &amp; Tech support:
  1644. United Software Applications, Inc
  1645. Email: redantsupport@united-us.net</string>
  1646. <fontDescription key="fontDescription" name="HelveticaNeue" family="Helvetica Neue" pointSize="17"/>
  1647. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  1648. <dataDetectorType key="dataDetectorTypes" phoneNumber="YES" link="YES" address="YES" calendarEvent="YES"/>
  1649. </textView>
  1650. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="ver_info" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="E4o-71-lCF">
  1651. <rect key="frame" x="35" y="291" width="410" height="21"/>
  1652. <constraints>
  1653. <constraint firstAttribute="height" constant="21" id="rZR-aI-6gz"/>
  1654. </constraints>
  1655. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1656. <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1657. <nil key="highlightedColor"/>
  1658. </label>
  1659. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Copyright © 2022 Homelegance, Inc. All rights reserved." textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="psC-ka-GOT">
  1660. <rect key="frame" x="24" y="175" width="432" height="20.5"/>
  1661. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1662. <nil key="textColor"/>
  1663. <nil key="highlightedColor"/>
  1664. </label>
  1665. </subviews>
  1666. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1667. <constraints>
  1668. <constraint firstItem="Jh9-JO-Lbj" firstAttribute="bottom" secondItem="tQE-Kl-1v3" secondAttribute="bottom" id="30T-aa-DX3"/>
  1669. <constraint firstItem="dd8-jB-tBc" firstAttribute="top" secondItem="psC-ka-GOT" secondAttribute="bottom" constant="6.5" id="4lv-9C-qYk"/>
  1670. <constraint firstItem="tQE-Kl-1v3" firstAttribute="top" secondItem="cA7-od-VYw" secondAttribute="top" constant="19" id="5D2-z5-yzm"/>
  1671. <constraint firstItem="Jh9-JO-Lbj" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="trailing" constant="8" id="HhC-Bt-opW"/>
  1672. <constraint firstItem="7er-Pu-WBZ" firstAttribute="centerY" secondItem="dd8-jB-tBc" secondAttribute="centerY" id="KIH-iC-jAq"/>
  1673. <constraint firstAttribute="trailing" secondItem="psC-ka-GOT" secondAttribute="trailing" constant="24" id="Lua-ZY-Wbg"/>
  1674. <constraint firstItem="4Fi-0g-FiI" firstAttribute="top" secondItem="tQE-Kl-1v3" secondAttribute="bottom" id="Ov7-7q-WJk"/>
  1675. <constraint firstItem="7er-Pu-WBZ" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="leading" id="PFN-CZ-AHd"/>
  1676. <constraint firstItem="4Fi-0g-FiI" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="leading" id="SMw-y6-DXY"/>
  1677. <constraint firstAttribute="trailing" secondItem="dd8-jB-tBc" secondAttribute="trailing" constant="35" id="Sok-zA-gtO"/>
  1678. <constraint firstItem="psC-ka-GOT" firstAttribute="top" secondItem="4Fi-0g-FiI" secondAttribute="bottom" id="Tvu-9K-V12"/>
  1679. <constraint firstItem="dd8-jB-tBc" firstAttribute="leading" secondItem="7er-Pu-WBZ" secondAttribute="trailing" constant="8" id="V8R-pV-uvV"/>
  1680. <constraint firstItem="u8k-9F-gQG" firstAttribute="leading" secondItem="tQE-Kl-1v3" secondAttribute="trailing" constant="8" id="YoF-cp-eWd"/>
  1681. <constraint firstItem="E4o-71-lCF" firstAttribute="top" secondItem="dd8-jB-tBc" secondAttribute="bottom" constant="11" id="aPc-K0-fVv"/>
  1682. <constraint firstItem="E4o-71-lCF" firstAttribute="leading" secondItem="cA7-od-VYw" secondAttribute="leading" constant="35" id="au8-di-wNh"/>
  1683. <constraint firstAttribute="trailing" secondItem="u8k-9F-gQG" secondAttribute="trailing" constant="35" id="e2B-3d-Aux"/>
  1684. <constraint firstItem="Jh9-JO-Lbj" firstAttribute="top" secondItem="u8k-9F-gQG" secondAttribute="bottom" id="ixV-8Q-ANq"/>
  1685. <constraint firstItem="u8k-9F-gQG" firstAttribute="top" secondItem="cA7-od-VYw" secondAttribute="top" constant="33" id="kO7-vX-yhS"/>
  1686. <constraint firstAttribute="trailing" secondItem="E4o-71-lCF" secondAttribute="trailing" constant="35" id="mYM-nL-C7f"/>
  1687. <constraint firstAttribute="bottom" secondItem="E4o-71-lCF" secondAttribute="bottom" constant="8" id="nRR-WB-1lb"/>
  1688. <constraint firstItem="tQE-Kl-1v3" firstAttribute="leading" secondItem="cA7-od-VYw" secondAttribute="leading" constant="24" id="pek-99-Bvi"/>
  1689. <constraint firstAttribute="trailing" secondItem="4Fi-0g-FiI" secondAttribute="trailing" constant="36" id="tEH-Sm-Shg"/>
  1690. <constraint firstAttribute="trailing" secondItem="Jh9-JO-Lbj" secondAttribute="trailing" constant="35" id="vac-8t-Kb9"/>
  1691. <constraint firstItem="psC-ka-GOT" firstAttribute="leading" secondItem="4Fi-0g-FiI" secondAttribute="leading" id="vxE-RP-woF"/>
  1692. </constraints>
  1693. </view>
  1694. </subviews>
  1695. <viewLayoutGuide key="safeArea" id="MLg-3B-Q9I"/>
  1696. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1697. <constraints>
  1698. <constraint firstAttribute="bottom" secondItem="cA7-od-VYw" secondAttribute="bottom" id="3Jd-sf-6fc"/>
  1699. <constraint firstItem="cA7-od-VYw" firstAttribute="top" secondItem="Tg0-Yd-fvX" secondAttribute="top" id="BI4-xi-PuA"/>
  1700. <constraint firstItem="cA7-od-VYw" firstAttribute="leading" secondItem="MLg-3B-Q9I" secondAttribute="leading" id="es4-Br-1DK"/>
  1701. <constraint firstItem="cA7-od-VYw" firstAttribute="trailing" secondItem="MLg-3B-Q9I" secondAttribute="trailing" id="nr1-h2-LSv"/>
  1702. </constraints>
  1703. </view>
  1704. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1705. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1706. <size key="freeformSize" width="480" height="320"/>
  1707. <connections>
  1708. <outlet property="labelVer" destination="E4o-71-lCF" id="uEy-Ie-10w"/>
  1709. <outlet property="label_appname" destination="u8k-9F-gQG" id="nmY-Pl-ApC"/>
  1710. <outlet property="label_company" destination="Jh9-JO-Lbj" id="vSQ-Cw-qPC"/>
  1711. <outlet property="tvcompany" destination="4Fi-0g-FiI" id="fyw-Lq-CBg"/>
  1712. </connections>
  1713. </viewController>
  1714. <placeholder placeholderIdentifier="IBFirstResponder" id="awE-OU-fB9" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1715. </objects>
  1716. <point key="canvasLocation" x="4485.4838709677424" y="364.87202118270079"/>
  1717. </scene>
  1718. <!--Sign up-->
  1719. <scene sceneID="Oii-ov-sOV">
  1720. <objects>
  1721. <viewController storyboardIdentifier="SignUpViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="l0S-Da-hdh" userLabel="Sign up" customClass="SignUpViewController" sceneMemberID="viewController">
  1722. <view key="view" contentMode="scaleToFill" id="5v2-4A-suw">
  1723. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1724. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1725. <subviews>
  1726. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="User" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="95h-K5-jjG">
  1727. <rect key="frame" x="60" y="64" width="360" height="30"/>
  1728. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1729. <constraints>
  1730. <constraint firstAttribute="height" constant="30" id="DH6-m7-FHt"/>
  1731. </constraints>
  1732. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1733. <textInputTraits key="textInputTraits" autocorrectionType="no"/>
  1734. </textField>
  1735. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Email" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="4W6-zK-jjF">
  1736. <rect key="frame" x="60" y="104" width="360" height="30"/>
  1737. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1738. <constraints>
  1739. <constraint firstAttribute="height" constant="30" id="Hc5-U5-sbW"/>
  1740. </constraints>
  1741. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1742. <textInputTraits key="textInputTraits" autocorrectionType="no"/>
  1743. </textField>
  1744. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="zc7-Q1-EQZ">
  1745. <rect key="frame" x="60" y="144" width="360" height="34"/>
  1746. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1747. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1748. <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
  1749. </textField>
  1750. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Confirm Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="AJR-m5-lKB">
  1751. <rect key="frame" x="60" y="188" width="360" height="34"/>
  1752. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1753. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1754. <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
  1755. </textField>
  1756. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0UZ-jt-A5O">
  1757. <rect key="frame" x="389" y="259" width="75" height="31"/>
  1758. <state key="normal" title="Button"/>
  1759. <buttonConfiguration key="configuration" style="plain" title="Sign Up"/>
  1760. <connections>
  1761. <action selector="onSignUpClick:" destination="l0S-Da-hdh" eventType="touchUpInside" id="itI-F0-EhC"/>
  1762. </connections>
  1763. </button>
  1764. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FCL-qH-QSG">
  1765. <rect key="frame" x="20" y="259" width="60.5" height="31"/>
  1766. <state key="normal" title="Button"/>
  1767. <buttonConfiguration key="configuration" style="plain" title="Close"/>
  1768. <connections>
  1769. <action selector="onCloseClick:" destination="l0S-Da-hdh" eventType="touchUpInside" id="VeH-St-Hah"/>
  1770. </connections>
  1771. </button>
  1772. </subviews>
  1773. <viewLayoutGuide key="safeArea" id="bfy-vf-LnP"/>
  1774. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1775. <constraints>
  1776. <constraint firstItem="AJR-m5-lKB" firstAttribute="top" secondItem="zc7-Q1-EQZ" secondAttribute="bottom" constant="10" id="3Qj-Fy-ZGo"/>
  1777. <constraint firstItem="zc7-Q1-EQZ" firstAttribute="leading" secondItem="95h-K5-jjG" secondAttribute="leading" id="ASn-rX-F7v"/>
  1778. <constraint firstItem="FCL-qH-QSG" firstAttribute="leading" secondItem="bfy-vf-LnP" secondAttribute="leading" constant="20" id="BDA-hU-vBJ"/>
  1779. <constraint firstItem="4W6-zK-jjF" firstAttribute="top" secondItem="95h-K5-jjG" secondAttribute="bottom" constant="10" id="BT9-aP-Y1U"/>
  1780. <constraint firstItem="AJR-m5-lKB" firstAttribute="trailing" secondItem="95h-K5-jjG" secondAttribute="trailing" id="Ee7-jx-Qdl"/>
  1781. <constraint firstItem="zc7-Q1-EQZ" firstAttribute="top" secondItem="4W6-zK-jjF" secondAttribute="bottom" constant="10" id="MpJ-Zm-2sy"/>
  1782. <constraint firstItem="bfy-vf-LnP" firstAttribute="trailing" secondItem="95h-K5-jjG" secondAttribute="trailing" constant="60" id="O7p-Cn-J5A"/>
  1783. <constraint firstAttribute="bottom" secondItem="FCL-qH-QSG" secondAttribute="bottom" constant="30" id="RRS-dU-b5M"/>
  1784. <constraint firstItem="95h-K5-jjG" firstAttribute="leading" secondItem="bfy-vf-LnP" secondAttribute="leading" constant="60" id="RxQ-mF-s6W"/>
  1785. <constraint firstItem="4W6-zK-jjF" firstAttribute="leading" secondItem="95h-K5-jjG" secondAttribute="leading" id="V7w-PC-ml1"/>
  1786. <constraint firstAttribute="bottom" secondItem="0UZ-jt-A5O" secondAttribute="bottom" constant="30" id="XNc-1G-T8C"/>
  1787. <constraint firstItem="AJR-m5-lKB" firstAttribute="leading" secondItem="95h-K5-jjG" secondAttribute="leading" id="XaV-5y-PuY"/>
  1788. <constraint firstItem="4W6-zK-jjF" firstAttribute="trailing" secondItem="95h-K5-jjG" secondAttribute="trailing" id="ah5-wl-iNT"/>
  1789. <constraint firstItem="bfy-vf-LnP" firstAttribute="trailing" secondItem="0UZ-jt-A5O" secondAttribute="trailing" constant="16" id="caz-9r-GYj"/>
  1790. <constraint firstItem="zc7-Q1-EQZ" firstAttribute="trailing" secondItem="95h-K5-jjG" secondAttribute="trailing" id="rQG-4T-5ez"/>
  1791. <constraint firstItem="zc7-Q1-EQZ" firstAttribute="trailing" secondItem="95h-K5-jjG" secondAttribute="trailing" id="tgH-f4-rkt"/>
  1792. <constraint firstItem="95h-K5-jjG" firstAttribute="top" secondItem="bfy-vf-LnP" secondAttribute="top" constant="40" id="v9y-dg-hdi"/>
  1793. </constraints>
  1794. </view>
  1795. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1796. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1797. <size key="freeformSize" width="480" height="320"/>
  1798. <connections>
  1799. <outlet property="editEmail" destination="4W6-zK-jjF" id="REZ-3F-0yl"/>
  1800. <outlet property="editUser" destination="95h-K5-jjG" id="XjO-fk-iaq"/>
  1801. <outlet property="editcpwd" destination="AJR-m5-lKB" id="F3z-NP-S1g"/>
  1802. <outlet property="editpwd" destination="zc7-Q1-EQZ" id="2zg-rK-Moa"/>
  1803. </connections>
  1804. </viewController>
  1805. <placeholder placeholderIdentifier="IBFirstResponder" id="4EG-7V-qhg" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1806. </objects>
  1807. <point key="canvasLocation" x="1608" y="-935"/>
  1808. </scene>
  1809. <!--Change Password-->
  1810. <scene sceneID="nTU-wE-EK4">
  1811. <objects>
  1812. <viewController storyboardIdentifier="ChangePasswordViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="pzZ-xO-hIS" userLabel="Change Password" customClass="ChangePasswordViewController" sceneMemberID="viewController">
  1813. <view key="view" contentMode="scaleToFill" id="UjQ-Iv-YoG">
  1814. <rect key="frame" x="0.0" y="0.0" width="480" height="320"/>
  1815. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1816. <subviews>
  1817. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Old Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="AOH-KD-dBj">
  1818. <rect key="frame" x="60" y="64" width="360" height="30"/>
  1819. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1820. <constraints>
  1821. <constraint firstAttribute="height" constant="30" id="Yv8-Rb-hqa"/>
  1822. </constraints>
  1823. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1824. <textInputTraits key="textInputTraits" autocorrectionType="no" secureTextEntry="YES"/>
  1825. </textField>
  1826. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="New Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="cSJ-9f-dpe">
  1827. <rect key="frame" x="60" y="104" width="360" height="34"/>
  1828. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1829. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1830. <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
  1831. </textField>
  1832. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Confirm Password" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="5dt-h8-yFx">
  1833. <rect key="frame" x="60" y="148" width="360" height="34"/>
  1834. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1835. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1836. <textInputTraits key="textInputTraits" secureTextEntry="YES"/>
  1837. </textField>
  1838. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Mct-GI-24g">
  1839. <rect key="frame" x="390" y="259" width="74" height="31"/>
  1840. <state key="normal" title="Button"/>
  1841. <buttonConfiguration key="configuration" style="plain" title="Change"/>
  1842. <connections>
  1843. <action selector="onChangeClick:" destination="pzZ-xO-hIS" eventType="touchUpInside" id="PvS-x1-xGL"/>
  1844. </connections>
  1845. </button>
  1846. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="L1z-x1-ESN">
  1847. <rect key="frame" x="20" y="259" width="60.5" height="31"/>
  1848. <state key="normal" title="Button"/>
  1849. <buttonConfiguration key="configuration" style="plain" title="Close"/>
  1850. <connections>
  1851. <action selector="onCloseClick:" destination="pzZ-xO-hIS" eventType="touchUpInside" id="g7X-TN-hvz"/>
  1852. </connections>
  1853. </button>
  1854. </subviews>
  1855. <viewLayoutGuide key="safeArea" id="Ufh-nh-7nX"/>
  1856. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1857. <constraints>
  1858. <constraint firstItem="5dt-h8-yFx" firstAttribute="leading" secondItem="AOH-KD-dBj" secondAttribute="leading" id="3Tl-rl-hb7"/>
  1859. <constraint firstItem="Ufh-nh-7nX" firstAttribute="trailing" secondItem="AOH-KD-dBj" secondAttribute="trailing" constant="60" id="3yD-OX-Z6u"/>
  1860. <constraint firstItem="cSJ-9f-dpe" firstAttribute="top" secondItem="AOH-KD-dBj" secondAttribute="bottom" constant="10" id="EZD-vb-KyV"/>
  1861. <constraint firstAttribute="bottom" secondItem="Mct-GI-24g" secondAttribute="bottom" constant="30" id="Ile-3U-wfa"/>
  1862. <constraint firstItem="AOH-KD-dBj" firstAttribute="leading" secondItem="Ufh-nh-7nX" secondAttribute="leading" constant="60" id="NXA-pg-W2U"/>
  1863. <constraint firstItem="AOH-KD-dBj" firstAttribute="top" secondItem="Ufh-nh-7nX" secondAttribute="top" constant="40" id="WWU-NY-2P4"/>
  1864. <constraint firstItem="cSJ-9f-dpe" firstAttribute="trailing" secondItem="AOH-KD-dBj" secondAttribute="trailing" id="Wvp-zO-zba"/>
  1865. <constraint firstItem="5dt-h8-yFx" firstAttribute="top" secondItem="cSJ-9f-dpe" secondAttribute="bottom" constant="10" id="ZAJ-50-srw"/>
  1866. <constraint firstItem="5dt-h8-yFx" firstAttribute="trailing" secondItem="AOH-KD-dBj" secondAttribute="trailing" id="gL3-sa-evk"/>
  1867. <constraint firstItem="cSJ-9f-dpe" firstAttribute="leading" secondItem="AOH-KD-dBj" secondAttribute="leading" id="mHh-nb-h33"/>
  1868. <constraint firstItem="cSJ-9f-dpe" firstAttribute="trailing" secondItem="AOH-KD-dBj" secondAttribute="trailing" id="ou2-JM-bf9"/>
  1869. <constraint firstAttribute="bottom" secondItem="L1z-x1-ESN" secondAttribute="bottom" constant="30" id="pVf-Xz-y5D"/>
  1870. <constraint firstItem="Ufh-nh-7nX" firstAttribute="trailing" secondItem="Mct-GI-24g" secondAttribute="trailing" constant="16" id="qAM-CD-qcj"/>
  1871. <constraint firstItem="L1z-x1-ESN" firstAttribute="leading" secondItem="Ufh-nh-7nX" secondAttribute="leading" constant="20" id="vGK-Qk-4dA"/>
  1872. </constraints>
  1873. </view>
  1874. <value key="contentSizeForViewInPopover" type="size" width="480" height="320"/>
  1875. <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
  1876. <size key="freeformSize" width="480" height="320"/>
  1877. <connections>
  1878. <outlet property="editcpwd" destination="5dt-h8-yFx" id="JEg-yQ-a6v"/>
  1879. <outlet property="editnpwd" destination="cSJ-9f-dpe" id="mUo-BC-czQ"/>
  1880. <outlet property="editopwd" destination="AOH-KD-dBj" id="GxU-XS-EAT"/>
  1881. </connections>
  1882. </viewController>
  1883. <placeholder placeholderIdentifier="IBFirstResponder" id="SxZ-26-RSM" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1884. </objects>
  1885. <point key="canvasLocation" x="1710" y="-669"/>
  1886. </scene>
  1887. <!--Scan Home View Controller-->
  1888. <scene sceneID="OBM-QJ-KzY">
  1889. <objects>
  1890. <viewController storyboardIdentifier="ScanHomeViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="lB8-nn-lZh" customClass="ScanHomeViewController" sceneMemberID="viewController">
  1891. <view key="view" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" id="4kl-uG-nDU">
  1892. <rect key="frame" x="0.0" y="0.0" width="744" height="1133"/>
  1893. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1894. <subviews>
  1895. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ybY-eH-YB2">
  1896. <rect key="frame" x="606" y="625" width="108" height="31"/>
  1897. <state key="normal" title="Button"/>
  1898. <buttonConfiguration key="configuration" style="plain" title="Create Order"/>
  1899. <connections>
  1900. <action selector="onCreateOrder:" destination="lB8-nn-lZh" eventType="touchUpInside" id="iFy-lp-d1V"/>
  1901. </connections>
  1902. </button>
  1903. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="tM1-3D-HDl">
  1904. <rect key="frame" x="302.5" y="625" width="139" height="31"/>
  1905. <state key="normal" title="Button"/>
  1906. <buttonConfiguration key="configuration" style="plain" title="Submitted Orders"/>
  1907. <connections>
  1908. <action selector="onSubmit:" destination="lB8-nn-lZh" eventType="touchUpInside" id="bE6-nx-IMk"/>
  1909. </connections>
  1910. </button>
  1911. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="WiH-ii-7Rw">
  1912. <rect key="frame" x="30" y="625" width="156" height="31"/>
  1913. <state key="normal" title="Button"/>
  1914. <buttonConfiguration key="configuration" style="plain" title="Unsubmitted Orders"/>
  1915. <connections>
  1916. <action selector="onUnsubmit:" destination="lB8-nn-lZh" eventType="touchUpInside" id="mzS-9u-hPS"/>
  1917. </connections>
  1918. </button>
  1919. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Site News" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MX7-kc-9FV">
  1920. <rect key="frame" x="30" y="34" width="76" height="21"/>
  1921. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1922. <nil key="textColor"/>
  1923. <nil key="highlightedColor"/>
  1924. </label>
  1925. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="4aE-ib-gZl">
  1926. <rect key="frame" x="30" y="65" width="684" height="500"/>
  1927. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1928. <constraints>
  1929. <constraint firstAttribute="height" constant="500" id="BxA-Dt-JzC"/>
  1930. </constraints>
  1931. <prototypes>
  1932. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" restorationIdentifier="ScanHomeCell" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ScanHomeCell" id="dw7-MG-fSB" customClass="ScanHomeCell">
  1933. <rect key="frame" x="0.0" y="44.5" width="684" height="43.5"/>
  1934. <autoresizingMask key="autoresizingMask"/>
  1935. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="dw7-MG-fSB" id="6ok-87-DrJ">
  1936. <rect key="frame" x="0.0" y="0.0" width="684" height="43.5"/>
  1937. <autoresizingMask key="autoresizingMask"/>
  1938. <subviews>
  1939. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xBk-1n-UFG">
  1940. <rect key="frame" x="16" y="11.5" width="456" height="21"/>
  1941. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1942. <nil key="textColor"/>
  1943. <nil key="highlightedColor"/>
  1944. </label>
  1945. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ahn-8c-uI7">
  1946. <rect key="frame" x="598" y="6.5" width="70" height="31"/>
  1947. <constraints>
  1948. <constraint firstAttribute="width" constant="70" id="zVr-eW-EQc"/>
  1949. </constraints>
  1950. <state key="normal" title="Button"/>
  1951. <buttonConfiguration key="configuration" style="plain" title="View"/>
  1952. </button>
  1953. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="2022-12-30" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oBw-iB-pSQ">
  1954. <rect key="frame" x="492" y="12" width="90" height="19.5"/>
  1955. <constraints>
  1956. <constraint firstAttribute="width" constant="90" id="xA4-EQ-Cx1"/>
  1957. </constraints>
  1958. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  1959. <nil key="textColor"/>
  1960. <nil key="highlightedColor"/>
  1961. </label>
  1962. </subviews>
  1963. <constraints>
  1964. <constraint firstItem="oBw-iB-pSQ" firstAttribute="leading" secondItem="xBk-1n-UFG" secondAttribute="trailing" constant="20" id="1ca-iQ-1Il"/>
  1965. <constraint firstItem="xBk-1n-UFG" firstAttribute="leading" secondItem="6ok-87-DrJ" secondAttribute="leadingMargin" id="8re-vX-Sgw"/>
  1966. <constraint firstItem="ahn-8c-uI7" firstAttribute="leading" secondItem="oBw-iB-pSQ" secondAttribute="trailing" constant="16" id="LOW-dv-ci6"/>
  1967. <constraint firstItem="oBw-iB-pSQ" firstAttribute="centerY" secondItem="6ok-87-DrJ" secondAttribute="centerY" id="RLm-Yw-gr9"/>
  1968. <constraint firstAttribute="trailing" secondItem="ahn-8c-uI7" secondAttribute="trailing" constant="16" id="ewY-9F-5fn"/>
  1969. <constraint firstItem="xBk-1n-UFG" firstAttribute="centerY" secondItem="6ok-87-DrJ" secondAttribute="centerY" id="gRa-Fh-1ac"/>
  1970. <constraint firstItem="ahn-8c-uI7" firstAttribute="centerY" secondItem="6ok-87-DrJ" secondAttribute="centerY" id="xxF-Ka-BVt"/>
  1971. </constraints>
  1972. </tableViewCellContentView>
  1973. <connections>
  1974. <outlet property="btnview" destination="ahn-8c-uI7" id="FAH-Jp-Zqj"/>
  1975. <outlet property="labeldate" destination="oBw-iB-pSQ" id="Uy7-Bh-JSX"/>
  1976. <outlet property="labeltitle" destination="xBk-1n-UFG" id="Cs4-bA-jlg"/>
  1977. </connections>
  1978. </tableViewCell>
  1979. </prototypes>
  1980. <connections>
  1981. <outlet property="dataSource" destination="lB8-nn-lZh" id="siW-wI-Ppq"/>
  1982. <outlet property="delegate" destination="lB8-nn-lZh" id="VcY-NB-kCE"/>
  1983. </connections>
  1984. </tableView>
  1985. </subviews>
  1986. <viewLayoutGuide key="safeArea" id="jYV-1f-hJ3"/>
  1987. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1988. <constraints>
  1989. <constraint firstItem="4aE-ib-gZl" firstAttribute="top" secondItem="MX7-kc-9FV" secondAttribute="bottom" constant="10" id="515-Zg-XqX"/>
  1990. <constraint firstItem="ybY-eH-YB2" firstAttribute="trailing" secondItem="4aE-ib-gZl" secondAttribute="trailing" id="AtJ-sO-usD"/>
  1991. <constraint firstItem="MX7-kc-9FV" firstAttribute="top" secondItem="jYV-1f-hJ3" secondAttribute="top" constant="10" id="C1k-SF-SLW"/>
  1992. <constraint firstItem="WiH-ii-7Rw" firstAttribute="leading" secondItem="4aE-ib-gZl" secondAttribute="leading" id="FhZ-UM-k0w"/>
  1993. <constraint firstItem="MX7-kc-9FV" firstAttribute="leading" secondItem="jYV-1f-hJ3" secondAttribute="leading" constant="30" id="HTQ-r8-JWF"/>
  1994. <constraint firstItem="tM1-3D-HDl" firstAttribute="top" secondItem="4aE-ib-gZl" secondAttribute="bottom" constant="60" id="Xgs-gM-Aeh"/>
  1995. <constraint firstItem="WiH-ii-7Rw" firstAttribute="top" secondItem="tM1-3D-HDl" secondAttribute="top" id="Y45-XP-iTu"/>
  1996. <constraint firstItem="4aE-ib-gZl" firstAttribute="leading" secondItem="jYV-1f-hJ3" secondAttribute="leading" constant="30" id="hAx-BB-pvk"/>
  1997. <constraint firstItem="tM1-3D-HDl" firstAttribute="centerX" secondItem="4kl-uG-nDU" secondAttribute="centerX" id="kZC-Nf-Uzn"/>
  1998. <constraint firstItem="ybY-eH-YB2" firstAttribute="top" secondItem="tM1-3D-HDl" secondAttribute="top" id="lnu-p6-F36"/>
  1999. <constraint firstItem="jYV-1f-hJ3" firstAttribute="trailing" secondItem="4aE-ib-gZl" secondAttribute="trailing" constant="30" id="tKY-s6-uHH"/>
  2000. </constraints>
  2001. </view>
  2002. <toolbarItems/>
  2003. <connections>
  2004. <outlet property="btn_submit" destination="tM1-3D-HDl" id="AI4-Ft-gtp"/>
  2005. <outlet property="btn_unsubmit" destination="WiH-ii-7Rw" id="MXC-HO-aoU"/>
  2006. <outlet property="table" destination="4aE-ib-gZl" id="WQl-un-p8O"/>
  2007. </connections>
  2008. </viewController>
  2009. <placeholder placeholderIdentifier="IBFirstResponder" id="Nz0-k4-PMR" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2010. </objects>
  2011. <point key="canvasLocation" x="2492.9390997352161" y="40.322580645161288"/>
  2012. </scene>
  2013. </scenes>
  2014. <resources>
  2015. <image name="about" width="96" height="96"/>
  2016. <image name="album" width="48" height="48"/>
  2017. <image name="btn_cancel" width="102" height="30"/>
  2018. <image name="btn_retrieve" width="102" height="30"/>
  2019. <image name="btn_signin" width="100" height="30"/>
  2020. <image name="camera" width="48" height="48"/>
  2021. <image name="cart_empty" width="72" height="72"/>
  2022. <image name="check_1_24" width="24" height="24"/>
  2023. <image name="checkbox" width="16" height="16"/>
  2024. <image name="close" width="40" height="40"/>
  2025. <image name="menu_open" width="36" height="36"/>
  2026. <image name="npd_logo" width="110" height="13"/>
  2027. <image name="order" width="72" height="72"/>
  2028. <image name="pick_bg" width="280" height="280"/>
  2029. <image name="profle" width="64" height="64"/>
  2030. <image name="red_ant_logo" width="72" height="72"/>
  2031. <image name="scan" width="72" height="72"/>
  2032. <image name="search" width="72" height="72"/>
  2033. <image name="setting" width="72" height="72"/>
  2034. <image name="upload" width="48" height="48"/>
  2035. <image name="wishlist" width="72" height="72"/>
  2036. <systemColor name="systemBackgroundColor">
  2037. <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2038. </systemColor>
  2039. <systemColor name="systemYellowColor">
  2040. <color red="1" green="0.80000000000000004" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2041. </systemColor>
  2042. </resources>
  2043. </document>