MainStoryboard.storyboard 525 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17701" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="4">
  3. <device id="retina4_7" orientation="portrait" appearance="light"/>
  4. <dependencies>
  5. <deployment identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
  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 Tab Bar Controller-->
  12. <scene sceneID="15">
  13. <objects>
  14. <tabBarController storyboardIdentifier="tabBarController" id="4" customClass="MainTabBarController" sceneMemberID="viewController">
  15. <nil key="simulatedBottomBarMetrics"/>
  16. <tabBar key="tabBar" contentMode="scaleToFill" id="5">
  17. <rect key="frame" x="0.0" y="431" width="320" height="49"/>
  18. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
  19. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  20. </tabBar>
  21. <connections>
  22. <segue destination="jkA-kt-EVh" kind="relationship" relationship="viewControllers" id="78a-91-TLZ"/>
  23. <segue destination="4Fs-j8-Z1S" kind="relationship" relationship="viewControllers" id="mhn-Fn-s9p"/>
  24. <segue destination="uvv-Ko-dQ8" kind="relationship" relationship="viewControllers" id="3w4-zc-fqJ"/>
  25. <segue destination="OHY-cO-A6g" kind="relationship" relationship="viewControllers" id="odg-P3-ril"/>
  26. </connections>
  27. </tabBarController>
  28. <placeholder placeholderIdentifier="IBFirstResponder" id="14" sceneMemberID="firstResponder"/>
  29. </objects>
  30. <point key="canvasLocation" x="-3848" y="417.39130434782612"/>
  31. </scene>
  32. <!--Settings-->
  33. <scene sceneID="FZG-wn-tpM">
  34. <objects>
  35. <navigationController id="OHY-cO-A6g" customClass="SettingsNavigationController" sceneMemberID="viewController">
  36. <tabBarItem key="tabBarItem" title="Settings" image="TabBar-Settings" id="b04-Gg-ZdB"/>
  37. <toolbarItems/>
  38. <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="vZ5-yv-BbA" customClass="StatusNavigationBar">
  39. <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
  40. <autoresizingMask key="autoresizingMask"/>
  41. </navigationBar>
  42. <nil name="viewControllers"/>
  43. <connections>
  44. <segue destination="ZLF-cK-NEK" kind="relationship" relationship="rootViewController" id="gSb-XT-IM4"/>
  45. </connections>
  46. </navigationController>
  47. <placeholder placeholderIdentifier="IBFirstResponder" id="EDa-Yt-oNt" userLabel="First Responder" sceneMemberID="firstResponder"/>
  48. </objects>
  49. <point key="canvasLocation" x="-3849.6000000000004" y="1414.0929535232385"/>
  50. </scene>
  51. <!--SettingsStoryboard-->
  52. <scene sceneID="Vwq-OV-zvP">
  53. <objects>
  54. <viewControllerPlaceholder storyboardName="SettingsStoryboard" id="ZLF-cK-NEK" sceneMemberID="viewController">
  55. <navigationItem key="navigationItem" id="b0f-us-Bo5"/>
  56. </viewControllerPlaceholder>
  57. <placeholder placeholderIdentifier="IBFirstResponder" id="cuf-Wo-GSo" userLabel="First Responder" sceneMemberID="firstResponder"/>
  58. </objects>
  59. <point key="canvasLocation" x="-3849.6000000000004" y="1899.8500749625189"/>
  60. </scene>
  61. <!--Messages-->
  62. <scene sceneID="zrk-Dk-DBQ">
  63. <objects>
  64. <tableViewController storyboardIdentifier="conversationsViewController" id="Kji-Zw-ER6" customClass="ConversationsViewController" sceneMemberID="viewController">
  65. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="NLv-zJ-wYm">
  66. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  67. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  68. <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
  69. <prototypes>
  70. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ConversationCell" id="fS2-HP-qI3" customClass="ConversationCell">
  71. <rect key="frame" x="0.0" y="55.5" width="375" height="85"/>
  72. <autoresizingMask key="autoresizingMask"/>
  73. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fS2-HP-qI3" id="0k9-3d-wSA">
  74. <rect key="frame" x="0.0" y="0.0" width="375" height="85"/>
  75. <autoresizingMask key="autoresizingMask"/>
  76. <subviews>
  77. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="100" contentMode="left" verticalCompressionResistancePriority="751" text="Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aU9-dp-bDt">
  78. <rect key="frame" x="88" y="11" width="47" height="20.5"/>
  79. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  80. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  81. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  82. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  83. </label>
  84. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" verticalCompressionResistancePriority="751" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4a3-95-oYU" customClass="TTTAttributedLabel">
  85. <rect key="frame" x="88" y="35.5" width="224" height="38"/>
  86. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  87. <string key="text">Message preview q fasdf asdf asd fasd fasd fa
  88. efgjsk djflg</string>
  89. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  90. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  91. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  92. </label>
  93. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jgm-G8-s6A">
  94. <rect key="frame" x="0.0" y="0.0" width="8" height="85"/>
  95. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  96. <constraints>
  97. <constraint firstAttribute="width" constant="8" id="Z8y-yS-s2r"/>
  98. </constraints>
  99. </view>
  100. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="n9J-oC-ByX">
  101. <rect key="frame" x="21" y="15" width="56" height="55"/>
  102. <constraints>
  103. <constraint firstAttribute="width" constant="56" id="7nV-J4-Oyy"/>
  104. <constraint firstAttribute="height" constant="55" id="NcJ-2d-a1t"/>
  105. </constraints>
  106. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  107. </imageView>
  108. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Iln-4R-Iqw" customClass="MKNumberBadgeView">
  109. <rect key="frame" x="55" y="45" width="36" height="28"/>
  110. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  111. <constraints>
  112. <constraint firstAttribute="height" constant="28" id="LCB-w5-NYL"/>
  113. <constraint firstAttribute="width" constant="36" id="kua-nz-L0j"/>
  114. </constraints>
  115. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  116. </view>
  117. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" image="Typing.png" highlightedImage="Typing.png" translatesAutoresizingMaskIntoConstraints="NO" id="wjR-z3-XEA">
  118. <rect key="frame" x="341" y="35.5" width="18" height="20"/>
  119. <constraints>
  120. <constraint firstAttribute="width" constant="18" id="DW1-l7-Kh1"/>
  121. <constraint firstAttribute="height" constant="20" id="viR-q8-f87"/>
  122. </constraints>
  123. </imageView>
  124. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="MessageStatus_sent" highlightedImage="MessageStatus_sent" translatesAutoresizingMaskIntoConstraints="NO" id="E7l-qj-NZ6">
  125. <rect key="frame" x="342" y="35.5" width="17" height="16"/>
  126. <constraints>
  127. <constraint firstAttribute="width" constant="17" id="X1Q-oi-nJu"/>
  128. <constraint firstAttribute="height" constant="16" id="mlI-fX-Zkd"/>
  129. </constraints>
  130. </imageView>
  131. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" horizontalHuggingPriority="251" text="Date" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XTa-xS-cOR">
  132. <rect key="frame" x="330" y="11" width="29" height="16"/>
  133. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  134. <color key="textColor" red="0.42745098040000001" green="0.42745098040000001" blue="0.42745098040000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  135. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  136. </label>
  137. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" horizontalCompressionResistancePriority="751" text="Draft" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jlK-CM-mIS">
  138. <rect key="frame" x="328" y="11" width="31" height="16.5"/>
  139. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  140. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  141. <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  142. </label>
  143. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="T8B-vl-wTs">
  144. <rect key="frame" x="21" y="49" width="20" height="20"/>
  145. <constraints>
  146. <constraint firstAttribute="width" constant="20" id="NkH-GP-wus"/>
  147. <constraint firstAttribute="height" constant="20" id="j1N-5o-yUQ"/>
  148. </constraints>
  149. </imageView>
  150. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="Cj7-Ax-YSf">
  151. <rect key="frame" x="88" y="35.5" width="0.0" height="0.0"/>
  152. <constraints>
  153. <constraint firstAttribute="height" id="h7t-im-hEA"/>
  154. <constraint firstAttribute="width" secondItem="Cj7-Ax-YSf" secondAttribute="height" multiplier="5:4" id="m9p-UO-oBf"/>
  155. </constraints>
  156. </imageView>
  157. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Bell" translatesAutoresizingMaskIntoConstraints="NO" id="2RG-L3-FA4">
  158. <rect key="frame" x="317" y="35.5" width="17" height="16"/>
  159. <constraints>
  160. <constraint firstAttribute="height" constant="16" id="HwT-ia-7Bp"/>
  161. <constraint firstAttribute="width" constant="17" id="qYL-aq-7ps"/>
  162. </constraints>
  163. </imageView>
  164. </subviews>
  165. <constraints>
  166. <constraint firstItem="4a3-95-oYU" firstAttribute="top" secondItem="aU9-dp-bDt" secondAttribute="bottom" constant="4" id="04F-Ih-g6F"/>
  167. <constraint firstItem="2RG-L3-FA4" firstAttribute="leading" secondItem="4a3-95-oYU" secondAttribute="trailing" constant="5" id="166-Pq-kgt"/>
  168. <constraint firstItem="jlK-CM-mIS" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="aU9-dp-bDt" secondAttribute="trailing" constant="10" id="1hf-Hy-QIP"/>
  169. <constraint firstItem="2RG-L3-FA4" firstAttribute="centerY" secondItem="E7l-qj-NZ6" secondAttribute="centerY" id="38c-4V-eUM"/>
  170. <constraint firstItem="n9J-oC-ByX" firstAttribute="top" relation="greaterThanOrEqual" secondItem="0k9-3d-wSA" secondAttribute="topMargin" priority="750" constant="2" id="6zZ-On-HWB"/>
  171. <constraint firstItem="Iln-4R-Iqw" firstAttribute="bottom" secondItem="n9J-oC-ByX" secondAttribute="bottom" constant="3" id="8rf-GD-XJ9"/>
  172. <constraint firstAttribute="bottom" secondItem="jgm-G8-s6A" secondAttribute="bottom" id="Atk-uH-tf4"/>
  173. <constraint firstItem="jlK-CM-mIS" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="topMargin" id="C7u-Xn-eLb"/>
  174. <constraint firstAttribute="trailingMargin" secondItem="wjR-z3-XEA" secondAttribute="trailing" id="Gyc-ly-JzJ"/>
  175. <constraint firstItem="Cj7-Ax-YSf" firstAttribute="top" secondItem="4a3-95-oYU" secondAttribute="top" id="KgT-ca-Eyc"/>
  176. <constraint firstItem="jgm-G8-s6A" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="top" id="NcF-gA-ZbS"/>
  177. <constraint firstItem="XTa-xS-cOR" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="topMargin" id="OeW-U4-yfO"/>
  178. <constraint firstItem="Cj7-Ax-YSf" firstAttribute="leading" secondItem="4a3-95-oYU" secondAttribute="leading" id="OoJ-pH-gvh"/>
  179. <constraint firstItem="wjR-z3-XEA" firstAttribute="top" secondItem="jlK-CM-mIS" secondAttribute="bottom" constant="8" symbolic="YES" id="PZc-ne-XTJ"/>
  180. <constraint firstAttribute="trailingMargin" secondItem="E7l-qj-NZ6" secondAttribute="trailing" id="RNp-4M-tww"/>
  181. <constraint firstItem="n9J-oC-ByX" firstAttribute="centerY" secondItem="0k9-3d-wSA" secondAttribute="centerY" id="Rvp-OY-AXM"/>
  182. <constraint firstItem="aU9-dp-bDt" firstAttribute="top" secondItem="0k9-3d-wSA" secondAttribute="topMargin" id="UmZ-zk-kha"/>
  183. <constraint firstItem="E7l-qj-NZ6" firstAttribute="leading" secondItem="2RG-L3-FA4" secondAttribute="trailing" constant="8" id="asI-ZV-0ln"/>
  184. <constraint firstItem="E7l-qj-NZ6" firstAttribute="top" secondItem="4a3-95-oYU" secondAttribute="top" id="d41-9g-Nc2"/>
  185. <constraint firstItem="T8B-vl-wTs" firstAttribute="bottom" secondItem="n9J-oC-ByX" secondAttribute="bottom" constant="-1" id="d42-Wc-ddk"/>
  186. <constraint firstItem="XTa-xS-cOR" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="aU9-dp-bDt" secondAttribute="trailing" constant="10" id="dLF-Cn-MfJ"/>
  187. <constraint firstItem="wjR-z3-XEA" firstAttribute="top" secondItem="4a3-95-oYU" secondAttribute="top" id="eJh-7r-h3z"/>
  188. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="n9J-oC-ByX" secondAttribute="bottom" priority="750" constant="2" id="erD-iu-ziV"/>
  189. <constraint firstItem="Iln-4R-Iqw" firstAttribute="trailing" secondItem="n9J-oC-ByX" secondAttribute="trailing" constant="14" id="fg3-Ls-Y78"/>
  190. <constraint firstItem="jgm-G8-s6A" firstAttribute="leading" secondItem="0k9-3d-wSA" secondAttribute="leading" id="hZ3-Ts-i1o"/>
  191. <constraint firstAttribute="trailingMargin" secondItem="XTa-xS-cOR" secondAttribute="trailing" id="kyv-By-uou"/>
  192. <constraint firstAttribute="trailingMargin" secondItem="jlK-CM-mIS" secondAttribute="trailing" id="lAm-fy-Wb3"/>
  193. <constraint firstItem="T8B-vl-wTs" firstAttribute="leading" secondItem="n9J-oC-ByX" secondAttribute="leading" id="nRs-4F-Gpj"/>
  194. <constraint firstItem="aU9-dp-bDt" firstAttribute="leading" secondItem="n9J-oC-ByX" secondAttribute="trailing" constant="11" id="tIQ-0X-5ET"/>
  195. <constraint firstItem="4a3-95-oYU" firstAttribute="leading" secondItem="n9J-oC-ByX" secondAttribute="trailing" constant="11" id="u5q-dx-bhg"/>
  196. <constraint firstItem="n9J-oC-ByX" firstAttribute="leading" secondItem="0k9-3d-wSA" secondAttribute="leadingMargin" constant="5" id="uGC-Iz-KPv"/>
  197. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="4a3-95-oYU" secondAttribute="bottom" id="wKB-mr-qUI"/>
  198. </constraints>
  199. </tableViewCellContentView>
  200. <connections>
  201. <outlet property="badgeView" destination="Iln-4R-Iqw" id="Y2J-Gf-zzU"/>
  202. <outlet property="callImageHeight" destination="h7t-im-hEA" id="RlC-9A-gbv"/>
  203. <outlet property="callImageView" destination="Cj7-Ax-YSf" id="CTc-Yp-Ejl"/>
  204. <outlet property="contactImage" destination="n9J-oC-ByX" id="f5k-Bu-6Ik"/>
  205. <outlet property="dateLabel" destination="XTa-xS-cOR" id="EoZ-Dt-H5s"/>
  206. <outlet property="draftLabel" destination="jlK-CM-mIS" id="gvQ-aS-lqq"/>
  207. <outlet property="markedView" destination="jgm-G8-s6A" id="48a-6k-Vix"/>
  208. <outlet property="messagePreviewLabel" destination="4a3-95-oYU" id="FgL-sw-zFR"/>
  209. <outlet property="nameLabel" destination="aU9-dp-bDt" id="ThP-XP-d44"/>
  210. <outlet property="notificationIcon" destination="2RG-L3-FA4" id="84n-AU-fNF"/>
  211. <outlet property="statusIcon" destination="E7l-qj-NZ6" id="o0Z-ee-ABW"/>
  212. <outlet property="threemaTypeIcon" destination="T8B-vl-wTs" id="m0h-ii-Ff1"/>
  213. <outlet property="typingIndicator" destination="wjR-z3-XEA" id="ge1-2h-juP"/>
  214. </connections>
  215. </tableViewCell>
  216. </prototypes>
  217. <connections>
  218. <outlet property="dataSource" destination="Kji-Zw-ER6" id="qOQ-Zq-lST"/>
  219. <outlet property="delegate" destination="Kji-Zw-ER6" id="Ule-cm-hhS"/>
  220. </connections>
  221. </tableView>
  222. <navigationItem key="navigationItem" title="Messages" id="vkp-6o-Lct">
  223. <barButtonItem key="leftBarButtonItem" systemItem="edit" id="yNs-w7-9pI"/>
  224. <barButtonItem key="rightBarButtonItem" image="Compose" id="Hqe-Yz-nuJ">
  225. <connections>
  226. <action selector="newMessage:" destination="Kji-Zw-ER6" id="BD6-PH-8aA"/>
  227. </connections>
  228. </barButtonItem>
  229. </navigationItem>
  230. <connections>
  231. <outlet property="createMessageBarButtonItem" destination="Hqe-Yz-nuJ" id="W3y-lb-oxr"/>
  232. <segue destination="v1R-9K-OZW" kind="show" identifier="ShowConversation" id="pFA-Tp-dth"/>
  233. </connections>
  234. </tableViewController>
  235. <placeholder placeholderIdentifier="IBFirstResponder" id="pta-Eu-i3V" userLabel="First Responder" sceneMemberID="firstResponder"/>
  236. </objects>
  237. <point key="canvasLocation" x="-1456.8" y="416.94152923538235"/>
  238. </scene>
  239. <!--ContactDetails-->
  240. <scene sceneID="pxa-1i-UrO">
  241. <objects>
  242. <tableViewController storyboardIdentifier="contactDetailsViewController" id="MbJ-IV-2f9" userLabel="ContactDetails" customClass="ContactDetailsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  243. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="pXs-iG-LIG">
  244. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  245. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  246. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  247. <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="4J2-j2-aqd">
  248. <rect key="frame" x="0.0" y="0.0" width="375" height="300"/>
  249. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  250. <subviews>
  251. <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="hXY-LY-hEN">
  252. <rect key="frame" x="16" y="16" width="343" height="268"/>
  253. <subviews>
  254. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ewE-oj-bc5">
  255. <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
  256. <subviews>
  257. <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="C5h-Sy-nCc">
  258. <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
  259. <constraints>
  260. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="H1w-TD-Ezp"/>
  261. <constraint firstAttribute="width" constant="200" id="OL5-rJ-P0w"/>
  262. <constraint firstAttribute="width" secondItem="C5h-Sy-nCc" secondAttribute="height" multiplier="1:1" id="xvA-vq-1yV"/>
  263. </constraints>
  264. </imageView>
  265. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="j85-AA-x4F">
  266. <rect key="frame" x="0.0" y="150" width="50" height="50"/>
  267. <constraints>
  268. <constraint firstAttribute="width" secondItem="j85-AA-x4F" secondAttribute="height" multiplier="1:1" id="jFI-4e-Bwq"/>
  269. </constraints>
  270. <state key="normal" title="Button"/>
  271. <connections>
  272. <action selector="workInfoButtonTappedWithSender:" destination="MbJ-IV-2f9" eventType="touchUpInside" id="EJo-VY-ifj"/>
  273. </connections>
  274. </button>
  275. </subviews>
  276. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  277. <constraints>
  278. <constraint firstItem="C5h-Sy-nCc" firstAttribute="leading" secondItem="ewE-oj-bc5" secondAttribute="leading" id="F4e-cv-7qx"/>
  279. <constraint firstAttribute="bottom" secondItem="C5h-Sy-nCc" secondAttribute="bottom" id="Fys-F6-xQu"/>
  280. <constraint firstAttribute="trailing" secondItem="C5h-Sy-nCc" secondAttribute="trailing" id="J06-Ab-njl"/>
  281. <constraint firstItem="j85-AA-x4F" firstAttribute="bottom" secondItem="C5h-Sy-nCc" secondAttribute="bottom" id="Ve2-of-z12"/>
  282. <constraint firstItem="C5h-Sy-nCc" firstAttribute="top" secondItem="ewE-oj-bc5" secondAttribute="top" id="a0W-kY-yNa"/>
  283. <constraint firstItem="j85-AA-x4F" firstAttribute="leading" secondItem="C5h-Sy-nCc" secondAttribute="leading" id="mD3-YE-qI7"/>
  284. <constraint firstItem="j85-AA-x4F" firstAttribute="width" secondItem="C5h-Sy-nCc" secondAttribute="height" multiplier="1:4" id="zZR-ig-eDW"/>
  285. </constraints>
  286. </view>
  287. <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="lUZ-nd-qdA">
  288. <rect key="frame" x="118" y="214.5" width="107.5" height="22"/>
  289. <subviews>
  290. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DfM-u6-9Pl">
  291. <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
  292. <constraints>
  293. <constraint firstAttribute="height" constant="22" id="oVy-p5-nR7"/>
  294. </constraints>
  295. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
  296. <nil key="highlightedColor"/>
  297. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  298. <size key="shadowOffset" width="0.0" height="1"/>
  299. </label>
  300. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="gta-RS-LoS">
  301. <rect key="frame" x="85.5" y="0.0" width="22" height="22"/>
  302. <state key="normal" image="Edit"/>
  303. </button>
  304. </subviews>
  305. </stackView>
  306. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Company Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wLS-iM-q79">
  307. <rect key="frame" x="123.5" y="251" width="96.5" height="17"/>
  308. <constraints>
  309. <constraint firstAttribute="height" constant="17" id="cbG-0q-iXI"/>
  310. </constraints>
  311. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  312. <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  313. <nil key="highlightedColor"/>
  314. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  315. <size key="shadowOffset" width="0.0" height="1"/>
  316. </label>
  317. </subviews>
  318. </stackView>
  319. </subviews>
  320. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  321. <constraints>
  322. <constraint firstAttribute="trailing" secondItem="hXY-LY-hEN" secondAttribute="trailing" constant="16" id="EFa-Jx-0b4"/>
  323. <constraint firstItem="hXY-LY-hEN" firstAttribute="top" secondItem="4J2-j2-aqd" secondAttribute="top" constant="16" id="apl-yV-sfs"/>
  324. <constraint firstItem="hXY-LY-hEN" firstAttribute="leading" secondItem="4J2-j2-aqd" secondAttribute="leading" constant="16" id="cAr-hU-ALH"/>
  325. <constraint firstAttribute="bottom" secondItem="hXY-LY-hEN" secondAttribute="bottom" constant="16" id="sNx-ba-kP7"/>
  326. </constraints>
  327. </view>
  328. <prototypes>
  329. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="IdentityCell" textLabel="Li7-m2-jkf" detailTextLabel="D8z-NN-iT9" style="IBUITableViewCellStyleValue1" id="lAz-z2-lf5">
  330. <rect key="frame" x="0.0" y="355.5" width="375" height="43.5"/>
  331. <autoresizingMask key="autoresizingMask"/>
  332. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="lAz-z2-lf5" id="EbA-id-9cq">
  333. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  334. <autoresizingMask key="autoresizingMask"/>
  335. <subviews>
  336. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Li7-m2-jkf">
  337. <rect key="frame" x="16" y="12" width="88" height="20.5"/>
  338. <autoresizingMask key="autoresizingMask"/>
  339. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  340. <nil key="textColor"/>
  341. <nil key="highlightedColor"/>
  342. </label>
  343. <label opaque="NO" multipleTouchEnabled="YES" tag="100" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="D8z-NN-iT9" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  344. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  345. <autoresizingMask key="autoresizingMask"/>
  346. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  347. <nil key="textColor"/>
  348. <nil key="highlightedColor"/>
  349. </label>
  350. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yUN-4i-VRj">
  351. <rect key="frame" x="175" y="9.5" width="25" height="25"/>
  352. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  353. <state key="normal" image="Share"/>
  354. <connections>
  355. <action selector="shareButtonTappedWithSender:" destination="MbJ-IV-2f9" eventType="touchUpInside" id="7lT-YQ-dhG"/>
  356. </connections>
  357. </button>
  358. </subviews>
  359. </tableViewCellContentView>
  360. <connections>
  361. <outlet property="accessoryView" destination="yUN-4i-VRj" id="5RA-gO-5TL"/>
  362. </connections>
  363. </tableViewCell>
  364. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PublicNicknameCell" textLabel="EpZ-nu-d7H" detailTextLabel="AyW-jc-MkD" style="IBUITableViewCellStyleValue1" id="Y5Z-Gg-lgB">
  365. <rect key="frame" x="0.0" y="399" width="375" height="43.5"/>
  366. <autoresizingMask key="autoresizingMask"/>
  367. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Y5Z-Gg-lgB" id="fdt-zZ-gl5">
  368. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  369. <autoresizingMask key="autoresizingMask"/>
  370. <subviews>
  371. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="EpZ-nu-d7H">
  372. <rect key="frame" x="16" y="12" width="76" height="20.5"/>
  373. <autoresizingMask key="autoresizingMask"/>
  374. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  375. <nil key="textColor"/>
  376. <nil key="highlightedColor"/>
  377. </label>
  378. <label opaque="NO" multipleTouchEnabled="YES" tag="101" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="AyW-jc-MkD">
  379. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  380. <autoresizingMask key="autoresizingMask"/>
  381. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  382. <nil key="textColor"/>
  383. <nil key="highlightedColor"/>
  384. </label>
  385. </subviews>
  386. </tableViewCellContentView>
  387. </tableViewCell>
  388. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="LinkedContactCell" textLabel="HUp-wZ-oF0" detailTextLabel="wVo-z6-Ml9" style="IBUITableViewCellStyleValue1" id="Ldn-SC-BPP" customClass="LinkedContactCell" customModule="Threema" customModuleProvider="target">
  389. <rect key="frame" x="0.0" y="442.5" width="375" height="43.5"/>
  390. <autoresizingMask key="autoresizingMask"/>
  391. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Ldn-SC-BPP" id="eTC-qt-ugh">
  392. <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
  393. <autoresizingMask key="autoresizingMask"/>
  394. <subviews>
  395. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Linked contact" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="HUp-wZ-oF0">
  396. <rect key="frame" x="16" y="12" width="112.5" height="20.5"/>
  397. <autoresizingMask key="autoresizingMask"/>
  398. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  399. <nil key="textColor"/>
  400. <nil key="highlightedColor"/>
  401. </label>
  402. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wVo-z6-Ml9">
  403. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  404. <autoresizingMask key="autoresizingMask"/>
  405. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  406. <nil key="textColor"/>
  407. <nil key="highlightedColor"/>
  408. </label>
  409. </subviews>
  410. </tableViewCellContentView>
  411. <connections>
  412. <outlet property="displayNameLabel" destination="wVo-z6-Ml9" id="FwU-uX-rtp"/>
  413. <outlet property="linkedContactLabel" destination="HUp-wZ-oF0" id="Msr-Ub-XQX"/>
  414. </connections>
  415. </tableViewCell>
  416. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="GroupMembershipCell" textLabel="b8z-Gr-9hX" detailTextLabel="8GS-Yt-ab7" style="IBUITableViewCellStyleValue1" id="NsV-NK-7RD">
  417. <rect key="frame" x="0.0" y="486" width="375" height="43.5"/>
  418. <autoresizingMask key="autoresizingMask"/>
  419. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="NsV-NK-7RD" id="4LB-RX-n1L">
  420. <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
  421. <autoresizingMask key="autoresizingMask"/>
  422. <subviews>
  423. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Member in groups" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="b8z-Gr-9hX">
  424. <rect key="frame" x="16" y="12" width="139" height="20.5"/>
  425. <autoresizingMask key="autoresizingMask"/>
  426. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  427. <nil key="textColor"/>
  428. <nil key="highlightedColor"/>
  429. </label>
  430. <label opaque="NO" multipleTouchEnabled="YES" tag="102" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="8GS-Yt-ab7">
  431. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  432. <autoresizingMask key="autoresizingMask"/>
  433. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  434. <nil key="textColor"/>
  435. <nil key="highlightedColor"/>
  436. </label>
  437. </subviews>
  438. </tableViewCellContentView>
  439. </tableViewCell>
  440. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="VerificationLevelCell" id="wNt-UD-Lxa" customClass="VerificationLevelCell" customModule="Threema" customModuleProvider="target">
  441. <rect key="frame" x="0.0" y="529.5" width="375" height="43.5"/>
  442. <autoresizingMask key="autoresizingMask"/>
  443. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="wNt-UD-Lxa" id="rA9-fH-g92">
  444. <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
  445. <autoresizingMask key="autoresizingMask"/>
  446. <subviews>
  447. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="spN-GT-ek4" userLabel="Verification Level">
  448. <rect key="frame" x="16" y="11.5" width="41.5" height="20.5"/>
  449. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  450. <nil key="textColor"/>
  451. <nil key="highlightedColor"/>
  452. </label>
  453. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="exu-hx-kP4">
  454. <rect key="frame" x="288" y="16" width="48" height="12"/>
  455. <constraints>
  456. <constraint firstAttribute="width" constant="48" id="MZw-tp-7YB"/>
  457. <constraint firstAttribute="height" constant="12" id="wqr-Ue-okP"/>
  458. </constraints>
  459. </imageView>
  460. </subviews>
  461. <constraints>
  462. <constraint firstAttribute="trailingMargin" secondItem="exu-hx-kP4" secondAttribute="trailing" constant="4" id="9MS-nE-slI"/>
  463. <constraint firstItem="exu-hx-kP4" firstAttribute="centerY" secondItem="rA9-fH-g92" secondAttribute="centerY" id="igy-eM-7iZ"/>
  464. <constraint firstItem="spN-GT-ek4" firstAttribute="leading" secondItem="rA9-fH-g92" secondAttribute="leadingMargin" id="k53-Iy-36i"/>
  465. <constraint firstItem="spN-GT-ek4" firstAttribute="centerY" secondItem="rA9-fH-g92" secondAttribute="centerY" id="vIR-oe-h2X"/>
  466. </constraints>
  467. </tableViewCellContentView>
  468. <connections>
  469. <outlet property="levelImage" destination="exu-hx-kP4" id="3PD-os-bKV"/>
  470. <outlet property="titleLabel" destination="spN-GT-ek4" id="C2g-d3-SbU"/>
  471. <segue destination="BHJ-uI-yhd" kind="show" identifier="VerificationSegue" id="gsX-9s-4uY"/>
  472. </connections>
  473. </tableViewCell>
  474. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="hoB-s0-utM" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
  475. <rect key="frame" x="0.0" y="573" width="375" height="69"/>
  476. <autoresizingMask key="autoresizingMask"/>
  477. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="hoB-s0-utM" id="5qh-9Z-qN6">
  478. <rect key="frame" x="0.0" y="0.0" width="375" height="69"/>
  479. <autoresizingMask key="autoresizingMask"/>
  480. <subviews>
  481. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LrC-J2-IWd">
  482. <rect key="frame" x="16" y="14" width="343" height="14"/>
  483. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  484. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  485. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  486. <nil key="highlightedColor"/>
  487. </label>
  488. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8S8-W1-o1S" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  489. <rect key="frame" x="16" y="30" width="343" height="0.0"/>
  490. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  491. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  492. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  493. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  494. </label>
  495. </subviews>
  496. <constraints>
  497. <constraint firstAttribute="bottomMargin" secondItem="8S8-W1-o1S" secondAttribute="bottom" constant="3" id="G3f-TV-cYi"/>
  498. <constraint firstItem="8S8-W1-o1S" firstAttribute="top" secondItem="LrC-J2-IWd" secondAttribute="bottom" constant="2" id="Tfd-Ik-rrc"/>
  499. <constraint firstAttribute="trailingMargin" secondItem="LrC-J2-IWd" secondAttribute="trailing" id="XWK-yP-zxf"/>
  500. <constraint firstItem="8S8-W1-o1S" firstAttribute="leading" secondItem="5qh-9Z-qN6" secondAttribute="leadingMargin" id="Z0x-yM-kmz"/>
  501. <constraint firstAttribute="trailingMargin" secondItem="8S8-W1-o1S" secondAttribute="trailing" id="a0p-hb-UxO"/>
  502. <constraint firstItem="LrC-J2-IWd" firstAttribute="top" secondItem="5qh-9Z-qN6" secondAttribute="topMargin" constant="3" id="gQ4-dd-JOL"/>
  503. <constraint firstItem="LrC-J2-IWd" firstAttribute="leading" secondItem="5qh-9Z-qN6" secondAttribute="leadingMargin" id="vqj-YK-ObG"/>
  504. </constraints>
  505. </tableViewCellContentView>
  506. <connections>
  507. <outlet property="fingerprintLabel" destination="LrC-J2-IWd" id="YFx-gW-FZ0"/>
  508. <outlet property="fingerprintValueLabel" destination="8S8-W1-o1S" id="mXz-3M-Tf4"/>
  509. </connections>
  510. </tableViewCell>
  511. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="xYA-Ea-q30" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
  512. <rect key="frame" x="0.0" y="642" width="375" height="43.5"/>
  513. <autoresizingMask key="autoresizingMask"/>
  514. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="xYA-Ea-q30" id="cJR-FO-GBd">
  515. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  516. <autoresizingMask key="autoresizingMask"/>
  517. <subviews>
  518. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SendMessage" translatesAutoresizingMaskIntoConstraints="NO" id="yVb-PA-4z6">
  519. <rect key="frame" x="16" y="11" width="24" height="22"/>
  520. <constraints>
  521. <constraint firstAttribute="width" constant="24" id="gl7-Sf-smT"/>
  522. <constraint firstAttribute="height" constant="22" id="kwk-jv-3sD"/>
  523. </constraints>
  524. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  525. </imageView>
  526. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Send Message" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cHE-Oc-08d">
  527. <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
  528. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  529. <nil key="textColor"/>
  530. <nil key="highlightedColor"/>
  531. </label>
  532. </subviews>
  533. <constraints>
  534. <constraint firstAttribute="trailingMargin" secondItem="cHE-Oc-08d" secondAttribute="trailing" id="4Aw-hD-sZ3"/>
  535. <constraint firstItem="cHE-Oc-08d" firstAttribute="centerY" secondItem="cJR-FO-GBd" secondAttribute="centerY" id="XLL-I6-hL4"/>
  536. <constraint firstItem="cHE-Oc-08d" firstAttribute="leading" secondItem="yVb-PA-4z6" secondAttribute="trailing" constant="16" id="dr1-Pc-c7f"/>
  537. <constraint firstItem="yVb-PA-4z6" firstAttribute="centerY" secondItem="cJR-FO-GBd" secondAttribute="centerY" id="jwT-bn-gMh"/>
  538. <constraint firstItem="yVb-PA-4z6" firstAttribute="leading" secondItem="cJR-FO-GBd" secondAttribute="leadingMargin" id="o8j-29-DeH"/>
  539. </constraints>
  540. </tableViewCellContentView>
  541. <connections>
  542. <outlet property="sendMessageImageView" destination="yVb-PA-4z6" id="Ar9-Lm-6sP"/>
  543. <outlet property="sendMessageLabel" destination="cHE-Oc-08d" id="35m-Q5-6Zl"/>
  544. </connections>
  545. </tableViewCell>
  546. <tableViewCell contentMode="scaleAspectFit" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExportConversationCell" id="m6w-9r-Xy1" customClass="ExportConversationCell" customModule="Threema" customModuleProvider="target">
  547. <rect key="frame" x="0.0" y="685.5" width="375" height="43.5"/>
  548. <autoresizingMask key="autoresizingMask"/>
  549. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="m6w-9r-Xy1" id="gz3-6B-yR4">
  550. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  551. <autoresizingMask key="autoresizingMask"/>
  552. <subviews>
  553. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Export Conversation" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MjB-gx-MEm">
  554. <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
  555. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  556. <nil key="textColor"/>
  557. <nil key="highlightedColor"/>
  558. </label>
  559. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="ExportConversation" translatesAutoresizingMaskIntoConstraints="NO" id="7cF-sc-aCb">
  560. <rect key="frame" x="16" y="11" width="24" height="22"/>
  561. <constraints>
  562. <constraint firstAttribute="height" constant="22" id="7kx-gl-qMt"/>
  563. <constraint firstAttribute="width" constant="24" id="DGx-xp-fFa"/>
  564. </constraints>
  565. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  566. </imageView>
  567. </subviews>
  568. <constraints>
  569. <constraint firstItem="MjB-gx-MEm" firstAttribute="leading" secondItem="7cF-sc-aCb" secondAttribute="trailing" constant="16" id="AWK-W1-qfg"/>
  570. <constraint firstItem="7cF-sc-aCb" firstAttribute="centerY" secondItem="gz3-6B-yR4" secondAttribute="centerY" id="QDM-1i-T2n"/>
  571. <constraint firstItem="MjB-gx-MEm" firstAttribute="centerY" secondItem="gz3-6B-yR4" secondAttribute="centerY" id="RB9-sF-Lxg"/>
  572. <constraint firstAttribute="trailingMargin" secondItem="MjB-gx-MEm" secondAttribute="trailing" id="ckk-Py-CXp"/>
  573. <constraint firstItem="7cF-sc-aCb" firstAttribute="leading" secondItem="gz3-6B-yR4" secondAttribute="leadingMargin" id="oSp-WC-vL3"/>
  574. </constraints>
  575. </tableViewCellContentView>
  576. <connections>
  577. <outlet property="exportConversationImageView" destination="7cF-sc-aCb" id="ZID-qd-qmG"/>
  578. <outlet property="exportConversationLabel" destination="MjB-gx-MEm" id="kNK-Ur-nFd"/>
  579. </connections>
  580. </tableViewCell>
  581. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaCallCell" id="zzQ-kr-FRG" customClass="ContactThreemaCallCell" customModule="Threema" customModuleProvider="target">
  582. <rect key="frame" x="0.0" y="729" width="375" height="43.5"/>
  583. <autoresizingMask key="autoresizingMask"/>
  584. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="zzQ-kr-FRG" id="xRf-GP-tFV">
  585. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  586. <autoresizingMask key="autoresizingMask"/>
  587. <subviews>
  588. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Threema Call" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Ea-OE-GRI">
  589. <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
  590. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  591. <nil key="textColor"/>
  592. <nil key="highlightedColor"/>
  593. </label>
  594. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="ThreemaPhone" translatesAutoresizingMaskIntoConstraints="NO" id="wX0-AX-zM3">
  595. <rect key="frame" x="16" y="9.5" width="25" height="25"/>
  596. <constraints>
  597. <constraint firstAttribute="width" constant="25" id="YGn-kw-D3Z"/>
  598. <constraint firstAttribute="height" constant="25" id="sbg-RC-4Gd"/>
  599. </constraints>
  600. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  601. </imageView>
  602. </subviews>
  603. <constraints>
  604. <constraint firstItem="wX0-AX-zM3" firstAttribute="centerY" secondItem="xRf-GP-tFV" secondAttribute="centerY" id="8ys-P7-292"/>
  605. <constraint firstItem="5Ea-OE-GRI" firstAttribute="centerY" secondItem="xRf-GP-tFV" secondAttribute="centerY" id="Nex-JF-nYT"/>
  606. <constraint firstItem="5Ea-OE-GRI" firstAttribute="leading" secondItem="wX0-AX-zM3" secondAttribute="trailing" constant="15" id="WSI-TY-XWu"/>
  607. <constraint firstAttribute="trailingMargin" secondItem="5Ea-OE-GRI" secondAttribute="trailing" id="cDn-Wz-RS0"/>
  608. <constraint firstItem="wX0-AX-zM3" firstAttribute="leading" secondItem="xRf-GP-tFV" secondAttribute="leadingMargin" id="gbo-0X-7ip"/>
  609. </constraints>
  610. </tableViewCellContentView>
  611. <connections>
  612. <outlet property="threemaCallImageView" destination="wX0-AX-zM3" id="5LD-hC-pda"/>
  613. <outlet property="threemaCallLabel" destination="5Ea-OE-GRI" id="kBj-m6-ZfZ"/>
  614. </connections>
  615. </tableViewCell>
  616. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="BlockCell" textLabel="okc-AP-jvX" style="IBUITableViewCellStyleDefault" id="OyV-Kc-kkl" customClass="BlockContactCell" customModule="Threema" customModuleProvider="target">
  617. <rect key="frame" x="0.0" y="772.5" width="375" height="43.5"/>
  618. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  619. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="OyV-Kc-kkl" id="yq1-pz-P7n">
  620. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  621. <autoresizingMask key="autoresizingMask"/>
  622. <subviews>
  623. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" text="Block Contact" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="okc-AP-jvX">
  624. <rect key="frame" x="15" y="0.0" width="352" height="43.5"/>
  625. <autoresizingMask key="autoresizingMask"/>
  626. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  627. <nil key="textColor"/>
  628. <nil key="highlightedColor"/>
  629. </label>
  630. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" ambiguous="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lzZ-zu-OFi">
  631. <rect key="frame" x="161" y="6" width="50" height="31"/>
  632. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  633. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  634. <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  635. <connections>
  636. <action selector="blockSwitchChanged:" destination="OyV-Kc-kkl" eventType="valueChanged" id="9rE-Yf-EMX"/>
  637. </connections>
  638. </switch>
  639. </subviews>
  640. </tableViewCellContentView>
  641. <connections>
  642. <outlet property="accessoryView" destination="lzZ-zu-OFi" id="pS9-tb-L1i"/>
  643. <outlet property="blockContactLabel" destination="okc-AP-jvX" id="hOb-wg-B71"/>
  644. <outlet property="blockContactSwitch" destination="lzZ-zu-OFi" id="NWU-Ir-pzH"/>
  645. </connections>
  646. </tableViewCell>
  647. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="PushSettingCell" textLabel="XoR-5p-xDo" style="IBUITableViewCellStyleDefault" id="bAN-PO-fyf">
  648. <rect key="frame" x="0.0" y="816" width="375" height="43.5"/>
  649. <autoresizingMask key="autoresizingMask"/>
  650. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="bAN-PO-fyf" id="dct-WZ-Arc">
  651. <rect key="frame" x="0.0" y="0.0" width="356" height="43.5"/>
  652. <autoresizingMask key="autoresizingMask"/>
  653. <subviews>
  654. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" text="Push setting" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="XoR-5p-xDo">
  655. <rect key="frame" x="15" y="0.0" width="333" height="43.5"/>
  656. <autoresizingMask key="autoresizingMask"/>
  657. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  658. <nil key="textColor"/>
  659. <nil key="highlightedColor"/>
  660. </label>
  661. </subviews>
  662. </tableViewCellContentView>
  663. <connections>
  664. <segue destination="7sc-E3-vaH" kind="show" identifier="ShowPushSetting" id="ptU-i0-583"/>
  665. </connections>
  666. </tableViewCell>
  667. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ScanIDCell" id="7DS-oe-Mqj" customClass="ContactScanCell" customModule="Threema" customModuleProvider="target">
  668. <rect key="frame" x="0.0" y="859.5" width="375" height="43.5"/>
  669. <autoresizingMask key="autoresizingMask"/>
  670. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="7DS-oe-Mqj" id="sV9-Ue-Zsn">
  671. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  672. <autoresizingMask key="autoresizingMask"/>
  673. <subviews>
  674. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="QRScan" translatesAutoresizingMaskIntoConstraints="NO" id="JDb-HV-uuX">
  675. <rect key="frame" x="16" y="11" width="24" height="22"/>
  676. <constraints>
  677. <constraint firstAttribute="height" constant="22" id="NWh-dD-XE6"/>
  678. <constraint firstAttribute="width" constant="24" id="oBg-Wm-lbX"/>
  679. </constraints>
  680. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  681. </imageView>
  682. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Scan ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="b4I-LV-xkG" userLabel="Scan ID">
  683. <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
  684. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  685. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  686. <nil key="textColor"/>
  687. <nil key="highlightedColor"/>
  688. </label>
  689. </subviews>
  690. <constraints>
  691. <constraint firstAttribute="trailingMargin" secondItem="b4I-LV-xkG" secondAttribute="trailing" id="Pl6-ON-TSR"/>
  692. <constraint firstItem="JDb-HV-uuX" firstAttribute="centerY" secondItem="sV9-Ue-Zsn" secondAttribute="centerY" id="WEU-mc-847"/>
  693. <constraint firstItem="b4I-LV-xkG" firstAttribute="leading" secondItem="JDb-HV-uuX" secondAttribute="trailing" constant="16" id="Zth-wC-MAP"/>
  694. <constraint firstItem="JDb-HV-uuX" firstAttribute="leading" secondItem="sV9-Ue-Zsn" secondAttribute="leadingMargin" id="jYv-SR-nfw"/>
  695. <constraint firstItem="b4I-LV-xkG" firstAttribute="centerY" secondItem="sV9-Ue-Zsn" secondAttribute="centerY" id="oUw-JX-4o1"/>
  696. </constraints>
  697. </tableViewCellContentView>
  698. <connections>
  699. <outlet property="scanContactImageView" destination="JDb-HV-uuX" id="HCs-N9-1PL"/>
  700. <outlet property="scanContactLabel" destination="b4I-LV-xkG" id="Kgt-ah-myT"/>
  701. </connections>
  702. </tableViewCell>
  703. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendProfilePictureCell" id="txT-4c-Lzf" customClass="ContactSendPictureCell" customModule="Threema" customModuleProvider="target">
  704. <rect key="frame" x="0.0" y="903" width="375" height="43.5"/>
  705. <autoresizingMask key="autoresizingMask"/>
  706. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="txT-4c-Lzf" id="W6q-eP-yJc">
  707. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  708. <autoresizingMask key="autoresizingMask"/>
  709. <subviews>
  710. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" ambiguous="YES" text="Send profile picture now" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nw5-78-OP1">
  711. <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
  712. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  713. <nil key="textColor"/>
  714. <nil key="highlightedColor"/>
  715. </label>
  716. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" image="ProfilePicture" translatesAutoresizingMaskIntoConstraints="NO" id="aGm-Gp-vUl">
  717. <rect key="frame" x="16" y="11" width="24" height="22"/>
  718. <constraints>
  719. <constraint firstAttribute="width" constant="24" id="OTF-pW-8qF"/>
  720. <constraint firstAttribute="height" constant="22" id="YK0-Kf-fhx"/>
  721. </constraints>
  722. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  723. </imageView>
  724. </subviews>
  725. <constraints>
  726. <constraint firstAttribute="trailingMargin" secondItem="nw5-78-OP1" secondAttribute="trailing" id="Hor-Zh-4Ef"/>
  727. <constraint firstItem="aGm-Gp-vUl" firstAttribute="leading" secondItem="W6q-eP-yJc" secondAttribute="leadingMargin" id="LDF-zl-zIa"/>
  728. <constraint firstItem="nw5-78-OP1" firstAttribute="leading" secondItem="aGm-Gp-vUl" secondAttribute="trailing" constant="16" id="YHt-Oa-nJM"/>
  729. <constraint firstItem="aGm-Gp-vUl" firstAttribute="centerY" secondItem="W6q-eP-yJc" secondAttribute="centerY" id="mBN-we-65j"/>
  730. <constraint firstItem="nw5-78-OP1" firstAttribute="centerY" secondItem="W6q-eP-yJc" secondAttribute="centerY" id="rs4-8A-sLJ"/>
  731. </constraints>
  732. </tableViewCellContentView>
  733. <connections>
  734. <outlet property="sendPictureImageView" destination="aGm-Gp-vUl" id="r5d-eg-bQs"/>
  735. <outlet property="sendPictureLabel" destination="nw5-78-OP1" id="0eq-9M-Hjo"/>
  736. </connections>
  737. </tableViewCell>
  738. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="ProfilePictureRecipientCell" textLabel="nmk-Tk-7Kq" style="IBUITableViewCellStyleDefault" id="KTc-Ah-8X8" customClass="ProfilePictureRecipientCell" customModule="Threema" customModuleProvider="target">
  739. <rect key="frame" x="0.0" y="946.5" width="375" height="43.5"/>
  740. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  741. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KTc-Ah-8X8" id="afC-xu-ql9">
  742. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  743. <autoresizingMask key="autoresizingMask"/>
  744. <subviews>
  745. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" ambiguous="YES" insetsLayoutMarginsFromSafeArea="NO" text="Profile picture recipient" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="nmk-Tk-7Kq">
  746. <rect key="frame" x="15" y="0.0" width="352" height="43.5"/>
  747. <autoresizingMask key="autoresizingMask"/>
  748. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  749. <nil key="textColor"/>
  750. <nil key="highlightedColor"/>
  751. </label>
  752. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" ambiguous="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="qqb-fp-VOI">
  753. <rect key="frame" x="163" y="6" width="48" height="31"/>
  754. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  755. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  756. <connections>
  757. <action selector="profilePictureRecipientSwitchChanged:" destination="KTc-Ah-8X8" eventType="valueChanged" id="Krg-wg-8sy"/>
  758. </connections>
  759. </switch>
  760. </subviews>
  761. </tableViewCellContentView>
  762. <connections>
  763. <outlet property="accessoryView" destination="qqb-fp-VOI" id="ErF-oX-RMZ"/>
  764. <outlet property="profilePictureRecipientLabel" destination="nmk-Tk-7Kq" id="k5m-PL-D3W"/>
  765. <outlet property="profilePictureRecipientSwitch" destination="qqb-fp-VOI" id="VGW-g1-xQF"/>
  766. </connections>
  767. </tableViewCell>
  768. </prototypes>
  769. <sections/>
  770. <connections>
  771. <outlet property="dataSource" destination="MbJ-IV-2f9" id="VQ6-nd-9e4"/>
  772. <outlet property="delegate" destination="MbJ-IV-2f9" id="6Rc-lt-Ehf"/>
  773. </connections>
  774. </tableView>
  775. <navigationItem key="navigationItem" title="First Last" largeTitleDisplayMode="never" id="Wsn-z9-eRi">
  776. <barButtonItem key="rightBarButtonItem" image="QRScan" id="ydd-ZP-cHN">
  777. <connections>
  778. <action selector="scanQrCodeActionWithSender:" destination="MbJ-IV-2f9" id="uyY-qL-Oi4"/>
  779. </connections>
  780. </barButtonItem>
  781. </navigationItem>
  782. <connections>
  783. <outlet property="companyNameLabel" destination="wLS-iM-q79" id="rQo-wF-0UW"/>
  784. <outlet property="disclosureButton" destination="gta-RS-LoS" id="HnU-W9-6Ti"/>
  785. <outlet property="headerView" destination="4J2-j2-aqd" id="nu9-xE-Scc"/>
  786. <outlet property="imageView" destination="C5h-Sy-nCc" id="CoE-js-cSN"/>
  787. <outlet property="nameLabel" destination="DfM-u6-9Pl" id="XoH-fN-tsE"/>
  788. <outlet property="scanQrCodeBarButtonItem" destination="ydd-ZP-cHN" id="ObJ-lV-e2E"/>
  789. <outlet property="threemaTypeIcon" destination="j85-AA-x4F" id="sKz-jc-Nou"/>
  790. </connections>
  791. </tableViewController>
  792. <placeholder placeholderIdentifier="IBFirstResponder" id="1eN-yn-5dz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  793. </objects>
  794. <point key="canvasLocation" x="1084" y="-365.66716641679164"/>
  795. </scene>
  796. <!--ContactDetails-->
  797. <scene sceneID="Ugy-sC-V6n">
  798. <objects>
  799. <tableViewController storyboardIdentifier="meContactDetailsViewController" id="xtp-zM-Vgy" userLabel="ContactDetails" customClass="MeContactDetailsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  800. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="NCO-Sz-pJi">
  801. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  802. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  803. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  804. <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="7lm-e6-Lka">
  805. <rect key="frame" x="0.0" y="0.0" width="375" height="270"/>
  806. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  807. <subviews>
  808. <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="SxH-9O-pam">
  809. <rect key="frame" x="16" y="16" width="343" height="238"/>
  810. <subviews>
  811. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZnY-6p-Dgu">
  812. <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
  813. <subviews>
  814. <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="bSk-bS-iIF">
  815. <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
  816. <constraints>
  817. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="Ssb-3n-Uhj"/>
  818. <constraint firstAttribute="width" constant="200" id="TIH-27-HhN"/>
  819. <constraint firstAttribute="width" secondItem="bSk-bS-iIF" secondAttribute="height" multiplier="1:1" id="cjc-Jc-5zQ"/>
  820. </constraints>
  821. </imageView>
  822. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="JMS-hZ-GH8">
  823. <rect key="frame" x="0.0" y="150" width="50" height="50"/>
  824. <constraints>
  825. <constraint firstAttribute="width" secondItem="JMS-hZ-GH8" secondAttribute="height" multiplier="1:1" id="yKt-QI-JEo"/>
  826. </constraints>
  827. </imageView>
  828. </subviews>
  829. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  830. <constraints>
  831. <constraint firstItem="JMS-hZ-GH8" firstAttribute="leading" secondItem="bSk-bS-iIF" secondAttribute="leading" id="3Xi-zL-BtM"/>
  832. <constraint firstItem="bSk-bS-iIF" firstAttribute="leading" secondItem="ZnY-6p-Dgu" secondAttribute="leading" id="Anr-w4-ZcS"/>
  833. <constraint firstItem="bSk-bS-iIF" firstAttribute="top" secondItem="ZnY-6p-Dgu" secondAttribute="top" id="By8-oE-P11"/>
  834. <constraint firstAttribute="trailing" secondItem="bSk-bS-iIF" secondAttribute="trailing" id="Hyx-84-fP2"/>
  835. <constraint firstItem="JMS-hZ-GH8" firstAttribute="width" secondItem="bSk-bS-iIF" secondAttribute="height" multiplier="1:4" id="Nzm-Rh-5aB"/>
  836. <constraint firstItem="JMS-hZ-GH8" firstAttribute="bottom" secondItem="bSk-bS-iIF" secondAttribute="bottom" id="d51-vM-cTI"/>
  837. <constraint firstAttribute="bottom" secondItem="bSk-bS-iIF" secondAttribute="bottom" id="vhj-Dl-P91"/>
  838. </constraints>
  839. </view>
  840. <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="7bJ-wQ-2j3">
  841. <rect key="frame" x="131.5" y="216" width="80.5" height="22"/>
  842. <subviews>
  843. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Kap-D0-eRe">
  844. <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
  845. <constraints>
  846. <constraint firstAttribute="height" constant="22" id="0mg-xw-Uq7"/>
  847. </constraints>
  848. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
  849. <nil key="highlightedColor"/>
  850. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  851. <size key="shadowOffset" width="0.0" height="1"/>
  852. </label>
  853. </subviews>
  854. </stackView>
  855. </subviews>
  856. </stackView>
  857. </subviews>
  858. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  859. <constraints>
  860. <constraint firstItem="SxH-9O-pam" firstAttribute="top" secondItem="7lm-e6-Lka" secondAttribute="top" constant="16" id="290-S0-n5b"/>
  861. <constraint firstAttribute="trailing" secondItem="SxH-9O-pam" secondAttribute="trailing" constant="16" id="6Kw-Br-kaO"/>
  862. <constraint firstItem="SxH-9O-pam" firstAttribute="leading" secondItem="7lm-e6-Lka" secondAttribute="leading" constant="16" id="UxX-Ah-yWE"/>
  863. <constraint firstAttribute="bottom" secondItem="SxH-9O-pam" secondAttribute="bottom" constant="16" id="VaZ-OU-Rct"/>
  864. </constraints>
  865. </view>
  866. <prototypes>
  867. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="IdentityCell" textLabel="IDl-ul-tY3" detailTextLabel="1F4-9N-fcI" style="IBUITableViewCellStyleValue1" id="86z-kQ-Unl">
  868. <rect key="frame" x="0.0" y="325.5" width="375" height="43.5"/>
  869. <autoresizingMask key="autoresizingMask"/>
  870. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="86z-kQ-Unl" id="hUI-6c-KFf">
  871. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  872. <autoresizingMask key="autoresizingMask"/>
  873. <subviews>
  874. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="IDl-ul-tY3">
  875. <rect key="frame" x="16" y="12" width="88" height="20.5"/>
  876. <autoresizingMask key="autoresizingMask"/>
  877. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  878. <nil key="textColor"/>
  879. <nil key="highlightedColor"/>
  880. </label>
  881. <label opaque="NO" multipleTouchEnabled="YES" tag="100" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="1F4-9N-fcI" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  882. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  883. <autoresizingMask key="autoresizingMask"/>
  884. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  885. <nil key="textColor"/>
  886. <nil key="highlightedColor"/>
  887. </label>
  888. </subviews>
  889. </tableViewCellContentView>
  890. </tableViewCell>
  891. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="PublicNicknameCell" textLabel="cdG-mM-SxM" detailTextLabel="pQe-OG-f3M" style="IBUITableViewCellStyleValue1" id="hNM-pD-Zyf">
  892. <rect key="frame" x="0.0" y="369" width="375" height="43.5"/>
  893. <autoresizingMask key="autoresizingMask"/>
  894. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="hNM-pD-Zyf" id="Qz4-3b-EE6">
  895. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  896. <autoresizingMask key="autoresizingMask"/>
  897. <subviews>
  898. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="cdG-mM-SxM">
  899. <rect key="frame" x="16" y="12" width="76" height="20.5"/>
  900. <autoresizingMask key="autoresizingMask"/>
  901. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  902. <nil key="textColor"/>
  903. <nil key="highlightedColor"/>
  904. </label>
  905. <label opaque="NO" multipleTouchEnabled="YES" tag="101" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="pQe-OG-f3M">
  906. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  907. <autoresizingMask key="autoresizingMask"/>
  908. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  909. <nil key="textColor"/>
  910. <nil key="highlightedColor"/>
  911. </label>
  912. </subviews>
  913. </tableViewCellContentView>
  914. </tableViewCell>
  915. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="qSb-Du-RMH" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
  916. <rect key="frame" x="0.0" y="412.5" width="375" height="69"/>
  917. <autoresizingMask key="autoresizingMask"/>
  918. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="qSb-Du-RMH" id="MkE-G6-aMt">
  919. <rect key="frame" x="0.0" y="0.0" width="375" height="69"/>
  920. <autoresizingMask key="autoresizingMask"/>
  921. <subviews>
  922. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Uhh-8Z-kvD">
  923. <rect key="frame" x="16" y="14" width="343" height="14"/>
  924. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  925. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  926. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  927. <nil key="highlightedColor"/>
  928. </label>
  929. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" ambiguous="YES" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="15d-ji-q7j" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  930. <rect key="frame" x="16" y="30" width="343" height="0.0"/>
  931. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  932. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  933. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  934. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  935. </label>
  936. </subviews>
  937. <constraints>
  938. <constraint firstItem="Uhh-8Z-kvD" firstAttribute="leading" secondItem="MkE-G6-aMt" secondAttribute="leadingMargin" id="2Gv-f3-MQe"/>
  939. <constraint firstItem="15d-ji-q7j" firstAttribute="top" secondItem="Uhh-8Z-kvD" secondAttribute="bottom" constant="2" id="3Cb-e6-eqK"/>
  940. <constraint firstAttribute="trailingMargin" secondItem="15d-ji-q7j" secondAttribute="trailing" id="Ej7-7v-Xt9"/>
  941. <constraint firstItem="15d-ji-q7j" firstAttribute="leading" secondItem="MkE-G6-aMt" secondAttribute="leadingMargin" id="EzS-T9-oe7"/>
  942. <constraint firstItem="Uhh-8Z-kvD" firstAttribute="top" secondItem="MkE-G6-aMt" secondAttribute="topMargin" constant="3" id="OAo-Lw-T28"/>
  943. <constraint firstAttribute="trailingMargin" secondItem="Uhh-8Z-kvD" secondAttribute="trailing" id="gZF-B2-19B"/>
  944. <constraint firstAttribute="bottomMargin" secondItem="15d-ji-q7j" secondAttribute="bottom" constant="3" id="lmp-K4-3EN"/>
  945. </constraints>
  946. </tableViewCellContentView>
  947. <connections>
  948. <outlet property="fingerprintLabel" destination="15d-ji-q7j" id="8aI-5l-hHp"/>
  949. <outlet property="fingerprintValueLabel" destination="15d-ji-q7j" id="wlI-Mz-CHE"/>
  950. </connections>
  951. </tableViewCell>
  952. </prototypes>
  953. <sections/>
  954. <connections>
  955. <outlet property="dataSource" destination="xtp-zM-Vgy" id="jOf-i1-O5o"/>
  956. <outlet property="delegate" destination="xtp-zM-Vgy" id="phP-45-h15"/>
  957. </connections>
  958. </tableView>
  959. <navigationItem key="navigationItem" title="First Last" largeTitleDisplayMode="never" id="AEe-kf-VNo"/>
  960. <connections>
  961. <outlet property="headerView" destination="7lm-e6-Lka" id="71G-O7-WQr"/>
  962. <outlet property="imageView" destination="bSk-bS-iIF" id="DeU-Mk-eiU"/>
  963. <outlet property="nameLabel" destination="Kap-D0-eRe" id="KYL-xd-7TC"/>
  964. <outlet property="threemaTypeIcon" destination="JMS-hZ-GH8" id="hNW-CO-jfH"/>
  965. </connections>
  966. </tableViewController>
  967. <placeholder placeholderIdentifier="IBFirstResponder" id="zPr-xd-TOK" userLabel="First Responder" sceneMemberID="firstResponder"/>
  968. </objects>
  969. <point key="canvasLocation" x="-25" y="-761"/>
  970. </scene>
  971. <!--Contact Group Membership View Controller-->
  972. <scene sceneID="FZb-Rm-ih3">
  973. <objects>
  974. <tableViewController storyboardIdentifier="contactGroupMembershipViewController" id="NM5-wF-syo" customClass="ContactGroupMembershipViewController" sceneMemberID="viewController">
  975. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="O26-dn-MxF">
  976. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  977. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  978. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  979. <prototypes>
  980. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactGroupCell" rowHeight="60" id="1Pw-XH-5MU" userLabel="PickerGroupCell" customClass="ContactGroupCell">
  981. <rect key="frame" x="0.0" y="28" width="375" height="60"/>
  982. <autoresizingMask key="autoresizingMask"/>
  983. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Pw-XH-5MU" id="AmC-vC-feO">
  984. <rect key="frame" x="0.0" y="0.0" width="375" height="60"/>
  985. <autoresizingMask key="autoresizingMask"/>
  986. <subviews>
  987. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Y4G-EW-Gux">
  988. <rect key="frame" x="64" y="11" width="295" height="20.5"/>
  989. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  990. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  991. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  992. <nil key="highlightedColor"/>
  993. </label>
  994. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="Efb-rW-izl">
  995. <rect key="frame" x="16" y="10" width="40" height="40"/>
  996. <constraints>
  997. <constraint firstAttribute="width" constant="40" id="5pv-wW-zBA"/>
  998. <constraint firstAttribute="height" constant="40" id="C2k-2P-bCY"/>
  999. </constraints>
  1000. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1001. </imageView>
  1002. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Creator name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NUe-Ut-5hr">
  1003. <rect key="frame" x="64" y="35.5" width="82.5" height="12"/>
  1004. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1005. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  1006. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1007. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1008. </label>
  1009. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9H6-Np-ifa">
  1010. <rect key="frame" x="290" y="31.5" width="69" height="16"/>
  1011. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1012. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  1013. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1014. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1015. </label>
  1016. </subviews>
  1017. <constraints>
  1018. <constraint firstItem="Efb-rW-izl" firstAttribute="leading" secondItem="AmC-vC-feO" secondAttribute="leadingMargin" id="0cT-6n-S8x"/>
  1019. <constraint firstItem="NUe-Ut-5hr" firstAttribute="leading" secondItem="Efb-rW-izl" secondAttribute="trailing" constant="8" id="0hr-mx-ibB"/>
  1020. <constraint firstAttribute="trailingMargin" secondItem="Y4G-EW-Gux" secondAttribute="trailing" id="294-lZ-3Gh"/>
  1021. <constraint firstItem="Efb-rW-izl" firstAttribute="top" relation="greaterThanOrEqual" secondItem="AmC-vC-feO" secondAttribute="top" constant="2" id="423-WF-XJQ"/>
  1022. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="Efb-rW-izl" secondAttribute="bottom" constant="2" id="5ZO-ee-hKb"/>
  1023. <constraint firstAttribute="bottomMargin" secondItem="NUe-Ut-5hr" secondAttribute="bottom" constant="1.5" id="6gX-o7-3bA"/>
  1024. <constraint firstItem="NUe-Ut-5hr" firstAttribute="bottom" secondItem="9H6-Np-ifa" secondAttribute="bottom" id="9N0-A7-wNH"/>
  1025. <constraint firstAttribute="trailingMargin" secondItem="9H6-Np-ifa" secondAttribute="trailing" id="FhY-9h-iQP"/>
  1026. <constraint firstItem="Y4G-EW-Gux" firstAttribute="leading" secondItem="Efb-rW-izl" secondAttribute="trailing" constant="8" id="NTP-NH-LiB"/>
  1027. <constraint firstItem="9H6-Np-ifa" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="NUe-Ut-5hr" secondAttribute="trailing" constant="8" symbolic="YES" id="TBO-aQ-58g"/>
  1028. <constraint firstItem="Efb-rW-izl" firstAttribute="leading" secondItem="AmC-vC-feO" secondAttribute="leadingMargin" id="WNh-pX-2pa"/>
  1029. <constraint firstItem="Y4G-EW-Gux" firstAttribute="top" secondItem="AmC-vC-feO" secondAttribute="topMargin" id="cUN-IC-E40"/>
  1030. <constraint firstItem="NUe-Ut-5hr" firstAttribute="top" secondItem="Y4G-EW-Gux" secondAttribute="bottom" constant="4" id="h1s-To-eLt"/>
  1031. <constraint firstItem="Efb-rW-izl" firstAttribute="centerY" secondItem="AmC-vC-feO" secondAttribute="centerY" id="pTo-wC-Mf7"/>
  1032. </constraints>
  1033. </tableViewCellContentView>
  1034. <connections>
  1035. <outlet property="avatarImage" destination="Efb-rW-izl" id="CK1-gh-Y3c"/>
  1036. <outlet property="countMembersLabel" destination="9H6-Np-ifa" id="NMF-fM-8Au"/>
  1037. <outlet property="creatorNameLabel" destination="NUe-Ut-5hr" id="hy2-s0-HJg"/>
  1038. <outlet property="nameLabel" destination="Y4G-EW-Gux" id="nPY-L4-bYr"/>
  1039. </connections>
  1040. </tableViewCell>
  1041. </prototypes>
  1042. <connections>
  1043. <outlet property="dataSource" destination="NM5-wF-syo" id="AZ8-ou-ky9"/>
  1044. <outlet property="delegate" destination="NM5-wF-syo" id="5L3-fm-JRE"/>
  1045. </connections>
  1046. </tableView>
  1047. </tableViewController>
  1048. <placeholder placeholderIdentifier="IBFirstResponder" id="cSz-CB-Ik8" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1049. </objects>
  1050. <point key="canvasLocation" x="3491.2000000000003" y="-313.04347826086962"/>
  1051. </scene>
  1052. <!--Edit Contact-->
  1053. <scene sceneID="VNo-4r-iGn">
  1054. <objects>
  1055. <tableViewController storyboardIdentifier="EditContactViewController" id="B4x-zQ-paX" customClass="EditContactViewController" sceneMemberID="viewController">
  1056. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="9B2-uJ-PYl">
  1057. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1058. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1059. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1060. <sections>
  1061. <tableViewSection id="bCA-fU-mLq">
  1062. <cells>
  1063. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="102" id="rfi-kc-yYx">
  1064. <rect key="frame" x="0.0" y="17.5" width="375" height="102"/>
  1065. <autoresizingMask key="autoresizingMask"/>
  1066. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rfi-kc-yYx" id="1Aq-Ag-ucy">
  1067. <rect key="frame" x="0.0" y="0.0" width="375" height="102"/>
  1068. <autoresizingMask key="autoresizingMask"/>
  1069. <subviews>
  1070. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zbC-wn-7Hd" customClass="EditableAvatarView">
  1071. <rect key="frame" x="16" y="9" width="84" height="84"/>
  1072. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1073. <constraints>
  1074. <constraint firstAttribute="width" constant="84" id="5vr-sb-vKG"/>
  1075. <constraint firstAttribute="height" constant="84" id="7Ms-40-wPC"/>
  1076. </constraints>
  1077. </view>
  1078. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4LU-0A-V3c">
  1079. <rect key="frame" x="110" y="26.5" width="249" height="49"/>
  1080. <subviews>
  1081. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Last name" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="wpY-cw-D2O">
  1082. <rect key="frame" x="0.0" y="27" width="249" height="22"/>
  1083. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1084. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1085. <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
  1086. </textField>
  1087. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="First name" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="uv8-Zw-8w0">
  1088. <rect key="frame" x="0.0" y="0.0" width="249" height="22"/>
  1089. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1090. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1091. <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
  1092. </textField>
  1093. </subviews>
  1094. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1095. <constraints>
  1096. <constraint firstAttribute="bottom" secondItem="wpY-cw-D2O" secondAttribute="bottom" id="1fJ-GW-xnl"/>
  1097. <constraint firstAttribute="trailing" secondItem="uv8-Zw-8w0" secondAttribute="trailing" id="3zO-pI-ynZ"/>
  1098. <constraint firstItem="wpY-cw-D2O" firstAttribute="leading" secondItem="4LU-0A-V3c" secondAttribute="leading" id="H0u-WG-PLe"/>
  1099. <constraint firstItem="uv8-Zw-8w0" firstAttribute="top" secondItem="4LU-0A-V3c" secondAttribute="top" id="JEV-28-C0H"/>
  1100. <constraint firstItem="wpY-cw-D2O" firstAttribute="top" secondItem="uv8-Zw-8w0" secondAttribute="bottom" constant="5" id="Nqm-hE-DvH"/>
  1101. <constraint firstItem="uv8-Zw-8w0" firstAttribute="leading" secondItem="4LU-0A-V3c" secondAttribute="leading" id="Xdm-wi-J9Y"/>
  1102. <constraint firstAttribute="trailing" secondItem="wpY-cw-D2O" secondAttribute="trailing" id="nmL-Ik-VAk"/>
  1103. </constraints>
  1104. </view>
  1105. </subviews>
  1106. <constraints>
  1107. <constraint firstAttribute="trailingMargin" secondItem="4LU-0A-V3c" secondAttribute="trailing" id="1nb-Qv-6gW"/>
  1108. <constraint firstItem="4LU-0A-V3c" firstAttribute="centerY" secondItem="1Aq-Ag-ucy" secondAttribute="centerY" id="FV9-p2-cL6"/>
  1109. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="zbC-wn-7Hd" secondAttribute="bottom" constant="9" id="HWE-z5-eh0"/>
  1110. <constraint firstItem="zbC-wn-7Hd" firstAttribute="leading" secondItem="1Aq-Ag-ucy" secondAttribute="leadingMargin" id="WMl-3z-6zQ"/>
  1111. <constraint firstItem="zbC-wn-7Hd" firstAttribute="top" relation="greaterThanOrEqual" secondItem="1Aq-Ag-ucy" secondAttribute="top" constant="9" id="imf-cd-3SI"/>
  1112. <constraint firstItem="4LU-0A-V3c" firstAttribute="leading" secondItem="zbC-wn-7Hd" secondAttribute="trailing" constant="10" id="t6d-Ex-dEk"/>
  1113. <constraint firstItem="zbC-wn-7Hd" firstAttribute="centerY" secondItem="1Aq-Ag-ucy" secondAttribute="centerY" id="x4V-7w-m1m"/>
  1114. </constraints>
  1115. </tableViewCellContentView>
  1116. </tableViewCell>
  1117. </cells>
  1118. </tableViewSection>
  1119. </sections>
  1120. <connections>
  1121. <outlet property="dataSource" destination="B4x-zQ-paX" id="emW-0o-qYZ"/>
  1122. <outlet property="delegate" destination="B4x-zQ-paX" id="w1S-2u-X36"/>
  1123. </connections>
  1124. </tableView>
  1125. <navigationItem key="navigationItem" title="Edit Contact" id="Leg-Pw-PQ8"/>
  1126. <connections>
  1127. <outlet property="avatarView" destination="zbC-wn-7Hd" id="RyT-AV-aEz"/>
  1128. <outlet property="firstNameTextField" destination="uv8-Zw-8w0" id="5Bd-rI-V3y"/>
  1129. <outlet property="lastNameTextField" destination="wpY-cw-D2O" id="khN-3B-geE"/>
  1130. </connections>
  1131. </tableViewController>
  1132. <placeholder placeholderIdentifier="IBFirstResponder" id="b8z-Hz-rif" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1133. </objects>
  1134. <point key="canvasLocation" x="4380" y="2766.5667166416792"/>
  1135. </scene>
  1136. <!--Choose contact-->
  1137. <scene sceneID="Ixe-lK-McQ">
  1138. <objects>
  1139. <viewController id="OvB-ud-WFO" customClass="ContactPickerViewController" sceneMemberID="viewController">
  1140. <view key="view" contentMode="scaleToFill" id="976-Ac-Msp">
  1141. <rect key="frame" x="0.0" y="0.0" width="375" height="623"/>
  1142. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1143. <subviews>
  1144. <tableView opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" 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="5iW-dy-4an">
  1145. <rect key="frame" x="0.0" y="0.0" width="375" height="623"/>
  1146. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1147. <prototypes>
  1148. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="fIg-c6-rDT" customClass="ContactCell">
  1149. <rect key="frame" x="0.0" y="28" width="375" height="60.5"/>
  1150. <autoresizingMask key="autoresizingMask"/>
  1151. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fIg-c6-rDT" id="ayi-jk-XZC">
  1152. <rect key="frame" x="0.0" y="0.0" width="375" height="60.5"/>
  1153. <autoresizingMask key="autoresizingMask"/>
  1154. <subviews>
  1155. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="3y7-fF-JLx">
  1156. <rect key="frame" x="16" y="10.5" width="40" height="40"/>
  1157. <constraints>
  1158. <constraint firstAttribute="width" constant="40" id="Glk-ZE-GoY"/>
  1159. <constraint firstAttribute="height" constant="40" id="LNn-ec-Mkm"/>
  1160. </constraints>
  1161. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1162. </imageView>
  1163. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="MacBook Office 10 7" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lrl-UM-94p" customClass="ContactNameLabel">
  1164. <rect key="frame" x="64" y="11" width="163.5" height="20.5"/>
  1165. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1166. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  1167. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1168. <nil key="highlightedColor"/>
  1169. </label>
  1170. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="lOu-si-XPC">
  1171. <rect key="frame" x="327" y="17.5" width="32" height="8"/>
  1172. <constraints>
  1173. <constraint firstAttribute="height" constant="8" id="Qqm-hx-ZeC"/>
  1174. <constraint firstAttribute="width" constant="32" id="jHn-tE-Gm7"/>
  1175. </constraints>
  1176. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1177. </imageView>
  1178. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tr2-Ia-imu" customClass="SSLabel">
  1179. <rect key="frame" x="64" y="31.5" width="60.5" height="16.5"/>
  1180. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  1181. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  1182. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1183. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1184. </label>
  1185. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" horizontalCompressionResistancePriority="753" text="IDENTITY" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NFg-lg-c4C">
  1186. <rect key="frame" x="308" y="34" width="51" height="14"/>
  1187. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1188. <fontDescription key="fontDescription" style="UICTFontTextStyleCaption2"/>
  1189. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1190. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1191. </label>
  1192. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="U20-ts-c3j">
  1193. <rect key="frame" x="16" y="36.5" width="14" height="14"/>
  1194. <constraints>
  1195. <constraint firstAttribute="width" constant="14" id="KNM-pk-klf"/>
  1196. <constraint firstAttribute="height" constant="14" id="e6r-Ul-1RL"/>
  1197. </constraints>
  1198. </imageView>
  1199. </subviews>
  1200. <constraints>
  1201. <constraint firstItem="3y7-fF-JLx" firstAttribute="centerY" secondItem="ayi-jk-XZC" secondAttribute="centerY" id="2Og-JH-fyj"/>
  1202. <constraint firstItem="tr2-Ia-imu" firstAttribute="top" secondItem="lrl-UM-94p" secondAttribute="bottom" id="55S-MT-oPo"/>
  1203. <constraint firstAttribute="bottomMargin" secondItem="tr2-Ia-imu" secondAttribute="bottom" constant="1.5" id="Fca-jw-iar"/>
  1204. <constraint firstItem="3y7-fF-JLx" firstAttribute="top" relation="greaterThanOrEqual" secondItem="ayi-jk-XZC" secondAttribute="top" constant="2" id="GFH-9S-QcV"/>
  1205. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="3y7-fF-JLx" secondAttribute="bottom" constant="2" id="I3r-UV-EYc"/>
  1206. <constraint firstItem="NFg-lg-c4C" firstAttribute="bottom" secondItem="tr2-Ia-imu" secondAttribute="bottom" id="LvN-rA-byN"/>
  1207. <constraint firstItem="U20-ts-c3j" firstAttribute="leading" secondItem="3y7-fF-JLx" secondAttribute="leading" id="RJl-gm-NDc"/>
  1208. <constraint firstItem="U20-ts-c3j" firstAttribute="bottom" secondItem="3y7-fF-JLx" secondAttribute="bottom" id="Rna-Cg-whS"/>
  1209. <constraint firstItem="lrl-UM-94p" firstAttribute="top" secondItem="ayi-jk-XZC" secondAttribute="topMargin" id="Sns-Xs-HZm"/>
  1210. <constraint firstItem="lOu-si-XPC" firstAttribute="centerY" secondItem="lrl-UM-94p" secondAttribute="centerY" id="Y9y-s0-dWd"/>
  1211. <constraint firstItem="NFg-lg-c4C" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="lrl-UM-94p" secondAttribute="trailing" constant="5" id="aDN-KL-If7"/>
  1212. <constraint firstItem="NFg-lg-c4C" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="tr2-Ia-imu" secondAttribute="trailing" constant="5" id="eEG-1A-f90"/>
  1213. <constraint firstItem="tr2-Ia-imu" firstAttribute="leading" secondItem="3y7-fF-JLx" secondAttribute="trailing" constant="8" id="fA3-bc-xU5"/>
  1214. <constraint firstItem="3y7-fF-JLx" firstAttribute="leading" secondItem="ayi-jk-XZC" secondAttribute="leadingMargin" id="hmk-CC-pBn"/>
  1215. <constraint firstItem="lOu-si-XPC" firstAttribute="trailing" secondItem="ayi-jk-XZC" secondAttribute="trailingMargin" id="j5v-lS-EQs"/>
  1216. <constraint firstItem="NFg-lg-c4C" firstAttribute="trailing" secondItem="ayi-jk-XZC" secondAttribute="trailingMargin" id="mLQ-36-i6u"/>
  1217. <constraint firstItem="lrl-UM-94p" firstAttribute="leading" secondItem="3y7-fF-JLx" secondAttribute="trailing" constant="8" id="xCq-7C-2uc"/>
  1218. </constraints>
  1219. </tableViewCellContentView>
  1220. <connections>
  1221. <outlet property="contactImage" destination="3y7-fF-JLx" id="43H-vD-Ohk"/>
  1222. <outlet property="identityLabel" destination="NFg-lg-c4C" id="Dqh-P2-sqB"/>
  1223. <outlet property="nameLabel" destination="lrl-UM-94p" id="nid-ek-C2D"/>
  1224. <outlet property="nicknameLabel" destination="tr2-Ia-imu" id="RN5-gF-vPC"/>
  1225. <outlet property="threemaTypeIcon" destination="U20-ts-c3j" id="Rsq-vu-i6S"/>
  1226. <outlet property="verificationLevel" destination="lOu-si-XPC" id="nlb-3F-7no"/>
  1227. </connections>
  1228. </tableViewCell>
  1229. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" id="ZbD-YV-ZCh" customClass="GroupCell">
  1230. <rect key="frame" x="0.0" y="88.5" width="375" height="64.5"/>
  1231. <autoresizingMask key="autoresizingMask"/>
  1232. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZbD-YV-ZCh" id="99g-HH-Dbc">
  1233. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  1234. <autoresizingMask key="autoresizingMask"/>
  1235. <subviews>
  1236. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VFn-jg-cfh">
  1237. <rect key="frame" x="64" y="11" width="295" height="20.5"/>
  1238. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1239. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  1240. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1241. <nil key="highlightedColor"/>
  1242. </label>
  1243. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group creator" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="FaC-iq-fy4">
  1244. <rect key="frame" x="64" y="35.5" width="84" height="16.5"/>
  1245. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1246. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  1247. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1248. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1249. </label>
  1250. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="tr3-GZ-bGs">
  1251. <rect key="frame" x="16" y="12.5" width="40" height="40"/>
  1252. <constraints>
  1253. <constraint firstAttribute="height" constant="40" id="pPQ-K4-Rrn"/>
  1254. <constraint firstAttribute="width" constant="40" id="t5x-3u-Uwp"/>
  1255. </constraints>
  1256. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1257. </imageView>
  1258. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pk3-Z5-GK7">
  1259. <rect key="frame" x="290" y="36" width="69" height="16"/>
  1260. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1261. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  1262. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1263. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1264. </label>
  1265. </subviews>
  1266. <constraints>
  1267. <constraint firstItem="tr3-GZ-bGs" firstAttribute="centerY" secondItem="99g-HH-Dbc" secondAttribute="centerY" id="3KA-8G-A8V"/>
  1268. <constraint firstItem="VFn-jg-cfh" firstAttribute="leading" secondItem="tr3-GZ-bGs" secondAttribute="trailing" constant="8" id="89J-8c-SCY"/>
  1269. <constraint firstItem="tr3-GZ-bGs" firstAttribute="top" relation="greaterThanOrEqual" secondItem="99g-HH-Dbc" secondAttribute="top" constant="2" id="8ME-cf-hoP"/>
  1270. <constraint firstAttribute="bottomMargin" secondItem="FaC-iq-fy4" secondAttribute="bottom" constant="1.5" id="CeB-r0-N1V"/>
  1271. <constraint firstItem="tr3-GZ-bGs" firstAttribute="leading" secondItem="99g-HH-Dbc" secondAttribute="leadingMargin" id="EQm-Bi-Nwf"/>
  1272. <constraint firstItem="FaC-iq-fy4" firstAttribute="top" secondItem="VFn-jg-cfh" secondAttribute="bottom" constant="4" id="IcH-Ry-SQ9"/>
  1273. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="tr3-GZ-bGs" secondAttribute="bottom" constant="2" id="Nww-dX-cp3"/>
  1274. <constraint firstItem="pk3-Z5-GK7" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="FaC-iq-fy4" secondAttribute="trailing" constant="8" symbolic="YES" id="P7Y-Om-tni"/>
  1275. <constraint firstAttribute="trailingMargin" secondItem="pk3-Z5-GK7" secondAttribute="trailing" id="WOL-bz-0S3"/>
  1276. <constraint firstAttribute="trailingMargin" secondItem="VFn-jg-cfh" secondAttribute="trailing" id="aL7-rc-Sb8"/>
  1277. <constraint firstItem="tr3-GZ-bGs" firstAttribute="leading" secondItem="99g-HH-Dbc" secondAttribute="leadingMargin" id="dQf-O7-1jI"/>
  1278. <constraint firstItem="VFn-jg-cfh" firstAttribute="top" secondItem="99g-HH-Dbc" secondAttribute="topMargin" id="pgV-OF-aJN"/>
  1279. <constraint firstItem="FaC-iq-fy4" firstAttribute="bottom" secondItem="pk3-Z5-GK7" secondAttribute="bottom" id="qBn-wy-b6E"/>
  1280. <constraint firstItem="FaC-iq-fy4" firstAttribute="leading" secondItem="tr3-GZ-bGs" secondAttribute="trailing" constant="8" id="w1T-ua-OGE"/>
  1281. </constraints>
  1282. </tableViewCellContentView>
  1283. <connections>
  1284. <outlet property="countMemberLabel" destination="pk3-Z5-GK7" id="1YU-g3-fA5"/>
  1285. <outlet property="creatorLabel" destination="FaC-iq-fy4" id="dd5-hP-e6J"/>
  1286. <outlet property="groupImage" destination="tr3-GZ-bGs" id="5YH-7b-L6T"/>
  1287. <outlet property="groupNameLabel" destination="VFn-jg-cfh" id="jVD-Xn-cTq"/>
  1288. </connections>
  1289. </tableViewCell>
  1290. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="CreateGroupCell" textLabel="JLU-Sq-XK3" style="IBUITableViewCellStyleDefault" id="lMr-gE-rGs" customClass="CreateGroupCell">
  1291. <rect key="frame" x="0.0" y="153" width="375" height="49.5"/>
  1292. <autoresizingMask key="autoresizingMask"/>
  1293. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="lMr-gE-rGs" id="j69-lB-yrj">
  1294. <rect key="frame" x="0.0" y="0.0" width="375" height="49.5"/>
  1295. <autoresizingMask key="autoresizingMask"/>
  1296. <subviews>
  1297. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Create new group" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="JLU-Sq-XK3">
  1298. <rect key="frame" x="16" y="0.0" width="343" height="49.5"/>
  1299. <autoresizingMask key="autoresizingMask"/>
  1300. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
  1301. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1302. <nil key="highlightedColor"/>
  1303. </label>
  1304. </subviews>
  1305. </tableViewCellContentView>
  1306. <connections>
  1307. <outlet property="titleLabel" destination="JLU-Sq-XK3" id="uHF-On-9bL"/>
  1308. </connections>
  1309. </tableViewCell>
  1310. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CompanyDirectoryCell" rowHeight="60" id="xWj-eT-KEf" customClass="CompanyDirectoryCell" customModule="Threema" customModuleProvider="target">
  1311. <rect key="frame" x="0.0" y="202.5" width="375" height="60"/>
  1312. <autoresizingMask key="autoresizingMask"/>
  1313. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xWj-eT-KEf" id="OpJ-ps-QHm">
  1314. <rect key="frame" x="0.0" y="0.0" width="348" height="60"/>
  1315. <autoresizingMask key="autoresizingMask"/>
  1316. <subviews>
  1317. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="Asterisk" translatesAutoresizingMaskIntoConstraints="NO" id="w7r-l5-58G">
  1318. <rect key="frame" x="16" y="10" width="40" height="40"/>
  1319. <constraints>
  1320. <constraint firstAttribute="height" constant="40" id="OAe-aJ-T9j"/>
  1321. <constraint firstAttribute="width" constant="40" id="f4T-ct-zOY"/>
  1322. </constraints>
  1323. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1324. </imageView>
  1325. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Company Directory" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="akQ-gG-9WP" customClass="ContactNameLabel">
  1326. <rect key="frame" x="64" y="11" width="154" height="20.5"/>
  1327. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1328. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  1329. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1330. <nil key="highlightedColor"/>
  1331. </label>
  1332. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Search for employees" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YKn-tL-59L" customClass="SSLabel">
  1333. <rect key="frame" x="64" y="31.5" width="131.5" height="16"/>
  1334. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  1335. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  1336. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1337. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1338. </label>
  1339. </subviews>
  1340. <constraints>
  1341. <constraint firstItem="w7r-l5-58G" firstAttribute="centerY" secondItem="OpJ-ps-QHm" secondAttribute="centerY" id="0uA-yx-SPt"/>
  1342. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="w7r-l5-58G" secondAttribute="bottom" constant="2" id="1A9-XC-0LK"/>
  1343. <constraint firstItem="akQ-gG-9WP" firstAttribute="top" secondItem="OpJ-ps-QHm" secondAttribute="topMargin" id="4bS-TQ-GOe"/>
  1344. <constraint firstAttribute="bottomMargin" secondItem="YKn-tL-59L" secondAttribute="bottom" constant="1.5" id="9LY-zO-Nc7"/>
  1345. <constraint firstItem="akQ-gG-9WP" firstAttribute="leading" secondItem="w7r-l5-58G" secondAttribute="trailing" constant="8" id="B79-5m-5vG"/>
  1346. <constraint firstItem="YKn-tL-59L" firstAttribute="top" secondItem="akQ-gG-9WP" secondAttribute="bottom" id="Gkz-jv-fk7"/>
  1347. <constraint firstItem="YKn-tL-59L" firstAttribute="leading" secondItem="w7r-l5-58G" secondAttribute="trailing" constant="8" id="Sui-0U-e9t"/>
  1348. <constraint firstItem="w7r-l5-58G" firstAttribute="top" relation="greaterThanOrEqual" secondItem="OpJ-ps-QHm" secondAttribute="top" constant="2" id="p3n-q9-mig"/>
  1349. <constraint firstItem="w7r-l5-58G" firstAttribute="leading" secondItem="OpJ-ps-QHm" secondAttribute="leadingMargin" id="pYS-OF-mGg"/>
  1350. </constraints>
  1351. </tableViewCellContentView>
  1352. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  1353. <connections>
  1354. <outlet property="companyAvatar" destination="w7r-l5-58G" id="ZkY-kz-clc"/>
  1355. <outlet property="descriptionLabel" destination="YKn-tL-59L" id="XMj-yM-6SA"/>
  1356. <outlet property="titleLabel" destination="akQ-gG-9WP" id="Ybk-dZ-mB3"/>
  1357. </connections>
  1358. </tableViewCell>
  1359. </prototypes>
  1360. <connections>
  1361. <outlet property="dataSource" destination="OvB-ud-WFO" id="3bF-1n-nf4"/>
  1362. <outlet property="delegate" destination="OvB-ud-WFO" id="IGI-aC-z3S"/>
  1363. </connections>
  1364. </tableView>
  1365. </subviews>
  1366. <viewLayoutGuide key="safeArea" id="EDR-v1-M6d"/>
  1367. <constraints>
  1368. <constraint firstItem="5iW-dy-4an" firstAttribute="leading" secondItem="EDR-v1-M6d" secondAttribute="leading" id="3fj-Lf-dsC"/>
  1369. <constraint firstItem="5iW-dy-4an" firstAttribute="bottom" secondItem="EDR-v1-M6d" secondAttribute="bottom" id="9Hs-uS-bWY"/>
  1370. <constraint firstItem="5iW-dy-4an" firstAttribute="top" secondItem="EDR-v1-M6d" secondAttribute="top" id="K23-gB-JnG"/>
  1371. <constraint firstItem="5iW-dy-4an" firstAttribute="trailing" secondItem="EDR-v1-M6d" secondAttribute="trailing" id="tlD-Bz-st2"/>
  1372. </constraints>
  1373. </view>
  1374. <extendedEdge key="edgesForExtendedLayout"/>
  1375. <navigationItem key="navigationItem" title="Choose contact" id="cNq-Pt-Uma">
  1376. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="j0Z-qX-yv0">
  1377. <connections>
  1378. <action selector="cancelAction:" destination="OvB-ud-WFO" id="ekI-B1-O1R"/>
  1379. </connections>
  1380. </barButtonItem>
  1381. <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="9mW-FX-ba3">
  1382. <rect key="frame" x="107" y="6" width="161" height="32"/>
  1383. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1384. <segments>
  1385. <segment title="" image="Contact"/>
  1386. <segment title="" image="Group"/>
  1387. </segments>
  1388. <connections>
  1389. <action selector="segmentedControlChanged:" destination="OvB-ud-WFO" eventType="valueChanged" id="4yc-4d-osa"/>
  1390. </connections>
  1391. </segmentedControl>
  1392. <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="ddH-MT-HLn"/>
  1393. </navigationItem>
  1394. <connections>
  1395. <outlet property="segmentedControl" destination="9mW-FX-ba3" id="lyQ-bl-hSC"/>
  1396. <outlet property="tableView" destination="5iW-dy-4an" id="u72-fo-6AJ"/>
  1397. </connections>
  1398. </viewController>
  1399. <placeholder placeholderIdentifier="IBFirstResponder" id="mXW-PO-p2r" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1400. </objects>
  1401. <point key="canvasLocation" x="3494" y="2069"/>
  1402. </scene>
  1403. <!--Messages-->
  1404. <scene sceneID="JMs-VF-NWu">
  1405. <objects>
  1406. <navigationController storyboardIdentifier="chatNavigationController" id="4Fs-j8-Z1S" customClass="ChatNavigationController" sceneMemberID="viewController">
  1407. <tabBarItem key="tabBarItem" title="Messages" image="TabBar-Chats" id="nZg-gf-uED"/>
  1408. <toolbarItems/>
  1409. <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="3xP-bT-Tja" customClass="StatusNavigationBar">
  1410. <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
  1411. <autoresizingMask key="autoresizingMask"/>
  1412. </navigationBar>
  1413. <nil name="viewControllers"/>
  1414. <connections>
  1415. <segue destination="Kji-Zw-ER6" kind="relationship" relationship="rootViewController" id="6Jn-Ta-Ldg"/>
  1416. </connections>
  1417. </navigationController>
  1418. <placeholder placeholderIdentifier="IBFirstResponder" id="n2J-3l-9bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1419. </objects>
  1420. <point key="canvasLocation" x="-2785.6000000000004" y="417.39130434782612"/>
  1421. </scene>
  1422. <!--New Contact-->
  1423. <scene sceneID="VLu-R9-fjo">
  1424. <objects>
  1425. <tableViewController id="bcN-Ct-OaD" customClass="NewScannedContactViewController" sceneMemberID="viewController">
  1426. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="Bmo-Py-2FX">
  1427. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1428. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1429. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1430. <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="mDw-g7-tCz">
  1431. <rect key="frame" x="0.0" y="0.0" width="375" height="275"/>
  1432. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1433. <subviews>
  1434. <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="vpD-bR-GcW">
  1435. <rect key="frame" x="16" y="16" width="343" height="243"/>
  1436. <subviews>
  1437. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="tQ5-LZ-OQX">
  1438. <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
  1439. <subviews>
  1440. <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="ViT-nH-bX9">
  1441. <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
  1442. <constraints>
  1443. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="ETf-AX-E6V"/>
  1444. <constraint firstAttribute="width" constant="200" id="Pss-OC-Dod"/>
  1445. <constraint firstAttribute="width" secondItem="ViT-nH-bX9" secondAttribute="height" multiplier="1:1" id="o3G-d3-75T"/>
  1446. </constraints>
  1447. </imageView>
  1448. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="18I-qp-Ree">
  1449. <rect key="frame" x="0.0" y="150" width="50" height="50"/>
  1450. <constraints>
  1451. <constraint firstAttribute="width" secondItem="18I-qp-Ree" secondAttribute="height" multiplier="1:1" id="xsW-9D-muL"/>
  1452. </constraints>
  1453. </imageView>
  1454. </subviews>
  1455. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1456. <constraints>
  1457. <constraint firstAttribute="trailing" secondItem="ViT-nH-bX9" secondAttribute="trailing" id="7GN-vN-s2r"/>
  1458. <constraint firstItem="18I-qp-Ree" firstAttribute="width" secondItem="ViT-nH-bX9" secondAttribute="height" multiplier="1:4" id="9hI-6U-qcz"/>
  1459. <constraint firstItem="ViT-nH-bX9" firstAttribute="top" secondItem="tQ5-LZ-OQX" secondAttribute="top" id="Rhe-4i-sFH"/>
  1460. <constraint firstAttribute="bottom" secondItem="ViT-nH-bX9" secondAttribute="bottom" id="UwJ-AP-3Lm"/>
  1461. <constraint firstItem="18I-qp-Ree" firstAttribute="bottom" secondItem="ViT-nH-bX9" secondAttribute="bottom" id="aTe-Xf-1Fw"/>
  1462. <constraint firstItem="18I-qp-Ree" firstAttribute="leading" secondItem="ViT-nH-bX9" secondAttribute="leading" id="dI3-9f-J6o"/>
  1463. <constraint firstItem="ViT-nH-bX9" firstAttribute="leading" secondItem="tQ5-LZ-OQX" secondAttribute="leading" id="kzf-vJ-aZ5"/>
  1464. </constraints>
  1465. </view>
  1466. <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="G98-du-wlx">
  1467. <rect key="frame" x="118" y="221" width="107.5" height="22"/>
  1468. <subviews>
  1469. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k43-1S-VjC">
  1470. <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
  1471. <constraints>
  1472. <constraint firstAttribute="height" constant="22" id="AGA-dV-0J5"/>
  1473. </constraints>
  1474. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
  1475. <nil key="highlightedColor"/>
  1476. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1477. <size key="shadowOffset" width="0.0" height="1"/>
  1478. </label>
  1479. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9Rd-Zb-XJ8">
  1480. <rect key="frame" x="85.5" y="0.0" width="22" height="22"/>
  1481. <state key="normal" image="Edit"/>
  1482. <connections>
  1483. <action selector="editContact:" destination="bcN-Ct-OaD" eventType="touchUpInside" id="zb1-hL-Vct"/>
  1484. </connections>
  1485. </button>
  1486. </subviews>
  1487. </stackView>
  1488. </subviews>
  1489. </stackView>
  1490. </subviews>
  1491. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1492. <constraints>
  1493. <constraint firstItem="vpD-bR-GcW" firstAttribute="top" secondItem="mDw-g7-tCz" secondAttribute="top" constant="16" id="E5X-Ve-iHV"/>
  1494. <constraint firstAttribute="trailing" secondItem="vpD-bR-GcW" secondAttribute="trailing" constant="16" id="MGE-96-zEX"/>
  1495. <constraint firstAttribute="bottom" secondItem="vpD-bR-GcW" secondAttribute="bottom" constant="16" id="Sgy-NI-YfV"/>
  1496. <constraint firstItem="vpD-bR-GcW" firstAttribute="leading" secondItem="mDw-g7-tCz" secondAttribute="leading" constant="16" id="erj-Eo-nfR"/>
  1497. </constraints>
  1498. </view>
  1499. <sections>
  1500. <tableViewSection id="hid-mP-yqG">
  1501. <cells>
  1502. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="3zz-BI-IiZ" detailTextLabel="6GC-h6-PJ3" style="IBUITableViewCellStyleValue1" id="Cdn-Kp-IS7">
  1503. <rect key="frame" x="0.0" y="292.5" width="375" height="44"/>
  1504. <autoresizingMask key="autoresizingMask"/>
  1505. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cdn-Kp-IS7" id="hLi-10-QMB">
  1506. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1507. <autoresizingMask key="autoresizingMask"/>
  1508. <subviews>
  1509. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="3zz-BI-IiZ">
  1510. <rect key="frame" x="16" y="12" width="88" height="20.5"/>
  1511. <autoresizingMask key="autoresizingMask"/>
  1512. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1513. <nil key="textColor"/>
  1514. <nil key="highlightedColor"/>
  1515. </label>
  1516. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="6GC-h6-PJ3" customClass="CopyLabel">
  1517. <rect key="frame" x="270" y="12" width="89" height="20.5"/>
  1518. <autoresizingMask key="autoresizingMask"/>
  1519. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1520. <nil key="textColor"/>
  1521. <nil key="highlightedColor"/>
  1522. </label>
  1523. </subviews>
  1524. </tableViewCellContentView>
  1525. </tableViewCell>
  1526. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="Gxf-cF-d4l" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
  1527. <rect key="frame" x="0.0" y="336.5" width="375" height="44"/>
  1528. <autoresizingMask key="autoresizingMask"/>
  1529. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Gxf-cF-d4l" id="uEj-ph-AJF">
  1530. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1531. <autoresizingMask key="autoresizingMask"/>
  1532. <subviews>
  1533. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3r3-TQ-lzw">
  1534. <rect key="frame" x="16" y="14" width="343" height="14"/>
  1535. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1536. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1537. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1538. <nil key="highlightedColor"/>
  1539. </label>
  1540. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sVW-vw-h0n" customClass="CopyLabel">
  1541. <rect key="frame" x="16" y="30" width="343" height="0.0"/>
  1542. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1543. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  1544. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1545. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1546. </label>
  1547. </subviews>
  1548. <constraints>
  1549. <constraint firstAttribute="trailingMargin" secondItem="sVW-vw-h0n" secondAttribute="trailing" id="4P1-ST-xvV"/>
  1550. <constraint firstItem="3r3-TQ-lzw" firstAttribute="top" secondItem="uEj-ph-AJF" secondAttribute="topMargin" constant="3" id="812-Yv-Uua"/>
  1551. <constraint firstItem="sVW-vw-h0n" firstAttribute="top" secondItem="3r3-TQ-lzw" secondAttribute="bottom" constant="2" id="BUv-OK-phK"/>
  1552. <constraint firstItem="sVW-vw-h0n" firstAttribute="leading" secondItem="uEj-ph-AJF" secondAttribute="leadingMargin" id="Gd3-Lh-QFU"/>
  1553. <constraint firstItem="3r3-TQ-lzw" firstAttribute="leading" secondItem="uEj-ph-AJF" secondAttribute="leadingMargin" id="UPW-XZ-Zfn"/>
  1554. <constraint firstAttribute="bottomMargin" secondItem="sVW-vw-h0n" secondAttribute="bottom" constant="3" id="oIz-G2-Vby"/>
  1555. <constraint firstAttribute="trailingMargin" secondItem="3r3-TQ-lzw" secondAttribute="trailing" id="xGb-3f-7oC"/>
  1556. </constraints>
  1557. </tableViewCellContentView>
  1558. <connections>
  1559. <outlet property="fingerprintLabel" destination="3r3-TQ-lzw" id="A9g-7K-lNN"/>
  1560. <outlet property="fingerprintValueLabel" destination="sVW-vw-h0n" id="4Pd-BK-zw6"/>
  1561. </connections>
  1562. </tableViewCell>
  1563. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="VerificationLevelCell" textLabel="LID-K1-9a6" style="IBUITableViewCellStyleDefault" id="fkw-wz-RH1" customClass="VerificationLevelCell" customModule="Threema" customModuleProvider="target">
  1564. <rect key="frame" x="0.0" y="380.5" width="375" height="44"/>
  1565. <autoresizingMask key="autoresizingMask"/>
  1566. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="fkw-wz-RH1" id="nTN-Wd-vvJ">
  1567. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1568. <autoresizingMask key="autoresizingMask"/>
  1569. <subviews>
  1570. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Verification Level" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="LID-K1-9a6">
  1571. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1572. <autoresizingMask key="autoresizingMask"/>
  1573. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1574. <nil key="textColor"/>
  1575. <nil key="highlightedColor"/>
  1576. </label>
  1577. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="Wio-t3-LqW">
  1578. <rect key="frame" x="163" y="17" width="49" height="11"/>
  1579. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1580. </imageView>
  1581. </subviews>
  1582. </tableViewCellContentView>
  1583. <connections>
  1584. <outlet property="accessoryView" destination="Wio-t3-LqW" id="SwF-yM-rE0"/>
  1585. <outlet property="levelImage" destination="Wio-t3-LqW" id="fqM-XR-HY0"/>
  1586. <outlet property="titleLabel" destination="LID-K1-9a6" id="rKE-hc-Kwb"/>
  1587. </connections>
  1588. </tableViewCell>
  1589. </cells>
  1590. </tableViewSection>
  1591. <tableViewSection id="kqn-ag-dj2">
  1592. <cells>
  1593. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="AhW-Jk-Nhy" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
  1594. <rect key="frame" x="0.0" y="459.5" width="375" height="44"/>
  1595. <autoresizingMask key="autoresizingMask"/>
  1596. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="AhW-Jk-Nhy" id="rSz-Du-HpX">
  1597. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1598. <autoresizingMask key="autoresizingMask"/>
  1599. <subviews>
  1600. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SendMessage" translatesAutoresizingMaskIntoConstraints="NO" id="vIQ-dZ-fF3">
  1601. <rect key="frame" x="16" y="11" width="24" height="22"/>
  1602. <constraints>
  1603. <constraint firstAttribute="height" constant="22" id="DxM-Fi-rTx"/>
  1604. <constraint firstAttribute="width" constant="24" id="Kcn-4t-fHp"/>
  1605. </constraints>
  1606. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1607. </imageView>
  1608. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Send Message" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oGf-Sp-Z3O">
  1609. <rect key="frame" x="56" y="11.5" width="303" height="21"/>
  1610. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1611. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1612. <nil key="highlightedColor"/>
  1613. </label>
  1614. </subviews>
  1615. <constraints>
  1616. <constraint firstItem="vIQ-dZ-fF3" firstAttribute="centerY" secondItem="rSz-Du-HpX" secondAttribute="centerY" id="5N3-39-Fps"/>
  1617. <constraint firstItem="vIQ-dZ-fF3" firstAttribute="leading" secondItem="rSz-Du-HpX" secondAttribute="leadingMargin" id="Dh7-uX-3LK"/>
  1618. <constraint firstAttribute="trailingMargin" secondItem="oGf-Sp-Z3O" secondAttribute="trailing" id="VQt-f5-gYs"/>
  1619. <constraint firstItem="oGf-Sp-Z3O" firstAttribute="leading" secondItem="vIQ-dZ-fF3" secondAttribute="trailing" constant="16" id="hvE-dh-sOS"/>
  1620. <constraint firstItem="oGf-Sp-Z3O" firstAttribute="centerY" secondItem="rSz-Du-HpX" secondAttribute="centerY" id="wDM-7p-hVR"/>
  1621. </constraints>
  1622. </tableViewCellContentView>
  1623. <connections>
  1624. <outlet property="sendMessageImageView" destination="vIQ-dZ-fF3" id="rI8-0L-4IK"/>
  1625. <outlet property="sendMessageLabel" destination="oGf-Sp-Z3O" id="uhn-FF-qaI"/>
  1626. </connections>
  1627. </tableViewCell>
  1628. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaCallCell" id="EyO-a3-ItH" customClass="ContactThreemaCallCell" customModule="Threema" customModuleProvider="target">
  1629. <rect key="frame" x="0.0" y="503.5" width="375" height="44"/>
  1630. <autoresizingMask key="autoresizingMask"/>
  1631. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="EyO-a3-ItH" id="pQ2-zx-K5T">
  1632. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1633. <autoresizingMask key="autoresizingMask"/>
  1634. <subviews>
  1635. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Threema Call" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zj8-Bo-VYE">
  1636. <rect key="frame" x="56" y="11.5" width="303" height="21"/>
  1637. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1638. <nil key="textColor"/>
  1639. <nil key="highlightedColor"/>
  1640. </label>
  1641. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaPhone" translatesAutoresizingMaskIntoConstraints="NO" id="6x7-qd-ShZ">
  1642. <rect key="frame" x="16" y="9.5" width="25" height="25"/>
  1643. <constraints>
  1644. <constraint firstAttribute="height" constant="25" id="QxN-r5-4kJ"/>
  1645. <constraint firstAttribute="width" constant="25" id="Uew-Qh-oPl"/>
  1646. </constraints>
  1647. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1648. </imageView>
  1649. </subviews>
  1650. <constraints>
  1651. <constraint firstAttribute="trailingMargin" secondItem="zj8-Bo-VYE" secondAttribute="trailing" id="1YO-hX-QQb"/>
  1652. <constraint firstItem="zj8-Bo-VYE" firstAttribute="centerY" secondItem="pQ2-zx-K5T" secondAttribute="centerY" id="GZ6-hm-rz8"/>
  1653. <constraint firstItem="6x7-qd-ShZ" firstAttribute="centerY" secondItem="pQ2-zx-K5T" secondAttribute="centerY" id="QMe-oK-fds"/>
  1654. <constraint firstItem="6x7-qd-ShZ" firstAttribute="leading" secondItem="pQ2-zx-K5T" secondAttribute="leadingMargin" id="swE-yK-Cje"/>
  1655. <constraint firstItem="zj8-Bo-VYE" firstAttribute="leading" secondItem="6x7-qd-ShZ" secondAttribute="trailing" constant="15" id="zx5-Z7-GNZ"/>
  1656. </constraints>
  1657. </tableViewCellContentView>
  1658. <connections>
  1659. <outlet property="threemaCallImageView" destination="6x7-qd-ShZ" id="y8l-0u-eEy"/>
  1660. <outlet property="threemaCallLabel" destination="zj8-Bo-VYE" id="M88-Pc-Fow"/>
  1661. </connections>
  1662. </tableViewCell>
  1663. </cells>
  1664. </tableViewSection>
  1665. <tableViewSection id="CWO-cs-viZ">
  1666. <cells>
  1667. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="eOy-rx-zHg">
  1668. <rect key="frame" x="0.0" y="582.5" width="375" height="44"/>
  1669. <autoresizingMask key="autoresizingMask"/>
  1670. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="eOy-rx-zHg" id="DXX-JY-KD5">
  1671. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1672. <autoresizingMask key="autoresizingMask"/>
  1673. <subviews>
  1674. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Link to Contact" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="otC-iO-wzt">
  1675. <rect key="frame" x="16" y="11" width="324" height="0.0"/>
  1676. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1677. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1678. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1679. <nil key="highlightedColor"/>
  1680. </label>
  1681. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iJa-K2-2uc">
  1682. <rect key="frame" x="16" y="18" width="324" height="15"/>
  1683. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1684. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  1685. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1686. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1687. </label>
  1688. </subviews>
  1689. <constraints>
  1690. <constraint firstItem="iJa-K2-2uc" firstAttribute="top" secondItem="otC-iO-wzt" secondAttribute="bottom" constant="7" id="8Y9-zy-Vv7"/>
  1691. <constraint firstAttribute="bottomMargin" secondItem="iJa-K2-2uc" secondAttribute="bottom" id="Bis-6l-IH6"/>
  1692. <constraint firstItem="otC-iO-wzt" firstAttribute="top" secondItem="DXX-JY-KD5" secondAttribute="topMargin" id="Hen-dR-Lt6"/>
  1693. <constraint firstItem="otC-iO-wzt" firstAttribute="leading" secondItem="DXX-JY-KD5" secondAttribute="leadingMargin" id="WKW-vz-S2M"/>
  1694. <constraint firstItem="iJa-K2-2uc" firstAttribute="leading" secondItem="DXX-JY-KD5" secondAttribute="leadingMargin" id="vdd-WK-Ckg"/>
  1695. <constraint firstAttribute="trailingMargin" secondItem="otC-iO-wzt" secondAttribute="trailing" id="vt8-gi-3Mh"/>
  1696. <constraint firstAttribute="trailingMargin" secondItem="iJa-K2-2uc" secondAttribute="trailing" id="yZV-Ka-haU"/>
  1697. </constraints>
  1698. </tableViewCellContentView>
  1699. </tableViewCell>
  1700. </cells>
  1701. </tableViewSection>
  1702. </sections>
  1703. <connections>
  1704. <outlet property="dataSource" destination="bcN-Ct-OaD" id="ipn-iV-5Ib"/>
  1705. <outlet property="delegate" destination="bcN-Ct-OaD" id="EUy-ek-oeQ"/>
  1706. </connections>
  1707. </tableView>
  1708. <navigationItem key="navigationItem" title="New Contact" id="BAB-op-TwI">
  1709. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="azp-gT-Imw">
  1710. <connections>
  1711. <action selector="cancel:" destination="bcN-Ct-OaD" id="LV1-iu-ccE"/>
  1712. </connections>
  1713. </barButtonItem>
  1714. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="yh8-Dg-I1o">
  1715. <connections>
  1716. <action selector="save:" destination="bcN-Ct-OaD" id="YqD-KL-VXp"/>
  1717. </connections>
  1718. </barButtonItem>
  1719. </navigationItem>
  1720. <connections>
  1721. <outlet property="contactImage" destination="ViT-nH-bX9" id="eLd-ay-1Fg"/>
  1722. <outlet property="editNameButton" destination="9Rd-Zb-XJ8" id="g1c-T8-14D"/>
  1723. <outlet property="headerView" destination="mDw-g7-tCz" id="Xr3-xg-YZ8"/>
  1724. <outlet property="identityLabel" destination="6GC-h6-PJ3" id="NhF-vn-TGH"/>
  1725. <outlet property="keyFingerprintCell" destination="Gxf-cF-d4l" id="mu6-BN-IHP"/>
  1726. <outlet property="linkToContactCell" destination="eOy-rx-zHg" id="Yrp-YK-4fH"/>
  1727. <outlet property="linkedContactNameLabel" destination="iJa-K2-2uc" id="ggG-bA-XqH"/>
  1728. <outlet property="nameLabel" destination="k43-1S-VjC" id="NuN-mh-eLg"/>
  1729. <outlet property="sendMessageCell" destination="AhW-Jk-Nhy" id="ovb-BL-HV7"/>
  1730. <outlet property="sendMessageLabel" destination="oGf-Sp-Z3O" id="Xae-CE-oFt"/>
  1731. <outlet property="threemaCallCell" destination="EyO-a3-ItH" id="ct3-q3-n6P"/>
  1732. <outlet property="threemaCallLabel" destination="zj8-Bo-VYE" id="tf8-YF-hkI"/>
  1733. <outlet property="threemaTypeIcon" destination="18I-qp-Ree" id="4pm-H4-Ahe"/>
  1734. <outlet property="verificationLevelCell" destination="fkw-wz-RH1" id="dc4-zY-pOr"/>
  1735. </connections>
  1736. </tableViewController>
  1737. <placeholder placeholderIdentifier="IBFirstResponder" id="jtL-yP-Df5" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1738. </objects>
  1739. <point key="canvasLocation" x="3497" y="2812"/>
  1740. </scene>
  1741. <!--Group details-->
  1742. <scene sceneID="0Bo-NM-iRc">
  1743. <objects>
  1744. <tableViewController storyboardIdentifier="groupDetailsViewController" id="Ms8-he-mHa" customClass="GroupDetailsViewController" sceneMemberID="viewController">
  1745. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="jYd-6J-1Qe">
  1746. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1747. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1748. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1749. <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="bzV-0r-R3g">
  1750. <rect key="frame" x="0.0" y="0.0" width="375" height="277"/>
  1751. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1752. <subviews>
  1753. <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="jfD-uD-K9p">
  1754. <rect key="frame" x="16" y="16" width="343" height="261"/>
  1755. <subviews>
  1756. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hzi-zD-BuJ">
  1757. <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
  1758. <subviews>
  1759. <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="Tvp-rg-Bl2">
  1760. <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
  1761. <constraints>
  1762. <constraint firstAttribute="width" constant="200" id="31b-iJ-aJm"/>
  1763. <constraint firstAttribute="width" secondItem="Tvp-rg-Bl2" secondAttribute="height" multiplier="1:1" id="P7D-49-I18"/>
  1764. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="fOL-71-gJe"/>
  1765. </constraints>
  1766. </imageView>
  1767. </subviews>
  1768. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1769. <constraints>
  1770. <constraint firstItem="Tvp-rg-Bl2" firstAttribute="top" secondItem="hzi-zD-BuJ" secondAttribute="top" id="1PF-Hb-zPY"/>
  1771. <constraint firstItem="Tvp-rg-Bl2" firstAttribute="leading" secondItem="hzi-zD-BuJ" secondAttribute="leading" id="471-zK-kLc"/>
  1772. <constraint firstAttribute="trailing" secondItem="Tvp-rg-Bl2" secondAttribute="trailing" id="ajP-y4-67V"/>
  1773. <constraint firstAttribute="bottom" secondItem="Tvp-rg-Bl2" secondAttribute="bottom" id="yAz-HR-S8e"/>
  1774. </constraints>
  1775. </view>
  1776. <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="D9Z-ff-dlU">
  1777. <rect key="frame" x="102.5" y="210" width="138" height="25"/>
  1778. <subviews>
  1779. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6W1-LE-5ka" userLabel="Group Name">
  1780. <rect key="frame" x="0.0" y="0.0" width="111" height="25"/>
  1781. <constraints>
  1782. <constraint firstAttribute="height" constant="25" id="le5-G7-D5a"/>
  1783. </constraints>
  1784. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
  1785. <nil key="highlightedColor"/>
  1786. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1787. <size key="shadowOffset" width="0.0" height="1"/>
  1788. </label>
  1789. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="h2q-Gv-kFh">
  1790. <rect key="frame" x="116" y="1.5" width="22" height="22"/>
  1791. <state key="normal" image="Edit"/>
  1792. </button>
  1793. </subviews>
  1794. </stackView>
  1795. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Creator: Name gy" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dsp-g0-auI" userLabel="Creator">
  1796. <rect key="frame" x="118.5" y="245" width="106.5" height="16"/>
  1797. <constraints>
  1798. <constraint firstAttribute="height" constant="16" id="FLX-1E-mZc"/>
  1799. </constraints>
  1800. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  1801. <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1802. <nil key="highlightedColor"/>
  1803. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1804. <size key="shadowOffset" width="0.0" height="1"/>
  1805. </label>
  1806. </subviews>
  1807. </stackView>
  1808. </subviews>
  1809. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1810. <constraints>
  1811. <constraint firstAttribute="trailing" secondItem="jfD-uD-K9p" secondAttribute="trailing" constant="16" id="TCe-JR-KrN"/>
  1812. <constraint firstItem="jfD-uD-K9p" firstAttribute="top" secondItem="bzV-0r-R3g" secondAttribute="top" constant="16" id="eud-gq-ew9"/>
  1813. <constraint firstItem="jfD-uD-K9p" firstAttribute="leading" secondItem="bzV-0r-R3g" secondAttribute="leading" constant="16" id="faQ-Ys-mhv"/>
  1814. <constraint firstAttribute="bottom" secondItem="jfD-uD-K9p" secondAttribute="bottom" id="krh-kU-cEi"/>
  1815. </constraints>
  1816. </view>
  1817. <prototypes>
  1818. <tableViewCell clipsSubviews="YES" tag="3" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupMemberCell" id="Uo2-o4-j8V" customClass="GroupMemberCell">
  1819. <rect key="frame" x="0.0" y="332.5" width="375" height="64.5"/>
  1820. <autoresizingMask key="autoresizingMask"/>
  1821. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Uo2-o4-j8V" id="pmm-iT-OFC">
  1822. <rect key="frame" x="0.0" y="0.0" width="348" height="64.5"/>
  1823. <autoresizingMask key="autoresizingMask"/>
  1824. <subviews>
  1825. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="wOG-v3-9L7">
  1826. <rect key="frame" x="16" y="8.5" width="48" height="48"/>
  1827. <constraints>
  1828. <constraint firstAttribute="width" constant="48" id="Ozb-dq-5Sf"/>
  1829. <constraint firstAttribute="height" constant="48" id="key-bo-8xt"/>
  1830. </constraints>
  1831. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1832. </imageView>
  1833. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="g8r-Dc-Sp0" customClass="ContactNameLabel">
  1834. <rect key="frame" x="74" y="22" width="266" height="20.5"/>
  1835. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  1836. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1837. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1838. <nil key="highlightedColor"/>
  1839. </label>
  1840. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="EXb-fD-XYP">
  1841. <rect key="frame" x="16" y="38.5" width="18" height="18"/>
  1842. <constraints>
  1843. <constraint firstAttribute="width" constant="18" id="1oe-ST-uIy"/>
  1844. <constraint firstAttribute="height" constant="18" id="G2Q-av-mvE"/>
  1845. </constraints>
  1846. </imageView>
  1847. </subviews>
  1848. <constraints>
  1849. <constraint firstItem="EXb-fD-XYP" firstAttribute="leading" secondItem="wOG-v3-9L7" secondAttribute="leading" id="GoJ-KT-wY7"/>
  1850. <constraint firstItem="wOG-v3-9L7" firstAttribute="centerY" secondItem="pmm-iT-OFC" secondAttribute="centerY" id="Tnb-2R-QbX"/>
  1851. <constraint firstItem="EXb-fD-XYP" firstAttribute="bottom" secondItem="wOG-v3-9L7" secondAttribute="bottom" id="Z0H-dV-eQA"/>
  1852. <constraint firstItem="g8r-Dc-Sp0" firstAttribute="leading" secondItem="wOG-v3-9L7" secondAttribute="trailing" constant="10" id="ffF-gQ-VK5"/>
  1853. <constraint firstItem="wOG-v3-9L7" firstAttribute="top" secondItem="pmm-iT-OFC" secondAttribute="top" priority="750" constant="8" id="g97-Px-bow"/>
  1854. <constraint firstItem="wOG-v3-9L7" firstAttribute="leading" secondItem="pmm-iT-OFC" secondAttribute="leadingMargin" id="oka-wv-pbb"/>
  1855. <constraint firstAttribute="bottom" secondItem="wOG-v3-9L7" secondAttribute="bottom" priority="750" constant="8" id="r3F-ND-1TB"/>
  1856. <constraint firstAttribute="trailingMargin" secondItem="g8r-Dc-Sp0" secondAttribute="trailing" id="uIw-90-0pe"/>
  1857. <constraint firstItem="g8r-Dc-Sp0" firstAttribute="centerY" secondItem="pmm-iT-OFC" secondAttribute="centerY" id="yu9-hB-scX"/>
  1858. </constraints>
  1859. </tableViewCellContentView>
  1860. <connections>
  1861. <outlet property="contactImage" destination="wOG-v3-9L7" id="iQL-ko-Yyb"/>
  1862. <outlet property="nameLabel" destination="g8r-Dc-Sp0" id="2F6-SG-pDK"/>
  1863. <outlet property="threemaTypeIcon" destination="EXb-fD-XYP" id="mNH-yA-ok6"/>
  1864. </connections>
  1865. </tableViewCell>
  1866. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="AddMemberCell" id="fC4-24-uG5" customClass="AddMemberCell">
  1867. <rect key="frame" x="0.0" y="397" width="375" height="43.5"/>
  1868. <autoresizingMask key="autoresizingMask"/>
  1869. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="fC4-24-uG5" id="AKi-Qr-4oL">
  1870. <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
  1871. <autoresizingMask key="autoresizingMask"/>
  1872. <subviews>
  1873. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="AddMember" translatesAutoresizingMaskIntoConstraints="NO" id="4yk-L5-gn8">
  1874. <rect key="frame" x="16" y="11" width="22" height="22"/>
  1875. <constraints>
  1876. <constraint firstAttribute="width" constant="22" id="0l5-k0-LpE"/>
  1877. <constraint firstAttribute="height" constant="22" id="auP-JR-xwl"/>
  1878. </constraints>
  1879. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1880. </imageView>
  1881. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Edit Members..." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AHX-FD-Cmx">
  1882. <rect key="frame" x="54" y="11.5" width="286" height="20.5"/>
  1883. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1884. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1885. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1886. <nil key="highlightedColor"/>
  1887. </label>
  1888. </subviews>
  1889. <constraints>
  1890. <constraint firstItem="AHX-FD-Cmx" firstAttribute="leading" secondItem="4yk-L5-gn8" secondAttribute="trailing" constant="16" id="FNm-CX-0s9"/>
  1891. <constraint firstAttribute="trailingMargin" secondItem="AHX-FD-Cmx" secondAttribute="trailing" id="JkM-s3-zCC"/>
  1892. <constraint firstItem="4yk-L5-gn8" firstAttribute="centerY" secondItem="AKi-Qr-4oL" secondAttribute="centerY" id="XO1-e3-gm0"/>
  1893. <constraint firstItem="4yk-L5-gn8" firstAttribute="leading" secondItem="AKi-Qr-4oL" secondAttribute="leadingMargin" id="cCh-bQ-zYZ"/>
  1894. <constraint firstItem="AHX-FD-Cmx" firstAttribute="centerY" secondItem="AKi-Qr-4oL" secondAttribute="centerY" id="tb7-Sb-nkz"/>
  1895. </constraints>
  1896. </tableViewCellContentView>
  1897. <connections>
  1898. <outlet property="addLabel" destination="AHX-FD-Cmx" id="gY6-Om-C45"/>
  1899. <outlet property="plusImage" destination="4yk-L5-gn8" id="Ge5-9A-2FU"/>
  1900. </connections>
  1901. </tableViewCell>
  1902. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SyncCell" id="xXC-Dv-KXG" customClass="GroupSyncCell">
  1903. <rect key="frame" x="0.0" y="440.5" width="375" height="43.5"/>
  1904. <autoresizingMask key="autoresizingMask"/>
  1905. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="xXC-Dv-KXG" id="2cg-ld-dil">
  1906. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1907. <autoresizingMask key="autoresizingMask"/>
  1908. <subviews>
  1909. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="759-refresh-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="fb0-Jl-ahI">
  1910. <rect key="frame" x="16" y="11" width="22" height="22"/>
  1911. <constraints>
  1912. <constraint firstAttribute="width" constant="22" id="EHk-wN-SlM"/>
  1913. <constraint firstAttribute="height" constant="22" id="c73-R0-lQZ"/>
  1914. </constraints>
  1915. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1916. </imageView>
  1917. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Synchronize group" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MEa-Te-wbA">
  1918. <rect key="frame" x="54" y="11.5" width="305" height="20.5"/>
  1919. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1920. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1921. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1922. <nil key="highlightedColor"/>
  1923. </label>
  1924. </subviews>
  1925. <constraints>
  1926. <constraint firstItem="MEa-Te-wbA" firstAttribute="centerY" secondItem="2cg-ld-dil" secondAttribute="centerY" id="2Gz-Vt-O7X"/>
  1927. <constraint firstItem="MEa-Te-wbA" firstAttribute="leading" secondItem="fb0-Jl-ahI" secondAttribute="trailing" constant="16" id="7Iy-1o-j6S"/>
  1928. <constraint firstAttribute="trailingMargin" secondItem="MEa-Te-wbA" secondAttribute="trailing" id="ERp-sj-Jep"/>
  1929. <constraint firstItem="fb0-Jl-ahI" firstAttribute="centerY" secondItem="2cg-ld-dil" secondAttribute="centerY" id="Kpg-eK-R4O"/>
  1930. <constraint firstItem="fb0-Jl-ahI" firstAttribute="leading" secondItem="2cg-ld-dil" secondAttribute="leadingMargin" id="V30-VU-SUp"/>
  1931. </constraints>
  1932. </tableViewCellContentView>
  1933. <connections>
  1934. <outlet property="syncGroupImageView" destination="fb0-Jl-ahI" id="ftZ-c1-57P"/>
  1935. </connections>
  1936. </tableViewCell>
  1937. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CloneCell" id="jRQ-4m-f1h" customClass="GroupCloneCell">
  1938. <rect key="frame" x="0.0" y="484" width="375" height="43.5"/>
  1939. <autoresizingMask key="autoresizingMask"/>
  1940. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="jRQ-4m-f1h" id="WJV-sz-sJA">
  1941. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1942. <autoresizingMask key="autoresizingMask"/>
  1943. <subviews>
  1944. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Copy" translatesAutoresizingMaskIntoConstraints="NO" id="ZSB-Hg-FxO">
  1945. <rect key="frame" x="16" y="11" width="22" height="22"/>
  1946. <constraints>
  1947. <constraint firstAttribute="width" constant="22" id="2lF-fq-bML"/>
  1948. <constraint firstAttribute="height" constant="22" id="Tnw-Wf-6KR"/>
  1949. </constraints>
  1950. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1951. </imageView>
  1952. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Clone group" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6Z4-do-02L">
  1953. <rect key="frame" x="54" y="11.5" width="305" height="20.5"/>
  1954. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1955. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1956. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1957. <nil key="highlightedColor"/>
  1958. </label>
  1959. </subviews>
  1960. <constraints>
  1961. <constraint firstAttribute="trailingMargin" secondItem="6Z4-do-02L" secondAttribute="trailing" id="E5m-Jg-EcY"/>
  1962. <constraint firstItem="ZSB-Hg-FxO" firstAttribute="centerY" secondItem="WJV-sz-sJA" secondAttribute="centerY" id="Qr1-7x-YW4"/>
  1963. <constraint firstItem="ZSB-Hg-FxO" firstAttribute="leading" secondItem="WJV-sz-sJA" secondAttribute="leadingMargin" id="WhQ-KK-TNJ"/>
  1964. <constraint firstItem="6Z4-do-02L" firstAttribute="centerY" secondItem="WJV-sz-sJA" secondAttribute="centerY" id="f2j-xJ-2f0"/>
  1965. <constraint firstItem="6Z4-do-02L" firstAttribute="leading" secondItem="ZSB-Hg-FxO" secondAttribute="trailing" constant="16" id="xvo-5b-Dwt"/>
  1966. </constraints>
  1967. </tableViewCellContentView>
  1968. <connections>
  1969. <outlet property="cloneGroupImageView" destination="ZSB-Hg-FxO" id="7hN-dV-ffs"/>
  1970. </connections>
  1971. </tableViewCell>
  1972. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="peh-TI-pZu" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
  1973. <rect key="frame" x="0.0" y="527.5" width="375" height="43.5"/>
  1974. <autoresizingMask key="autoresizingMask"/>
  1975. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="peh-TI-pZu" id="JBz-BW-rZr">
  1976. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1977. <autoresizingMask key="autoresizingMask"/>
  1978. <subviews>
  1979. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="TabBar-Chats" translatesAutoresizingMaskIntoConstraints="NO" id="exT-YR-9ID">
  1980. <rect key="frame" x="16" y="10" width="22" height="24"/>
  1981. <constraints>
  1982. <constraint firstAttribute="height" constant="24" id="RGG-0J-RpT"/>
  1983. <constraint firstAttribute="width" constant="22" id="Uye-Lg-9BY"/>
  1984. </constraints>
  1985. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1986. </imageView>
  1987. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Send Message" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IpT-Hm-dLe">
  1988. <rect key="frame" x="54" y="11.5" width="305" height="20.5"/>
  1989. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1990. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1991. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1992. <nil key="highlightedColor"/>
  1993. </label>
  1994. </subviews>
  1995. <constraints>
  1996. <constraint firstItem="exT-YR-9ID" firstAttribute="leading" secondItem="JBz-BW-rZr" secondAttribute="leadingMargin" id="7je-9t-3X6"/>
  1997. <constraint firstItem="exT-YR-9ID" firstAttribute="centerY" secondItem="JBz-BW-rZr" secondAttribute="centerY" id="QfR-0U-a8T"/>
  1998. <constraint firstItem="IpT-Hm-dLe" firstAttribute="centerY" secondItem="JBz-BW-rZr" secondAttribute="centerY" id="csC-ob-feD"/>
  1999. <constraint firstItem="IpT-Hm-dLe" firstAttribute="leading" secondItem="exT-YR-9ID" secondAttribute="trailing" constant="16" id="e0h-tN-7q9"/>
  2000. <constraint firstAttribute="trailingMargin" secondItem="IpT-Hm-dLe" secondAttribute="trailing" id="liV-uY-LwN"/>
  2001. </constraints>
  2002. </tableViewCellContentView>
  2003. <connections>
  2004. <outlet property="sendMessageImageView" destination="exT-YR-9ID" id="FFC-Fj-r0l"/>
  2005. <outlet property="sendMessageLabel" destination="IpT-Hm-dLe" id="Chc-Wr-jL8"/>
  2006. </connections>
  2007. </tableViewCell>
  2008. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExportConversationCell" id="bGt-GQ-Qv7" customClass="ExportConversationCell" customModule="Threema" customModuleProvider="target">
  2009. <rect key="frame" x="0.0" y="571" width="375" height="43.5"/>
  2010. <autoresizingMask key="autoresizingMask"/>
  2011. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="bGt-GQ-Qv7" id="OyY-Gf-QsX">
  2012. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2013. <autoresizingMask key="autoresizingMask"/>
  2014. <subviews>
  2015. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ExportConversation" translatesAutoresizingMaskIntoConstraints="NO" id="Nb1-fd-in7">
  2016. <rect key="frame" x="16" y="11" width="24" height="22"/>
  2017. <constraints>
  2018. <constraint firstAttribute="width" constant="24" id="NU3-Zg-xME"/>
  2019. <constraint firstAttribute="height" constant="22" id="wLp-Mj-SYA"/>
  2020. </constraints>
  2021. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2022. </imageView>
  2023. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Export Conversation" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bFb-Sh-rtO">
  2024. <rect key="frame" x="56" y="11.5" width="303" height="20.5"/>
  2025. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2026. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2027. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2028. <nil key="highlightedColor"/>
  2029. </label>
  2030. </subviews>
  2031. <constraints>
  2032. <constraint firstItem="Nb1-fd-in7" firstAttribute="centerY" secondItem="OyY-Gf-QsX" secondAttribute="centerY" id="AOo-Td-cLP"/>
  2033. <constraint firstItem="bFb-Sh-rtO" firstAttribute="leading" secondItem="Nb1-fd-in7" secondAttribute="trailing" constant="16" id="FSU-jk-3pa"/>
  2034. <constraint firstAttribute="trailingMargin" secondItem="bFb-Sh-rtO" secondAttribute="trailing" id="bCw-Dc-RN6"/>
  2035. <constraint firstItem="Nb1-fd-in7" firstAttribute="leading" secondItem="OyY-Gf-QsX" secondAttribute="leadingMargin" id="hB6-BT-fx2"/>
  2036. <constraint firstItem="bFb-Sh-rtO" firstAttribute="centerY" secondItem="OyY-Gf-QsX" secondAttribute="centerY" id="q2t-0Z-QsK"/>
  2037. </constraints>
  2038. </tableViewCellContentView>
  2039. <connections>
  2040. <outlet property="exportConversationImageView" destination="Nb1-fd-in7" id="E2G-3x-Ezx"/>
  2041. <outlet property="exportConversationLabel" destination="bFb-Sh-rtO" id="asf-SN-UIY"/>
  2042. </connections>
  2043. </tableViewCell>
  2044. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="PushSettingCell" textLabel="bne-OA-inf" style="IBUITableViewCellStyleDefault" id="ADK-Cy-nBz">
  2045. <rect key="frame" x="0.0" y="614.5" width="375" height="43.5"/>
  2046. <autoresizingMask key="autoresizingMask"/>
  2047. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="ADK-Cy-nBz" id="c7n-Na-7wX">
  2048. <rect key="frame" x="0.0" y="0.0" width="348" height="43.5"/>
  2049. <autoresizingMask key="autoresizingMask"/>
  2050. <subviews>
  2051. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Push setting" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bne-OA-inf">
  2052. <rect key="frame" x="16" y="0.0" width="324" height="43.5"/>
  2053. <autoresizingMask key="autoresizingMask"/>
  2054. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2055. <nil key="textColor"/>
  2056. <nil key="highlightedColor"/>
  2057. </label>
  2058. </subviews>
  2059. </tableViewCellContentView>
  2060. <connections>
  2061. <segue destination="7sc-E3-vaH" kind="show" identifier="ShowPushSetting" id="kxG-iI-tln"/>
  2062. </connections>
  2063. </tableViewCell>
  2064. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="LeaveGroupCell" textLabel="74M-ip-a37" rowHeight="66" style="IBUITableViewCellStyleDefault" id="gpp-XW-9pS">
  2065. <rect key="frame" x="0.0" y="658" width="375" height="66"/>
  2066. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2067. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gpp-XW-9pS" id="KAV-n6-XbO">
  2068. <rect key="frame" x="0.0" y="0.0" width="375" height="66"/>
  2069. <autoresizingMask key="autoresizingMask"/>
  2070. <subviews>
  2071. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Leave Group" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="74M-ip-a37">
  2072. <rect key="frame" x="16" y="0.0" width="343" height="66"/>
  2073. <autoresizingMask key="autoresizingMask"/>
  2074. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2075. <color key="textColor" red="1" green="0.14489134100141676" blue="0.028320687089866792" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2076. <nil key="highlightedColor"/>
  2077. </label>
  2078. </subviews>
  2079. </tableViewCellContentView>
  2080. </tableViewCell>
  2081. </prototypes>
  2082. <connections>
  2083. <outlet property="dataSource" destination="Ms8-he-mHa" id="Wjd-4D-frU"/>
  2084. <outlet property="delegate" destination="Ms8-he-mHa" id="3W6-xU-yBi"/>
  2085. </connections>
  2086. </tableView>
  2087. <navigationItem key="navigationItem" title="Group details" largeTitleDisplayMode="never" id="oEX-1h-I2a"/>
  2088. <connections>
  2089. <outlet property="creatorLabel" destination="dsp-g0-auI" id="ZrO-Z5-oOM"/>
  2090. <outlet property="disclosureButton" destination="h2q-Gv-kFh" id="nQ0-X5-kom"/>
  2091. <outlet property="headerView" destination="bzV-0r-R3g" id="P6p-qZ-xmo"/>
  2092. <outlet property="imageView" destination="Tvp-rg-Bl2" id="9b3-P1-8d5"/>
  2093. <outlet property="nameLabel" destination="6W1-LE-5ka" id="Phh-OA-Gn9"/>
  2094. <segue destination="MbJ-IV-2f9" kind="show" identifier="ShowContact" id="oPU-me-pkQ"/>
  2095. </connections>
  2096. </tableViewController>
  2097. <placeholder placeholderIdentifier="IBFirstResponder" id="PFS-PI-sZe" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2098. </objects>
  2099. <point key="canvasLocation" x="368.80000000000001" y="416.94152923538235"/>
  2100. </scene>
  2101. <!--Notification Setting View Controller-->
  2102. <scene sceneID="t2q-jE-ooX">
  2103. <objects>
  2104. <tableViewController id="7sc-E3-vaH" customClass="NotificationSettingViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2105. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="h3x-93-SK5">
  2106. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2107. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2108. <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
  2109. <sections>
  2110. <tableViewSection headerTitle="Notification" id="iNd-G8-O6k">
  2111. <cells>
  2112. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="DoNotDisturbCell" id="6ex-ym-hG0" customClass="DoNotDisturbCell" customModule="Threema" customModuleProvider="target">
  2113. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2114. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2115. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="6ex-ym-hG0" id="Uz4-Oo-TkS">
  2116. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  2117. <autoresizingMask key="autoresizingMask"/>
  2118. <subviews>
  2119. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="249" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Do Not Disturb" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uwC-cP-33R">
  2120. <rect key="frame" x="16" y="12" width="113.5" height="20.5"/>
  2121. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2122. <nil key="textColor"/>
  2123. <nil key="highlightedColor"/>
  2124. </label>
  2125. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="Off" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sjz-Xi-DOn">
  2126. <rect key="frame" x="315.5" y="15" width="24.5" height="14"/>
  2127. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2128. <nil key="textColor"/>
  2129. <nil key="highlightedColor"/>
  2130. </label>
  2131. </subviews>
  2132. <constraints>
  2133. <constraint firstItem="Sjz-Xi-DOn" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="uwC-cP-33R" secondAttribute="trailing" constant="10" id="FeD-wL-sNR"/>
  2134. <constraint firstItem="Sjz-Xi-DOn" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Uz4-Oo-TkS" secondAttribute="topMargin" constant="4" id="Iyz-PG-L0y"/>
  2135. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="Sjz-Xi-DOn" secondAttribute="bottom" constant="4" id="KPv-84-8yt"/>
  2136. <constraint firstItem="uwC-cP-33R" firstAttribute="leading" secondItem="Uz4-Oo-TkS" secondAttribute="leadingMargin" id="OPd-e6-3aW"/>
  2137. <constraint firstItem="Sjz-Xi-DOn" firstAttribute="centerY" secondItem="Uz4-Oo-TkS" secondAttribute="centerY" id="Rg3-9a-xP4"/>
  2138. <constraint firstItem="Sjz-Xi-DOn" firstAttribute="trailing" secondItem="Uz4-Oo-TkS" secondAttribute="trailingMargin" id="UVi-1W-mQV"/>
  2139. <constraint firstItem="uwC-cP-33R" firstAttribute="centerY" secondItem="Uz4-Oo-TkS" secondAttribute="centerY" id="jwm-5h-h92"/>
  2140. </constraints>
  2141. </tableViewCellContentView>
  2142. <connections>
  2143. <outlet property="detailLabel" destination="Sjz-Xi-DOn" id="458-dR-o4u"/>
  2144. <outlet property="titleLabel" destination="uwC-cP-33R" id="LPO-V6-naU"/>
  2145. <segue destination="gfr-ze-btC" kind="show" identifier="ShowDoNotDisturb" id="3tb-bU-QO2"/>
  2146. </connections>
  2147. </tableViewCell>
  2148. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="MentionsCell" textLabel="GY1-sO-0wR" style="IBUITableViewCellStyleDefault" id="Poh-36-mK0">
  2149. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  2150. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2151. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Poh-36-mK0" id="eIP-2o-DYY">
  2152. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2153. <autoresizingMask key="autoresizingMask"/>
  2154. <subviews>
  2155. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Mentions" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="GY1-sO-0wR">
  2156. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2157. <autoresizingMask key="autoresizingMask"/>
  2158. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2159. <nil key="textColor"/>
  2160. <nil key="highlightedColor"/>
  2161. </label>
  2162. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="4CF-oO-XE4">
  2163. <rect key="frame" x="162" y="6" width="50" height="31"/>
  2164. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2165. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2166. <connections>
  2167. <action selector="mentionsSwitchChangedWithSender:" destination="7sc-E3-vaH" eventType="valueChanged" id="DlI-LE-0bm"/>
  2168. </connections>
  2169. </switch>
  2170. </subviews>
  2171. </tableViewCellContentView>
  2172. <connections>
  2173. <outlet property="accessoryView" destination="4CF-oO-XE4" id="ATc-7U-09t"/>
  2174. </connections>
  2175. </tableViewCell>
  2176. </cells>
  2177. </tableViewSection>
  2178. <tableViewSection headerTitle="Notification sound" id="JEB-UJ-EFF">
  2179. <cells>
  2180. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="SilentCell" textLabel="iId-KD-odT" style="IBUITableViewCellStyleDefault" id="Ldp-4S-iiR">
  2181. <rect key="frame" x="0.0" y="199.5" width="375" height="44"/>
  2182. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2183. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Ldp-4S-iiR" id="QNZ-em-v00">
  2184. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2185. <autoresizingMask key="autoresizingMask"/>
  2186. <subviews>
  2187. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Sound" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="iId-KD-odT">
  2188. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2189. <autoresizingMask key="autoresizingMask"/>
  2190. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2191. <nil key="textColor"/>
  2192. <nil key="highlightedColor"/>
  2193. </label>
  2194. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="xXL-24-uBz">
  2195. <rect key="frame" x="162" y="6" width="50" height="31"/>
  2196. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2197. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2198. <connections>
  2199. <action selector="soundSwitchChangedWithSender:" destination="7sc-E3-vaH" eventType="valueChanged" id="w4a-1I-Aqz"/>
  2200. </connections>
  2201. </switch>
  2202. </subviews>
  2203. </tableViewCellContentView>
  2204. <connections>
  2205. <outlet property="accessoryView" destination="xXL-24-uBz" id="ult-XP-aiK"/>
  2206. </connections>
  2207. </tableViewCell>
  2208. </cells>
  2209. </tableViewSection>
  2210. </sections>
  2211. <connections>
  2212. <outlet property="dataSource" destination="7sc-E3-vaH" id="bTt-jg-6nP"/>
  2213. <outlet property="delegate" destination="7sc-E3-vaH" id="Vfa-fY-ctm"/>
  2214. </connections>
  2215. </tableView>
  2216. <connections>
  2217. <outlet property="doNotDisturbCell" destination="6ex-ym-hG0" id="OuL-O0-zw2"/>
  2218. <outlet property="masterDndInfoImageView" destination="HhM-hD-Gie" id="J5U-WT-FXt"/>
  2219. <outlet property="masterDndInfoLabel" destination="VRU-Fw-VBt" id="c69-vC-mpC"/>
  2220. <outlet property="masterDndView" destination="XKU-xa-J1t" id="gcO-mZ-yAi"/>
  2221. <outlet property="mentionsCell" destination="Poh-36-mK0" id="oMb-TO-9wP"/>
  2222. <outlet property="mentionsSwitch" destination="4CF-oO-XE4" id="MIH-lr-kyu"/>
  2223. <outlet property="soundCell" destination="Ldp-4S-iiR" id="vdT-bB-Wwk"/>
  2224. <outlet property="soundSwitch" destination="xXL-24-uBz" id="egU-h4-oMg"/>
  2225. </connections>
  2226. </tableViewController>
  2227. <placeholder placeholderIdentifier="IBFirstResponder" id="i0t-Wl-8Tj" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2228. <view contentMode="scaleToFill" id="XKU-xa-J1t">
  2229. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2230. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2231. <subviews>
  2232. <stackView opaque="NO" contentMode="scaleToFill" spacing="16" translatesAutoresizingMaskIntoConstraints="NO" id="eIf-71-Y2s">
  2233. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2234. <subviews>
  2235. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="center" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="imageView:HhM-hD-Gie:image" translatesAutoresizingMaskIntoConstraints="NO" id="HhM-hD-Gie">
  2236. <rect key="frame" x="0.0" y="0.0" width="50" height="44"/>
  2237. <constraints>
  2238. <constraint firstAttribute="width" constant="50" id="38Z-Z9-gBg"/>
  2239. <constraint firstAttribute="height" constant="50" id="iR6-T2-dzl"/>
  2240. </constraints>
  2241. </imageView>
  2242. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="VRU-Fw-VBt">
  2243. <rect key="frame" x="66" y="0.0" width="277" height="44"/>
  2244. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2245. <nil key="textColor"/>
  2246. <nil key="highlightedColor"/>
  2247. </label>
  2248. </subviews>
  2249. </stackView>
  2250. </subviews>
  2251. <viewLayoutGuide key="safeArea" id="FDB-eh-b3c"/>
  2252. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2253. <constraints>
  2254. <constraint firstAttribute="bottomMargin" secondItem="eIf-71-Y2s" secondAttribute="bottom" id="QFV-XB-hWj"/>
  2255. <constraint firstItem="eIf-71-Y2s" firstAttribute="top" secondItem="XKU-xa-J1t" secondAttribute="topMargin" id="de6-Ul-Q8h"/>
  2256. <constraint firstAttribute="trailingMargin" secondItem="eIf-71-Y2s" secondAttribute="trailing" id="teQ-hw-Qer"/>
  2257. <constraint firstItem="eIf-71-Y2s" firstAttribute="leading" secondItem="XKU-xa-J1t" secondAttribute="leadingMargin" id="xHr-Qx-BNW"/>
  2258. </constraints>
  2259. </view>
  2260. </objects>
  2261. <point key="canvasLocation" x="1344.8" y="416.94152923538235"/>
  2262. </scene>
  2263. <!--Do Not Disturb View Controller-->
  2264. <scene sceneID="7Tm-HT-3S8">
  2265. <objects>
  2266. <tableViewController id="gfr-ze-btC" customClass="DoNotDisturbViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2267. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="amK-NL-EWc">
  2268. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2269. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2270. <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
  2271. <prototypes>
  2272. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="checkmark" indentationWidth="10" reuseIdentifier="SelectionCell" textLabel="70C-9T-QSE" style="IBUITableViewCellStyleDefault" id="Lau-Yi-Bea">
  2273. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  2274. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2275. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Lau-Yi-Bea" id="zCd-hl-tml">
  2276. <rect key="frame" x="0.0" y="0.0" width="335" height="43.5"/>
  2277. <autoresizingMask key="autoresizingMask"/>
  2278. <subviews>
  2279. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Off" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="70C-9T-QSE">
  2280. <rect key="frame" x="16" y="0.0" width="311" height="43.5"/>
  2281. <autoresizingMask key="autoresizingMask"/>
  2282. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2283. <nil key="textColor"/>
  2284. <nil key="highlightedColor"/>
  2285. </label>
  2286. </subviews>
  2287. </tableViewCellContentView>
  2288. </tableViewCell>
  2289. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="PickerCell" rowHeight="162" id="lnL-bi-p9R">
  2290. <rect key="frame" x="0.0" y="99" width="375" height="162"/>
  2291. <autoresizingMask key="autoresizingMask"/>
  2292. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="lnL-bi-p9R" id="StM-8t-aSC">
  2293. <rect key="frame" x="0.0" y="0.0" width="375" height="162"/>
  2294. <autoresizingMask key="autoresizingMask"/>
  2295. <subviews>
  2296. <pickerView contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Dji-2W-Rhp">
  2297. <rect key="frame" x="0.0" y="0.0" width="375" height="162"/>
  2298. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2299. <connections>
  2300. <outlet property="dataSource" destination="gfr-ze-btC" id="nca-k1-M8p"/>
  2301. <outlet property="delegate" destination="gfr-ze-btC" id="1JV-ZW-7qM"/>
  2302. </connections>
  2303. </pickerView>
  2304. </subviews>
  2305. </tableViewCellContentView>
  2306. </tableViewCell>
  2307. </prototypes>
  2308. <sections/>
  2309. <connections>
  2310. <outlet property="dataSource" destination="gfr-ze-btC" id="evH-G9-zuM"/>
  2311. <outlet property="delegate" destination="gfr-ze-btC" id="FkR-zc-szh"/>
  2312. </connections>
  2313. </tableView>
  2314. </tableViewController>
  2315. <placeholder placeholderIdentifier="IBFirstResponder" id="hu8-rO-UW1" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2316. </objects>
  2317. <point key="canvasLocation" x="2081" y="417"/>
  2318. </scene>
  2319. <!--Verification Level-->
  2320. <scene sceneID="X1e-I4-oAv">
  2321. <objects>
  2322. <viewController automaticallyAdjustsScrollViewInsets="NO" id="BHJ-uI-yhd" customClass="VerificationViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2323. <view key="view" contentMode="scaleToFill" id="IK2-gw-H44">
  2324. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2325. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2326. <subviews>
  2327. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nk0-Pv-adz">
  2328. <rect key="frame" x="0.0" y="44" width="375" height="623"/>
  2329. <subviews>
  2330. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ty5-zL-WXa">
  2331. <rect key="frame" x="0.0" y="0.0" width="375" height="604"/>
  2332. <subviews>
  2333. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="The dots are an indicator for a contact's verification level." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DxA-AM-Zv1" customClass="SSLabel">
  2334. <rect key="frame" x="16" y="25" width="343" height="38"/>
  2335. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  2336. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2337. <nil key="highlightedColor"/>
  2338. </label>
  2339. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema Work contact. The administrator has pre-configured this contact." lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Dkl-lv-Gfl" customClass="SSLabel">
  2340. <rect key="frame" x="91" y="133.5" width="268" height="58"/>
  2341. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  2342. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2343. <nil key="highlightedColor"/>
  2344. </label>
  2345. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-3.png" translatesAutoresizingMaskIntoConstraints="NO" id="qY0-DT-vWa">
  2346. <rect key="frame" x="16" y="139.5" width="50" height="12"/>
  2347. <constraints>
  2348. <constraint firstAttribute="height" constant="12" id="5k8-Kk-Uv6"/>
  2349. <constraint firstAttribute="width" constant="50" id="qJr-rY-KSw"/>
  2350. </constraints>
  2351. </imageView>
  2352. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-3.png" translatesAutoresizingMaskIntoConstraints="NO" id="RPe-iX-zJj">
  2353. <rect key="frame" x="16" y="227.5" width="50" height="12"/>
  2354. <constraints>
  2355. <constraint firstAttribute="height" constant="12" id="CAv-E1-jdn"/>
  2356. <constraint firstAttribute="width" constant="50" id="Q56-MA-u0R"/>
  2357. </constraints>
  2358. </imageView>
  2359. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema Work contact. The administrator has pre-configured this contact." lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KbO-86-RBn" customClass="SSLabel">
  2360. <rect key="frame" x="91" y="221.5" width="268" height="58"/>
  2361. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  2362. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2363. <nil key="highlightedColor"/>
  2364. </label>
  2365. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="You reach the highest verification level only by scanning the QR Code of a contact in person." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Zxb-Je-9CC" customClass="SSLabel">
  2366. <rect key="frame" x="91" y="350" width="268" height="58"/>
  2367. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  2368. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2369. <nil key="highlightedColor"/>
  2370. </label>
  2371. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-1.png" translatesAutoresizingMaskIntoConstraints="NO" id="iDJ-jh-Gt9">
  2372. <rect key="frame" x="16" y="444" width="50" height="12"/>
  2373. <constraints>
  2374. <constraint firstAttribute="width" constant="50" id="JQt-hO-r3v"/>
  2375. <constraint firstAttribute="height" constant="12" id="iDC-Ek-2d9"/>
  2376. </constraints>
  2377. </imageView>
  2378. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="The contact matches with a verified phone number or email address in your address book." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Y9L-O2-c5C" customClass="SSLabel">
  2379. <rect key="frame" x="91" y="438" width="268" height="58"/>
  2380. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  2381. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2382. <nil key="highlightedColor"/>
  2383. </label>
  2384. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="JV7-wB-ei5">
  2385. <rect key="frame" x="16" y="356" width="50" height="12"/>
  2386. <constraints>
  2387. <constraint firstAttribute="height" constant="12" id="1sH-i8-Ddy"/>
  2388. <constraint firstAttribute="width" constant="50" id="fdw-NT-h24"/>
  2389. </constraints>
  2390. </imageView>
  2391. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Anonymous contact. The ID could not be matched with a contact in your address book." lineBreakMode="tailTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="1xB-q0-ZXX" customClass="SSLabel">
  2392. <rect key="frame" x="91" y="526" width="268" height="58"/>
  2393. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  2394. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2395. <nil key="highlightedColor"/>
  2396. </label>
  2397. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-0.png" translatesAutoresizingMaskIntoConstraints="NO" id="GFO-oV-PP3">
  2398. <rect key="frame" x="16" y="532" width="50" height="12"/>
  2399. <constraints>
  2400. <constraint firstAttribute="width" constant="50" id="J0K-TU-Xrt"/>
  2401. <constraint firstAttribute="height" constant="12" id="XNC-AV-2Bv"/>
  2402. </constraints>
  2403. </imageView>
  2404. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Contacts in your Organization" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8y4-Kc-IzK" customClass="SSLabel">
  2405. <rect key="frame" x="16" y="93" width="343" height="20.5"/>
  2406. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  2407. <nil key="textColor"/>
  2408. <nil key="highlightedColor"/>
  2409. </label>
  2410. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Other Contacts" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZgX-VT-k2O" customClass="SSLabel">
  2411. <rect key="frame" x="16" y="309.5" width="343" height="20.5"/>
  2412. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  2413. <nil key="textColor"/>
  2414. <nil key="highlightedColor"/>
  2415. </label>
  2416. </subviews>
  2417. <constraints>
  2418. <constraint firstItem="8y4-Kc-IzK" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="0gy-7C-1ed"/>
  2419. <constraint firstItem="8y4-Kc-IzK" firstAttribute="top" secondItem="DxA-AM-Zv1" secondAttribute="bottom" constant="30" id="4Hc-3X-sBH"/>
  2420. <constraint firstAttribute="trailing" secondItem="8y4-Kc-IzK" secondAttribute="trailing" constant="16" id="4Ib-Zg-MWO"/>
  2421. <constraint firstItem="KbO-86-RBn" firstAttribute="top" secondItem="Dkl-lv-Gfl" secondAttribute="bottom" constant="30" id="5St-Hp-FZh"/>
  2422. <constraint firstItem="Y9L-O2-c5C" firstAttribute="leading" secondItem="iDJ-jh-Gt9" secondAttribute="trailing" constant="25" id="6PZ-xX-WJX"/>
  2423. <constraint firstItem="1xB-q0-ZXX" firstAttribute="leading" secondItem="GFO-oV-PP3" secondAttribute="trailing" constant="25" id="8w4-Oz-cef"/>
  2424. <constraint firstItem="GFO-oV-PP3" firstAttribute="top" secondItem="1xB-q0-ZXX" secondAttribute="top" constant="6" id="D8z-qu-H6N"/>
  2425. <constraint firstAttribute="trailing" secondItem="ZgX-VT-k2O" secondAttribute="trailing" constant="16" id="Dt7-sb-YD0"/>
  2426. <constraint firstAttribute="trailing" secondItem="DxA-AM-Zv1" secondAttribute="trailing" constant="16" id="EC9-hG-1zW"/>
  2427. <constraint firstItem="ZgX-VT-k2O" firstAttribute="top" secondItem="KbO-86-RBn" secondAttribute="bottom" constant="30" id="Fs8-So-xJt"/>
  2428. <constraint firstItem="iDJ-jh-Gt9" firstAttribute="top" secondItem="Y9L-O2-c5C" secondAttribute="top" constant="6" id="Gjn-8t-8UZ"/>
  2429. <constraint firstItem="DxA-AM-Zv1" firstAttribute="top" secondItem="Ty5-zL-WXa" secondAttribute="top" constant="25" id="HTj-dp-i64"/>
  2430. <constraint firstAttribute="bottom" secondItem="1xB-q0-ZXX" secondAttribute="bottom" constant="20" id="ICh-Xm-kW2"/>
  2431. <constraint firstAttribute="trailing" secondItem="Zxb-Je-9CC" secondAttribute="trailing" constant="16" id="Ijv-MA-VJP"/>
  2432. <constraint firstItem="DxA-AM-Zv1" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="Imx-Tz-tdK"/>
  2433. <constraint firstItem="Dkl-lv-Gfl" firstAttribute="leading" secondItem="qY0-DT-vWa" secondAttribute="trailing" constant="25" id="J1P-Sb-XOj"/>
  2434. <constraint firstItem="RPe-iX-zJj" firstAttribute="top" secondItem="KbO-86-RBn" secondAttribute="top" constant="6" id="NEr-jv-kVt"/>
  2435. <constraint firstItem="Zxb-Je-9CC" firstAttribute="top" secondItem="ZgX-VT-k2O" secondAttribute="bottom" constant="20" id="OKz-xC-LpC"/>
  2436. <constraint firstItem="Zxb-Je-9CC" firstAttribute="top" secondItem="DxA-AM-Zv1" secondAttribute="bottom" priority="250" constant="40" id="QOm-aD-13l"/>
  2437. <constraint firstItem="iDJ-jh-Gt9" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="WI1-NM-dXL"/>
  2438. <constraint firstItem="1xB-q0-ZXX" firstAttribute="top" secondItem="Y9L-O2-c5C" secondAttribute="bottom" constant="30" id="c5O-xD-O3G"/>
  2439. <constraint firstItem="JV7-wB-ei5" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="cEv-w6-ZSP"/>
  2440. <constraint firstItem="Zxb-Je-9CC" firstAttribute="leading" secondItem="JV7-wB-ei5" secondAttribute="trailing" constant="25" id="ew0-Fg-b2Y"/>
  2441. <constraint firstItem="GFO-oV-PP3" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="jet-DC-WFH"/>
  2442. <constraint firstAttribute="trailing" secondItem="KbO-86-RBn" secondAttribute="trailing" constant="16" id="jrm-eh-biy"/>
  2443. <constraint firstItem="Y9L-O2-c5C" firstAttribute="top" secondItem="Zxb-Je-9CC" secondAttribute="bottom" constant="30" id="lu3-ry-CEa"/>
  2444. <constraint firstAttribute="trailing" secondItem="Y9L-O2-c5C" secondAttribute="trailing" constant="16" id="nqA-zB-SBC"/>
  2445. <constraint firstItem="RPe-iX-zJj" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="pfW-NI-j6z"/>
  2446. <constraint firstItem="Dkl-lv-Gfl" firstAttribute="top" secondItem="8y4-Kc-IzK" secondAttribute="bottom" constant="20" id="rZU-9l-ZSv"/>
  2447. <constraint firstAttribute="trailing" secondItem="Dkl-lv-Gfl" secondAttribute="trailing" constant="16" id="slu-tP-kz0"/>
  2448. <constraint firstItem="qY0-DT-vWa" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="sob-M3-aJh"/>
  2449. <constraint firstAttribute="trailing" secondItem="1xB-q0-ZXX" secondAttribute="trailing" constant="16" id="uVq-2a-NPQ"/>
  2450. <constraint firstItem="JV7-wB-ei5" firstAttribute="top" secondItem="Zxb-Je-9CC" secondAttribute="top" constant="6" id="udV-jd-RxJ"/>
  2451. <constraint firstItem="qY0-DT-vWa" firstAttribute="top" secondItem="Dkl-lv-Gfl" secondAttribute="top" constant="6" id="uo7-qh-Iec"/>
  2452. <constraint firstItem="KbO-86-RBn" firstAttribute="leading" secondItem="RPe-iX-zJj" secondAttribute="trailing" constant="25" id="vas-Vh-mvQ"/>
  2453. <constraint firstItem="ZgX-VT-k2O" firstAttribute="leading" secondItem="Ty5-zL-WXa" secondAttribute="leading" constant="16" id="xQR-et-VEU"/>
  2454. </constraints>
  2455. </view>
  2456. </subviews>
  2457. <constraints>
  2458. <constraint firstAttribute="width" secondItem="Ty5-zL-WXa" secondAttribute="width" id="Blp-yM-Rp3"/>
  2459. <constraint firstAttribute="trailing" secondItem="Ty5-zL-WXa" secondAttribute="trailing" id="LEW-NZ-9e2"/>
  2460. <constraint firstItem="Ty5-zL-WXa" firstAttribute="top" secondItem="nk0-Pv-adz" secondAttribute="top" id="LU1-Hd-1KD"/>
  2461. <constraint firstAttribute="bottom" secondItem="Ty5-zL-WXa" secondAttribute="bottom" constant="101" id="NEo-Po-Z3V"/>
  2462. <constraint firstItem="Ty5-zL-WXa" firstAttribute="leading" secondItem="nk0-Pv-adz" secondAttribute="leading" id="O31-ZH-h9u"/>
  2463. </constraints>
  2464. </scrollView>
  2465. </subviews>
  2466. <viewLayoutGuide key="safeArea" id="j9V-WY-ES0"/>
  2467. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2468. <constraints>
  2469. <constraint firstItem="nk0-Pv-adz" firstAttribute="trailing" secondItem="j9V-WY-ES0" secondAttribute="trailing" id="2Bn-Gp-FgK"/>
  2470. <constraint firstItem="nk0-Pv-adz" firstAttribute="leading" secondItem="j9V-WY-ES0" secondAttribute="leading" id="7kf-PQ-ryd"/>
  2471. <constraint firstItem="nk0-Pv-adz" firstAttribute="bottom" secondItem="j9V-WY-ES0" secondAttribute="bottom" id="DZA-8X-vEG"/>
  2472. <constraint firstItem="nk0-Pv-adz" firstAttribute="top" secondItem="j9V-WY-ES0" secondAttribute="top" id="qc3-0h-ufz"/>
  2473. </constraints>
  2474. </view>
  2475. <navigationItem key="navigationItem" title="Verification Level" largeTitleDisplayMode="never" id="RYr-oG-d5j"/>
  2476. <nil key="simulatedBottomBarMetrics"/>
  2477. <connections>
  2478. <outlet property="descriptionText" destination="DxA-AM-Zv1" id="NAd-Ds-Joh"/>
  2479. <outlet property="imageLevel0" destination="GFO-oV-PP3" id="CmD-kj-AXc"/>
  2480. <outlet property="imageLevel1" destination="iDJ-jh-Gt9" id="VAS-hw-WXf"/>
  2481. <outlet property="imageLevel2" destination="JV7-wB-ei5" id="owp-g3-SWf"/>
  2482. <outlet property="imageLevel3" destination="RPe-iX-zJj" id="fox-uC-BFa"/>
  2483. <outlet property="imageLevel4" destination="qY0-DT-vWa" id="q2q-dO-spv"/>
  2484. <outlet property="labelLevel0" destination="1xB-q0-ZXX" id="u8h-UT-7bx"/>
  2485. <outlet property="labelLevel1" destination="Y9L-O2-c5C" id="Nwp-3c-C5r"/>
  2486. <outlet property="labelLevel2" destination="Zxb-Je-9CC" id="T4F-md-SLa"/>
  2487. <outlet property="labelLevel3" destination="KbO-86-RBn" id="Yha-ND-8M8"/>
  2488. <outlet property="labelLevel4" destination="Dkl-lv-Gfl" id="zIO-CJ-ak6"/>
  2489. <outlet property="otherTitle" destination="ZgX-VT-k2O" id="j0B-3Q-FSG"/>
  2490. <outlet property="scrollView" destination="nk0-Pv-adz" id="tHE-oa-v06"/>
  2491. <outlet property="threemaConstraint" destination="QOm-aD-13l" id="9eY-ck-FUv"/>
  2492. <outlet property="workConstraint" destination="OKz-xC-LpC" id="mCs-Nu-1oy"/>
  2493. <outlet property="workTitle" destination="8y4-Kc-IzK" id="yea-BC-LCA"/>
  2494. </connections>
  2495. </viewController>
  2496. <placeholder placeholderIdentifier="IBFirstResponder" id="O9J-dO-Gby" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2497. </objects>
  2498. <point key="canvasLocation" x="1920.8" y="-364.7676161919041"/>
  2499. </scene>
  2500. <!--Add Contact-->
  2501. <scene sceneID="oOX-bu-bWV">
  2502. <objects>
  2503. <tableViewController id="G1V-ju-hH8" customClass="AddContactViewController" sceneMemberID="viewController">
  2504. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="K6b-41-Rkh">
  2505. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2506. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2507. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2508. <sections>
  2509. <tableViewSection id="72X-QI-1f3">
  2510. <cells>
  2511. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="al9-Xu-cio">
  2512. <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
  2513. <autoresizingMask key="autoresizingMask"/>
  2514. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="al9-Xu-cio" id="3J9-nj-Hgy">
  2515. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2516. <autoresizingMask key="autoresizingMask"/>
  2517. <subviews>
  2518. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="ID" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="YoS-Np-Z37">
  2519. <rect key="frame" x="16" y="23" width="343" height="10"/>
  2520. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2521. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2522. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
  2523. <textInputTraits key="textInputTraits" autocapitalizationType="allCharacters" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  2524. <connections>
  2525. <outlet property="delegate" destination="G1V-ju-hH8" id="3rH-1t-iUw"/>
  2526. </connections>
  2527. </textField>
  2528. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Enter ID manually" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zYA-qz-iwe">
  2529. <rect key="frame" x="16" y="11" width="343" height="0.0"/>
  2530. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2531. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2532. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2533. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2534. </label>
  2535. </subviews>
  2536. <constraints>
  2537. <constraint firstItem="YoS-Np-Z37" firstAttribute="top" secondItem="zYA-qz-iwe" secondAttribute="bottom" constant="12" id="70f-eF-iiy"/>
  2538. <constraint firstAttribute="bottomMargin" secondItem="YoS-Np-Z37" secondAttribute="bottom" id="PT8-yF-h8g"/>
  2539. <constraint firstItem="zYA-qz-iwe" firstAttribute="leading" secondItem="3J9-nj-Hgy" secondAttribute="leadingMargin" id="TKD-kJ-W42"/>
  2540. <constraint firstAttribute="trailingMargin" secondItem="YoS-Np-Z37" secondAttribute="trailing" id="XS6-wl-6vx"/>
  2541. <constraint firstAttribute="trailingMargin" secondItem="zYA-qz-iwe" secondAttribute="trailing" id="dCQ-zF-Shp"/>
  2542. <constraint firstItem="zYA-qz-iwe" firstAttribute="top" secondItem="3J9-nj-Hgy" secondAttribute="topMargin" id="eGi-n3-15y"/>
  2543. <constraint firstItem="YoS-Np-Z37" firstAttribute="leading" secondItem="3J9-nj-Hgy" secondAttribute="leadingMargin" id="fEh-2D-8MZ"/>
  2544. </constraints>
  2545. </tableViewCellContentView>
  2546. </tableViewCell>
  2547. </cells>
  2548. </tableViewSection>
  2549. <tableViewSection id="e9k-VH-lsl">
  2550. <cells>
  2551. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="YPC-ic-pTa" imageView="BKc-YV-enp" style="IBUITableViewCellStyleDefault" id="cdb-1L-fZu">
  2552. <rect key="frame" x="0.0" y="96.5" width="375" height="44"/>
  2553. <autoresizingMask key="autoresizingMask"/>
  2554. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cdb-1L-fZu" id="xik-ar-cyW">
  2555. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  2556. <autoresizingMask key="autoresizingMask"/>
  2557. <subviews>
  2558. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Scan an ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="YPC-ic-pTa">
  2559. <rect key="frame" x="53" y="0.0" width="287" height="44"/>
  2560. <autoresizingMask key="autoresizingMask"/>
  2561. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2562. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2563. <nil key="highlightedColor"/>
  2564. </label>
  2565. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="QRScan" highlightedImage="QRScan" id="BKc-YV-enp">
  2566. <rect key="frame" x="16" y="11" width="22" height="22"/>
  2567. <autoresizingMask key="autoresizingMask"/>
  2568. </imageView>
  2569. </subviews>
  2570. </tableViewCellContentView>
  2571. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  2572. </tableViewCell>
  2573. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="xRZ-tM-3dS" style="IBUITableViewCellStyleDefault" id="Tr4-JV-PPU">
  2574. <rect key="frame" x="0.0" y="140.5" width="375" height="44"/>
  2575. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2576. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Tr4-JV-PPU" id="6SY-iN-gCj">
  2577. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  2578. <autoresizingMask key="autoresizingMask"/>
  2579. <subviews>
  2580. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Invite a Friend" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xRZ-tM-3dS">
  2581. <rect key="frame" x="16" y="0.0" width="324" height="44"/>
  2582. <autoresizingMask key="autoresizingMask"/>
  2583. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2584. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2585. <nil key="highlightedColor"/>
  2586. </label>
  2587. </subviews>
  2588. </tableViewCellContentView>
  2589. </tableViewCell>
  2590. </cells>
  2591. </tableViewSection>
  2592. </sections>
  2593. <connections>
  2594. <outlet property="dataSource" destination="G1V-ju-hH8" id="lOd-gQ-aA4"/>
  2595. <outlet property="delegate" destination="G1V-ju-hH8" id="prm-rV-y9u"/>
  2596. </connections>
  2597. </tableView>
  2598. <navigationItem key="navigationItem" title="Add Contact" id="Eq0-ED-f11">
  2599. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="1WQ-02-3J0">
  2600. <connections>
  2601. <action selector="cancelAction:" destination="G1V-ju-hH8" id="4tc-43-LcQ"/>
  2602. </connections>
  2603. </barButtonItem>
  2604. <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="VEq-T8-yyu">
  2605. <connections>
  2606. <action selector="doneAction:" destination="G1V-ju-hH8" id="TMy-Sd-G9r"/>
  2607. </connections>
  2608. </barButtonItem>
  2609. </navigationItem>
  2610. <connections>
  2611. <outlet property="identityTextField" destination="YoS-Np-Z37" id="h0l-zX-7fe"/>
  2612. <outlet property="scanIdentityCell" destination="cdb-1L-fZu" id="TWi-lx-If4"/>
  2613. </connections>
  2614. </tableViewController>
  2615. <placeholder placeholderIdentifier="IBFirstResponder" id="WWb-st-0qa" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2616. </objects>
  2617. <point key="canvasLocation" x="3490.4000000000001" y="-1027.736131934033"/>
  2618. </scene>
  2619. <!--Contacts-->
  2620. <scene sceneID="VaV-F2-hej">
  2621. <objects>
  2622. <navigationController id="jkA-kt-EVh" customClass="ContactsNavigationController" sceneMemberID="viewController">
  2623. <tabBarItem key="tabBarItem" title="Contacts" image="TabBar-Contacts" id="JXW-2V-ftV"/>
  2624. <toolbarItems/>
  2625. <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="5Ob-0j-Mcg" customClass="StatusNavigationBar">
  2626. <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
  2627. <autoresizingMask key="autoresizingMask"/>
  2628. </navigationBar>
  2629. <nil name="viewControllers"/>
  2630. <connections>
  2631. <segue destination="v7U-vl-J3v" kind="relationship" relationship="rootViewController" id="I0Z-ra-Thg"/>
  2632. </connections>
  2633. </navigationController>
  2634. <placeholder placeholderIdentifier="IBFirstResponder" id="DXi-bE-KsG" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2635. </objects>
  2636. <point key="canvasLocation" x="-2787.2000000000003" y="-362.51874062968517"/>
  2637. </scene>
  2638. <!--Contacts-->
  2639. <scene sceneID="1lj-Ih-dGg">
  2640. <objects>
  2641. <tableViewController storyboardIdentifier="contactsViewController" extendedLayoutIncludesOpaqueBars="YES" id="v7U-vl-J3v" customClass="ContactsViewController" sceneMemberID="viewController">
  2642. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="8Yy-MV-Y5g">
  2643. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2644. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2645. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  2646. <prototypes>
  2647. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="vvE-0J-ugd" customClass="ContactCell">
  2648. <rect key="frame" x="0.0" y="28" width="375" height="60.5"/>
  2649. <autoresizingMask key="autoresizingMask"/>
  2650. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vvE-0J-ugd" id="eLT-ov-fMR">
  2651. <rect key="frame" x="0.0" y="0.0" width="375" height="60.5"/>
  2652. <autoresizingMask key="autoresizingMask"/>
  2653. <subviews>
  2654. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="UXz-Z9-gqS">
  2655. <rect key="frame" x="16" y="10.5" width="40" height="40"/>
  2656. <constraints>
  2657. <constraint firstAttribute="width" constant="40" id="6tg-Cy-tuz"/>
  2658. <constraint firstAttribute="height" constant="40" id="Z5D-ij-9kN"/>
  2659. </constraints>
  2660. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2661. </imageView>
  2662. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="MacBook Office 10 7" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bsh-sy-Xwu" customClass="ContactNameLabel">
  2663. <rect key="frame" x="64" y="11" width="163.5" height="20.5"/>
  2664. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  2665. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  2666. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2667. <nil key="highlightedColor"/>
  2668. </label>
  2669. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="Jej-pI-YGq">
  2670. <rect key="frame" x="327" y="17.5" width="32" height="8"/>
  2671. <constraints>
  2672. <constraint firstAttribute="width" constant="32" id="NRs-7Y-97r"/>
  2673. <constraint firstAttribute="height" constant="8" id="pl6-aE-RrS"/>
  2674. </constraints>
  2675. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  2676. </imageView>
  2677. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p0V-dq-HkU" customClass="SSLabel">
  2678. <rect key="frame" x="64" y="31.5" width="60.5" height="16.5"/>
  2679. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  2680. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  2681. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2682. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2683. </label>
  2684. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" horizontalCompressionResistancePriority="753" text="IDENTITY" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="n7x-y4-2CM">
  2685. <rect key="frame" x="308" y="34" width="51" height="14"/>
  2686. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  2687. <fontDescription key="fontDescription" style="UICTFontTextStyleCaption2"/>
  2688. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2689. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2690. </label>
  2691. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="eQt-pS-2t8">
  2692. <rect key="frame" x="16" y="36.5" width="14" height="14"/>
  2693. <constraints>
  2694. <constraint firstAttribute="width" constant="14" id="S4j-jr-rVp"/>
  2695. <constraint firstAttribute="height" constant="14" id="xBk-mZ-vfL"/>
  2696. </constraints>
  2697. </imageView>
  2698. </subviews>
  2699. <constraints>
  2700. <constraint firstItem="p0V-dq-HkU" firstAttribute="top" secondItem="bsh-sy-Xwu" secondAttribute="bottom" id="1y1-zL-ud5"/>
  2701. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="UXz-Z9-gqS" secondAttribute="bottom" constant="2" id="40l-yb-6En"/>
  2702. <constraint firstItem="p0V-dq-HkU" firstAttribute="leading" secondItem="UXz-Z9-gqS" secondAttribute="trailing" constant="8" id="Cr8-mR-joh"/>
  2703. <constraint firstItem="eQt-pS-2t8" firstAttribute="leading" secondItem="UXz-Z9-gqS" secondAttribute="leading" id="DS4-nD-57h"/>
  2704. <constraint firstItem="eQt-pS-2t8" firstAttribute="bottom" secondItem="UXz-Z9-gqS" secondAttribute="bottom" id="HqP-7w-rBy"/>
  2705. <constraint firstItem="bsh-sy-Xwu" firstAttribute="top" secondItem="eLT-ov-fMR" secondAttribute="topMargin" id="NoQ-yl-SqY"/>
  2706. <constraint firstItem="UXz-Z9-gqS" firstAttribute="centerY" secondItem="eLT-ov-fMR" secondAttribute="centerY" id="UD0-ve-g3c"/>
  2707. <constraint firstItem="n7x-y4-2CM" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="bsh-sy-Xwu" secondAttribute="trailing" constant="5" id="XcO-Kh-REo"/>
  2708. <constraint firstAttribute="bottomMargin" secondItem="p0V-dq-HkU" secondAttribute="bottom" constant="1.5" id="dsD-7c-UCs"/>
  2709. <constraint firstItem="UXz-Z9-gqS" firstAttribute="top" relation="greaterThanOrEqual" secondItem="eLT-ov-fMR" secondAttribute="top" constant="2" id="hxa-X1-VdQ"/>
  2710. <constraint firstItem="n7x-y4-2CM" firstAttribute="trailing" secondItem="eLT-ov-fMR" secondAttribute="trailingMargin" id="ifC-lC-ap7"/>
  2711. <constraint firstItem="Jej-pI-YGq" firstAttribute="centerY" secondItem="bsh-sy-Xwu" secondAttribute="centerY" id="lio-Z5-C3w"/>
  2712. <constraint firstItem="Jej-pI-YGq" firstAttribute="trailing" secondItem="eLT-ov-fMR" secondAttribute="trailingMargin" id="pun-9S-mUL"/>
  2713. <constraint firstItem="bsh-sy-Xwu" firstAttribute="leading" secondItem="UXz-Z9-gqS" secondAttribute="trailing" constant="8" id="qGJ-Fm-3oq"/>
  2714. <constraint firstItem="n7x-y4-2CM" firstAttribute="bottom" secondItem="p0V-dq-HkU" secondAttribute="bottom" id="tA7-TP-75b"/>
  2715. <constraint firstItem="n7x-y4-2CM" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="p0V-dq-HkU" secondAttribute="trailing" constant="5" id="vP6-kL-gpU"/>
  2716. <constraint firstItem="UXz-Z9-gqS" firstAttribute="leading" secondItem="eLT-ov-fMR" secondAttribute="leadingMargin" id="yKU-0O-cxp"/>
  2717. </constraints>
  2718. </tableViewCellContentView>
  2719. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  2720. <connections>
  2721. <outlet property="contactImage" destination="UXz-Z9-gqS" id="ozH-je-B4e"/>
  2722. <outlet property="identityLabel" destination="n7x-y4-2CM" id="vSI-vt-P6I"/>
  2723. <outlet property="nameLabel" destination="bsh-sy-Xwu" id="aC6-o0-hvj"/>
  2724. <outlet property="nicknameLabel" destination="p0V-dq-HkU" id="aF0-8V-tIl"/>
  2725. <outlet property="threemaTypeIcon" destination="eQt-pS-2t8" id="55d-IW-btb"/>
  2726. <outlet property="verificationLevel" destination="Jej-pI-YGq" id="i9u-5M-h1w"/>
  2727. </connections>
  2728. </tableViewCell>
  2729. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" id="re3-Mj-syT" customClass="GroupCell">
  2730. <rect key="frame" x="0.0" y="88.5" width="375" height="64.5"/>
  2731. <autoresizingMask key="autoresizingMask"/>
  2732. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="re3-Mj-syT" id="JoE-5s-hGS">
  2733. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  2734. <autoresizingMask key="autoresizingMask"/>
  2735. <subviews>
  2736. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ds7-P9-imN">
  2737. <rect key="frame" x="64" y="11" width="295" height="20.5"/>
  2738. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  2739. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  2740. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2741. <nil key="highlightedColor"/>
  2742. </label>
  2743. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group creator" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KRl-DY-AIA">
  2744. <rect key="frame" x="64" y="35.5" width="84" height="16.5"/>
  2745. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2746. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  2747. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2748. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2749. </label>
  2750. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="Svq-z8-6SM">
  2751. <rect key="frame" x="16" y="12.5" width="40" height="40"/>
  2752. <constraints>
  2753. <constraint firstAttribute="width" constant="40" id="C5o-bN-AUh"/>
  2754. <constraint firstAttribute="height" constant="40" id="jXq-0n-Xfx"/>
  2755. </constraints>
  2756. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2757. </imageView>
  2758. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="I8P-9o-uIi">
  2759. <rect key="frame" x="290" y="36" width="69" height="16"/>
  2760. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2761. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  2762. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2763. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2764. </label>
  2765. </subviews>
  2766. <constraints>
  2767. <constraint firstAttribute="trailingMargin" secondItem="I8P-9o-uIi" secondAttribute="trailing" id="6A4-4b-RxZ"/>
  2768. <constraint firstItem="ds7-P9-imN" firstAttribute="top" secondItem="JoE-5s-hGS" secondAttribute="topMargin" id="7EH-of-TwK"/>
  2769. <constraint firstItem="Svq-z8-6SM" firstAttribute="leading" secondItem="JoE-5s-hGS" secondAttribute="leadingMargin" id="BoH-5o-ITr"/>
  2770. <constraint firstItem="I8P-9o-uIi" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="KRl-DY-AIA" secondAttribute="trailing" constant="8" symbolic="YES" id="Ery-gg-BgN"/>
  2771. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="Svq-z8-6SM" secondAttribute="bottom" constant="2" id="FoJ-Cs-wxD"/>
  2772. <constraint firstItem="KRl-DY-AIA" firstAttribute="leading" secondItem="Svq-z8-6SM" secondAttribute="trailing" constant="8" id="GcX-uc-uKx"/>
  2773. <constraint firstItem="ds7-P9-imN" firstAttribute="leading" secondItem="Svq-z8-6SM" secondAttribute="trailing" constant="8" id="JPM-Gg-hzA"/>
  2774. <constraint firstItem="KRl-DY-AIA" firstAttribute="top" secondItem="ds7-P9-imN" secondAttribute="bottom" constant="4" id="O6V-xp-QVK"/>
  2775. <constraint firstItem="KRl-DY-AIA" firstAttribute="bottom" secondItem="I8P-9o-uIi" secondAttribute="bottom" id="VPU-n3-ERJ"/>
  2776. <constraint firstAttribute="trailingMargin" secondItem="ds7-P9-imN" secondAttribute="trailing" id="WYN-1X-WuC"/>
  2777. <constraint firstItem="Svq-z8-6SM" firstAttribute="centerY" secondItem="JoE-5s-hGS" secondAttribute="centerY" id="oen-N6-33P"/>
  2778. <constraint firstItem="Svq-z8-6SM" firstAttribute="leading" secondItem="JoE-5s-hGS" secondAttribute="leadingMargin" id="tvT-nd-bML"/>
  2779. <constraint firstItem="Svq-z8-6SM" firstAttribute="top" relation="greaterThanOrEqual" secondItem="JoE-5s-hGS" secondAttribute="top" constant="2" id="vsI-2m-X5z"/>
  2780. <constraint firstAttribute="bottomMargin" secondItem="KRl-DY-AIA" secondAttribute="bottom" constant="1.5" id="yas-p7-ueU"/>
  2781. </constraints>
  2782. </tableViewCellContentView>
  2783. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2784. <connections>
  2785. <outlet property="countMemberLabel" destination="I8P-9o-uIi" id="uzE-fb-Ofk"/>
  2786. <outlet property="creatorLabel" destination="KRl-DY-AIA" id="Rrc-Xz-Y3M"/>
  2787. <outlet property="groupImage" destination="Svq-z8-6SM" id="6eO-oi-C9B"/>
  2788. <outlet property="groupNameLabel" destination="ds7-P9-imN" id="Tc1-wt-idM"/>
  2789. </connections>
  2790. </tableViewCell>
  2791. </prototypes>
  2792. <connections>
  2793. <outlet property="dataSource" destination="v7U-vl-J3v" id="apf-82-oZ1"/>
  2794. <outlet property="delegate" destination="v7U-vl-J3v" id="BcX-FA-4bi"/>
  2795. </connections>
  2796. </tableView>
  2797. <navigationItem key="navigationItem" title="Contacts" id="Ll3-Ew-izw">
  2798. <barButtonItem key="leftBarButtonItem" style="plain" systemItem="edit" id="KFB-eU-OKt"/>
  2799. <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="77n-al-llJ">
  2800. <rect key="frame" x="107" y="6" width="161" height="32"/>
  2801. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2802. <segments>
  2803. <segment title="" image="Contact"/>
  2804. <segment title="" image="Group"/>
  2805. </segments>
  2806. <connections>
  2807. <action selector="segmentedControlChanged:" destination="v7U-vl-J3v" eventType="valueChanged" id="dRp-Sb-3bP"/>
  2808. </connections>
  2809. </segmentedControl>
  2810. <barButtonItem key="rightBarButtonItem" style="plain" systemItem="add" id="hiG-bl-yv5">
  2811. <connections>
  2812. <action selector="addAction:" destination="v7U-vl-J3v" id="gmp-gk-V2B"/>
  2813. </connections>
  2814. </barButtonItem>
  2815. </navigationItem>
  2816. <refreshControl key="refreshControl" opaque="NO" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" enabled="NO" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="y3Y-Em-XjT">
  2817. <rect key="frame" x="0.0" y="0.0" width="1000" height="1000"/>
  2818. <autoresizingMask key="autoresizingMask"/>
  2819. <connections>
  2820. <action selector="pulledForRefresh:" destination="v7U-vl-J3v" eventType="valueChanged" id="mh8-xh-PLQ"/>
  2821. </connections>
  2822. </refreshControl>
  2823. <connections>
  2824. <outlet property="companyDirectoryCell" destination="Qs7-Af-fEJ" id="jwD-Ic-aqg"/>
  2825. <outlet property="countContactsFooterLabel" destination="uT9-uH-vrD" id="gMC-79-QVC"/>
  2826. <outlet property="countContactsFooterView" destination="ITQ-HT-0We" id="WfP-CD-Jda"/>
  2827. <outlet property="noContactsMessageLabel" destination="zFq-Zo-ECJ" id="ZPe-eT-aHg"/>
  2828. <outlet property="noContactsTitleLabel" destination="Ofe-BC-uXe" id="fNM-6u-pCk"/>
  2829. <outlet property="noContactsView" destination="XYi-sW-ceR" id="gMs-Sf-Dd0"/>
  2830. <outlet property="segmentedControl" destination="77n-al-llJ" id="SlC-Pa-59N"/>
  2831. <segue destination="MbJ-IV-2f9" kind="show" identifier="ShowContact" id="Xi4-er-hN6"/>
  2832. </connections>
  2833. </tableViewController>
  2834. <view contentMode="scaleToFill" id="ITQ-HT-0We">
  2835. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2836. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2837. <subviews>
  2838. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="123" contentMode="left" text="X contacts" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uT9-uH-vrD">
  2839. <rect key="frame" x="26" y="12" width="323" height="21"/>
  2840. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  2841. <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2842. <nil key="highlightedColor"/>
  2843. </label>
  2844. </subviews>
  2845. <viewLayoutGuide key="safeArea" id="Kdi-Aw-yri"/>
  2846. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  2847. <constraints>
  2848. <constraint firstItem="uT9-uH-vrD" firstAttribute="leading" secondItem="Kdi-Aw-yri" secondAttribute="leading" constant="26" id="6Mi-OC-DMP"/>
  2849. <constraint firstItem="Kdi-Aw-yri" firstAttribute="trailing" secondItem="uT9-uH-vrD" secondAttribute="trailing" constant="26" id="hwx-zp-p1U"/>
  2850. <constraint firstItem="uT9-uH-vrD" firstAttribute="top" secondItem="Kdi-Aw-yri" secondAttribute="top" constant="12" id="kwM-Ag-58A"/>
  2851. <constraint firstItem="Kdi-Aw-yri" firstAttribute="bottom" secondItem="uT9-uH-vrD" secondAttribute="bottom" constant="11" id="lY0-3E-2Kb"/>
  2852. </constraints>
  2853. </view>
  2854. <view contentMode="scaleToFill" id="XYi-sW-ceR">
  2855. <rect key="frame" x="0.0" y="0.0" width="375" height="120"/>
  2856. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2857. <subviews>
  2858. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="You don't have any contacts. Turn on synchronization, or add contacts manually using the + button." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zFq-Zo-ECJ">
  2859. <rect key="frame" x="30" y="51" width="315" height="58"/>
  2860. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  2861. <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2862. <nil key="highlightedColor"/>
  2863. </label>
  2864. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="No contacts" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ofe-BC-uXe">
  2865. <rect key="frame" x="30" y="20" width="315" height="21"/>
  2866. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  2867. <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2868. <nil key="highlightedColor"/>
  2869. </label>
  2870. </subviews>
  2871. <viewLayoutGuide key="safeArea" id="f7L-c4-ypy"/>
  2872. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  2873. <constraints>
  2874. <constraint firstItem="Ofe-BC-uXe" firstAttribute="top" secondItem="f7L-c4-ypy" secondAttribute="top" constant="20" id="0zs-m7-L4Y"/>
  2875. <constraint firstItem="zFq-Zo-ECJ" firstAttribute="leading" secondItem="f7L-c4-ypy" secondAttribute="leading" constant="30" id="D5s-4N-8gV"/>
  2876. <constraint firstItem="Ofe-BC-uXe" firstAttribute="leading" secondItem="f7L-c4-ypy" secondAttribute="leading" constant="30" id="OCF-N5-Tjd"/>
  2877. <constraint firstItem="f7L-c4-ypy" firstAttribute="trailing" secondItem="zFq-Zo-ECJ" secondAttribute="trailing" constant="30" id="nSq-cz-pFo"/>
  2878. <constraint firstItem="zFq-Zo-ECJ" firstAttribute="top" secondItem="Ofe-BC-uXe" secondAttribute="bottom" constant="10" id="vEb-ul-dDM"/>
  2879. <constraint firstItem="f7L-c4-ypy" firstAttribute="trailing" secondItem="Ofe-BC-uXe" secondAttribute="trailing" constant="30" id="y53-6d-sdZ"/>
  2880. </constraints>
  2881. </view>
  2882. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CompanyDirectoryCell" rowHeight="60" id="Qs7-Af-fEJ" customClass="CompanyDirectoryCell" customModule="Threema" customModuleProvider="target">
  2883. <rect key="frame" x="0.0" y="0.0" width="375" height="60"/>
  2884. <autoresizingMask key="autoresizingMask"/>
  2885. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Qs7-Af-fEJ" id="xsb-YD-UKR">
  2886. <rect key="frame" x="0.0" y="0.0" width="348" height="60"/>
  2887. <autoresizingMask key="autoresizingMask"/>
  2888. <subviews>
  2889. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="Asterisk" translatesAutoresizingMaskIntoConstraints="NO" id="P69-Ak-X1l">
  2890. <rect key="frame" x="16" y="10" width="40" height="40"/>
  2891. <constraints>
  2892. <constraint firstAttribute="height" constant="40" id="2qa-Do-KVM"/>
  2893. <constraint firstAttribute="width" constant="40" id="fJR-Sm-FSN"/>
  2894. </constraints>
  2895. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2896. </imageView>
  2897. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Company Directory" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tM0-nk-pXd" customClass="ContactNameLabel">
  2898. <rect key="frame" x="64" y="11" width="154" height="20.5"/>
  2899. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  2900. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  2901. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2902. <nil key="highlightedColor"/>
  2903. </label>
  2904. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Search for employees" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sUm-6k-kdq" customClass="SSLabel">
  2905. <rect key="frame" x="64" y="31.5" width="131.5" height="16"/>
  2906. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  2907. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  2908. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2909. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2910. </label>
  2911. </subviews>
  2912. <constraints>
  2913. <constraint firstItem="P69-Ak-X1l" firstAttribute="leading" secondItem="xsb-YD-UKR" secondAttribute="leadingMargin" id="8zS-3f-leC"/>
  2914. <constraint firstItem="sUm-6k-kdq" firstAttribute="leading" secondItem="P69-Ak-X1l" secondAttribute="trailing" constant="8" id="E1P-WS-gJt"/>
  2915. <constraint firstAttribute="bottomMargin" secondItem="sUm-6k-kdq" secondAttribute="bottom" constant="1.5" id="NzG-BH-lv1"/>
  2916. <constraint firstItem="tM0-nk-pXd" firstAttribute="top" secondItem="xsb-YD-UKR" secondAttribute="topMargin" id="QOP-zM-ySp"/>
  2917. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="P69-Ak-X1l" secondAttribute="bottom" constant="2" id="R3d-6X-MDS"/>
  2918. <constraint firstItem="P69-Ak-X1l" firstAttribute="top" relation="greaterThanOrEqual" secondItem="xsb-YD-UKR" secondAttribute="top" constant="2" id="XDv-J1-8VU"/>
  2919. <constraint firstItem="P69-Ak-X1l" firstAttribute="centerY" secondItem="xsb-YD-UKR" secondAttribute="centerY" id="dEg-qh-Wqo"/>
  2920. <constraint firstItem="tM0-nk-pXd" firstAttribute="leading" secondItem="P69-Ak-X1l" secondAttribute="trailing" constant="8" id="gDg-Dy-Tv6"/>
  2921. <constraint firstItem="sUm-6k-kdq" firstAttribute="top" secondItem="tM0-nk-pXd" secondAttribute="bottom" id="ppC-qb-oSD"/>
  2922. </constraints>
  2923. </tableViewCellContentView>
  2924. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  2925. <connections>
  2926. <outlet property="companyAvatar" destination="P69-Ak-X1l" id="TKY-hy-yX0"/>
  2927. <outlet property="descriptionLabel" destination="sUm-6k-kdq" id="3Gw-D5-drJ"/>
  2928. <outlet property="titleLabel" destination="tM0-nk-pXd" id="MqT-Ch-dMu"/>
  2929. </connections>
  2930. </tableViewCell>
  2931. <placeholder placeholderIdentifier="IBFirstResponder" id="v33-rG-pnV" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2932. </objects>
  2933. <point key="canvasLocation" x="-1458.4000000000001" y="-363.86806596701655"/>
  2934. </scene>
  2935. <!--My Profile-->
  2936. <scene sceneID="Juw-dJ-4IQ">
  2937. <objects>
  2938. <navigationController id="uvv-Ko-dQ8" customClass="MyIdentityNavigationController" sceneMemberID="viewController">
  2939. <tabBarItem key="tabBarItem" title="My Profile" image="TabBar-Id" id="5lj-oy-IYs"/>
  2940. <toolbarItems/>
  2941. <navigationBar key="navigationBar" contentMode="scaleToFill" largeTitles="YES" id="ySu-3e-OwE" customClass="StatusNavigationBar">
  2942. <rect key="frame" x="0.0" y="0.0" width="375" height="96"/>
  2943. <autoresizingMask key="autoresizingMask"/>
  2944. </navigationBar>
  2945. <nil name="viewControllers"/>
  2946. <connections>
  2947. <segue destination="2cv-d2-Ign" kind="relationship" relationship="rootViewController" id="wYd-em-mRz"/>
  2948. </connections>
  2949. </navigationController>
  2950. <placeholder placeholderIdentifier="IBFirstResponder" id="RxJ-yK-Fe6" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2951. </objects>
  2952. <point key="canvasLocation" x="-2912" y="1414.0929535232385"/>
  2953. </scene>
  2954. <!--MyIdentityStoryboard-->
  2955. <scene sceneID="1d1-Ba-MTy">
  2956. <objects>
  2957. <viewControllerPlaceholder storyboardName="MyIdentityStoryboard" id="2cv-d2-Ign" sceneMemberID="viewController">
  2958. <navigationItem key="navigationItem" id="AeO-sJ-Kkx"/>
  2959. </viewControllerPlaceholder>
  2960. <placeholder placeholderIdentifier="IBFirstResponder" id="fMk-6r-pjN" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2961. </objects>
  2962. <point key="canvasLocation" x="-2913.6000000000004" y="1899.8500749625189"/>
  2963. </scene>
  2964. <!--Modal Navigation Controller-->
  2965. <scene sceneID="oa6-Aq-F4t">
  2966. <objects>
  2967. <navigationController storyboardIdentifier="NewScannedContact" id="udX-d0-cyB" customClass="ModalNavigationController" sceneMemberID="viewController">
  2968. <toolbarItems/>
  2969. <navigationBar key="navigationBar" contentMode="scaleToFill" id="Q0G-EA-t5Z" customClass="StatusNavigationBar">
  2970. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2971. <autoresizingMask key="autoresizingMask"/>
  2972. </navigationBar>
  2973. <nil name="viewControllers"/>
  2974. <connections>
  2975. <segue destination="bcN-Ct-OaD" kind="relationship" relationship="rootViewController" id="MvH-hT-pfP"/>
  2976. </connections>
  2977. </navigationController>
  2978. <placeholder placeholderIdentifier="IBFirstResponder" id="Tst-lN-YQp" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2979. </objects>
  2980. <point key="canvasLocation" x="2791" y="2812"/>
  2981. </scene>
  2982. <!--Chat View Controller-->
  2983. <scene sceneID="0PO-DN-NhL">
  2984. <objects>
  2985. <viewController storyboardIdentifier="chatViewController" autoresizesArchivedViewToFullSize="NO" hidesBottomBarWhenPushed="YES" id="v1R-9K-OZW" customClass="ChatViewController" sceneMemberID="viewController">
  2986. <view key="view" contentMode="scaleToFill" id="qMd-WF-uDa">
  2987. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2988. <autoresizingMask key="autoresizingMask"/>
  2989. <subviews>
  2990. <view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZhQ-2Z-mYP">
  2991. <rect key="frame" x="0.0" y="0.0" width="375" height="40"/>
  2992. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2993. <subviews>
  2994. <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="WuX-yK-0RJ">
  2995. <rect key="frame" x="8" y="4" width="358" height="32"/>
  2996. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2997. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  2998. <size key="titleShadowOffset" width="1" height="1"/>
  2999. <state key="normal" title="Load Earlier Messages">
  3000. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3001. <color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3002. </state>
  3003. <state key="highlighted">
  3004. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3005. </state>
  3006. <connections>
  3007. <action selector="loadEarlierMessagesAction:" destination="v1R-9K-OZW" eventType="touchUpInside" id="IcO-Sz-Dj3"/>
  3008. </connections>
  3009. </button>
  3010. </subviews>
  3011. <viewLayoutGuide key="safeArea" id="xOE-nB-SUe"/>
  3012. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3013. </view>
  3014. </subviews>
  3015. <viewLayoutGuide key="safeArea" id="9wi-kr-sqA"/>
  3016. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3017. </view>
  3018. <navigationItem key="navigationItem" largeTitleDisplayMode="never" id="uYf-zy-tOB"/>
  3019. <connections>
  3020. <outlet property="chatContentHeader" destination="ZhQ-2Z-mYP" id="7vq-AJ-cwL"/>
  3021. <outlet property="headerView" destination="ZhQ-2Z-mYP" id="zqP-cB-jca"/>
  3022. <outlet property="loadEarlierMessages" destination="WuX-yK-0RJ" id="vcS-wC-de0"/>
  3023. <segue destination="MbJ-IV-2f9" kind="show" identifier="ShowContact" id="rOK-24-MIK"/>
  3024. <segue destination="FVk-BM-jrL" kind="show" identifier="ShowLocation" id="WV3-3M-WJY"/>
  3025. <segue destination="E7y-fb-wyM" kind="show" identifier="ShowDetails" id="c6z-1E-Rur"/>
  3026. <segue destination="Ms8-he-mHa" kind="show" identifier="ShowGroupInfo" id="iDo-S6-WeN"/>
  3027. <segue destination="xtp-zM-Vgy" kind="show" identifier="ShowMeContact" id="uVG-ah-GIv"/>
  3028. <segue destination="7sc-E3-vaH" kind="show" identifier="ShowPushSetting" id="v8v-US-Bo6"/>
  3029. </connections>
  3030. </viewController>
  3031. <placeholder placeholderIdentifier="IBFirstResponder" id="bM3-IQ-bac" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3032. </objects>
  3033. <point key="canvasLocation" x="-683.20000000000005" y="417.39130434782612"/>
  3034. </scene>
  3035. <!--Preview-->
  3036. <scene sceneID="ZQM-N7-ABW">
  3037. <objects>
  3038. <viewController storyboardIdentifier="PreviewImage" id="xFf-fm-QrO" customClass="PreviewImageViewController" sceneMemberID="viewController">
  3039. <view key="view" contentMode="scaleToFill" id="eVy-LW-gwf">
  3040. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3041. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3042. <subviews>
  3043. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" translatesAutoresizingMaskIntoConstraints="NO" id="94h-MW-FVh">
  3044. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3045. </imageView>
  3046. </subviews>
  3047. <viewLayoutGuide key="safeArea" id="QoE-dW-Pbi"/>
  3048. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3049. <constraints>
  3050. <constraint firstItem="94h-MW-FVh" firstAttribute="top" secondItem="eVy-LW-gwf" secondAttribute="top" id="Gxm-09-kmt"/>
  3051. <constraint firstItem="94h-MW-FVh" firstAttribute="bottom" secondItem="QoE-dW-Pbi" secondAttribute="bottom" id="Jsj-84-Ebs"/>
  3052. <constraint firstItem="94h-MW-FVh" firstAttribute="leading" secondItem="QoE-dW-Pbi" secondAttribute="leading" id="bG5-UA-oAD"/>
  3053. <constraint firstItem="94h-MW-FVh" firstAttribute="trailing" secondItem="QoE-dW-Pbi" secondAttribute="trailing" id="ckp-XM-GYJ"/>
  3054. </constraints>
  3055. </view>
  3056. <navigationItem key="navigationItem" title="Preview" id="wPu-F7-kf1">
  3057. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="YCy-tZ-DQg">
  3058. <connections>
  3059. <action selector="cancelAction:" destination="xFf-fm-QrO" id="33e-eE-gCh"/>
  3060. </connections>
  3061. </barButtonItem>
  3062. <barButtonItem key="rightBarButtonItem" title="Send" style="done" id="25C-Te-sfW">
  3063. <connections>
  3064. <action selector="sendAction:" destination="xFf-fm-QrO" id="GMR-ZL-Qz8"/>
  3065. </connections>
  3066. </barButtonItem>
  3067. </navigationItem>
  3068. <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" barStyle="black" prompted="NO"/>
  3069. <connections>
  3070. <outlet property="imageView" destination="94h-MW-FVh" id="15h-Ag-y2z"/>
  3071. </connections>
  3072. </viewController>
  3073. <placeholder placeholderIdentifier="IBFirstResponder" id="LwV-KW-DFP" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3074. </objects>
  3075. <point key="canvasLocation" x="4177" y="417"/>
  3076. </scene>
  3077. <!--Modal Navigation Controller-->
  3078. <scene sceneID="I9d-0A-aFE">
  3079. <objects>
  3080. <navigationController storyboardIdentifier="ContactPickerNav" id="X2J-pF-E4b" customClass="ModalNavigationController" sceneMemberID="viewController">
  3081. <toolbarItems/>
  3082. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ZlH-8V-PkV" customClass="StatusNavigationBar">
  3083. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3084. <autoresizingMask key="autoresizingMask"/>
  3085. </navigationBar>
  3086. <nil name="viewControllers"/>
  3087. <connections>
  3088. <segue destination="OvB-ud-WFO" kind="relationship" relationship="rootViewController" id="ls1-VK-yb6"/>
  3089. </connections>
  3090. </navigationController>
  3091. <placeholder placeholderIdentifier="IBFirstResponder" id="nxw-Dj-CRk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3092. </objects>
  3093. <point key="canvasLocation" x="2748" y="2069"/>
  3094. </scene>
  3095. <!--Modal Navigation Controller-->
  3096. <scene sceneID="D9S-JR-67e">
  3097. <objects>
  3098. <navigationController storyboardIdentifier="VerifyScannedContact" id="c2x-1I-hYh" customClass="ModalNavigationController" sceneMemberID="viewController">
  3099. <toolbarItems/>
  3100. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ife-ea-aDH" customClass="StatusNavigationBar">
  3101. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3102. <autoresizingMask key="autoresizingMask"/>
  3103. </navigationBar>
  3104. <nil name="viewControllers"/>
  3105. <connections>
  3106. <segue destination="CJa-dK-jp4" kind="relationship" relationship="rootViewController" id="718-Kk-eTH"/>
  3107. </connections>
  3108. </navigationController>
  3109. <placeholder placeholderIdentifier="IBFirstResponder" id="pO8-XU-dTk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3110. </objects>
  3111. <point key="canvasLocation" x="2806" y="3595"/>
  3112. </scene>
  3113. <!--ID Verified-->
  3114. <scene sceneID="QYY-E3-5fH">
  3115. <objects>
  3116. <tableViewController id="CJa-dK-jp4" customClass="IdentityVerifiedViewController" sceneMemberID="viewController">
  3117. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="yAX-VY-6pV">
  3118. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3119. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3120. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3121. <view key="tableHeaderView" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="ixC-bT-5cw">
  3122. <rect key="frame" x="0.0" y="0.0" width="375" height="275"/>
  3123. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3124. <subviews>
  3125. <stackView opaque="NO" contentMode="scaleAspectFit" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="HNG-Jj-vno">
  3126. <rect key="frame" x="16" y="16" width="343" height="243"/>
  3127. <subviews>
  3128. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TcL-P5-PEX">
  3129. <rect key="frame" x="71.5" y="0.0" width="200" height="200"/>
  3130. <subviews>
  3131. <imageView contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="xFV-V4-xV9">
  3132. <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
  3133. <constraints>
  3134. <constraint firstAttribute="width" constant="200" id="2Fk-pW-wbn"/>
  3135. <constraint firstAttribute="height" relation="lessThanOrEqual" constant="200" id="lP1-aJ-cAj"/>
  3136. <constraint firstAttribute="width" secondItem="xFV-V4-xV9" secondAttribute="height" multiplier="1:1" id="t7f-tH-mVt"/>
  3137. </constraints>
  3138. </imageView>
  3139. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="WorkContact.png" translatesAutoresizingMaskIntoConstraints="NO" id="z8K-7a-y8S">
  3140. <rect key="frame" x="0.0" y="150" width="50" height="50"/>
  3141. <constraints>
  3142. <constraint firstAttribute="width" secondItem="z8K-7a-y8S" secondAttribute="height" multiplier="1:1" id="uDD-n3-6hw"/>
  3143. </constraints>
  3144. </imageView>
  3145. </subviews>
  3146. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3147. <constraints>
  3148. <constraint firstAttribute="bottom" secondItem="xFV-V4-xV9" secondAttribute="bottom" id="B9B-gl-Np9"/>
  3149. <constraint firstItem="z8K-7a-y8S" firstAttribute="bottom" secondItem="xFV-V4-xV9" secondAttribute="bottom" id="HmU-uV-T5k"/>
  3150. <constraint firstItem="z8K-7a-y8S" firstAttribute="width" secondItem="xFV-V4-xV9" secondAttribute="height" multiplier="1:4" id="KpO-0S-FSZ"/>
  3151. <constraint firstAttribute="trailing" secondItem="xFV-V4-xV9" secondAttribute="trailing" id="Wzt-lb-f3A"/>
  3152. <constraint firstItem="xFV-V4-xV9" firstAttribute="top" secondItem="TcL-P5-PEX" secondAttribute="top" id="gB2-U5-2Rx"/>
  3153. <constraint firstItem="xFV-V4-xV9" firstAttribute="leading" secondItem="TcL-P5-PEX" secondAttribute="leading" id="otj-rb-gZw"/>
  3154. <constraint firstItem="z8K-7a-y8S" firstAttribute="leading" secondItem="xFV-V4-xV9" secondAttribute="leading" id="yu8-k6-AbP"/>
  3155. </constraints>
  3156. </view>
  3157. <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="gdf-DD-bDm">
  3158. <rect key="frame" x="131.5" y="221" width="80.5" height="22"/>
  3159. <subviews>
  3160. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="F29-qq-lEF">
  3161. <rect key="frame" x="0.0" y="0.0" width="80.5" height="22"/>
  3162. <constraints>
  3163. <constraint firstAttribute="height" constant="22" id="Bcc-2n-fQC"/>
  3164. </constraints>
  3165. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
  3166. <nil key="highlightedColor"/>
  3167. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3168. <size key="shadowOffset" width="0.0" height="1"/>
  3169. </label>
  3170. </subviews>
  3171. </stackView>
  3172. </subviews>
  3173. </stackView>
  3174. </subviews>
  3175. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3176. <constraints>
  3177. <constraint firstItem="HNG-Jj-vno" firstAttribute="top" secondItem="ixC-bT-5cw" secondAttribute="top" constant="16" id="RXb-Pc-Iec"/>
  3178. <constraint firstItem="HNG-Jj-vno" firstAttribute="leading" secondItem="ixC-bT-5cw" secondAttribute="leading" constant="16" id="n9c-y5-GvU"/>
  3179. <constraint firstAttribute="bottom" secondItem="HNG-Jj-vno" secondAttribute="bottom" constant="16" id="nfm-BJ-ihY"/>
  3180. <constraint firstAttribute="trailing" secondItem="HNG-Jj-vno" secondAttribute="trailing" constant="16" id="t3y-4z-Hr6"/>
  3181. </constraints>
  3182. </view>
  3183. <view key="tableFooterView" contentMode="scaleToFill" id="XW3-1v-D2N">
  3184. <rect key="frame" x="0.0" y="565" width="375" height="140"/>
  3185. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3186. <subviews>
  3187. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="The ID and public key of this contact have been verified." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Js-Fh-l8T">
  3188. <rect key="frame" x="46.5" y="83" width="282" height="49"/>
  3189. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3190. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3191. <nil key="highlightedColor"/>
  3192. </label>
  3193. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verificationbig-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="sqy-M6-DC0">
  3194. <rect key="frame" x="106" y="31" width="163" height="41"/>
  3195. <constraints>
  3196. <constraint firstAttribute="width" constant="163" id="HIc-U9-jOu"/>
  3197. <constraint firstAttribute="height" constant="41" id="Viy-vh-0yR"/>
  3198. </constraints>
  3199. </imageView>
  3200. </subviews>
  3201. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3202. <constraints>
  3203. <constraint firstItem="4Js-Fh-l8T" firstAttribute="centerX" secondItem="XW3-1v-D2N" secondAttribute="centerX" id="4AZ-m6-TIx"/>
  3204. <constraint firstItem="sqy-M6-DC0" firstAttribute="top" secondItem="XW3-1v-D2N" secondAttribute="top" constant="31" id="9xS-56-lKm"/>
  3205. <constraint firstItem="4Js-Fh-l8T" firstAttribute="top" secondItem="sqy-M6-DC0" secondAttribute="bottom" constant="11" id="VgH-MI-x5p"/>
  3206. <constraint firstAttribute="trailing" relation="greaterThanOrEqual" secondItem="4Js-Fh-l8T" secondAttribute="trailing" constant="40" id="fCM-zF-iko"/>
  3207. <constraint firstItem="sqy-M6-DC0" firstAttribute="centerX" secondItem="XW3-1v-D2N" secondAttribute="centerX" id="hZi-rb-f7U"/>
  3208. <constraint firstAttribute="bottomMargin" secondItem="4Js-Fh-l8T" secondAttribute="bottom" id="kZ0-tQ-yCk"/>
  3209. <constraint firstItem="4Js-Fh-l8T" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="XW3-1v-D2N" secondAttribute="leading" constant="40" id="lNR-KJ-aSk"/>
  3210. </constraints>
  3211. </view>
  3212. <sections>
  3213. <tableViewSection id="U03-zs-DLa">
  3214. <cells>
  3215. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="sJF-Ib-o6C" detailTextLabel="wXd-jf-kGm" style="IBUITableViewCellStyleValue1" id="dGX-FG-UJD">
  3216. <rect key="frame" x="0.0" y="292.5" width="375" height="44"/>
  3217. <autoresizingMask key="autoresizingMask"/>
  3218. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dGX-FG-UJD" id="u4M-e1-rHe">
  3219. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3220. <autoresizingMask key="autoresizingMask"/>
  3221. <subviews>
  3222. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="sJF-Ib-o6C">
  3223. <rect key="frame" x="16" y="12" width="88" height="20.5"/>
  3224. <autoresizingMask key="autoresizingMask"/>
  3225. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3226. <nil key="textColor"/>
  3227. <nil key="highlightedColor"/>
  3228. </label>
  3229. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wXd-jf-kGm" customClass="CopyLabel">
  3230. <rect key="frame" x="270" y="12" width="89" height="20.5"/>
  3231. <autoresizingMask key="autoresizingMask"/>
  3232. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3233. <nil key="textColor"/>
  3234. <nil key="highlightedColor"/>
  3235. </label>
  3236. </subviews>
  3237. </tableViewCellContentView>
  3238. </tableViewCell>
  3239. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" textLabel="lH9-a1-MBS" style="IBUITableViewCellStyleDefault" id="gtJ-OO-ieh" customClass="VerificationLevelCell" customModule="Threema" customModuleProvider="target">
  3240. <rect key="frame" x="0.0" y="336.5" width="375" height="44"/>
  3241. <autoresizingMask key="autoresizingMask"/>
  3242. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="gtJ-OO-ieh" id="U9L-xV-lkd">
  3243. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3244. <autoresizingMask key="autoresizingMask"/>
  3245. <subviews>
  3246. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Verification Level" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="lH9-a1-MBS">
  3247. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  3248. <autoresizingMask key="autoresizingMask"/>
  3249. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3250. <nil key="textColor"/>
  3251. <nil key="highlightedColor"/>
  3252. </label>
  3253. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="lQL-W6-i9B">
  3254. <rect key="frame" x="163" y="17" width="49" height="11"/>
  3255. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3256. </imageView>
  3257. </subviews>
  3258. </tableViewCellContentView>
  3259. <connections>
  3260. <outlet property="accessoryView" destination="lQL-W6-i9B" id="OhK-c9-Bfp"/>
  3261. <outlet property="levelImage" destination="lQL-W6-i9B" id="va6-vk-rko"/>
  3262. <outlet property="titleLabel" destination="lH9-a1-MBS" id="m6T-uD-HA4"/>
  3263. </connections>
  3264. </tableViewCell>
  3265. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" id="tMj-Mw-b7D" customClass="KeyFingerprintCell" customModule="Threema" customModuleProvider="target">
  3266. <rect key="frame" x="0.0" y="380.5" width="375" height="44"/>
  3267. <autoresizingMask key="autoresizingMask"/>
  3268. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="tMj-Mw-b7D" id="8ZS-NJ-Dhm">
  3269. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3270. <autoresizingMask key="autoresizingMask"/>
  3271. <subviews>
  3272. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="aGy-xg-eRi">
  3273. <rect key="frame" x="16" y="14" width="343" height="14"/>
  3274. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3275. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3276. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3277. <nil key="highlightedColor"/>
  3278. </label>
  3279. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bt1-G0-NzZ" customClass="CopyLabel">
  3280. <rect key="frame" x="16" y="30" width="343" height="0.0"/>
  3281. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3282. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  3283. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3284. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3285. </label>
  3286. </subviews>
  3287. <constraints>
  3288. <constraint firstItem="aGy-xg-eRi" firstAttribute="leading" secondItem="8ZS-NJ-Dhm" secondAttribute="leadingMargin" id="Ckk-0A-8Yj"/>
  3289. <constraint firstAttribute="bottomMargin" secondItem="bt1-G0-NzZ" secondAttribute="bottom" constant="3" id="Dvc-Ed-Rgw"/>
  3290. <constraint firstAttribute="trailingMargin" secondItem="aGy-xg-eRi" secondAttribute="trailing" id="Ep0-gd-qFa"/>
  3291. <constraint firstItem="bt1-G0-NzZ" firstAttribute="top" secondItem="aGy-xg-eRi" secondAttribute="bottom" constant="2" id="HlB-57-JcR"/>
  3292. <constraint firstItem="aGy-xg-eRi" firstAttribute="top" secondItem="8ZS-NJ-Dhm" secondAttribute="topMargin" constant="3" id="atf-Gd-O2x"/>
  3293. <constraint firstAttribute="trailingMargin" secondItem="bt1-G0-NzZ" secondAttribute="trailing" id="qda-VA-0uF"/>
  3294. <constraint firstItem="bt1-G0-NzZ" firstAttribute="leading" secondItem="8ZS-NJ-Dhm" secondAttribute="leadingMargin" id="qr3-E3-gnk"/>
  3295. </constraints>
  3296. </tableViewCellContentView>
  3297. <connections>
  3298. <outlet property="fingerprintLabel" destination="bt1-G0-NzZ" id="7Hf-YB-uB8"/>
  3299. <outlet property="fingerprintValueLabel" destination="bt1-G0-NzZ" id="tfG-19-pUA"/>
  3300. </connections>
  3301. </tableViewCell>
  3302. </cells>
  3303. </tableViewSection>
  3304. <tableViewSection id="njn-BS-Y6W">
  3305. <cells>
  3306. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SendMessageCell" id="6Kr-3Y-Yos" customClass="ContactSendMessageCell" customModule="Threema" customModuleProvider="target">
  3307. <rect key="frame" x="0.0" y="459.5" width="375" height="44"/>
  3308. <autoresizingMask key="autoresizingMask"/>
  3309. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="6Kr-3Y-Yos" id="fM9-Sn-RR2">
  3310. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3311. <autoresizingMask key="autoresizingMask"/>
  3312. <subviews>
  3313. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SendMessage" translatesAutoresizingMaskIntoConstraints="NO" id="D8j-5R-rzg">
  3314. <rect key="frame" x="16" y="11" width="24" height="22"/>
  3315. <constraints>
  3316. <constraint firstAttribute="height" constant="22" id="FfK-xJ-TnI"/>
  3317. <constraint firstAttribute="width" constant="24" id="gZ6-rV-qAL"/>
  3318. </constraints>
  3319. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3320. </imageView>
  3321. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Send Message" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="29s-0j-pO7">
  3322. <rect key="frame" x="56" y="11.5" width="303" height="21"/>
  3323. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3324. <nil key="textColor"/>
  3325. <nil key="highlightedColor"/>
  3326. </label>
  3327. </subviews>
  3328. <constraints>
  3329. <constraint firstItem="D8j-5R-rzg" firstAttribute="centerY" secondItem="fM9-Sn-RR2" secondAttribute="centerY" id="4CM-Er-eGz"/>
  3330. <constraint firstAttribute="trailingMargin" secondItem="29s-0j-pO7" secondAttribute="trailing" id="HU2-h7-3Tj"/>
  3331. <constraint firstItem="29s-0j-pO7" firstAttribute="centerY" secondItem="fM9-Sn-RR2" secondAttribute="centerY" id="c9i-G7-5aw"/>
  3332. <constraint firstItem="29s-0j-pO7" firstAttribute="leading" secondItem="D8j-5R-rzg" secondAttribute="trailing" constant="16" id="r0O-Eb-Xcw"/>
  3333. <constraint firstItem="D8j-5R-rzg" firstAttribute="leading" secondItem="fM9-Sn-RR2" secondAttribute="leadingMargin" id="zHG-Og-R9F"/>
  3334. </constraints>
  3335. </tableViewCellContentView>
  3336. <connections>
  3337. <outlet property="sendMessageImageView" destination="D8j-5R-rzg" id="PZ1-An-jbY"/>
  3338. <outlet property="sendMessageLabel" destination="29s-0j-pO7" id="9e9-94-YJH"/>
  3339. </connections>
  3340. </tableViewCell>
  3341. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaCallCell" id="HVd-bi-PPa" customClass="ContactThreemaCallCell" customModule="Threema" customModuleProvider="target">
  3342. <rect key="frame" x="0.0" y="503.5" width="375" height="44"/>
  3343. <autoresizingMask key="autoresizingMask"/>
  3344. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="HVd-bi-PPa" id="iaK-0I-Psf">
  3345. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3346. <autoresizingMask key="autoresizingMask"/>
  3347. <subviews>
  3348. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" text="Threema Call" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Loc-jL-c6X">
  3349. <rect key="frame" x="56" y="11.5" width="303" height="21"/>
  3350. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3351. <nil key="textColor"/>
  3352. <nil key="highlightedColor"/>
  3353. </label>
  3354. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaPhone" translatesAutoresizingMaskIntoConstraints="NO" id="ieD-Fv-A0g">
  3355. <rect key="frame" x="16" y="9.5" width="25" height="25"/>
  3356. <constraints>
  3357. <constraint firstAttribute="width" constant="25" id="XZD-CN-q9c"/>
  3358. <constraint firstAttribute="height" constant="25" id="q2v-LN-hjR"/>
  3359. </constraints>
  3360. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3361. </imageView>
  3362. </subviews>
  3363. <constraints>
  3364. <constraint firstItem="Loc-jL-c6X" firstAttribute="centerY" secondItem="iaK-0I-Psf" secondAttribute="centerY" id="0qm-Id-Smo"/>
  3365. <constraint firstItem="Loc-jL-c6X" firstAttribute="leading" secondItem="ieD-Fv-A0g" secondAttribute="trailing" constant="15" id="CC1-q8-7vO"/>
  3366. <constraint firstItem="ieD-Fv-A0g" firstAttribute="centerY" secondItem="iaK-0I-Psf" secondAttribute="centerY" id="Kei-qd-s2H"/>
  3367. <constraint firstItem="ieD-Fv-A0g" firstAttribute="leading" secondItem="iaK-0I-Psf" secondAttribute="leadingMargin" id="LNn-Tr-a8c"/>
  3368. <constraint firstAttribute="trailingMargin" secondItem="Loc-jL-c6X" secondAttribute="trailing" id="ZBW-N6-jMb"/>
  3369. </constraints>
  3370. </tableViewCellContentView>
  3371. <connections>
  3372. <outlet property="threemaCallImageView" destination="ieD-Fv-A0g" id="8Yy-9h-jzG"/>
  3373. <outlet property="threemaCallLabel" destination="Loc-jL-c6X" id="ROr-FG-3Og"/>
  3374. </connections>
  3375. </tableViewCell>
  3376. </cells>
  3377. </tableViewSection>
  3378. </sections>
  3379. <connections>
  3380. <outlet property="dataSource" destination="CJa-dK-jp4" id="n4A-Pp-fHy"/>
  3381. <outlet property="delegate" destination="CJa-dK-jp4" id="nqO-dn-tRc"/>
  3382. </connections>
  3383. </tableView>
  3384. <navigationItem key="navigationItem" title="ID Verified" id="sik-yL-35n">
  3385. <barButtonItem key="rightBarButtonItem" systemItem="done" id="StH-Kj-2q2">
  3386. <connections>
  3387. <action selector="done:" destination="CJa-dK-jp4" id="RWR-bW-cRX"/>
  3388. </connections>
  3389. </barButtonItem>
  3390. </navigationItem>
  3391. <connections>
  3392. <outlet property="contactImage" destination="xFV-V4-xV9" id="YD2-ug-dK8"/>
  3393. <outlet property="identityLabel" destination="wXd-jf-kGm" id="H9d-Hh-DBf"/>
  3394. <outlet property="keyFingerprintCell" destination="tMj-Mw-b7D" id="oWu-Tu-Nm9"/>
  3395. <outlet property="nameLabel" destination="F29-qq-lEF" id="GZD-Nh-5rk"/>
  3396. <outlet property="sendMessageCell" destination="6Kr-3Y-Yos" id="fYj-rZ-miE"/>
  3397. <outlet property="sendMessageLabel" destination="29s-0j-pO7" id="ot3-mg-Vff"/>
  3398. <outlet property="threemaCallCell" destination="HVd-bi-PPa" id="21l-D9-XCl"/>
  3399. <outlet property="threemaCallLabel" destination="Loc-jL-c6X" id="EV3-11-k9z"/>
  3400. <outlet property="threemaTypeIcon" destination="z8K-7a-y8S" id="uo3-c9-wJZ"/>
  3401. <outlet property="verificationLevelCell" destination="gtJ-OO-ieh" id="gcR-5h-aAJ"/>
  3402. <outlet property="verificationLevelImage" destination="sqy-M6-DC0" id="Eze-Qb-R2Q"/>
  3403. </connections>
  3404. </tableViewController>
  3405. <placeholder placeholderIdentifier="IBFirstResponder" id="uwR-It-Ztf" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3406. </objects>
  3407. <point key="canvasLocation" x="3584.8000000000002" y="3594.1529235382313"/>
  3408. </scene>
  3409. <!--Modal Navigation Controller-->
  3410. <scene sceneID="YhH-yK-u78">
  3411. <objects>
  3412. <navigationController storyboardIdentifier="AddContactNavigationController" id="f9d-eO-Il0" customClass="ModalNavigationController" sceneMemberID="viewController">
  3413. <toolbarItems/>
  3414. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xB-fy-EQG" customClass="StatusNavigationBar">
  3415. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3416. <autoresizingMask key="autoresizingMask"/>
  3417. </navigationBar>
  3418. <nil name="viewControllers"/>
  3419. <connections>
  3420. <segue destination="G1V-ju-hH8" kind="relationship" relationship="rootViewController" id="M0V-He-65Y"/>
  3421. </connections>
  3422. </navigationController>
  3423. <placeholder placeholderIdentifier="IBFirstResponder" id="TMY-VX-QLz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3424. </objects>
  3425. <point key="canvasLocation" x="2745.6000000000004" y="-1027.2863568215894"/>
  3426. </scene>
  3427. <!--Location-->
  3428. <scene sceneID="WKh-CG-rTy">
  3429. <objects>
  3430. <viewController id="Wkx-66-6GX" customClass="PreviewLocationViewController" sceneMemberID="viewController">
  3431. <view key="view" contentMode="scaleToFill" id="iQb-3C-dOf">
  3432. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3433. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3434. <subviews>
  3435. <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" horizontalHuggingPriority="249" verticalHuggingPriority="249" mapType="standard" showsUserLocation="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Je0-Vz-Lkn">
  3436. <rect key="frame" x="0.0" y="44" width="375" height="310.5"/>
  3437. <connections>
  3438. <outlet property="delegate" destination="Wkx-66-6GX" id="Ilv-OF-du2"/>
  3439. </connections>
  3440. </mapView>
  3441. <tableView clipsSubviews="YES" contentMode="scaleToFill" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="FDN-uT-vuM">
  3442. <rect key="frame" x="0.0" y="356.5" width="375" height="310.5"/>
  3443. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3444. <prototypes>
  3445. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PoiCell" id="sEJ-nE-fjD" customClass="PoiTableViewCell">
  3446. <rect key="frame" x="0.0" y="28" width="375" height="60.5"/>
  3447. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3448. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sEJ-nE-fjD" id="Ibb-lQ-JQA">
  3449. <rect key="frame" x="0.0" y="0.0" width="375" height="60.5"/>
  3450. <autoresizingMask key="autoresizingMask"/>
  3451. <subviews>
  3452. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="252" verticalCompressionResistancePriority="751" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gsp-ed-V8R">
  3453. <rect key="frame" x="20" y="11" width="339" height="19"/>
  3454. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  3455. <nil key="highlightedColor"/>
  3456. </label>
  3457. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pVJ-rQ-2qD">
  3458. <rect key="frame" x="20" y="33" width="339" height="16.5"/>
  3459. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  3460. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3461. <nil key="highlightedColor"/>
  3462. </label>
  3463. </subviews>
  3464. <constraints>
  3465. <constraint firstAttribute="trailingMargin" secondItem="pVJ-rQ-2qD" secondAttribute="trailing" id="JQB-U2-n13"/>
  3466. <constraint firstItem="pVJ-rQ-2qD" firstAttribute="top" secondItem="gsp-ed-V8R" secondAttribute="bottom" constant="3" id="NJf-KD-KKp"/>
  3467. <constraint firstItem="gsp-ed-V8R" firstAttribute="top" secondItem="Ibb-lQ-JQA" secondAttribute="topMargin" id="UDk-h3-aty"/>
  3468. <constraint firstAttribute="trailingMargin" secondItem="gsp-ed-V8R" secondAttribute="trailing" id="eCg-1n-g8L"/>
  3469. <constraint firstItem="pVJ-rQ-2qD" firstAttribute="leading" secondItem="Ibb-lQ-JQA" secondAttribute="leading" constant="20" symbolic="YES" id="i3m-dP-8am"/>
  3470. <constraint firstItem="gsp-ed-V8R" firstAttribute="leading" secondItem="Ibb-lQ-JQA" secondAttribute="leading" constant="20" symbolic="YES" id="u3N-aA-bVb"/>
  3471. <constraint firstAttribute="bottomMargin" secondItem="pVJ-rQ-2qD" secondAttribute="bottom" id="vIb-dR-bMh"/>
  3472. </constraints>
  3473. </tableViewCellContentView>
  3474. <connections>
  3475. <outlet property="addressLabel" destination="pVJ-rQ-2qD" id="fzc-Y5-wg1"/>
  3476. <outlet property="nameLabel" destination="gsp-ed-V8R" id="AVe-nC-vkv"/>
  3477. </connections>
  3478. </tableViewCell>
  3479. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPlacesFoundCell" id="ZEa-VT-VrF">
  3480. <rect key="frame" x="0.0" y="88.5" width="375" height="39.5"/>
  3481. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3482. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZEa-VT-VrF" id="xEF-es-Ppz">
  3483. <rect key="frame" x="0.0" y="0.0" width="375" height="39.5"/>
  3484. <autoresizingMask key="autoresizingMask"/>
  3485. <subviews>
  3486. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="No places found in current location" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jSK-DO-xV2">
  3487. <rect key="frame" x="16" y="11" width="343" height="17.5"/>
  3488. <fontDescription key="fontDescription" type="italicSystem" pointSize="14"/>
  3489. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3490. <nil key="highlightedColor"/>
  3491. </label>
  3492. </subviews>
  3493. <constraints>
  3494. <constraint firstItem="jSK-DO-xV2" firstAttribute="top" secondItem="xEF-es-Ppz" secondAttribute="topMargin" id="HEa-6c-erj"/>
  3495. <constraint firstItem="jSK-DO-xV2" firstAttribute="leading" secondItem="xEF-es-Ppz" secondAttribute="leadingMargin" id="McD-A1-pXB"/>
  3496. <constraint firstAttribute="bottomMargin" secondItem="jSK-DO-xV2" secondAttribute="bottom" id="jH9-s4-lOL"/>
  3497. <constraint firstAttribute="trailingMargin" secondItem="jSK-DO-xV2" secondAttribute="trailing" id="xde-H8-ef1"/>
  3498. </constraints>
  3499. </tableViewCellContentView>
  3500. </tableViewCell>
  3501. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="EnterQueryCell" id="yd1-gI-T17">
  3502. <rect key="frame" x="0.0" y="128" width="375" height="39.5"/>
  3503. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3504. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="yd1-gI-T17" id="a9c-xg-g6E">
  3505. <rect key="frame" x="0.0" y="0.0" width="375" height="39.5"/>
  3506. <autoresizingMask key="autoresizingMask"/>
  3507. <subviews>
  3508. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enter a query to search for places" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oXh-5e-M7J">
  3509. <rect key="frame" x="16" y="11" width="343" height="17.5"/>
  3510. <fontDescription key="fontDescription" type="italicSystem" pointSize="14"/>
  3511. <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3512. <nil key="highlightedColor"/>
  3513. </label>
  3514. </subviews>
  3515. <constraints>
  3516. <constraint firstAttribute="bottomMargin" secondItem="oXh-5e-M7J" secondAttribute="bottom" id="0md-qA-Of3"/>
  3517. <constraint firstAttribute="trailingMargin" secondItem="oXh-5e-M7J" secondAttribute="trailing" id="65H-p0-JLg"/>
  3518. <constraint firstItem="oXh-5e-M7J" firstAttribute="top" secondItem="a9c-xg-g6E" secondAttribute="topMargin" id="GYZ-CH-j4Q"/>
  3519. <constraint firstItem="oXh-5e-M7J" firstAttribute="leading" secondItem="a9c-xg-g6E" secondAttribute="leadingMargin" id="VBF-dL-WaY"/>
  3520. </constraints>
  3521. </tableViewCellContentView>
  3522. </tableViewCell>
  3523. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="SpinnerCell" id="t7Z-a3-P0r">
  3524. <rect key="frame" x="0.0" y="167.5" width="375" height="42.5"/>
  3525. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3526. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="t7Z-a3-P0r" id="u3F-pD-HYF">
  3527. <rect key="frame" x="0.0" y="0.0" width="375" height="42.5"/>
  3528. <autoresizingMask key="autoresizingMask"/>
  3529. <subviews>
  3530. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" animating="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="pQw-UF-py6">
  3531. <rect key="frame" x="177.5" y="11" width="20" height="20.5"/>
  3532. </activityIndicatorView>
  3533. </subviews>
  3534. <constraints>
  3535. <constraint firstAttribute="bottomMargin" secondItem="pQw-UF-py6" secondAttribute="bottom" id="Jhh-dG-N1d"/>
  3536. <constraint firstItem="pQw-UF-py6" firstAttribute="centerX" secondItem="u3F-pD-HYF" secondAttribute="centerX" id="QeL-XX-lEx"/>
  3537. <constraint firstItem="pQw-UF-py6" firstAttribute="top" secondItem="u3F-pD-HYF" secondAttribute="topMargin" id="trL-Ym-vcQ"/>
  3538. </constraints>
  3539. </tableViewCellContentView>
  3540. </tableViewCell>
  3541. </prototypes>
  3542. <connections>
  3543. <outlet property="dataSource" destination="Wkx-66-6GX" id="ATU-i1-c8v"/>
  3544. <outlet property="delegate" destination="Wkx-66-6GX" id="f3c-vQ-Lpc"/>
  3545. </connections>
  3546. </tableView>
  3547. </subviews>
  3548. <viewLayoutGuide key="safeArea" id="XJb-g2-fw4"/>
  3549. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3550. <constraints>
  3551. <constraint firstItem="FDN-uT-vuM" firstAttribute="height" secondItem="Je0-Vz-Lkn" secondAttribute="height" multiplier="1:1" id="19a-iD-O8T"/>
  3552. <constraint firstItem="Je0-Vz-Lkn" firstAttribute="top" secondItem="iQb-3C-dOf" secondAttribute="topMargin" id="6fg-4f-MuX"/>
  3553. <constraint firstItem="FDN-uT-vuM" firstAttribute="top" secondItem="Je0-Vz-Lkn" secondAttribute="bottom" constant="2" id="Dt9-nR-VQl"/>
  3554. <constraint firstItem="XJb-g2-fw4" firstAttribute="bottom" secondItem="Je0-Vz-Lkn" secondAttribute="bottom" priority="750" id="F3I-qa-eLG"/>
  3555. <constraint firstItem="Je0-Vz-Lkn" firstAttribute="leading" secondItem="XJb-g2-fw4" secondAttribute="leading" id="V3m-ci-PF6"/>
  3556. <constraint firstItem="FDN-uT-vuM" firstAttribute="trailing" secondItem="XJb-g2-fw4" secondAttribute="trailing" id="b1p-NH-I2k"/>
  3557. <constraint firstItem="FDN-uT-vuM" firstAttribute="bottom" secondItem="XJb-g2-fw4" secondAttribute="bottom" id="bVj-GQ-wj2"/>
  3558. <constraint firstItem="FDN-uT-vuM" firstAttribute="leading" secondItem="XJb-g2-fw4" secondAttribute="leading" id="h1M-qh-QHH"/>
  3559. <constraint firstItem="Je0-Vz-Lkn" firstAttribute="trailing" secondItem="XJb-g2-fw4" secondAttribute="trailing" id="lBf-Lp-Mfs"/>
  3560. </constraints>
  3561. </view>
  3562. <navigationItem key="navigationItem" title="Location" id="eXF-nx-MbG">
  3563. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="gbL-qc-nD4">
  3564. <connections>
  3565. <action selector="cancelAction:" destination="Wkx-66-6GX" id="3wq-nj-z6i"/>
  3566. </connections>
  3567. </barButtonItem>
  3568. <barButtonItem key="rightBarButtonItem" title="Send" style="done" id="aQb-a9-JtU">
  3569. <connections>
  3570. <action selector="sendAction:" destination="Wkx-66-6GX" id="vj5-3j-sA0"/>
  3571. </connections>
  3572. </barButtonItem>
  3573. </navigationItem>
  3574. <connections>
  3575. <outlet property="mapView" destination="Je0-Vz-Lkn" id="b6u-Rt-HOF"/>
  3576. <outlet property="poiTableView" destination="FDN-uT-vuM" id="Be4-BD-mFX"/>
  3577. </connections>
  3578. </viewController>
  3579. <placeholder placeholderIdentifier="IBFirstResponder" id="cAf-3k-pix" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3580. </objects>
  3581. <point key="canvasLocation" x="3584.8000000000002" y="1273.313343328336"/>
  3582. </scene>
  3583. <!--Location-->
  3584. <scene sceneID="Z2f-4e-iax">
  3585. <objects>
  3586. <viewController id="FVk-BM-jrL" customClass="LocationViewController" sceneMemberID="viewController">
  3587. <view key="view" contentMode="scaleToFill" id="rJc-tG-ypl">
  3588. <rect key="frame" x="0.0" y="0.0" width="375" height="618"/>
  3589. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3590. <subviews>
  3591. <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="S8H-J6-Ghl">
  3592. <rect key="frame" x="0.0" y="0.0" width="375" height="574"/>
  3593. <connections>
  3594. <outlet property="delegate" destination="FVk-BM-jrL" id="B0B-6H-r0n"/>
  3595. </connections>
  3596. </mapView>
  3597. <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Pwh-dA-MBJ">
  3598. <rect key="frame" x="0.0" y="574" width="375" height="44"/>
  3599. <viewLayoutGuide key="safeArea" id="WzG-2F-Wt4"/>
  3600. <items>
  3601. <barButtonItem image="CurrentLocation" id="5k3-jD-RBI">
  3602. <connections>
  3603. <action selector="gotoUserLocationButtonTapped:" destination="FVk-BM-jrL" id="wLI-dZ-HUZ"/>
  3604. </connections>
  3605. </barButtonItem>
  3606. <barButtonItem style="plain" systemItem="flexibleSpace" id="ZKQ-1p-YQv"/>
  3607. <barButtonItem style="plain" id="gQF-5H-Z1H">
  3608. <segmentedControl key="customView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="M1P-ix-V2L">
  3609. <rect key="frame" x="74" y="6" width="227" height="32"/>
  3610. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3611. <segments>
  3612. <segment title="Standard"/>
  3613. <segment title="Hybrid"/>
  3614. <segment title="Satellite"/>
  3615. </segments>
  3616. <connections>
  3617. <action selector="mapTypeChanged:" destination="FVk-BM-jrL" eventType="valueChanged" id="VxI-Gv-4nf"/>
  3618. </connections>
  3619. </segmentedControl>
  3620. </barButtonItem>
  3621. <barButtonItem style="plain" systemItem="flexibleSpace" id="Oxk-XT-dDa"/>
  3622. <barButtonItem image="Location" id="C0u-5z-beZ">
  3623. <connections>
  3624. <action selector="gotoLocationButtonTapped:" destination="FVk-BM-jrL" id="UbN-h8-KQu"/>
  3625. </connections>
  3626. </barButtonItem>
  3627. <barButtonItem width="4" style="plain" systemItem="fixedSpace" id="YBk-mo-fhm"/>
  3628. </items>
  3629. </toolbar>
  3630. </subviews>
  3631. <viewLayoutGuide key="safeArea" id="IaX-z7-doe"/>
  3632. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3633. <constraints>
  3634. <constraint firstAttribute="trailing" secondItem="Pwh-dA-MBJ" secondAttribute="trailing" id="9XE-tn-tas"/>
  3635. <constraint firstItem="Pwh-dA-MBJ" firstAttribute="top" secondItem="S8H-J6-Ghl" secondAttribute="bottom" id="GRg-dQ-2eT"/>
  3636. <constraint firstItem="Pwh-dA-MBJ" firstAttribute="leading" secondItem="rJc-tG-ypl" secondAttribute="leading" id="Kei-Ji-CCB"/>
  3637. <constraint firstItem="S8H-J6-Ghl" firstAttribute="top" secondItem="rJc-tG-ypl" secondAttribute="top" id="P9E-H3-5R7"/>
  3638. <constraint firstItem="S8H-J6-Ghl" firstAttribute="trailing" secondItem="IaX-z7-doe" secondAttribute="trailing" id="qeT-or-oZc"/>
  3639. <constraint firstItem="S8H-J6-Ghl" firstAttribute="leading" secondItem="IaX-z7-doe" secondAttribute="leading" id="reP-f7-qqF"/>
  3640. <constraint firstItem="Pwh-dA-MBJ" firstAttribute="top" secondItem="S8H-J6-Ghl" secondAttribute="bottom" id="tPN-AZ-Waf"/>
  3641. <constraint firstAttribute="bottomMargin" secondItem="Pwh-dA-MBJ" secondAttribute="bottom" id="vf5-H7-oM9"/>
  3642. </constraints>
  3643. </view>
  3644. <extendedEdge key="edgesForExtendedLayout" top="YES"/>
  3645. <navigationItem key="navigationItem" title="Location" largeTitleDisplayMode="never" id="uA6-FU-2ms">
  3646. <barButtonItem key="rightBarButtonItem" image="Share" id="g63-mL-9aV">
  3647. <connections>
  3648. <action selector="actionButton:" destination="FVk-BM-jrL" id="k7Z-FE-B7H"/>
  3649. </connections>
  3650. </barButtonItem>
  3651. </navigationItem>
  3652. <connections>
  3653. <outlet property="mapTypeControl" destination="M1P-ix-V2L" id="SYk-3D-PWa"/>
  3654. <outlet property="mapView" destination="S8H-J6-Ghl" id="9CB-fL-wrH"/>
  3655. <outlet property="toolbar" destination="Pwh-dA-MBJ" id="d68-db-Qd7"/>
  3656. </connections>
  3657. </viewController>
  3658. <placeholder placeholderIdentifier="IBFirstResponder" id="imr-ga-5Ay" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3659. </objects>
  3660. <point key="canvasLocation" x="174.40000000000001" y="1235.0824587706147"/>
  3661. </scene>
  3662. <!--Backup-->
  3663. <scene sceneID="aZM-S6-hXI">
  3664. <objects>
  3665. <tableViewController storyboardIdentifier="BackupIdentityViewController" id="gAo-8A-eYi" customClass="BackupIdentityViewController" sceneMemberID="viewController">
  3666. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="sZM-Dq-rH8">
  3667. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3668. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3669. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3670. <sections>
  3671. <tableViewSection footerTitle="#do not translate#The encrypted ID backup will be included when you back up your phone via iTunes or iCloud." id="eEV-l3-MXP">
  3672. <cells>
  3673. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" textLabel="d2g-FC-ibo" style="IBUITableViewCellStyleDefault" id="SjH-bw-For">
  3674. <rect key="frame" x="0.0" y="10" width="375" height="44"/>
  3675. <autoresizingMask key="autoresizingMask"/>
  3676. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="SjH-bw-For" id="fQd-2D-97K">
  3677. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3678. <autoresizingMask key="autoresizingMask"/>
  3679. <subviews>
  3680. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Include in phone backup" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="d2g-FC-ibo">
  3681. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  3682. <autoresizingMask key="autoresizingMask"/>
  3683. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3684. <nil key="textColor"/>
  3685. <nil key="highlightedColor"/>
  3686. </label>
  3687. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="EbD-7M-51F">
  3688. <rect key="frame" x="160" y="5" width="54" height="32"/>
  3689. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3690. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  3691. <connections>
  3692. <action selector="phoneBackupSwitchChanged:" destination="gAo-8A-eYi" eventType="valueChanged" id="o6c-l0-Bca"/>
  3693. </connections>
  3694. </switch>
  3695. </subviews>
  3696. </tableViewCellContentView>
  3697. <connections>
  3698. <outlet property="accessoryView" destination="EbD-7M-51F" id="NQM-i6-mPk"/>
  3699. </connections>
  3700. </tableViewCell>
  3701. </cells>
  3702. </tableViewSection>
  3703. <tableViewSection id="dgK-0J-UrZ">
  3704. <string key="footerTitle">#do not translate#This data, along with the password that you have chosen, can be used to restore your ID on another device. You can copy &amp; paste it to a suitable location, email it to yourself or scan the QR code using another device.</string>
  3705. <cells>
  3706. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="CCC-bg-9EV">
  3707. <rect key="frame" x="0.0" y="126" width="375" height="44"/>
  3708. <autoresizingMask key="autoresizingMask"/>
  3709. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CCC-bg-9EV" id="6vo-th-Uu5">
  3710. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3711. <autoresizingMask key="autoresizingMask"/>
  3712. <subviews>
  3713. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Your ID backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZIq-dn-JdH">
  3714. <rect key="frame" x="16" y="11" width="343" height="0.0"/>
  3715. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3716. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3717. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3718. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3719. </label>
  3720. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" text="XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" lineBreakMode="wordWrap" numberOfLines="8" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="UbM-As-itV" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  3721. <rect key="frame" x="16" y="26" width="343" height="7"/>
  3722. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3723. <fontDescription key="fontDescription" style="UICTFontTextStyleTitle3"/>
  3724. <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3725. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3726. </label>
  3727. </subviews>
  3728. <constraints>
  3729. <constraint firstAttribute="trailingMargin" secondItem="ZIq-dn-JdH" secondAttribute="trailing" id="CKB-6c-Kv6"/>
  3730. <constraint firstAttribute="bottomMargin" secondItem="UbM-As-itV" secondAttribute="bottom" id="EfZ-9M-jXa"/>
  3731. <constraint firstAttribute="trailingMargin" secondItem="UbM-As-itV" secondAttribute="trailing" id="V95-EB-EHa"/>
  3732. <constraint firstItem="ZIq-dn-JdH" firstAttribute="top" secondItem="6vo-th-Uu5" secondAttribute="topMargin" id="Z2F-F0-bEm"/>
  3733. <constraint firstItem="UbM-As-itV" firstAttribute="top" secondItem="ZIq-dn-JdH" secondAttribute="bottom" constant="15" id="fE5-4d-Lsm"/>
  3734. <constraint firstItem="UbM-As-itV" firstAttribute="leading" secondItem="6vo-th-Uu5" secondAttribute="leadingMargin" id="uhv-Gs-GS8"/>
  3735. <constraint firstItem="ZIq-dn-JdH" firstAttribute="leading" secondItem="6vo-th-Uu5" secondAttribute="leadingMargin" id="yhk-Wh-D1u"/>
  3736. </constraints>
  3737. </tableViewCellContentView>
  3738. </tableViewCell>
  3739. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="i0e-YI-l7h">
  3740. <rect key="frame" x="0.0" y="170" width="375" height="44"/>
  3741. <autoresizingMask key="autoresizingMask"/>
  3742. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="i0e-YI-l7h" id="QPu-lW-7f1">
  3743. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3744. <autoresizingMask key="autoresizingMask"/>
  3745. <subviews>
  3746. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kRn-kl-WMg">
  3747. <rect key="frame" x="87.5" y="12" width="200" height="200"/>
  3748. <constraints>
  3749. <constraint firstAttribute="height" constant="200" id="AKa-om-r9l"/>
  3750. <constraint firstAttribute="width" constant="200" id="YSe-Ph-SIZ"/>
  3751. </constraints>
  3752. </imageView>
  3753. </subviews>
  3754. <constraints>
  3755. <constraint firstAttribute="bottom" secondItem="kRn-kl-WMg" secondAttribute="bottom" constant="12" id="D0h-2n-kzW"/>
  3756. <constraint firstItem="kRn-kl-WMg" firstAttribute="centerY" secondItem="QPu-lW-7f1" secondAttribute="centerY" id="X4E-xw-lpF"/>
  3757. <constraint firstItem="kRn-kl-WMg" firstAttribute="top" secondItem="QPu-lW-7f1" secondAttribute="top" constant="12" id="ost-iQ-DJK"/>
  3758. <constraint firstItem="kRn-kl-WMg" firstAttribute="centerX" secondItem="QPu-lW-7f1" secondAttribute="centerX" id="w4M-vk-lkH"/>
  3759. </constraints>
  3760. </tableViewCellContentView>
  3761. </tableViewCell>
  3762. </cells>
  3763. </tableViewSection>
  3764. </sections>
  3765. <connections>
  3766. <outlet property="dataSource" destination="gAo-8A-eYi" id="se1-gl-h6d"/>
  3767. <outlet property="delegate" destination="gAo-8A-eYi" id="6gX-95-2Ir"/>
  3768. </connections>
  3769. </tableView>
  3770. <navigationItem key="navigationItem" title="Backup" id="tUV-iz-VQc">
  3771. <barButtonItem key="leftBarButtonItem" title="Item" image="Share" id="6rx-8S-8dN">
  3772. <connections>
  3773. <action selector="actionAction:" destination="gAo-8A-eYi" id="HoY-DV-TVY"/>
  3774. </connections>
  3775. </barButtonItem>
  3776. <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="BHs-xY-jVH">
  3777. <connections>
  3778. <action selector="doneAction:" destination="gAo-8A-eYi" id="sPG-bB-UgV"/>
  3779. </connections>
  3780. </barButtonItem>
  3781. </navigationItem>
  3782. <connections>
  3783. <outlet property="identityBackupLabel" destination="UbM-As-itV" id="snU-Nd-bbt"/>
  3784. <outlet property="phoneBackupSwitch" destination="EbD-7M-51F" id="Q2Q-zG-TNJ"/>
  3785. <outlet property="qrImageView" destination="kRn-kl-WMg" id="UpV-b7-z41"/>
  3786. </connections>
  3787. </tableViewController>
  3788. <placeholder placeholderIdentifier="IBFirstResponder" id="b8h-ot-G05" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3789. </objects>
  3790. <point key="canvasLocation" x="3492" y="-1729.385307346327"/>
  3791. </scene>
  3792. <!--Modal Navigation Controller-->
  3793. <scene sceneID="6uV-Dd-70q">
  3794. <objects>
  3795. <navigationController storyboardIdentifier="PreviewImageNav" id="DJG-Qa-Yg3" customClass="ModalNavigationController" sceneMemberID="viewController">
  3796. <toolbarItems/>
  3797. <navigationBar key="navigationBar" contentMode="scaleToFill" id="npS-lz-iH9" customClass="StatusNavigationBar">
  3798. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3799. <autoresizingMask key="autoresizingMask"/>
  3800. </navigationBar>
  3801. <nil name="viewControllers"/>
  3802. <connections>
  3803. <segue destination="xFf-fm-QrO" kind="relationship" relationship="rootViewController" id="q48-tN-sD4"/>
  3804. </connections>
  3805. </navigationController>
  3806. <placeholder placeholderIdentifier="IBFirstResponder" id="pRS-65-HaS" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3807. </objects>
  3808. <point key="canvasLocation" x="3430" y="417"/>
  3809. </scene>
  3810. <!--Modal Navigation Controller-->
  3811. <scene sceneID="r0I-Pl-MjX">
  3812. <objects>
  3813. <navigationController storyboardIdentifier="PreviewLocationNav" id="e4t-hK-I8I" customClass="ModalNavigationController" sceneMemberID="viewController">
  3814. <toolbarItems/>
  3815. <navigationBar key="navigationBar" contentMode="scaleToFill" id="Y2Y-vI-g7b" customClass="StatusNavigationBar">
  3816. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3817. <autoresizingMask key="autoresizingMask"/>
  3818. </navigationBar>
  3819. <nil name="viewControllers"/>
  3820. <connections>
  3821. <segue destination="Wkx-66-6GX" kind="relationship" relationship="rootViewController" id="3Lk-6y-Uhp"/>
  3822. </connections>
  3823. </navigationController>
  3824. <placeholder placeholderIdentifier="IBFirstResponder" id="Bn8-Po-FKe" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3825. </objects>
  3826. <point key="canvasLocation" x="2748" y="1274"/>
  3827. </scene>
  3828. <!--Message Details-->
  3829. <scene sceneID="Cv9-FB-47s">
  3830. <objects>
  3831. <tableViewController id="E7y-fb-wyM" customClass="MessageDetailsViewController" sceneMemberID="viewController">
  3832. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="jvs-rb-KIX">
  3833. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3834. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3835. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3836. <sections>
  3837. <tableViewSection id="XfY-AL-XVD">
  3838. <cells>
  3839. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="yWO-wH-mIW" detailTextLabel="6bQ-Vj-jcf" style="IBUITableViewCellStyleValue1" id="Bp8-mc-hzQ">
  3840. <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
  3841. <autoresizingMask key="autoresizingMask"/>
  3842. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Bp8-mc-hzQ" id="JeJ-md-9Ou">
  3843. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3844. <autoresizingMask key="autoresizingMask"/>
  3845. <subviews>
  3846. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sent" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="yWO-wH-mIW">
  3847. <rect key="frame" x="16" y="12" width="35" height="20.5"/>
  3848. <autoresizingMask key="autoresizingMask"/>
  3849. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3850. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3851. <nil key="highlightedColor"/>
  3852. </label>
  3853. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="6bQ-Vj-jcf">
  3854. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  3855. <autoresizingMask key="autoresizingMask"/>
  3856. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3857. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3858. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3859. </label>
  3860. </subviews>
  3861. </tableViewCellContentView>
  3862. </tableViewCell>
  3863. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="qNO-eF-kmI" detailTextLabel="kaj-lV-4MC" style="IBUITableViewCellStyleValue1" id="EbI-pt-9xY">
  3864. <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
  3865. <autoresizingMask key="autoresizingMask"/>
  3866. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EbI-pt-9xY" id="GFp-1y-UAg">
  3867. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3868. <autoresizingMask key="autoresizingMask"/>
  3869. <subviews>
  3870. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Delivered" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="qNO-eF-kmI">
  3871. <rect key="frame" x="16" y="12" width="72" height="20.5"/>
  3872. <autoresizingMask key="autoresizingMask"/>
  3873. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3874. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3875. <nil key="highlightedColor"/>
  3876. </label>
  3877. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="kaj-lV-4MC">
  3878. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  3879. <autoresizingMask key="autoresizingMask"/>
  3880. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3881. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3882. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3883. </label>
  3884. </subviews>
  3885. </tableViewCellContentView>
  3886. </tableViewCell>
  3887. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Zrm-eG-ewD" detailTextLabel="6On-uo-xuU" style="IBUITableViewCellStyleValue1" id="LdK-5e-ndU">
  3888. <rect key="frame" x="0.0" y="105.5" width="375" height="44"/>
  3889. <autoresizingMask key="autoresizingMask"/>
  3890. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LdK-5e-ndU" id="66f-43-i0T">
  3891. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3892. <autoresizingMask key="autoresizingMask"/>
  3893. <subviews>
  3894. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Read" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Zrm-eG-ewD">
  3895. <rect key="frame" x="16" y="12" width="39" height="20.5"/>
  3896. <autoresizingMask key="autoresizingMask"/>
  3897. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3898. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3899. <nil key="highlightedColor"/>
  3900. </label>
  3901. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="6On-uo-xuU">
  3902. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  3903. <autoresizingMask key="autoresizingMask"/>
  3904. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3905. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3906. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3907. </label>
  3908. </subviews>
  3909. </tableViewCellContentView>
  3910. </tableViewCell>
  3911. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="VRy-nm-s0X" detailTextLabel="5Ca-aK-dv0" style="IBUITableViewCellStyleValue1" id="jhc-3O-3ED">
  3912. <rect key="frame" x="0.0" y="149.5" width="375" height="44"/>
  3913. <autoresizingMask key="autoresizingMask"/>
  3914. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jhc-3O-3ED" id="3lf-c1-KWQ">
  3915. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3916. <autoresizingMask key="autoresizingMask"/>
  3917. <subviews>
  3918. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Acknowledged" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="VRy-nm-s0X">
  3919. <rect key="frame" x="16" y="12" width="112.5" height="20.5"/>
  3920. <autoresizingMask key="autoresizingMask"/>
  3921. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3922. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3923. <nil key="highlightedColor"/>
  3924. </label>
  3925. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="5Ca-aK-dv0">
  3926. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  3927. <autoresizingMask key="autoresizingMask"/>
  3928. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3929. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3930. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3931. </label>
  3932. </subviews>
  3933. </tableViewCellContentView>
  3934. </tableViewCell>
  3935. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="CyG-aF-qUX" detailTextLabel="eK9-D8-pFP" style="IBUITableViewCellStyleValue1" id="HID-Ph-AlL">
  3936. <rect key="frame" x="0.0" y="193.5" width="375" height="44"/>
  3937. <autoresizingMask key="autoresizingMask"/>
  3938. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="HID-Ph-AlL" id="Qy4-H5-L7t">
  3939. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3940. <autoresizingMask key="autoresizingMask"/>
  3941. <subviews>
  3942. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Message-ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="CyG-aF-qUX">
  3943. <rect key="frame" x="16" y="12" width="92.5" height="20.5"/>
  3944. <autoresizingMask key="autoresizingMask"/>
  3945. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3946. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3947. <nil key="highlightedColor"/>
  3948. </label>
  3949. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eK9-D8-pFP" customClass="CopyLabel">
  3950. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  3951. <autoresizingMask key="autoresizingMask"/>
  3952. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3953. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3954. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3955. </label>
  3956. </subviews>
  3957. </tableViewCellContentView>
  3958. </tableViewCell>
  3959. </cells>
  3960. </tableViewSection>
  3961. </sections>
  3962. <connections>
  3963. <outlet property="dataSource" destination="E7y-fb-wyM" id="LdU-3k-7vK"/>
  3964. <outlet property="delegate" destination="E7y-fb-wyM" id="gPG-RT-yhf"/>
  3965. </connections>
  3966. </tableView>
  3967. <navigationItem key="navigationItem" title="Message Details" largeTitleDisplayMode="never" id="LsJ-Ts-xZd"/>
  3968. <connections>
  3969. <outlet property="ackDateLabel" destination="5Ca-aK-dv0" id="p8M-Jl-onh"/>
  3970. <outlet property="deliveredDateLabel" destination="kaj-lV-4MC" id="2F5-Cf-6vI"/>
  3971. <outlet property="messageIdLabel" destination="eK9-D8-pFP" id="Fbc-lv-gnI"/>
  3972. <outlet property="readDateLabel" destination="6On-uo-xuU" id="Q6N-Ru-waC"/>
  3973. <outlet property="sendDateLabel" destination="6bQ-Vj-jcf" id="Qcr-nH-KwS"/>
  3974. </connections>
  3975. </tableViewController>
  3976. <placeholder placeholderIdentifier="IBFirstResponder" id="dXE-vh-e84" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3977. </objects>
  3978. <point key="canvasLocation" x="-681.60000000000002" y="1235.0824587706147"/>
  3979. </scene>
  3980. <!--Navigation Controller-->
  3981. <scene sceneID="pMC-N0-lCt">
  3982. <objects>
  3983. <navigationController storyboardIdentifier="BackupIdentityNavigationController" automaticallyAdjustsScrollViewInsets="NO" id="kOn-02-WX5" sceneMemberID="viewController">
  3984. <toolbarItems/>
  3985. <navigationBar key="navigationBar" contentMode="scaleToFill" id="aqn-Eo-p5r">
  3986. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3987. <autoresizingMask key="autoresizingMask"/>
  3988. </navigationBar>
  3989. <nil name="viewControllers"/>
  3990. <connections>
  3991. <segue destination="gAo-8A-eYi" kind="relationship" relationship="rootViewController" id="f97-Kd-K1p"/>
  3992. </connections>
  3993. </navigationController>
  3994. <placeholder placeholderIdentifier="IBFirstResponder" id="id9-wn-aP0" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3995. </objects>
  3996. <point key="canvasLocation" x="2745" y="-1729"/>
  3997. </scene>
  3998. <!--Company Directory View Controller-->
  3999. <scene sceneID="r7m-A8-Z28">
  4000. <objects>
  4001. <viewController storyboardIdentifier="CompanyDirectoryViewController" id="NhG-YL-Zj2" customClass="CompanyDirectoryViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  4002. <view key="view" contentMode="scaleToFill" id="MvB-84-7l9">
  4003. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4004. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4005. <subviews>
  4006. <searchBar contentMode="redraw" searchBarStyle="prominent" translatesAutoresizingMaskIntoConstraints="NO" id="WDp-BX-b9r" customClass="SearchBarWithoutCancelButton" customModule="Threema" customModuleProvider="target">
  4007. <rect key="frame" x="0.0" y="44" width="375" height="56"/>
  4008. <textInputTraits key="textInputTraits"/>
  4009. <connections>
  4010. <outlet property="delegate" destination="NhG-YL-Zj2" id="h0m-e1-kgr"/>
  4011. </connections>
  4012. </searchBar>
  4013. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="1Px-aE-PC8">
  4014. <rect key="frame" x="0.0" y="100" width="375" height="567"/>
  4015. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4016. <scrollView key="tableHeaderView" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" ambiguous="YES" id="JJm-hr-WcJ">
  4017. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  4018. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4019. <subviews>
  4020. <stackView opaque="NO" contentMode="scaleToFill" ambiguous="YES" distribution="equalSpacing" spacing="17" translatesAutoresizingMaskIntoConstraints="NO" id="hlP-2o-LUy">
  4021. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  4022. </stackView>
  4023. </subviews>
  4024. <constraints>
  4025. <constraint firstItem="hlP-2o-LUy" firstAttribute="leading" secondItem="JJm-hr-WcJ" secondAttribute="leading" constant="15" id="IIX-Js-uH2"/>
  4026. <constraint firstAttribute="bottom" secondItem="hlP-2o-LUy" secondAttribute="bottom" id="jl8-Ts-AlN"/>
  4027. <constraint firstItem="hlP-2o-LUy" firstAttribute="top" secondItem="JJm-hr-WcJ" secondAttribute="top" id="k4j-lc-wB0"/>
  4028. <constraint firstItem="hlP-2o-LUy" firstAttribute="height" secondItem="JJm-hr-WcJ" secondAttribute="height" id="l2V-EV-HeU"/>
  4029. <constraint firstAttribute="trailing" secondItem="hlP-2o-LUy" secondAttribute="trailing" constant="15" id="qqs-tw-XEg"/>
  4030. </constraints>
  4031. </scrollView>
  4032. <prototypes>
  4033. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CompanyDirectoryContactCell" id="4qL-ur-1HB" customClass="CompanyDirectoryContactCell" customModule="Threema" customModuleProvider="target">
  4034. <rect key="frame" x="0.0" y="72" width="375" height="83"/>
  4035. <autoresizingMask key="autoresizingMask"/>
  4036. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4qL-ur-1HB" id="tPI-LK-sev">
  4037. <rect key="frame" x="0.0" y="0.0" width="375" height="83"/>
  4038. <autoresizingMask key="autoresizingMask"/>
  4039. <subviews>
  4040. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="UnknownPerson" translatesAutoresizingMaskIntoConstraints="NO" id="czh-Bv-0GA">
  4041. <rect key="frame" x="16" y="21.5" width="40" height="40"/>
  4042. <constraints>
  4043. <constraint firstAttribute="width" constant="40" id="XIX-ze-IOM"/>
  4044. <constraint firstAttribute="height" constant="40" id="sdy-Ua-FmS"/>
  4045. </constraints>
  4046. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4047. </imageView>
  4048. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="253" horizontalCompressionResistancePriority="753" text="IDENTITY" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0lc-S9-AQW">
  4049. <rect key="frame" x="308" y="37" width="51" height="14"/>
  4050. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  4051. <fontDescription key="fontDescription" style="UICTFontTextStyleCaption2"/>
  4052. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4053. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4054. </label>
  4055. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" translatesAutoresizingMaskIntoConstraints="NO" id="Jpr-y8-NiA">
  4056. <rect key="frame" x="327" y="17" width="32" height="8"/>
  4057. <constraints>
  4058. <constraint firstAttribute="width" constant="32" id="ORw-rg-xdz"/>
  4059. <constraint firstAttribute="height" constant="8" id="cvr-8Y-4NC"/>
  4060. </constraints>
  4061. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  4062. </imageView>
  4063. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="253" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="753" text="MacBook Office 10 7" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="PGA-fl-u3I">
  4064. <rect key="frame" x="64" y="11" width="239" height="20.5"/>
  4065. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  4066. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  4067. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4068. <nil key="highlightedColor"/>
  4069. </label>
  4070. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" ambiguous="YES" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5uj-zQ-HDk">
  4071. <rect key="frame" x="64" y="36" width="239" height="16"/>
  4072. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  4073. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  4074. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4075. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4076. </label>
  4077. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" ambiguous="YES" text="Nickname" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="y6w-qJ-WpE">
  4078. <rect key="frame" x="64" y="56" width="239" height="16"/>
  4079. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  4080. <fontDescription key="fontDescription" style="UICTFontTextStyleFootnote"/>
  4081. <color key="textColor" red="0.49803921569999998" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4082. <color key="highlightedColor" red="0.50196078430000002" green="0.49803921569999998" blue="0.49803921569999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4083. </label>
  4084. </subviews>
  4085. <constraints>
  4086. <constraint firstItem="0lc-S9-AQW" firstAttribute="leading" secondItem="PGA-fl-u3I" secondAttribute="trailing" constant="5" id="21c-a9-Djq"/>
  4087. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="0lc-S9-AQW" secondAttribute="bottom" id="4wt-WE-nJB"/>
  4088. <constraint firstItem="Jpr-y8-NiA" firstAttribute="top" secondItem="PGA-fl-u3I" secondAttribute="top" constant="6" id="9GR-Df-XfH"/>
  4089. <constraint firstItem="czh-Bv-0GA" firstAttribute="centerY" secondItem="tPI-LK-sev" secondAttribute="centerY" id="CnM-28-Fac"/>
  4090. <constraint firstItem="5uj-zQ-HDk" firstAttribute="leading" secondItem="czh-Bv-0GA" secondAttribute="trailing" constant="8" id="Emz-yp-Itf"/>
  4091. <constraint firstItem="0lc-S9-AQW" firstAttribute="leading" relation="lessThanOrEqual" secondItem="5uj-zQ-HDk" secondAttribute="trailing" constant="5" id="H1J-36-oy4"/>
  4092. <constraint firstAttribute="trailingMargin" secondItem="0lc-S9-AQW" secondAttribute="trailing" id="Jfn-dn-dDI"/>
  4093. <constraint firstAttribute="bottomMargin" secondItem="y6w-qJ-WpE" secondAttribute="bottom" id="LEE-8w-EAh"/>
  4094. <constraint firstItem="y6w-qJ-WpE" firstAttribute="top" secondItem="5uj-zQ-HDk" secondAttribute="bottom" constant="4" id="LLj-wZ-cjc"/>
  4095. <constraint firstItem="PGA-fl-u3I" firstAttribute="leading" secondItem="czh-Bv-0GA" secondAttribute="trailing" constant="8" id="MAc-FL-h1v"/>
  4096. <constraint firstItem="y6w-qJ-WpE" firstAttribute="leading" secondItem="czh-Bv-0GA" secondAttribute="trailing" constant="8" id="SMG-0P-IhS"/>
  4097. <constraint firstItem="5uj-zQ-HDk" firstAttribute="top" secondItem="PGA-fl-u3I" secondAttribute="bottom" constant="4" id="TZE-8L-NeP"/>
  4098. <constraint firstAttribute="trailingMargin" secondItem="Jpr-y8-NiA" secondAttribute="trailing" id="aQZ-g7-OgW"/>
  4099. <constraint firstItem="czh-Bv-0GA" firstAttribute="leading" secondItem="tPI-LK-sev" secondAttribute="leadingMargin" id="dfb-EF-E5U"/>
  4100. <constraint firstItem="0lc-S9-AQW" firstAttribute="leading" secondItem="y6w-qJ-WpE" secondAttribute="trailing" constant="5" id="hZ3-km-u06"/>
  4101. <constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="czh-Bv-0GA" secondAttribute="bottom" priority="750" constant="5" id="hpx-QR-TG5"/>
  4102. <constraint firstItem="czh-Bv-0GA" firstAttribute="top" relation="greaterThanOrEqual" secondItem="tPI-LK-sev" secondAttribute="top" priority="750" constant="5" id="twL-hz-fWg"/>
  4103. <constraint firstItem="0lc-S9-AQW" firstAttribute="top" secondItem="Jpr-y8-NiA" secondAttribute="bottom" constant="12" id="uE3-Bu-3BH"/>
  4104. <constraint firstItem="PGA-fl-u3I" firstAttribute="top" secondItem="tPI-LK-sev" secondAttribute="topMargin" id="vSZ-hQ-9bQ"/>
  4105. </constraints>
  4106. </tableViewCellContentView>
  4107. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  4108. <connections>
  4109. <outlet property="avatar" destination="czh-Bv-0GA" id="Q9h-o2-qmM"/>
  4110. <outlet property="categoryLabel" destination="y6w-qJ-WpE" id="i38-An-L8x"/>
  4111. <outlet property="csiLabel" destination="5uj-zQ-HDk" id="TIX-Iu-u7M"/>
  4112. <outlet property="identityLabel" destination="0lc-S9-AQW" id="j8B-SO-Mhi"/>
  4113. <outlet property="nameLabel" destination="PGA-fl-u3I" id="sga-KH-UzZ"/>
  4114. <outlet property="verificationLevel" destination="Jpr-y8-NiA" id="lJt-GQ-PK7"/>
  4115. </connections>
  4116. </tableViewCell>
  4117. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="LoadMoreCell" textLabel="aBL-4d-MSk" rowHeight="50" style="IBUITableViewCellStyleDefault" id="1va-za-gCU">
  4118. <rect key="frame" x="0.0" y="155" width="375" height="50"/>
  4119. <autoresizingMask key="autoresizingMask"/>
  4120. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="1va-za-gCU" id="Zaq-wd-CsZ">
  4121. <rect key="frame" x="0.0" y="0.0" width="375" height="50"/>
  4122. <autoresizingMask key="autoresizingMask"/>
  4123. <subviews>
  4124. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Load more" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="aBL-4d-MSk">
  4125. <rect key="frame" x="16" y="0.0" width="343" height="50"/>
  4126. <autoresizingMask key="autoresizingMask"/>
  4127. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  4128. <nil key="textColor"/>
  4129. <nil key="highlightedColor"/>
  4130. </label>
  4131. </subviews>
  4132. </tableViewCellContentView>
  4133. </tableViewCell>
  4134. </prototypes>
  4135. <connections>
  4136. <outlet property="dataSource" destination="NhG-YL-Zj2" id="PKu-Ka-Xr0"/>
  4137. <outlet property="delegate" destination="NhG-YL-Zj2" id="K8C-He-vHn"/>
  4138. </connections>
  4139. </tableView>
  4140. </subviews>
  4141. <viewLayoutGuide key="safeArea" id="Su7-uY-Y77"/>
  4142. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4143. <constraints>
  4144. <constraint firstItem="WDp-BX-b9r" firstAttribute="trailing" secondItem="Su7-uY-Y77" secondAttribute="trailing" id="4rQ-j9-PMj"/>
  4145. <constraint firstItem="1Px-aE-PC8" firstAttribute="bottom" secondItem="Su7-uY-Y77" secondAttribute="bottom" id="7Pw-ml-kZW"/>
  4146. <constraint firstItem="1Px-aE-PC8" firstAttribute="top" secondItem="WDp-BX-b9r" secondAttribute="bottom" id="9vM-sq-WJb"/>
  4147. <constraint firstItem="1Px-aE-PC8" firstAttribute="trailing" secondItem="Su7-uY-Y77" secondAttribute="trailing" id="Czd-C6-zRb"/>
  4148. <constraint firstItem="WDp-BX-b9r" firstAttribute="top" secondItem="Su7-uY-Y77" secondAttribute="top" id="LM2-xX-I7g"/>
  4149. <constraint firstItem="WDp-BX-b9r" firstAttribute="leading" secondItem="Su7-uY-Y77" secondAttribute="leading" id="UH5-vV-T31"/>
  4150. <constraint firstItem="1Px-aE-PC8" firstAttribute="leading" secondItem="Su7-uY-Y77" secondAttribute="leading" id="xp3-b3-sxh"/>
  4151. </constraints>
  4152. </view>
  4153. <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" prompted="NO"/>
  4154. <connections>
  4155. <outlet property="activeFiltersView" destination="hlP-2o-LUy" id="wUG-n6-LoF"/>
  4156. <outlet property="noEntriesFoundDescriptionLabel" destination="Pqv-bT-HSz" id="EM2-RK-pMU"/>
  4157. <outlet property="noEntriesFoundTitleLabel" destination="TxQ-av-ynQ" id="E4Q-av-SE6"/>
  4158. <outlet property="noEntriesFoundView" destination="1Yr-jO-led" id="KsR-gw-2oQ"/>
  4159. <outlet property="scrollView" destination="JJm-hr-WcJ" id="cft-2J-yaz"/>
  4160. <outlet property="searchBar" destination="WDp-BX-b9r" id="83h-wY-BFV"/>
  4161. <outlet property="tableView" destination="1Px-aE-PC8" id="Yet-l6-Gdm"/>
  4162. <segue destination="K1S-JP-hMM" kind="show" identifier="ShowFilterSegue" id="uXG-BF-BP7"/>
  4163. </connections>
  4164. </viewController>
  4165. <view contentMode="scaleToFill" id="1Yr-jO-led">
  4166. <rect key="frame" x="0.0" y="0.0" width="375" height="120"/>
  4167. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4168. <subviews>
  4169. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Please enter at least 3 characters of a name to begin searching in your company's directory of Threema users" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Pqv-bT-HSz">
  4170. <rect key="frame" x="30" y="51" width="315" height="58"/>
  4171. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  4172. <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4173. <nil key="highlightedColor"/>
  4174. </label>
  4175. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="No entries found" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TxQ-av-ynQ">
  4176. <rect key="frame" x="30" y="20" width="315" height="21"/>
  4177. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  4178. <color key="textColor" red="0.66666666669999997" green="0.66666666669999997" blue="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4179. <nil key="highlightedColor"/>
  4180. </label>
  4181. </subviews>
  4182. <viewLayoutGuide key="safeArea" id="eb7-Bl-32K"/>
  4183. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  4184. <constraints>
  4185. <constraint firstItem="Pqv-bT-HSz" firstAttribute="leading" secondItem="eb7-Bl-32K" secondAttribute="leading" constant="30" id="7je-BR-7lR"/>
  4186. <constraint firstItem="Pqv-bT-HSz" firstAttribute="top" secondItem="TxQ-av-ynQ" secondAttribute="bottom" constant="10" id="Nb3-in-AxU"/>
  4187. <constraint firstItem="eb7-Bl-32K" firstAttribute="trailing" secondItem="Pqv-bT-HSz" secondAttribute="trailing" constant="30" id="Vbs-HB-uLo"/>
  4188. <constraint firstItem="eb7-Bl-32K" firstAttribute="trailing" secondItem="TxQ-av-ynQ" secondAttribute="trailing" constant="30" id="Xh0-Pq-DkK"/>
  4189. <constraint firstItem="TxQ-av-ynQ" firstAttribute="top" secondItem="eb7-Bl-32K" secondAttribute="top" constant="20" id="fnJ-pm-lWN"/>
  4190. <constraint firstItem="TxQ-av-ynQ" firstAttribute="leading" secondItem="eb7-Bl-32K" secondAttribute="leading" constant="30" id="tzn-h2-1C7"/>
  4191. </constraints>
  4192. </view>
  4193. <placeholder placeholderIdentifier="IBFirstResponder" id="VEI-di-cTB" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4194. </objects>
  4195. <point key="canvasLocation" x="-1458.4000000000001" y="-1116.7916041979011"/>
  4196. </scene>
  4197. <!--Company Directory Category View Controller-->
  4198. <scene sceneID="qqM-8i-yZ6">
  4199. <objects>
  4200. <tableViewController storyboardIdentifier="CompanyDirectoryCategoryViewController" id="K1S-JP-hMM" customClass="CompanyDirectoryCategoryViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  4201. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="8N7-7X-nQJ">
  4202. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4203. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4204. <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
  4205. <prototypes>
  4206. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" accessoryType="checkmark" indentationWidth="10" reuseIdentifier="CategoryCell" textLabel="pTV-j2-YY0" style="IBUITableViewCellStyleDefault" id="wQo-6V-kiE">
  4207. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  4208. <autoresizingMask key="autoresizingMask"/>
  4209. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="wQo-6V-kiE" id="Dly-kX-har">
  4210. <rect key="frame" x="0.0" y="0.0" width="335" height="43.5"/>
  4211. <autoresizingMask key="autoresizingMask"/>
  4212. <subviews>
  4213. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="pTV-j2-YY0">
  4214. <rect key="frame" x="16" y="0.0" width="311" height="43.5"/>
  4215. <autoresizingMask key="autoresizingMask"/>
  4216. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4217. <nil key="textColor"/>
  4218. <nil key="highlightedColor"/>
  4219. </label>
  4220. </subviews>
  4221. </tableViewCellContentView>
  4222. </tableViewCell>
  4223. </prototypes>
  4224. <connections>
  4225. <outlet property="dataSource" destination="K1S-JP-hMM" id="nLm-jO-iVx"/>
  4226. <outlet property="delegate" destination="K1S-JP-hMM" id="vJy-lK-1cc"/>
  4227. </connections>
  4228. </tableView>
  4229. </tableViewController>
  4230. <placeholder placeholderIdentifier="IBFirstResponder" id="yc8-vY-8sS" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4231. </objects>
  4232. <point key="canvasLocation" x="-791" y="-1117"/>
  4233. </scene>
  4234. </scenes>
  4235. <designables>
  4236. <designable name="4a3-95-oYU">
  4237. <size key="intrinsicContentSize" width="317.5" height="38"/>
  4238. </designable>
  4239. </designables>
  4240. <inferredMetricsTieBreakers>
  4241. <segue reference="v8v-US-Bo6"/>
  4242. <segue reference="rOK-24-MIK"/>
  4243. </inferredMetricsTieBreakers>
  4244. <resources>
  4245. <image name="759-refresh-2.png" width="28" height="28"/>
  4246. <image name="AddMember" width="22" height="22"/>
  4247. <image name="Asterisk" width="200" height="200"/>
  4248. <image name="Bell" width="22" height="22"/>
  4249. <image name="Compose" width="22" height="23"/>
  4250. <image name="Contact" width="15" height="15"/>
  4251. <image name="Copy" width="26" height="22"/>
  4252. <image name="CurrentLocation" width="22" height="22"/>
  4253. <image name="Edit" width="22" height="22"/>
  4254. <image name="ExportConversation" width="20" height="25"/>
  4255. <image name="Group" width="31" height="15"/>
  4256. <image name="Location" width="23" height="25"/>
  4257. <image name="MessageStatus_sent" width="20" height="18"/>
  4258. <image name="ProfilePicture" width="22" height="22"/>
  4259. <image name="QRScan" width="22" height="22"/>
  4260. <image name="SendMessage" width="25" height="25"/>
  4261. <image name="Share" width="25" height="25"/>
  4262. <image name="TabBar-Chats" width="37" height="23"/>
  4263. <image name="TabBar-Contacts" width="37" height="23"/>
  4264. <image name="TabBar-Id" width="37" height="23"/>
  4265. <image name="TabBar-Settings" width="37" height="26"/>
  4266. <image name="ThreemaPhone" width="25" height="25"/>
  4267. <image name="Typing.png" width="22" height="20"/>
  4268. <image name="UnknownPerson" width="200" height="200"/>
  4269. <image name="WorkContact.png" width="20" height="20"/>
  4270. <image name="imageView:HhM-hD-Gie:image" width="22" height="22">
  4271. <mutableData key="keyedArchiveRepresentation">
  4272. YnBsaXN0MDDUAQIDBAUGBwpYJHZlcnNpb25ZJGFyY2hpdmVyVCR0b3BYJG9iamVjdHMSAAGGoF8QD05T
  4273. S2V5ZWRBcmNoaXZlctEICVRyb290gAGvEBcLDBkaIRQmKisyNTo9PkNGR0pUXF1hZFUkbnVsbNYNDg8Q
  4274. ERITFBUWFxhWTlNTaXplXk5TUmVzaXppbmdNb2RlViRjbGFzc1xOU0ltYWdlRmxhZ3NWTlNSZXBzV05T
  4275. Q29sb3KAAhAAgBYSIMAAAIADgBFYezIyLCAyMn3SGw8cIFpOUy5vYmplY3Rzox0eH4AEgAqADYAQ0hsP
  4276. IiWiIySABYAGgAnSJw8oKV8QFE5TVElGRlJlcHJlc2VudGF0aW9ugAeACE8RFLZNTQAqAAAHmAAAAAAA
  4277. AAAAAAAAAAAAAAAAAAAAAAAAAA8PDw9oaGhosrKysuLi4uL5+fn5+fn5+eHh4eGwsLCwZmZmZg4ODg4A
  4278. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgYGBnNzc3Pu7u7u///////////6
  4279. +vr64eHh4eLi4uL6+vr6///////////s7OzscHBwcAUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4280. AAAAFhYWFsXFxcX/////9PT09IuLi4s3Nzc3AQEBAQAAAAAAAAAAAgICAjg4ODiNjY2N9fX19f/////C
  4281. wsLCFRUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAFhYWFt7e3t7/////r6+vrxcXFxcAAAAAAAAAAAAAAAAA
  4282. AAAAAAAAAAAAAAAAAAAAAAAAABkZGRmzs7Oz/////9zc3NwVFRUVAAAAAAAAAAAAAAAABgYGBsXFxcX/
  4283. ////j4+PjwEBAQEAAAAAAAAAAAAAAAALCwsLioqKinV1dXUAAAAAAAAAAAAAAAAAAAAAAgICApOTk5P/
  4284. ////wsLCwgUFBQUAAAAAAAAAAHJycnL/////sbGxsQEBAQEAAAAAAAAAAAAAAAAAAAAAbW1tbf//////
  4285. ////Ozs7OwAAAAAAAAAAAAAAAAAAAAACAgICs7Ozs/////9wcHBwAAAAAA8PDw/t7e3t9fX19RgYGBgA
  4286. AAAAAAAAAAAAAAAAAAAAAAAAAD09PT35+fn56+vr6xkZGRkAAAAAAAAAAAAAAAAAAAAAAAAAABkZGRn1
  4287. 9fX17Ozs7A4ODg5nZ2dn/////46Ojo4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExMTEwsLCwsA
  4288. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjo6Ojv////9mZmZmsbGxsf////86Ojo6AAAAAAAAAAAA
  4289. AAAAAAAAAAAAAAAAAAAACAgICAkJCQkEBAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADk5OTn/
  4290. ////sbGxseLi4uL7+/v7AgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAX19fX///////////8vLy8hMTExMA
  4291. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgIC+/v7++Hh4eH5+fn55OTk5AAAAAAAAAAAAAAAAAAAAAAA
  4292. AAAAAAAAAB0dHR12dnZ2w8PDw/////8qKioqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOLi4uL5
  4293. +fn5+fn5+eTk5OQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIyMjIz/////KioqKgAAAAAA
  4294. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADh4eHh+fn5+eHh4eH7+/v7AgICAgAAAAAAAAAAAAAAAAAAAAAA
  4295. AAAAAAAAAAAAAACMjIyM/////yoqKioAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEB+fn5+eHh4eGx
  4296. sbGx/////zo6OjoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjIyMjP////8qKioqAAAAAAAAAAAA
  4297. AAAAAAAAAAAAAAAAAAAANjY2Nv////+xsbGxZ2dnZ/////+Ojo6OAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4298. AAAAAAAAAIyMjIz/////KioqKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuLi4v/////Z2dnZw8PDw/t
  4299. 7e3t9fX19RkZGRkAAAAAAAAAAAAAAAAAAAAAQkJCQpOTk5PPz8/P/////6WlpaWLi4uLEBAQEAAAAAAA
  4300. AAAAAAAAABcXFxf09PT07e3t7Q8PDw8AAAAAcnJycv////+xsbGxAQEBAQAAAAAAAAAAAAAAAH5+fn7u
  4301. 7u7u7u7u7u7u7u7u7u7u5ubm5ikpKSkAAAAAAAAAAAEBAQGvr6+v/////3FxcXEAAAAAAAAAAAYGBgbF
  4302. xcXF/////5CQkJABAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQGP
  4303. j4+P/////8TExMQGBgYGAAAAAAAAAAAAAAAAFhYWFt7e3t7/////sLCwsBgYGBgAAAAAAAAAAAAAAAAA
  4304. AAAAAAAAAAAAAAAAAAAAAAAAABgYGBiwsLCw/////93d3d0WFhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAW
  4305. FhYWxcXFxf/////09PT0i4uLizc3NzcBAQEBAAAAAAAAAAACAgICNzc3N4yMjIz09PT0/////8TExMQW
  4306. FhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYGBgZycnJy7e3t7f//////////+vr6+uLi4uLi
  4307. 4uLi+vr6+v//////////7e3t7XJycnIGBgYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4308. AAAAAAAAAA8PDw9nZ2dnsbGxseHh4eH5+fn5+fn5+eHh4eGxsbGxZ2dnZw8PDw8AAAAAAAAAAAAAAAAA
  4309. AAAAAAAAAAAAAAAAEAEAAAMAAAABABYAAAEBAAMAAAABABYAAAECAAMAAAAEAAAIXgEDAAMAAAABAAEA
  4310. AAEGAAMAAAABAAIAAAEKAAMAAAABAAEAAAERAAQAAAABAAAACAESAAMAAAABAAEAAAEVAAMAAAABAAQA
  4311. AAEWAAMAAAABABYAAAEXAAQAAAABAAAHkAEcAAMAAAABAAEAAAEoAAMAAAABAAIAAAFSAAMAAAABAAEA
  4312. AAFTAAMAAAAEAAAIZodzAAcAAAxIAAAIbgAAAAAACAAIAAgACAABAAEAAQABAAAMSExpbm8CEAAAbW50
  4313. clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAAAAAAAPbWAAEA
  4314. AAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARY3By
  4315. dAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAAAhgAAAAUZ1hZ
  4316. WgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAAA0wAAACGdmll
  4317. dwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAABDwAAAgMZ1RS
  4318. QwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3bGV0dC1QYWNr
  4319. YXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAASc1JHQiBJ
  4320. RUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4321. AFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAAb6IAADj1AAAD
  4322. kFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAAABZJRUMgaHR0
  4323. cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAAAAA
  4324. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYxOTY2LTIuMSBE
  4325. ZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZh
  4326. dWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRlc2MAAAAAAAAA
  4327. LFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAACxSZWZl
  4328. cmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4329. AAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABMCVYAUAAAAFcf
  4330. 521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1cnYAAAAAAAAE
  4331. AAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3AHwAgQCGAIsA
  4332. kACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQETARkBHwElASsB
  4333. MgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHpAfIB+gIDAgwC
  4334. FAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAMLAxYDIQMtAzgD
  4335. QwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+BIwEmgSoBLYE
  4336. xATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZIBlkGagZ7BowG
  4337. nQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghuCIIIlgiqCL4I
  4338. 0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3ArzCwsLIgs5C1EL
  4339. aQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3eDfgOEw4uDkkO
  4340. ZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8RbRGMEaoR
  4341. yRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTwFRIVNBVWFXgV
  4342. mxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ
  4343. 3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3DHeweFh5AHmoe
  4344. lB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLdIwojOCNmI5Qj
  4345. wiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhxKKIo1CkGKTgp
  4346. aymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6CLrcu7i8kL1ov
  4347. kS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUTNU01hzXCNf02
  4348. NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76DwnPGU8pDzjPSI9
  4349. YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPARANER0SKRM5F
  4350. EkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkviTCpMcky6TQJN
  4351. Sk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSPVNtVKFV1VcJW
  4352. D1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3JXhpebF69Xw9f
  4353. YV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeTZ+loP2iWaOxp
  4354. Q2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHwcktypnMBc11z
  4355. uHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzhfUF9oX4BfmJ+
  4356. wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhpiM6JM4mZif6K
  4357. ZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSKlPSVX5XJljSW
  4358. n5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFHobaiJqKWowaj
  4359. dqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6hrxavi7AAsHWw
  4360. 6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8IbybvRW9j74KvoS+
  4361. /796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2y7bMNcy1zTXN
  4362. tc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp22vvbgNwF3Ird
  4363. EN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb6uXrcOv77Ibt
  4364. Ee2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn+3f8B/yY/Sn9
  4365. uv5L/tz/bf//0iwtLi9aJGNsYXNzbmFtZVgkY2xhc3Nlc18QEE5TQml0bWFwSW1hZ2VSZXCjLjAxWk5T
  4366. SW1hZ2VSZXBYTlNPYmplY3TSLC0zNFdOU0FycmF5ojMx0hsPNiWiIziABYALgAnSJw87KYAMgAhPESuO
  4367. TU0AKgAAHkgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4368. AAAAAAAAAAAICAgIQ0NDQ4SEhISwsLCw19fX1+zs7Oz5+fn5+fn5+evr6+vW1tbWrq6uroGBgYFAQEBA
  4369. BwcHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4370. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEBA
  4371. oqKiovT09PT////////////////////////////////////////////////////////////////y8vLy
  4372. np6enjs7OzsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4373. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRkZGx8fHx///////////
  4374. ////////////////////////////////////////////////////////////////////////////////
  4375. /////8LCwsJAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4376. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaGhoarKysrP//////////////////////////
  4377. ///////////7+/v72dnZ2b29vb2wsLCwsbGxsb6+vr7b29vb/Pz8/P//////////////////////////
  4378. //////////+mpqamFxcXFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4379. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASEhISOvr6+v//////////////////////////9ra2tqBgYGB
  4380. PDw8PAYGBgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHBwcHPz8/P4WFhYXe3t7e////////////////
  4381. ///////////o6OjoQkJCQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4382. AAAAAAAAAAAAAAAAAAAAAHBwcHD+/v7+/////////////////////76+vr5CQkJCAAAAAAAAAAAAAAAA
  4383. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQFISEhIw8PDw///////////
  4384. ///////////9/f39aGhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4385. AAAAAAAAAACBgYGB/////////////////////+Li4uJQUFBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4386. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVlZWVubm5ub/////
  4387. ////////////////enp6egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4388. b29vb/////////////////////+zs7OzEhISEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4389. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUVFbi4uLj/////
  4390. ////////////////aWlpaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEhISEj+/v7+
  4391. ////////////////lJSUlAICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALCwsL
  4392. RERERDIyMjIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDA5ubm5v/////
  4393. ///////////9/f39Q0NDQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaGhoa6+vr6///////////
  4394. /////5WVlZUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALi4uLuPj4+P/////
  4395. /////6urq6sCAgICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJubm5v/////
  4396. ///////////o6OjoFxcXFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKysrKz///////////////+1tbW1
  4397. AgICAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADHx8fH////////////////
  4398. /////2NjY2MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDA7m5ubn/////
  4399. //////////+np6enAAAAAAAAAAAAAAAAAAAAAAAAAABFRUVF////////////////5OTk5BMTExMAAAAA
  4400. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPn5+fn/////////////////////
  4401. lZWVlQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUVFebm5ub/////
  4402. //////////9BQUFBAAAAAAAAAAAAAAAAAAAAAMbGxsb///////////////9UVFRUAAAAAAAAAAAAAAAA
  4403. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAycnJyf////////////////////9mZmZm
  4404. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAV1dXV///////////
  4405. /////8PDw8MAAAAAAAAAAAAAAAA/Pz8/////////////////wsLCwgAAAAAAAAAAAAAAAAAAAAAAAAAA
  4406. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAw5eXl5f//////////r6+vrwMDAwMAAAAA
  4407. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxMTExP//////////
  4408. /////zw8PDwAAAAAAAAAAKGhoaH///////////////9ISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4409. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANDQ0NSEhISDY2NjYAAAAAAAAAAAAAAAAAAAAA
  4410. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABJSUlJ////////////////
  4411. n5+fnwAAAAAICAgI9PT09P//////////39/f3wEBAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4412. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4413. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQHf39/f///////////z8/Pz
  4414. BwcHB0NDQ0P///////////////+Hh4eHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4415. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4416. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIWFhYX///////////////9BQUFB
  4417. g4ODg////////////////0JCQkIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4418. AAAAAAAAAAAAAAAADAwMDBMTExMTExMTExMTExAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4419. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAQP///////////////4KCgoKwsLCw
  4420. ///////////9/f39CQkJCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4421. AAAAAJCQkJD//////////////////////////8rKysoHBwcHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4422. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAICAgI/Pz8/P//////////r6+vr9fX19f/////
  4423. /////9/f398AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4424. 7u7u7v///////////////////////////////0ZGRkYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4425. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADc3Nzc///////////W1tbW7Ozs7P//////////
  4426. w8PDwwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1dXV1
  4427. 6enp6fHx8fHy8vLy////////////////VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4428. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL+/v7///////////+zs7Oz5+fn5//////////+2tra2
  4429. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4430. AAAAABkZGRn///////////////9UVFRUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4431. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsbGxsf//////////+fn5+fn5+fn//////////7a2trYAAAAA
  4432. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4433. GRkZGf///////////////1RUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4434. AAAAAAAAAAAAAAAAAAAAAAAAAACwsLCw///////////5+fn57Ozs7P//////////w8PDwwAAAAAAAAAA
  4435. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ
  4436. ////////////////VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4437. AAAAAAAAAAAAAAAAAAAAAL29vb3//////////+zs7OzX19fX///////////f39/fAAAAAAAAAAAAAAAA
  4438. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZGRn/////
  4439. //////////9UVFRUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4440. AAAAAAAAAAAAAAAA2dnZ2f//////////19fX17CwsLD///////////39/f0JCQkJAAAAAAAAAAAAAAAA
  4441. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZGf//////////
  4442. /////1RUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4443. AAAAAAUFBQX7+/v7//////////+vr6+vg4ODg////////////////0JCQkIAAAAAAAAAAAAAAAAAAAAA
  4444. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ////////////////
  4445. VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4446. Ozs7O////////////////4ODg4NDQ0ND////////////////h4eHhwAAAAAAAAAAAAAAAAAAAAAAAAAA
  4447. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkZGRn///////////////9UVFRU
  4448. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICA
  4449. ////////////////QkJCQggICAj09PT0///////////f39/fAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAA
  4450. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZGf///////////////1RUVFQAAAAA
  4451. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANra2tr/////
  4452. //////Pz8/MICAgIAAAAAKGhoaH///////////////9ISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4453. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ////////////////VFRUVAAAAAAAAAAA
  4454. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABCQkJC////////////////
  4455. oKCgoAAAAAAAAAAAPz8/P////////////////8LCwsIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4456. AAAAAAAAAAAAAAAAAAAAAAgICAgnJycnKCgoKD09PT3///////////////9vb29vKCgoKCgoKCgQEBAQ
  4457. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL29vb3///////////////8+Pj4+
  4458. AAAAAAAAAAAAAAAAxsbGxv///////////////1RUVFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4459. AAAAAAAAAAAZGRkZ5ubm5v////////////////////////////////////////////////f39/dCQkJC
  4460. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPT09P////////////////xcXFxQAAAAAAAAAA
  4461. AAAAAAAAAABFRUVF////////////////5OTk5BMTExMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4462. AAAAAEtLS0v//////////////////////////////////////////////////////////4WFhYUAAAAA
  4463. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEREREeLi4uL///////////////9EREREAAAAAAAAAAAAAAAA
  4464. AAAAAAAAAACrq6ur////////////////tbW1tQICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4465. BwcHB6ampqbb29vb3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Ny9vb29ICAgIAAAAAAAAAAA
  4466. AAAAAAAAAAAAAAAAAAAAAAICAgKysrKy////////////////qqqqqgAAAAAAAAAAAAAAAAAAAAAAAAAA
  4467. AAAAABoaGhrr6+vr////////////////lpaWlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4468. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4469. AAAAAAAAAAAAAAAAk5OTk////////////////+rq6uoZGRkZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4470. AAAAAEdHR0f+/v7+////////////////lZWVlQICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4471. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4472. AgICApOTk5P////////////////9/f39RkZGRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4473. AAAAAG9vb2//////////////////////s7OzsxISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4474. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABISEhKysrKy
  4475. /////////////////////21tbW0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4476. AAAAAICAgID/////////////////////4+Pj41FRUVEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4477. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABRUVFR4+Pj4///////////
  4478. //////////9+fn5+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4479. AAAAAG9vb2/+/v7+/////////////////////7+/v79EREREAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4480. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEREREv7+/v//////////////////////9/f39
  4481. bW1tbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4482. AAAAAEhISEjr6+vr///////////////////////////b29vbgoKCgj09PT0GBgYGAAAAAAAAAAAAAAAA
  4483. AAAAAAAAAAAAAAAABgYGBj09PT2CgoKC3Nzc3P//////////////////////////6urq6kZGRkYAAAAA
  4484. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4485. AAAAABoaGhqrq6ur//////////////////////////////////////v7+/va2travr6+vrGxsbGxsbGx
  4486. vr6+vtra2tr7+/v7/////////////////////////////////////6qqqqoZGRkZAAAAAAAAAAAAAAAA
  4487. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4488. AAAAAAAAAABFRUVFxsbGxv//////////////////////////////////////////////////////////
  4489. /////////////////////////////////////8XFxcVEREREAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4490. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4491. AAAAAAAAAAAAAAAAPz8/P6GhoaH09PT0////////////////////////////////////////////////
  4492. ////////////////8/Pz86CgoKA+Pj4+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4493. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4494. AAAAAAAAAAAAAAAAAAAAAAgICAhDQ0NDg4ODg7CwsLDX19fX7Ozs7Pn5+fn5+fn57Ozs7NfX19ewsLCw
  4495. g4ODg0JCQkIICAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4496. AAAAAAAAAAAAAAAAABIBAAADAAAAAQAsAAABAQADAAAAAQAsAAABAgADAAAABAAAHzYBAwADAAAAAQAB
  4497. AAABBgADAAAAAQACAAABCgADAAAAAQABAAABEQAEAAAAAQAAAAgBEgADAAAAAQABAAABFQADAAAAAQAE
  4498. AAABFgADAAAAAQAsAAABFwAEAAAAAQAAHkABGgAFAAAAAQAAHyYBGwAFAAAAAQAAHy4BHAADAAAAAQAB
  4499. AAABKAADAAAAAQACAAABUgADAAAAAQABAAABUwADAAAABAAAHz6HcwAHAAAMSAAAH0YAAAAAAAAAkAAA
  4500. AAEAAACQAAAAAQAIAAgACAAIAAEAAQABAAEAAAxITGlubwIQAABtbnRyUkdCIFhZWiAHzgACAAkABgAx
  4501. AABhY3NwTVNGVAAAAABJRUMgc1JHQgAAAAAAAAAAAAAAAAAA9tYAAQAAAADTLUhQICAAAAAAAAAAAAAA
  4502. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABFjcHJ0AAABUAAAADNkZXNjAAABhAAA
  4503. AGx3dHB0AAAB8AAAABRia3B0AAACBAAAABRyWFlaAAACGAAAABRnWFlaAAACLAAAABRiWFlaAAACQAAA
  4504. ABRkbW5kAAACVAAAAHBkbWRkAAACxAAAAIh2dWVkAAADTAAAAIZ2aWV3AAAD1AAAACRsdW1pAAAD+AAA
  4505. ABRtZWFzAAAEDAAAACR0ZWNoAAAEMAAAAAxyVFJDAAAEPAAACAxnVFJDAAAEPAAACAxiVFJDAAAEPAAA
  4506. CAx0ZXh0AAAAAENvcHlyaWdodCAoYykgMTk5OCBIZXdsZXR0LVBhY2thcmQgQ29tcGFueQAAZGVzYwAA
  4507. AAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAABJzUkdCIElFQzYxOTY2LTIuMQAAAAAAAAAA
  4508. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWFlaIAAAAAAAAPNRAAEAAAAB
  4509. FsxYWVogAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAABvogAAOPUAAAOQWFlaIAAAAAAAAGKZAAC3hQAA
  4510. GNpYWVogAAAAAAAAJKAAAA+EAAC2z2Rlc2MAAAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAA
  4511. AAAAAAAAFklFQyBodHRwOi8vd3d3LmllYy5jaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4512. AAAAAAAAAAAAAAAAAABkZXNjAAAAAAAAAC5JRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBz
  4513. cGFjZSAtIHNSR0IAAAAAAAAAAAAAAC5JRUMgNjE5NjYtMi4xIERlZmF1bHQgUkdCIGNvbG91ciBzcGFj
  4514. ZSAtIHNSR0IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAsUmVmZXJlbmNlIFZpZXdpbmcg
  4515. Q29uZGl0aW9uIGluIElFQzYxOTY2LTIuMQAAAAAAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRp
  4516. dGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHZpZXcAAAAAABOk/gAU
  4517. Xy4AEM8UAAPtzAAEEwsAA1yeAAAAAVhZWiAAAAAAAEwJVgBQAAAAVx/nbWVhcwAAAAAAAAABAAAAAAAA
  4518. AAAAAAAAAAAAAAAAAo8AAAACc2lnIAAAAABDUlQgY3VydgAAAAAAAAQAAAAABQAKAA8AFAAZAB4AIwAo
  4519. AC0AMgA3ADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQAJUAmgCfAKQAqQCuALIAtwC8
  4520. AMEAxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEyATgBPgFFAUwBUgFZAWABZwFu
  4521. AXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIUAh0CJgIvAjgCQQJLAlQCXQJn
  4522. AnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOANDA08DWgNmA3IDfgOKA5YDogOu
  4523. A7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTEBNME4QTwBP4FDQUcBSsFOgVJ
  4524. BVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAadBq8GwAbRBuMG9QcHBxkHKwc9
  4525. B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjSCOcI+wkQCSUJOglPCWQJeQmP
  4526. CaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtpC4ALmAuwC8gL4Qv5DBIMKgxD
  4527. DFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4OSQ5kDn8Omw62DtIO7g8JDyUPQQ9e
  4528. D3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFtEYwRqhHJEegSBxImEkUSZBKEEqMSwxLj
  4529. EwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAVEhU0FVYVeBWbFb0V4BYDFiYWSRZsFo8WshbW
  4530. FvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6GSAZRRlrGZEZtxndGgQaKhpRGncanhrFGuwbFBs7
  4531. G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcdcB2ZHcMd7B4WHkAeah6UHr4e6R8THz4faR+UH78f6iAV
  4532. IEEgbCCYIMQg8CEcIUghdSGhIc4h+yInIlUigiKvIt0jCiM4I2YjlCPCI/AkHyRNJHwkqyTaJQklOCVo
  4533. JZclxyX3JicmVyaHJrcm6CcYJ0kneierJ9woDSg/KHEooijUKQYpOClrKZ0p0CoCKjUqaCqbKs8rAis2
  4534. K2krnSvRLAUsOSxuLKIs1y0MLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+RL8cv/jA1MGwwpDDbMRIxSjGC
  4535. Mbox8jIqMmMymzLUMw0zRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3NnI2rjbpNyQ3YDecN9c4FDhQ
  4536. OIw4yDkFOUI5fzm8Ofk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1hPaE94D4gPmA+oD7gPyE/YT+i
  4537. P+JAI0BkQKZA50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUSRVVFmkXeRiJGZ0arRvBHNUd7
  4538. R8BIBUhLSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1KTZNN3E4lTm5Ot08AT0lPk0/d
  4539. UCdQcVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYPVlxWqVb3V0RXklfgWC9YfVjL
  4540. WRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19hX7NgBWBXYKpg/GFPYaJh9WJJ
  4541. Ypxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlDaZpp8WpIap9q92tPa6dr/2xX
  4542. bK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4dBR0cHTMdSh1hXXhdj52m3b4
  4543. d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7CfyN/hH/lgEeAqIEKgWuBzYIw
  4544. gpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opkisqLMIuWi/yMY4zKjTGNmI3/
  4545. jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaflwqXdZfgmEyYuJkkmZCZ/Jpo
  4546. mtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopajBqN2o+akVqTHpTilqaYapoum/adu
  4547. p+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+LsACwdbDqsWCx1rJLssKzOLOutCW0nLUT
  4548. tYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9Fb2Pvgq+hL7/v3q/9cBwwOzBZ8Hjwl/C28NY
  4549. w9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3yzbLtsw1zLXNNc21zjbOts83z7jQOdC60TzRvtI/
  4550. 0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZbNnx2nba+9uA3AXcit0Q3ZbeHN6i3ynfr+A24L3hROHM
  4551. 4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy6LzpRunQ6lvq5etw6/vshu0R7ZzuKO6070DvzPBY8OXxcvH/
  4552. 8ozzGfOn9DT0wvVQ9d72bfb794r4Gfio+Tj5x/pX+uf7d/wH/Jj9Kf26/kv+3P9t///SGw8/JaIjQYAF
  4553. gA6ACdInD0QpgA+ACE8RUV5NTQAqAABEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4554. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4555. AAAAAAAYGBgYVVVVVX9/f3+np6enzc3Nzd/f39/s7Ozs+fn5+fj4+Pjr6+vr3t7e3srKysqkpKSkfHx8
  4556. fFFRUVEUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4557. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4558. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4559. AAAAAAAAAAAAAAAAAAAAAAA7Ozs7kZGRkdXV1dX/////////////////////////////////////////
  4560. ///////////////////////////////////////+/v7+0NDQ0IyMjIw0NDQ0AAAAAAAAAAAAAAAAAAAA
  4561. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4562. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4563. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUFBQUfHx8fNvb29v/////////////////////////
  4564. ////////////////////////////////////////////////////////////////////////////////
  4565. ////////////1dXV1XV1dXUQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4566. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4567. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGBgYGIyMjIz09PT0////
  4568. ////////////////////////////////////////////////////////////////////////////////
  4569. ///////////////////////////////////////////////////////w8PDwhISEhBMTExMAAAAAAAAA
  4570. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4571. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4572. AAUFBQV4eHh49fX19f//////////////////////////////////////////////////////////////
  4573. ////////////////////////////////////////////////////////////////////////////////
  4574. //////////////////Hx8fFvb29vAwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4575. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4576. AAAAAAAAAAAAAAAAAAAAAAAAAAAAPDw8PNbW1tb/////////////////////////////////////////
  4577. ///////////////////////k5OTkvb29vZ+fn5+SkpKShoaGhoaGhoaTk5OToaGhob+/v7/m5ubm////
  4578. ////////////////////////////////////////////////////////////z8/PzzQ0NDQAAAAAAAAA
  4579. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4580. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQF6enp6/Pz8/P//////////////
  4581. /////////////////////////////////9TU1NSLi4uLSUlJSQ0NDQ0AAAAAAAAAAAAAAAAAAAAAAAAA
  4582. AAAAAAAAAAAAAAAAAAAAAAAAAAAAEREREU5OTk6Pj4+P2tra2v//////////////////////////////
  4583. //////////////////r6+vpwcHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4584. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQ
  4585. ELi4uLj///////////////////////////////////////////Hx8fGPj4+PMTExMQAAAAAAAAAAAAAA
  4586. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4587. ADg4ODiWlpaW9fX19f//////////////////////////////////////////r6+vrwwMDAwAAAAAAAAA
  4588. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4589. AAAAAAAAAAAAAAAAAAAAAAAaGhoa0tLS0v/////////////////////////////////////u7u7ufX19
  4590. fRAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4591. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFRUVFYWFhYXy8vLy////////////////////
  4592. /////////////////8rKysoUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4593. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQkJCTf39/f////////////////////
  4594. /////////////v7+/p+fn58VFRUVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4595. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4596. AAAAAAAaGhoaqKioqP/////////////////////////////////////Z2dnZHh4eHgAAAAAAAAAAAAAA
  4597. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZ
  4598. Gd/f39/////////////////////////////////m5ubmQUFBQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4599. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4600. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEtLS0vr6+vr////////////////////
  4601. ////////////2dnZ2RUVFRUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4602. AAAAAAAAAAAAAAAAAAAAAAAQEBAQ0dHR0f///////////////////////////////7y8vLwWFhYWAAAA
  4603. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4604. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4605. AAAAAAAbGxsbxMTExP///////////////////////////////8vLy8sMDAwMAAAAAAAAAAAAAAAAAAAA
  4606. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQG4uLi4////////////////////
  4607. ////////////o6OjowUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4608. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4609. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwcHB6ysrKz/////////////////////////
  4610. //////+vr6+vAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4611. AHl5eXn///////////////////////////////+Tk5OTAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4612. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUFDExMTE7u7u7t3d3d2KioqKDg4O
  4613. DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4614. AAICAgKdnZ2d////////////////////////////////cXFxcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4615. AAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7O/z8/Pz//////////////////////////6WlpaUBAQEBAAAA
  4616. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc3Nz
  4617. c///////////////////////////0dHR0QwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4618. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICra2trf//////////////////////////+vr6
  4619. +jU1NTUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUF1dXV1f//////////////
  4620. ////////////vr6+vgUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4621. AAAAAAAAAAAAAAAAAAAAAAAdHR0d+vr6+v///////////////////////////////4KCgoIAAAAAAAAA
  4622. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwcH
  4623. B8XFxcX//////////////////////////9DQ0NADAwMDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4624. AAAAAAB2dnZ2///////////////////////////o6OjoGBgYGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4625. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnZ2dn////////////////////
  4626. /////////////////9LS0tIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4627. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwcHBzs7Ozs//////////////////////////9wcHBwAAAA
  4628. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcXFxf09PT0//////////////////////////9GRkZGAAAA
  4629. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4630. AAAAAAB3d3d3/////////////////////////////////////+Li4uIAAAAAAAAAAAAAAAAAAAAAAAAA
  4631. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMTExM////
  4632. ///////////////////////y8vLyFBQUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuLi4v/////////
  4633. /////////////////6WlpaUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4634. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMTExM////////////////////////////////////
  4635. /7a2trYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4636. AAAAAAAAAAAAAAAAAAAAAAAAAAAAqampqf//////////////////////////hoaGhgAAAAAAAAAAAAAA
  4637. AAAAAAAAAAAAExMTE/Pz8/P/////////////////////8vLy8hkZGRkAAAAAAAAAAAAAAAAAAAAAAAAA
  4638. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMD09PT
  4639. 0////////////////////////////v7+/kNDQ0MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4640. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGxsbG/Pz8/P/////////
  4641. ////////////8fHx8REREREAAAAAAAAAAAAAAAAAAAAAenp6ev//////////////////////////hISE
  4642. hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4643. AAAAAAAAAAAAAAAAAAAAAAAAAAAAISEhIdLS0tL////////////////39/f3Z2dnZwAAAAAAAAAAAAAA
  4644. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4645. AAAAAAAAAAAAAAAAAIeHh4f//////////////////////////3d3d3cAAAAAAAAAAAAAAAAAAAAA2dnZ
  4646. 2f/////////////////////19fX1FBQUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4647. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMDAwNJSUlJdHR0
  4648. dGJiYmIYGBgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4649. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVFRX19fX1////////////////////
  4650. /9bW1tYAAAAAAAAAAAAAAAA5OTk5//////////////////////////+YmJiYAAAAAAAAAAAAAAAAAAAA
  4651. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4652. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4653. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4654. AAAAAACYmJiY//////////////////////////82NjY2AAAAAAAAAACQkJCQ////////////////////
  4655. //////86Ojo6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4656. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4657. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4658. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5OTk5//////////////////////////+NjY2NAAAA
  4659. AAAAAADT09PT/////////////////////93d3d0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4660. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4661. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4662. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA29vb
  4663. 2//////////////////////R0dHRAAAAABcXFxf//////////////////////////5SUlJQAAAAAAAAA
  4664. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4665. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4666. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4667. AAAAAAAAAAAAAAAAAAAAAAAAAAAAkZGRkf/////////////////////+/v7+FhYWFlRUVFT/////////
  4668. /////////////////1NTU1MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4669. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwMDAwdHR0dHR0dHR0dHR0dHR0dHR0d
  4670. HR0dHR0NDQ0NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4671. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT09PT///////////////
  4672. ////////////U1NTU35+fn7//////////////////////////xYWFhYAAAAAAAAAAAAAAAAAAAAAAAAA
  4673. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgICoaGh
  4674. of7+/v7////////////////////////////////9/f39jY2NjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4675. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4676. AAAAAAAAAAAAEhISEv//////////////////////////fX19faampqb/////////////////////7Ozs
  4677. 7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4678. AAAAAAAAAAAAAAAAAAAAAABSUlJS////////////////////////////////////////////////////
  4679. /z09PT0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4680. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOfn5+f/////////////////////paWl
  4681. pczMzMz/////////////////////xsbGxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4682. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmZmZm////////////////////
  4683. /////////////////////////////////3Nzc3MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4684. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4685. AMDAwMD/////////////////////y8vLy9/f39//////////////////////qKioqAAAAAAAAAAAAAAA
  4686. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4687. AAAAAAAUFBQU4uLi4v///////////////////////////////////////////////35+fn4AAAAAAAAA
  4688. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4689. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKGhoaH/////////////////////3t7e3uzs7Oz/////////
  4690. ////////////m5ubmwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4691. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw8PD1hYWFhqampqampqampqamrLy8vL////
  4692. /////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4693. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJSUlJT/////////
  4694. ////////////7Ozs7Pn5+fn/////////////////////jo6OjgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4695. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4696. AAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAA
  4697. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4698. AAAAAAAAAAAAAAAAAIaGhob/////////////////////+fn5+fn5+fn/////////////////////jo6O
  4699. jgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4700. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////////////////////
  4701. /35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4702. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIaGhob/////////////////////+fn5
  4703. +ezs7Oz/////////////////////m5ubmwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4704. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4705. AAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4706. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4707. AJKSkpL/////////////////////7Ozs7N/f39//////////////////////qKioqAAAAAAAAAAAAAAA
  4708. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4709. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAA
  4710. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4711. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJ+fn5//////////////////////3t7e3szMzMz/////////
  4712. ////////////xsbGxgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4713. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////
  4714. /////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4715. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALy8vLz/////////
  4716. ////////////zMzMzKWlpaX/////////////////////7Ozs7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4717. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4718. AAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAA
  4719. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4720. AAAAAAAAAAAAAAAAAOPj4+P/////////////////////paWlpX5+fn7/////////////////////////
  4721. /xYWFhYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4722. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////////////////////
  4723. /35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4724. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQ0NDf7+/v7/////////////////////fX19
  4725. fVRUVFT//////////////////////////1JSUlIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4726. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4727. AAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4728. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASUlJ
  4729. Sf//////////////////////////U1NTUxcXFxf//////////////////////////5SUlJQAAAAAAAAA
  4730. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4731. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAA
  4732. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4733. AAAAAAAAAAAAAAAAAAAAAAAAAAAAioqKiv//////////////////////////FhYWFgAAAADT09PT////
  4734. /////////////////93d3d0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4735. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////
  4736. /////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4737. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1NTU1P//////////////
  4738. ///////T09PTAAAAAAAAAACQkJCQ//////////////////////////86Ojo6AAAAAAAAAAAAAAAAAAAA
  4739. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4740. AAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAA
  4741. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4742. AAAAAAAwMDAw//////////////////////////+Pj4+PAAAAAAAAAAA5OTk5////////////////////
  4743. //////+YmJiYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4744. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam////////////////////
  4745. /35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4746. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACOjo6O//////////////////////////84ODg4AAAA
  4747. AAAAAAAAAAAA2tra2v/////////////////////19fX1FBQUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4748. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4749. AAAAAACmpqam/////////////////////35+fn4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4750. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQEBDx8fHx////
  4751. /////////////////9nZ2dkAAAAAAAAAAAAAAAAAAAAAe3t7e///////////////////////////hISE
  4752. hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4753. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmpqam/////////////////////35+fn4AAAAAAAAA
  4754. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4755. AAAAAAAAAAAAAAAAAHx8fHz//////////////////////////3l5eXkAAAAAAAAAAAAAAAAAAAAAExMT
  4756. E/Pz8/P/////////////////////8fHx8RkZGRkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4757. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARERERi4uLi7m5ubm8vLy8vLy8vLy8vLzo6Ojo////
  4758. /////////////////93d3d28vLy8vLy8vLy8vLy2tra2eXl5eQYGBgYAAAAAAAAAAAAAAAAAAAAAAAAA
  4759. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUFO7u7u7/////////////////////8/Pz
  4760. 8xISEhIAAAAAAAAAAAAAAAAAAAAAAAAAAIuLi4v//////////////////////////6WlpaUAAAAAAAAA
  4761. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC2tra2////
  4762. ////////////////////////////////////////////////////////////////////////////////
  4763. /42NjY0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnZ2d
  4764. nf//////////////////////////iYmJiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcXFxf19fX1////
  4765. //////////////////////9GRkZGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4766. AAAAAAAAAAAAAAAAAAAAAAD4+Pj4////////////////////////////////////////////////////
  4767. /////////////////////////////////9DQ0NAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4768. AAAAAAAAAAAAAAAAAAAAAABAQEBA/v7+/v/////////////////////09PT0FhYWFgAAAAAAAAAAAAAA
  4769. AAAAAAAAAAAAAAAAAAAAAAB3d3d3///////////////////////////p6enpGBgYGAAAAAAAAAAAAAAA
  4770. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMDA////////////////////
  4771. /////////////////////////////////////////////////////////////////5iYmJgAAAAAAAAA
  4772. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUVFRXl5eXl////////////////////
  4773. //////91dXV1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBQUF1dXV1f//////////////
  4774. ////////////v7+/vwUFBQUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4775. AAAAAAAZGRkZnJycnMnJycnLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vL
  4776. y8vLy8vFxcXFi4uLiwwMDAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQE
  4777. BLu7u7v//////////////////////////9PT09MEBAQEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4778. AAAAAAAAAAAAOjo6Ovz8/Pz//////////////////////////6WlpaUBAQEBAAAAAAAAAAAAAAAAAAAA
  4779. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4780. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4781. AAAAAAAAAAAAAAAAAAAAAAABAQEBoaGhof//////////////////////////+/v7+zk5OTkAAAAAAAAA
  4782. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHl5eXn/////////////////////////
  4783. //////+UlJSUAQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4784. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4785. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQGRkZGR////////////////////
  4786. ////////////dnZ2dgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4787. AAEBAQG3t7e3////////////////////////////////pKSkpAUFBQUAAAAAAAAAAAAAAAAAAAAAAAAA
  4788. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4789. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQE
  4790. BKKioqL///////////////////////////////+1tbW1AQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4791. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPDw8P0dHR0f//////////////////////////////
  4792. /729vb0XFxcXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4793. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4794. AAAAAAAAAAAAAAAAAAAAAAAWFhYWvLy8vP///////////////////////////////8/Pz88ODg4OAAAA
  4795. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRkZ
  4796. Gd7e3t7////////////////////////////////n5+fnQ0NDQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4797. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4798. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEJCQkLm5ubm////////////////////
  4799. ////////////3d3d3RgYGBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4800. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMjIyPe3t7e/////////////////////////////////v7+
  4801. /qCgoKAWFhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4802. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWFhYWoKCg
  4803. oP7+/v7////////////////////////////////d3d3dISEhIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4804. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGRkZ0dHR
  4805. 0f/////////////////////////////////////v7+/vf39/fxEREREAAAAAAAAAAAAAAAAAAAAAAAAA
  4806. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4807. AAAAAAAAAAAAEREREX9/f3/v7+/v/////////////////////////////////////8/Pz88YGBgYAAAA
  4808. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4809. AAAAAAAAAAAAAAAAAAAAAAAAAAAADw8PD7e3t7f/////////////////////////////////////////
  4810. //Ly8vKRkZGRMzMzMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4811. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADMzMzORkZGR8vLy8v//////////////////////////////
  4812. ////////////tbW1tQ4ODg4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4813. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBAQF5eXl5/Pz8
  4814. /P///////////////////////////////////////////////9bW1taMjIyMS0tLSw4ODg4AAAAAAAAA
  4815. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADw8PD0tLS0uNjY2N19fX1///////////////
  4816. //////////////////////////////////v7+/t2dnZ2AQEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4817. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4818. AAAAAAAAAAAAAAAAAAAAAAAAAAAAOzs7O9XV1dX/////////////////////////////////////////
  4819. ///////////////////////k5OTkvr6+vqCgoKCTk5OThoaGhoaGhoaTk5OToKCgoL6+vr7l5eXl////
  4820. ////////////////////////////////////////////////////////////09PT0zg4ODgAAAAAAAAA
  4821. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4822. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUFBQV3d3d39fX1
  4823. 9f//////////////////////////////////////////////////////////////////////////////
  4824. ////////////////////////////////////////////////////////////////////////////////
  4825. //T09PR0dHR0BAQEBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4826. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4827. AAAAAAAAAAAAAAAAAAAAAAAAAAAAFxcXF4uLi4vz8/Pz////////////////////////////////////
  4828. ////////////////////////////////////////////////////////////////////////////////
  4829. ///////////////////////z8/PziYmJiRYWFhYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4830. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4831. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATExMTe3t7
  4832. e9ra2tr/////////////////////////////////////////////////////////////////////////
  4833. ////////////////////////////////////////////2NjY2Hl5eXkSEhISAAAAAAAAAAAAAAAAAAAA
  4834. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4835. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4836. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5OTk5kJCQkNPT09P/////////////////////////
  4837. ////////////////////////////////////////////////////////////09PT04+Pj484ODg4AAAA
  4838. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4839. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4840. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4841. AAAAAAAXFxcXVFRUVH5+fn6mpqamzMzMzN/f39/s7Ozs+fn5+fn5+fns7Ozs39/f38zMzMylpaWlfn5+
  4842. flRUVFQWFhYWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4843. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAQAAAwAAAAEA
  4844. QgAAAQEAAwAAAAEAQgAAAQIAAwAAAAQAAEUGAQMAAwAAAAEAAQAAAQYAAwAAAAEAAgAAAQoAAwAAAAEA
  4845. AQAAAREABAAAAAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEABAAAARYAAwAAAAEAQgAAARcABAAAAAEA
  4846. AEQQARoABQAAAAEAAET2ARsABQAAAAEAAET+ARwAAwAAAAEAAQAAASgAAwAAAAEAAgAAAVIAAwAAAAEA
  4847. AQAAAVMAAwAAAAQAAEUOh3MABwAADEgAAEUWAAAAAAAAANgAAAABAAAA2AAAAAEACAAIAAgACAABAAEA
  4848. AQABAAAMSExpbm8CEAAAbW50clJHQiBYWVogB84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IA
  4849. AAAAAAAAAAAAAAAAAPbWAAEAAAAA0y1IUCAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4850. AAAAAAAAAAAAAAAAAAARY3BydAAAAVAAAAAzZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQA
  4851. AAAUclhZWgAAAhgAAAAUZ1hZWgAAAiwAAAAUYlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQA
  4852. AACIdnVlZAAAA0wAAACGdmlldwAAA9QAAAAkbHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAA
  4853. AAAMclRSQwAABDwAAAgMZ1RSQwAABDwAAAgMYlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMp
  4854. IDE5OTggSGV3bGV0dC1QYWNrYXJkIENvbXBhbnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4x
  4855. AAAAAAAAAAAAAAASc1JHQiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4856. AAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAAAADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABY
  4857. WVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAAAABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9k
  4858. ZXNjAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5p
  4859. ZWMuY2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAA
  4860. AAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAu
  4861. SUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAA
  4862. AAAAAAAAAGRlc2MAAAAAAAAALFJlZmVyZW5jZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0y
  4863. LjEAAAAAAAAAAAAAACxSZWZlcmVuY2UgVmlld2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAA
  4864. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2aWV3AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFY
  4865. WVogAAAAAABMCVYAUAAAAFcf521lYXMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAA
  4866. AAAAQ1JUIGN1cnYAAAAAAAAEAAAAAAUACgAPABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4A
  4867. YwBoAG0AcgB3AHwAgQCGAIsAkACVAJoAnwCkAKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA
  4868. +wEBAQcBDQETARkBHwElASsBMgE4AT4BRQFMAVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEB
  4869. yQHRAdkB4QHpAfIB+gIDAgwCFAIdAiYCLwI4AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC
  4870. 4ALrAvUDAAMLAxYDIQMtAzgDQwNPA1oDZgNyA34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsE
  4871. SARVBGMEcQR+BIwEmgSoBLYExATTBOEE8AT+BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYG
  4872. BgYWBicGNwZIBlkGagZ7BowGnQavBsAG0QbjBvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsI
  4873. HwgyCEYIWghuCIIIlgiqCL4I0gjnCPsJEAklCToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEK
  4874. mAquCsUK3ArzCwsLIgs5C1ELaQuAC5gLsAvIC+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoN
  4875. dA2ODakNww3eDfgOEw4uDkkOZA5/DpsOtg7SDu4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQ
  4876. uRDXEPURExExEU8RbRGMEaoRyRHoEgcSJhJFEmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkU
  4877. ahSLFK0UzhTwFRIVNBVWFXgVmxW9FeAWAxYmFkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUY
  4878. ihivGNUY+hkgGUUZaxmRGbcZ3RoEGioaURp3Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUd
  4879. Hh1HHXAdmR3DHeweFh5AHmoelB6+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsi
  4880. JyJVIoIiryLdIwojOCNmI5QjwiPwJB8kTSR8JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3on
  4881. qyfcKA0oPyhxKKIo1CkGKTgpaymdKdAqAio1KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYt
  4882. qy3hLhYuTC6CLrcu7i8kL1ovkS/HL/4wNTBsMKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0
  4883. KzRlNJ402DUTNU01hzXCNf02NzZyNq426TckN2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87
  4884. LTtrO6o76DwnPGU8pDzjPSI9YT2hPeA+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJC
  4885. tUL3QzpDfUPARANER0SKRM5FEkVVRZpF3kYiRmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1K
  4886. xEsMS1NLmkviTCpMcky6TQJNSk2TTdxOJU5uTrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNT
  4887. X1OqU/ZUQlSPVNtVKFV1VcJWD1ZcVqlW91dEV5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVc
  4888. hlzWXSddeF3JXhpebF69Xw9fYV+zYAVgV2CqYPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedm
  4889. PWaSZuhnPWeTZ+loP2iWaOxpQ2maafFqSGqfavdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtw
  4890. hnDgcTpxlXHwcktypnMBc11zuHQUdHB0zHUodYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7
  4891. Y3vCfCF8gXzhfUF9oX4BfmJ+wn8jf4R/5YBHgKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG
  4892. 14c7h5+IBIhpiM6JM4mZif6KZIrKizCLlov8jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS
  4893. 45NNk7aUIJSKlPSVX5XJljSWn5cKl3WX4JhMmLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2f
  4894. i5/6oGmg2KFHobaiJqKWowajdqPmpFakx6U4pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys
  4895. 0K1ErbiuLa6hrxavi7AAsHWw6rFgsdayS7LCszizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6
  4896. tbsuu6e8IbybvRW9j74KvoS+/796v/XAcMDswWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJ
  4897. Osm5yjjKt8s2y7bMNcy1zTXNtc42zrbPN8+40DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DY
  4898. ZNjo2WzZ8dp22vvbgNwF3IrdEN2W3hzeot8p36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56no
  4899. Mui86Ubp0Opb6uXrcOv77IbtEe2c7ijutO9A78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4
  4900. qPk4+cf6V/rn+3f8B/yY/Sn9uv5L/tz/bf//0iwtSEleTlNNdXRhYmxlQXJyYXmjSDMx1UtMTU4PT1BR
  4901. UlNXTlNXaGl0ZVxOU0NvbXBvbmVudHNcTlNDb2xvclNwYWNlXxASTlNDdXN0b21Db2xvclNwYWNlRDAg
  4902. MABDMCAwEAOAEoAV1FVWVw9YWVpbVE5TSURVTlNJQ0NXTlNNb2RlbBAJgBMQAIAUTxERaAAAEWhhcHBs
  4903. AgAAAG1udHJHUkFZWFlaIAfcAAgAFwAPAC4AD2Fjc3BBUFBMAAAAAG5vbmUAAAAAAAAAAAAAAAAAAAAA
  4904. AAD21gABAAAAANMtYXBwbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4905. AAAABWRlc2MAAADAAAAAeWRzY20AAAE8AAAH6GNwcnQAAAkkAAAAI3d0cHQAAAlIAAAAFGtUUkMAAAlc
  4906. AAAIDGRlc2MAAAAAAAAAH0dlbmVyaWMgR3JheSBHYW1tYSAyLjIgUHJvZmlsZQAAAAAAAAAAAAAAAAAA
  4907. AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
  4908. AAAAAAAAAABtbHVjAAAAAAAAAB8AAAAMc2tTSwAAAC4AAAGEZGFESwAAADgAAAGyY2FFUwAAADgAAAHq
  4909. dmlWTgAAAEAAAAIicHRCUgAAAEoAAAJidWtVQQAAACwAAAKsZnJGVQAAAD4AAALYaHVIVQAAADQAAAMW
  4910. emhUVwAAAB4AAANKbmJOTwAAADoAAANoY3NDWgAAACgAAAOiaGVJTAAAACQAAAPKaXRJVAAAAE4AAAPu
  4911. cm9STwAAACoAAAQ8ZGVERQAAAE4AAARma29LUgAAACIAAAS0c3ZTRQAAADgAAAGyemhDTgAAAB4AAATW
  4912. amFKUAAAACYAAAT0ZWxHUgAAACoAAAUacHRQTwAAAFIAAAVEbmxOTAAAAEAAAAWWZXNFUwAAAEwAAAXW
  4913. dGhUSAAAADIAAAYidHJUUgAAACQAAAZUZmlGSQAAAEYAAAZ4aHJIUgAAAD4AAAa+cGxQTAAAAEoAAAb8
  4914. cnVSVQAAADoAAAdGZW5VUwAAADwAAAeAYXJFRwAAACwAAAe8AFYBYQBlAG8AYgBlAGMAbgDhACAAcwBp
  4915. AHYA4QAgAGcAYQBtAGEAIAAyACwAMgBHAGUAbgBlAHIAaQBzAGsAIABnAHIA5QAgADIALAAyACAAZwBh
  4916. AG0AbQBhAHAAcgBvAGYAaQBsAEcAYQBtAG0AYQAgAGQAZQAgAGcAcgBpAHMAbwBzACAAZwBlAG4A6ABy
  4917. AGkAYwBhACAAMgAuADIAQx6lAHUAIABoAOwAbgBoACAATQDgAHUAIAB4AOEAbQAgAEMAaAB1AG4AZwAg
  4918. AEcAYQBtAG0AYQAgADIALgAyAFAAZQByAGYAaQBsACAARwBlAG4A6QByAGkAYwBvACAAZABhACAARwBh
  4919. AG0AYQAgAGQAZQAgAEMAaQBuAHoAYQBzACAAMgAsADIEFwQwBDMEMAQ7BEwEPQQwACAARwByAGEAeQAt
  4920. BDMEMAQ8BDAAIAAyAC4AMgBQAHIAbwBmAGkAbAAgAGcA6QBuAOkAcgBpAHEAdQBlACAAZwByAGkAcwAg
  4921. AGcAYQBtAG0AYQAgADIALAAyAMEAbAB0AGEAbADhAG4AbwBzACAAcwB6APwAcgBrAGUAIABnAGEAbQBt
  4922. AGEAIAAyAC4AMpAadShwcJaOUUlepgAgADIALgAyACCCcl9pY8+P8ABHAGUAbgBlAHIAaQBzAGsAIABn
  4923. AHIA5QAgAGcAYQBtAG0AYQAgADIALAAyAC0AcAByAG8AZgBpAGwATwBiAGUAYwBuAOEAIAFhAGUAZADh
  4924. ACAAZwBhAG0AYQAgADIALgAyBdIF0AXeBdQAIAXQBeQF1QXoACAF2wXcBdwF2QAgADIALgAyAFAAcgBv
  4925. AGYAaQBsAG8AIABnAHIAaQBnAGkAbwAgAGcAZQBuAGUAcgBpAGMAbwAgAGQAZQBsAGwAYQAgAGcAYQBt
  4926. AG0AYQAgADIALAAyAEcAYQBtAGEAIABnAHIAaQAgAGcAZQBuAGUAcgBpAGMBAwAgADIALAAyAEEAbABs
  4927. AGcAZQBtAGUAaQBuAGUAcwAgAEcAcgBhAHUAcwB0AHUAZgBlAG4ALQBQAHIAbwBmAGkAbAAgAEcAYQBt
  4928. AG0AYQAgADIALAAyx3y8GAAg1ozAyQAgrBC5yAAgADIALgAyACDVBLhc0wzHfGZukBpwcF6mfPtlcAAg
  4929. ADIALgAyACBjz4/wZYdO9k4AgiwwsDDsMKQwrDDzMN4AIAAyAC4AMgAgMNcw7TDVMKEwpDDrA5MDtQO9
  4930. A7kDugPMACADkwO6A8EDuQAgA5MDrAO8A7wDsQAgADIALgAyAFAAZQByAGYAaQBsACAAZwBlAG4A6QBy
  4931. AGkAYwBvACAAZABlACAAYwBpAG4AegBlAG4AdABvAHMAIABkAGEAIABHAGEAbQBtAGEAIAAyACwAMgBB
  4932. AGwAZwBlAG0AZQBlAG4AIABnAHIAaQBqAHMAIABnAGEAbQBtAGEAIAAyACwAMgAtAHAAcgBvAGYAaQBl
  4933. AGwAUABlAHIAZgBpAGwAIABnAGUAbgDpAHIAaQBjAG8AIABkAGUAIABnAGEAbQBtAGEAIABkAGUAIABn
  4934. AHIAaQBzAGUAcwAgADIALAAyDiMOMQ4HDioONQ5BDgEOIQ4hDjIOQA4BDiMOIg5MDhcOMQ5IDicORA4b
  4935. ACAAMgAuADIARwBlAG4AZQBsACAARwByAGkAIABHAGEAbQBhACAAMgAsADIAWQBsAGUAaQBuAGUAbgAg
  4936. AGgAYQByAG0AYQBhAG4AIABnAGEAbQBtAGEAIAAyACwAMgAgAC0AcAByAG8AZgBpAGkAbABpAEcAZQBu
  4937. AGUAcgBpAQ0AawBpACAARwByAGEAeQAgAEcAYQBtAG0AYQAgADIALgAyACAAcAByAG8AZgBpAGwAVQBu
  4938. AGkAdwBlAHIAcwBhAGwAbgB5ACAAcAByAG8AZgBpAGwAIABzAHoAYQByAG8BWwBjAGkAIABnAGEAbQBt
  4939. AGEAIAAyACwAMgQeBDEESQQwBE8AIARBBDUEQAQwBE8AIAQzBDAEPAQ8BDAAIAAyACwAMgAtBD8EQAQ+
  4940. BEQEOAQ7BEwARwBlAG4AZQByAGkAYwAgAEcAcgBhAHkAIABHAGEAbQBtAGEAIAAyAC4AMgAgAFAAcgBv
  4941. AGYAaQBsAGUGOgYnBkUGJwAgADIALgAyACAGRAZIBkYAIAYxBkUGJwYvBkoAIAY5BicGRXRleHQAAAAA
  4942. Q29weXJpZ2h0IEFwcGxlIEluYy4sIDIwMTIAAFhZWiAAAAAAAADzUQABAAAAARbMY3VydgAAAAAAAAQA
  4943. AAAABQAKAA8AFAAZAB4AIwAoAC0AMgA3ADsAQABFAEoATwBUAFkAXgBjAGgAbQByAHcAfACBAIYAiwCQ
  4944. AJUAmgCfAKQAqQCuALIAtwC8AMEAxgDLANAA1QDbAOAA5QDrAPAA9gD7AQEBBwENARMBGQEfASUBKwEy
  4945. ATgBPgFFAUwBUgFZAWABZwFuAXUBfAGDAYsBkgGaAaEBqQGxAbkBwQHJAdEB2QHhAekB8gH6AgMCDAIU
  4946. Ah0CJgIvAjgCQQJLAlQCXQJnAnECegKEAo4CmAKiAqwCtgLBAssC1QLgAusC9QMAAwsDFgMhAy0DOAND
  4947. A08DWgNmA3IDfgOKA5YDogOuA7oDxwPTA+AD7AP5BAYEEwQgBC0EOwRIBFUEYwRxBH4EjASaBKgEtgTE
  4948. BNME4QTwBP4FDQUcBSsFOgVJBVgFZwV3BYYFlgWmBbUFxQXVBeUF9gYGBhYGJwY3BkgGWQZqBnsGjAad
  4949. Bq8GwAbRBuMG9QcHBxkHKwc9B08HYQd0B4YHmQesB78H0gflB/gICwgfCDIIRghaCG4IggiWCKoIvgjS
  4950. COcI+wkQCSUJOglPCWQJeQmPCaQJugnPCeUJ+woRCicKPQpUCmoKgQqYCq4KxQrcCvMLCwsiCzkLUQtp
  4951. C4ALmAuwC8gL4Qv5DBIMKgxDDFwMdQyODKcMwAzZDPMNDQ0mDUANWg10DY4NqQ3DDd4N+A4TDi4OSQ5k
  4952. Dn8Omw62DtIO7g8JDyUPQQ9eD3oPlg+zD88P7BAJECYQQxBhEH4QmxC5ENcQ9RETETERTxFtEYwRqhHJ
  4953. EegSBxImEkUSZBKEEqMSwxLjEwMTIxNDE2MTgxOkE8UT5RQGFCcUSRRqFIsUrRTOFPAVEhU0FVYVeBWb
  4954. Fb0V4BYDFiYWSRZsFo8WshbWFvoXHRdBF2UXiReuF9IX9xgbGEAYZRiKGK8Y1Rj6GSAZRRlrGZEZtxnd
  4955. GgQaKhpRGncanhrFGuwbFBs7G2MbihuyG9ocAhwqHFIcexyjHMwc9R0eHUcdcB2ZHcMd7B4WHkAeah6U
  4956. Hr4e6R8THz4faR+UH78f6iAVIEEgbCCYIMQg8CEcIUghdSGhIc4h+yInIlUigiKvIt0jCiM4I2YjlCPC
  4957. I/AkHyRNJHwkqyTaJQklOCVoJZclxyX3JicmVyaHJrcm6CcYJ0kneierJ9woDSg/KHEooijUKQYpOClr
  4958. KZ0p0CoCKjUqaCqbKs8rAis2K2krnSvRLAUsOSxuLKIs1y0MLUEtdi2rLeEuFi5MLoIuty7uLyQvWi+R
  4959. L8cv/jA1MGwwpDDbMRIxSjGCMbox8jIqMmMymzLUMw0zRjN/M7gz8TQrNGU0njTYNRM1TTWHNcI1/TY3
  4960. NnI2rjbpNyQ3YDecN9c4FDhQOIw4yDkFOUI5fzm8Ofk6Njp0OrI67zstO2s7qjvoPCc8ZTykPOM9Ij1h
  4961. PaE94D4gPmA+oD7gPyE/YT+iP+JAI0BkQKZA50EpQWpBrEHuQjBCckK1QvdDOkN9Q8BEA0RHRIpEzkUS
  4962. RVVFmkXeRiJGZ0arRvBHNUd7R8BIBUhLSJFI10kdSWNJqUnwSjdKfUrESwxLU0uaS+JMKkxyTLpNAk1K
  4963. TZNN3E4lTm5Ot08AT0lPk0/dUCdQcVC7UQZRUFGbUeZSMVJ8UsdTE1NfU6pT9lRCVI9U21UoVXVVwlYP
  4964. VlxWqVb3V0RXklfgWC9YfVjLWRpZaVm4WgdaVlqmWvVbRVuVW+VcNVyGXNZdJ114XcleGl5sXr1fD19h
  4965. X7NgBWBXYKpg/GFPYaJh9WJJYpxi8GNDY5dj62RAZJRk6WU9ZZJl52Y9ZpJm6Gc9Z5Nn6Wg/aJZo7GlD
  4966. aZpp8WpIap9q92tPa6dr/2xXbK9tCG1gbbluEm5rbsRvHm94b9FwK3CGcOBxOnGVcfByS3KmcwFzXXO4
  4967. dBR0cHTMdSh1hXXhdj52m3b4d1Z3s3gReG54zHkqeYl553pGeqV7BHtje8J8IXyBfOF9QX2hfgF+Yn7C
  4968. fyN/hH/lgEeAqIEKgWuBzYIwgpKC9INXg7qEHYSAhOOFR4Wrhg6GcobXhzuHn4gEiGmIzokziZmJ/opk
  4969. isqLMIuWi/yMY4zKjTGNmI3/jmaOzo82j56QBpBukNaRP5GokhGSepLjk02TtpQglIqU9JVflcmWNJaf
  4970. lwqXdZfgmEyYuJkkmZCZ/JpomtWbQpuvnByciZz3nWSd0p5Anq6fHZ+Ln/qgaaDYoUehtqImopajBqN2
  4971. o+akVqTHpTilqaYapoum/adup+CoUqjEqTepqaocqo+rAqt1q+msXKzQrUStuK4trqGvFq+LsACwdbDq
  4972. sWCx1rJLssKzOLOutCW0nLUTtYq2AbZ5tvC3aLfguFm40blKucK6O7q1uy67p7whvJu9Fb2Pvgq+hL7/
  4973. v3q/9cBwwOzBZ8Hjwl/C28NYw9TEUcTOxUvFyMZGxsPHQce/yD3IvMk6ybnKOMq3yzbLtsw1zLXNNc21
  4974. zjbOts83z7jQOdC60TzRvtI/0sHTRNPG1EnUy9VO1dHWVdbY11zX4Nhk2OjZbNnx2nba+9uA3AXcit0Q
  4975. 3ZbeHN6i3ynfr+A24L3hROHM4lPi2+Nj4+vkc+T85YTmDeaW5x/nqegy6LzpRunQ6lvq5etw6/vshu0R
  4976. 7ZzuKO6070DvzPBY8OXxcvH/8ozzGfOn9DT0wvVQ9d72bfb794r4Gfio+Tj5x/pX+uf7d/wH/Jj9Kf26
  4977. /kv+3P9t///SLC1eX1xOU0NvbG9yU3BhY2WiYDFcTlNDb2xvclNwYWNl0iwtYmNXTlNDb2xvcqJiMdIs
  4978. LWVmV05TSW1hZ2WiZTEACAARABoAJAApADIANwBJAEwAUQBTAG0AcwCAAIcAlgCdAKoAsQC5ALsAvQC/
  4979. AMQAxgDIANEA1gDhAOUA5wDpAOsA7QDyAPUA9wD5APsBAAEXARkBGxXVFdoV5RXuFgEWBRYQFhkWHhYm
  4980. FikWLhYxFjMWNRY3FjwWPhZAQdJB10HaQdxB3kHgQeVB50Hpk0uTUJNfk2OTbpN2k4OTkJOlk6qTrpOw
  4981. k7KTtJO9k8KTyJPQk9KT1JPWk9ilRKVJpValWaVmpWulc6V2pXulgwAAAAAAAAIBAAAAAAAAAGcAAAAA
  4982. AAAAAAAAAAAAAKWGA
  4983. </mutableData>
  4984. </image>
  4985. <image name="verification-0.png" width="48" height="11"/>
  4986. <image name="verification-1.png" width="48" height="11"/>
  4987. <image name="verification-2.png" width="48" height="11"/>
  4988. <image name="verification-3.png" width="48" height="11"/>
  4989. <image name="verification32-2.png" width="32" height="8"/>
  4990. <image name="verificationbig-2.png" width="163" height="37"/>
  4991. <systemColor name="groupTableViewBackgroundColor">
  4992. <color red="0.94901960784313721" green="0.94901960784313721" blue="0.96862745098039216" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4993. </systemColor>
  4994. </resources>
  4995. </document>