Main.storyboard 560 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="22155" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="G3n-Hm-MGg">
  3. <device id="retina5_5" orientation="portrait" appearance="light"/>
  4. <dependencies>
  5. <deployment identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22131"/>
  7. <capability name="Image references" minToolsVersion="12.0"/>
  8. <capability name="Named colors" minToolsVersion="9.0"/>
  9. <capability name="Safe area layout guides" minToolsVersion="9.0"/>
  10. <capability name="Stack View standard spacing" minToolsVersion="9.0"/>
  11. <capability name="System colors in document resources" minToolsVersion="11.0"/>
  12. <capability name="collection view cell content view" minToolsVersion="11.0"/>
  13. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  14. </dependencies>
  15. <customFonts key="customFonts">
  16. <array key="AvenirNext.ttc">
  17. <string>AvenirNext-Regular</string>
  18. </array>
  19. </customFonts>
  20. <scenes>
  21. <!--Navigation Controller-->
  22. <scene sceneID="ltA-YQ-3Ch">
  23. <objects>
  24. <navigationController automaticallyAdjustsScrollViewInsets="NO" navigationBarHidden="YES" id="G3n-Hm-MGg" sceneMemberID="viewController">
  25. <toolbarItems/>
  26. <navigationBar key="navigationBar" contentMode="scaleToFill" id="hNp-pn-OiQ">
  27. <autoresizingMask key="autoresizingMask"/>
  28. </navigationBar>
  29. <nil name="viewControllers"/>
  30. <connections>
  31. <segue destination="BYZ-38-t0r" kind="relationship" relationship="rootViewController" id="nnT-IV-ebc"/>
  32. </connections>
  33. </navigationController>
  34. <placeholder placeholderIdentifier="IBFirstResponder" id="tGX-do-rhZ" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  35. </objects>
  36. <point key="canvasLocation" x="128.98550724637681" y="97.767857142857139"/>
  37. </scene>
  38. <!--Dashboard View Controller-->
  39. <scene sceneID="qrW-oE-4IG">
  40. <objects>
  41. <viewController storyboardIdentifier="DashboardViewController" id="MOP-ZK-IIY" customClass="DashboardViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  42. <view key="view" contentMode="scaleToFill" id="xS5-r8-kIN">
  43. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  44. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  45. <subviews>
  46. <navigationBar contentMode="scaleToFill" verticalHuggingPriority="252" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bBd-KF-hBu">
  47. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  48. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  49. <color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  50. <color key="barTintColor" name="AccentColor"/>
  51. <textAttributes key="titleTextAttributes">
  52. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  53. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  54. </textAttributes>
  55. <items>
  56. <navigationItem title="Dashboard" id="1V2-ve-ZEX">
  57. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="UxS-kZ-Z6k">
  58. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  59. <connections>
  60. <action selector="sideMenuAction:" destination="MOP-ZK-IIY" id="fv1-0M-ezW"/>
  61. </connections>
  62. </barButtonItem>
  63. </navigationItem>
  64. </items>
  65. </navigationBar>
  66. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Hi User Name," textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5iz-Hn-48K">
  67. <rect key="frame" x="20" y="84" width="374" height="23.333333333333329"/>
  68. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="17"/>
  69. <color key="textColor" name="AccentColor"/>
  70. <nil key="highlightedColor"/>
  71. </label>
  72. <stackView opaque="NO" contentMode="scaleToFill" spacing="6" translatesAutoresizingMaskIntoConstraints="NO" id="ISL-yI-GyY">
  73. <rect key="frame" x="20" y="115.33333333333333" width="174" height="24.999999999999986"/>
  74. <subviews>
  75. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="graduationcap.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="C27-YK-9aK">
  76. <rect key="frame" x="0.0" y="2.6666666666666661" width="25" height="23"/>
  77. <color key="tintColor" white="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  78. <constraints>
  79. <constraint firstAttribute="width" constant="25" id="8EX-4e-VGF"/>
  80. <constraint firstAttribute="height" constant="25" id="elu-Tw-ZRC"/>
  81. </constraints>
  82. <preferredSymbolConfiguration key="preferredSymbolConfiguration" scale="small"/>
  83. </imageView>
  84. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Academic year:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EIU-2H-GKe">
  85. <rect key="frame" x="31" y="0.0" width="107" height="25"/>
  86. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  87. <color key="textColor" name="AccentColor"/>
  88. <nil key="highlightedColor"/>
  89. </label>
  90. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="N/A" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NCE-3L-x14">
  91. <rect key="frame" x="144" y="0.0" width="30" height="25"/>
  92. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  93. <color key="textColor" name="AccentColor"/>
  94. <nil key="highlightedColor"/>
  95. </label>
  96. </subviews>
  97. </stackView>
  98. <stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="U7T-d3-gK0">
  99. <rect key="frame" x="20.000000000000007" y="148.33333333333334" width="95.666666666666686" height="25"/>
  100. <subviews>
  101. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="person.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="ICf-FG-1TS">
  102. <rect key="frame" x="0.0" y="3.3333333333333321" width="25" height="18.666666666666668"/>
  103. <color key="tintColor" white="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  104. <constraints>
  105. <constraint firstAttribute="width" constant="25" id="1dH-pF-3wV"/>
  106. <constraint firstAttribute="height" constant="25" id="zT5-jo-IiP"/>
  107. </constraints>
  108. <preferredSymbolConfiguration key="preferredSymbolConfiguration" scale="small"/>
  109. </imageView>
  110. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Class:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xXf-CN-xJk">
  111. <rect key="frame" x="24.999999999999996" y="0.0" width="40.666666666666657" height="25"/>
  112. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  113. <color key="textColor" name="AccentColor"/>
  114. <nil key="highlightedColor"/>
  115. </label>
  116. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="N/A" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zxF-6x-sjy">
  117. <rect key="frame" x="65.666666666666671" y="0.0" width="30" height="25"/>
  118. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  119. <color key="textColor" name="AccentColor"/>
  120. <nil key="highlightedColor"/>
  121. </label>
  122. </subviews>
  123. </stackView>
  124. <stackView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hj7-ho-eLQ">
  125. <rect key="frame" x="123.66666666666669" y="148.33333333333334" width="115" height="25"/>
  126. <subviews>
  127. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="book.closed.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="J8m-lh-qxp">
  128. <rect key="frame" x="0.0" y="2.3333333333333321" width="25" height="20.666666666666668"/>
  129. <color key="tintColor" white="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  130. <constraints>
  131. <constraint firstAttribute="width" constant="25" id="IVx-XW-tb5"/>
  132. <constraint firstAttribute="height" constant="25" id="NPi-bg-wWo"/>
  133. </constraints>
  134. <preferredSymbolConfiguration key="preferredSymbolConfiguration" scale="small"/>
  135. </imageView>
  136. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Division:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Bxh-Yb-Nx6">
  137. <rect key="frame" x="24.999999999999986" y="0.0" width="60" height="25"/>
  138. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  139. <color key="textColor" name="AccentColor"/>
  140. <nil key="highlightedColor"/>
  141. </label>
  142. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="N/A" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fS9-O7-lc1">
  143. <rect key="frame" x="84.999999999999986" y="0.0" width="30" height="25"/>
  144. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  145. <color key="textColor" name="AccentColor"/>
  146. <nil key="highlightedColor"/>
  147. </label>
  148. </subviews>
  149. </stackView>
  150. <segmentedControl opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="plain" selectedSegmentIndex="0" translatesAutoresizingMaskIntoConstraints="NO" id="kRw-Hn-Dlh">
  151. <rect key="frame" x="20" y="193.33333333333334" width="374" height="32"/>
  152. <segments>
  153. <segment title="Sessions"/>
  154. <segment title="Assessments"/>
  155. </segments>
  156. <connections>
  157. <action selector="segmentControllClick:" destination="MOP-ZK-IIY" eventType="valueChanged" id="wj4-ly-Rml"/>
  158. </connections>
  159. </segmentedControl>
  160. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="vBU-oQ-w6G">
  161. <rect key="frame" x="0.0" y="241.33333333333334" width="414" height="494.66666666666663"/>
  162. <subviews>
  163. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Upcoming Assessment:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dOr-Ef-Gss">
  164. <rect key="frame" x="20" y="19.999999999999972" width="374" height="20.666666666666671"/>
  165. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  166. <color key="textColor" name="AccentColor"/>
  167. <nil key="highlightedColor"/>
  168. </label>
  169. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" scrollEnabled="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="F4e-Wz-Nad">
  170. <rect key="frame" x="20" y="48.666666666666657" width="374" height="393"/>
  171. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  172. <prototypes>
  173. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DashboardAssessmentListTableViewCell" rowHeight="170" id="9PX-Xc-JA5" customClass="DashboardAssessmentListTableViewCell" customModule="LMS" customModuleProvider="target">
  174. <rect key="frame" x="0.0" y="50" width="374" height="170"/>
  175. <autoresizingMask key="autoresizingMask"/>
  176. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="9PX-Xc-JA5" id="aL9-3n-kk6">
  177. <rect key="frame" x="0.0" y="0.0" width="374" height="170"/>
  178. <autoresizingMask key="autoresizingMask"/>
  179. <subviews>
  180. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="NC7-AD-lpb">
  181. <rect key="frame" x="0.0" y="5" width="374" height="160"/>
  182. <subviews>
  183. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="8" translatesAutoresizingMaskIntoConstraints="NO" id="GCP-yE-ovm">
  184. <rect key="frame" x="20" y="10" width="334" height="140"/>
  185. <subviews>
  186. <stackView opaque="NO" contentMode="scaleToFill" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="8zp-aB-9X4">
  187. <rect key="frame" x="0.0" y="0.0" width="334" height="20"/>
  188. <subviews>
  189. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Test Assessment 1" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wtw-1I-zg3">
  190. <rect key="frame" x="0.0" y="0.0" width="306" height="20"/>
  191. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="18"/>
  192. <nil key="textColor"/>
  193. <nil key="highlightedColor"/>
  194. </label>
  195. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="I2z-3b-zgC">
  196. <rect key="frame" x="314" y="0.0" width="20" height="20"/>
  197. <constraints>
  198. <constraint firstAttribute="width" constant="20" id="qnq-aF-Sp1"/>
  199. <constraint firstAttribute="height" constant="20" id="y3Z-G4-Xdt"/>
  200. </constraints>
  201. <color key="tintColor" white="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  202. <state key="normal" title="Button"/>
  203. <buttonConfiguration key="configuration" style="plain" image="chevron.right" catalog="system"/>
  204. </button>
  205. </subviews>
  206. </stackView>
  207. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3bV-v7-Cv8">
  208. <rect key="frame" x="0.0" y="28" width="334" height="112"/>
  209. <subviews>
  210. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Day &amp; Date" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DIm-mC-dOL">
  211. <rect key="frame" x="20" y="0.0" width="294" height="16.666666666666668"/>
  212. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="12"/>
  213. <color key="textColor" white="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  214. <nil key="highlightedColor"/>
  215. </label>
  216. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Time (From - To)" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qzi-cG-HDE">
  217. <rect key="frame" x="20" y="33.333333333333329" width="294" height="20.666666666666671"/>
  218. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  219. <nil key="textColor"/>
  220. <nil key="highlightedColor"/>
  221. </label>
  222. <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="uPP-mV-rq5">
  223. <rect key="frame" x="248.66666666666671" y="72" width="65.333333333333343" height="20"/>
  224. <subviews>
  225. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Online" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="krN-m3-1OG">
  226. <rect key="frame" x="0.0" y="0.0" width="40.333333333333336" height="20"/>
  227. <fontDescription key="fontDescription" name="AvenirNext-MediumItalic" family="Avenir Next" pointSize="13"/>
  228. <color key="textColor" name="AccentColor"/>
  229. <nil key="highlightedColor"/>
  230. </label>
  231. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="circle.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="dLs-ll-Bmq">
  232. <rect key="frame" x="45.333333333333314" y="0.99999999999999822" width="20" height="18.666666666666664"/>
  233. <color key="tintColor" red="0.38431372549999998" green="0.64705882349999999" blue="0.26274509800000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  234. <constraints>
  235. <constraint firstAttribute="height" constant="20" id="Ndw-oI-P6S"/>
  236. <constraint firstAttribute="width" constant="20" id="w2S-hd-c0I"/>
  237. </constraints>
  238. </imageView>
  239. </subviews>
  240. </stackView>
  241. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="QBi-Es-O50">
  242. <rect key="frame" x="20" y="62" width="120" height="30"/>
  243. <color key="backgroundColor" name="AccentColor"/>
  244. <constraints>
  245. <constraint firstAttribute="width" constant="120" id="WpX-Vr-YRl"/>
  246. <constraint firstAttribute="height" constant="30" id="zzO-cr-aYG"/>
  247. </constraints>
  248. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  249. <state key="normal" title="Button"/>
  250. <buttonConfiguration key="configuration" style="plain" title="Start">
  251. <fontDescription key="titleFontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  252. </buttonConfiguration>
  253. </button>
  254. </subviews>
  255. <constraints>
  256. <constraint firstAttribute="trailing" secondItem="uPP-mV-rq5" secondAttribute="trailing" constant="20" symbolic="YES" id="4zo-es-Gju"/>
  257. <constraint firstItem="DIm-mC-dOL" firstAttribute="top" secondItem="3bV-v7-Cv8" secondAttribute="top" id="Cii-WM-wyh"/>
  258. <constraint firstItem="QBi-Es-O50" firstAttribute="top" secondItem="qzi-cG-HDE" secondAttribute="bottom" constant="8" symbolic="YES" id="E4b-US-a3z"/>
  259. <constraint firstAttribute="bottom" secondItem="uPP-mV-rq5" secondAttribute="bottom" constant="20" symbolic="YES" id="Lwu-gM-JQ5"/>
  260. <constraint firstItem="DIm-mC-dOL" firstAttribute="leading" secondItem="3bV-v7-Cv8" secondAttribute="leading" constant="20" symbolic="YES" id="QGI-oo-Jop"/>
  261. <constraint firstAttribute="bottom" secondItem="QBi-Es-O50" secondAttribute="bottom" constant="20" symbolic="YES" id="VhA-nb-HCW"/>
  262. <constraint firstAttribute="trailing" secondItem="DIm-mC-dOL" secondAttribute="trailing" constant="20" symbolic="YES" id="dL6-sP-oj0"/>
  263. <constraint firstItem="qzi-cG-HDE" firstAttribute="leading" secondItem="3bV-v7-Cv8" secondAttribute="leading" constant="20" symbolic="YES" id="kks-sX-muP"/>
  264. <constraint firstItem="qzi-cG-HDE" firstAttribute="top" secondItem="DIm-mC-dOL" secondAttribute="bottom" priority="250" constant="8" symbolic="YES" id="qdw-xl-GCw"/>
  265. <constraint firstItem="QBi-Es-O50" firstAttribute="leading" secondItem="3bV-v7-Cv8" secondAttribute="leading" constant="20" symbolic="YES" id="s5o-Kn-Gay"/>
  266. <constraint firstAttribute="trailing" secondItem="qzi-cG-HDE" secondAttribute="trailing" constant="20" symbolic="YES" id="vWU-Cf-Iou"/>
  267. </constraints>
  268. </view>
  269. </subviews>
  270. <constraints>
  271. <constraint firstItem="3bV-v7-Cv8" firstAttribute="leading" secondItem="GCP-yE-ovm" secondAttribute="leading" id="Esd-PF-65J"/>
  272. <constraint firstItem="8zp-aB-9X4" firstAttribute="leading" secondItem="GCP-yE-ovm" secondAttribute="leading" id="JbE-G3-WhE"/>
  273. <constraint firstAttribute="bottom" secondItem="3bV-v7-Cv8" secondAttribute="bottom" id="OXQ-6M-V4B"/>
  274. <constraint firstItem="3bV-v7-Cv8" firstAttribute="top" secondItem="8zp-aB-9X4" secondAttribute="bottom" constant="8" symbolic="YES" id="e5E-fR-vuR"/>
  275. <constraint firstAttribute="trailing" secondItem="8zp-aB-9X4" secondAttribute="trailing" id="ez3-lx-iHL"/>
  276. <constraint firstAttribute="trailing" secondItem="3bV-v7-Cv8" secondAttribute="trailing" id="mjd-pP-XT0"/>
  277. <constraint firstItem="8zp-aB-9X4" firstAttribute="top" secondItem="GCP-yE-ovm" secondAttribute="top" id="wj9-1Q-igm"/>
  278. </constraints>
  279. </stackView>
  280. </subviews>
  281. <color key="backgroundColor" systemColor="systemGray6Color"/>
  282. <constraints>
  283. <constraint firstItem="GCP-yE-ovm" firstAttribute="top" secondItem="NC7-AD-lpb" secondAttribute="top" constant="10" id="9Ol-wZ-tyf"/>
  284. <constraint firstAttribute="trailing" secondItem="GCP-yE-ovm" secondAttribute="trailing" constant="20" symbolic="YES" id="R5C-yb-sXQ"/>
  285. <constraint firstAttribute="bottom" secondItem="GCP-yE-ovm" secondAttribute="bottom" constant="10" id="nlb-zb-mBS"/>
  286. <constraint firstItem="GCP-yE-ovm" firstAttribute="leading" secondItem="NC7-AD-lpb" secondAttribute="leading" constant="20" symbolic="YES" id="p3v-QO-Izg"/>
  287. </constraints>
  288. </view>
  289. </subviews>
  290. <constraints>
  291. <constraint firstAttribute="trailing" secondItem="NC7-AD-lpb" secondAttribute="trailing" id="352-kj-mfW"/>
  292. <constraint firstItem="NC7-AD-lpb" firstAttribute="leading" secondItem="aL9-3n-kk6" secondAttribute="leading" id="Ljr-mB-8Bu"/>
  293. <constraint firstAttribute="bottom" secondItem="NC7-AD-lpb" secondAttribute="bottom" constant="5" id="T5t-T3-gPA"/>
  294. <constraint firstItem="NC7-AD-lpb" firstAttribute="top" secondItem="aL9-3n-kk6" secondAttribute="top" constant="5" id="jpe-5K-FLo"/>
  295. </constraints>
  296. </tableViewCellContentView>
  297. <connections>
  298. <outlet property="activeStatusLabel" destination="krN-m3-1OG" id="CyT-id-R3x"/>
  299. <outlet property="assessmentCustomView" destination="NC7-AD-lpb" id="7Fw-8v-lsw"/>
  300. <outlet property="assessmentNameLabel" destination="wtw-1I-zg3" id="HAR-ML-Elf"/>
  301. <outlet property="dayDateLabel" destination="DIm-mC-dOL" id="258-ks-rzI"/>
  302. <outlet property="dropdownButton" destination="I2z-3b-zgC" id="YoN-0j-GbE"/>
  303. <outlet property="hiddenCustomView" destination="3bV-v7-Cv8" id="Yzx-jE-ZsI"/>
  304. <outlet property="startButton" destination="QBi-Es-O50" id="MjJ-rL-PvQ"/>
  305. <outlet property="statusIndicatorImageView" destination="dLs-ll-Bmq" id="5Lo-5n-L1N"/>
  306. <outlet property="timeLabel" destination="qzi-cG-HDE" id="iSm-Nt-va2"/>
  307. </connections>
  308. </tableViewCell>
  309. </prototypes>
  310. </tableView>
  311. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="leading" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Zn2-EL-NQf">
  312. <rect key="frame" x="20" y="449.66666666666663" width="190" height="25"/>
  313. <constraints>
  314. <constraint firstAttribute="width" constant="190" id="DZ8-we-FqB"/>
  315. <constraint firstAttribute="height" constant="25" id="kwy-wu-ox2"/>
  316. </constraints>
  317. <state key="normal" title="Button"/>
  318. <buttonConfiguration key="configuration" style="plain" title="view all assessments" imagePadding="5">
  319. <imageReference key="image" image="plus" catalog="system" symbolScale="medium"/>
  320. <fontDescription key="titleFontDescription" name="AvenirNext-MediumItalic" family="Avenir Next" pointSize="15"/>
  321. <color key="baseForegroundColor" name="AccentColor"/>
  322. </buttonConfiguration>
  323. <connections>
  324. <action selector="viewAllAssessmentAction:" destination="MOP-ZK-IIY" eventType="touchUpInside" id="Jr5-F6-3dw"/>
  325. </connections>
  326. </button>
  327. </subviews>
  328. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  329. <constraints>
  330. <constraint firstAttribute="trailing" secondItem="dOr-Ef-Gss" secondAttribute="trailing" constant="20" symbolic="YES" id="4I4-d4-Q1u"/>
  331. <constraint firstAttribute="bottom" secondItem="Zn2-EL-NQf" secondAttribute="bottom" constant="20" symbolic="YES" id="HQj-em-gT3"/>
  332. <constraint firstItem="Zn2-EL-NQf" firstAttribute="leading" secondItem="vBU-oQ-w6G" secondAttribute="leading" constant="20" symbolic="YES" id="LRr-mX-6Tp"/>
  333. <constraint firstItem="F4e-Wz-Nad" firstAttribute="leading" secondItem="vBU-oQ-w6G" secondAttribute="leading" constant="20" symbolic="YES" id="Nef-aQ-82L"/>
  334. <constraint firstItem="Zn2-EL-NQf" firstAttribute="top" secondItem="F4e-Wz-Nad" secondAttribute="bottom" priority="250" constant="8" symbolic="YES" id="Vv9-41-1kf"/>
  335. <constraint firstItem="F4e-Wz-Nad" firstAttribute="top" secondItem="dOr-Ef-Gss" secondAttribute="bottom" constant="8" symbolic="YES" id="gTe-uR-sir"/>
  336. <constraint firstItem="dOr-Ef-Gss" firstAttribute="top" secondItem="vBU-oQ-w6G" secondAttribute="top" constant="20" symbolic="YES" id="la6-eY-8ua"/>
  337. <constraint firstItem="dOr-Ef-Gss" firstAttribute="leading" secondItem="vBU-oQ-w6G" secondAttribute="leading" constant="20" symbolic="YES" id="qXf-JT-3ZO"/>
  338. <constraint firstAttribute="trailing" secondItem="F4e-Wz-Nad" secondAttribute="trailing" constant="20" symbolic="YES" id="tws-dY-HcY"/>
  339. </constraints>
  340. </view>
  341. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="XlJ-3M-DAb">
  342. <rect key="frame" x="0.0" y="241.33333333333334" width="414" height="494.66666666666663"/>
  343. <subviews>
  344. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Upcoming Sessions:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="64V-cI-UEG">
  345. <rect key="frame" x="20" y="19.999999999999972" width="374" height="20.666666666666671"/>
  346. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  347. <color key="textColor" name="AccentColor"/>
  348. <nil key="highlightedColor"/>
  349. </label>
  350. <tableView clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" layoutMarginsFollowReadableWidth="YES" alwaysBounceVertical="YES" scrollEnabled="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="1x8-2k-v4Z">
  351. <rect key="frame" x="20" y="48.666666666666657" width="374" height="393"/>
  352. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  353. <directionalEdgeInsets key="directionalLayoutMargins" top="8" leading="8" bottom="8" trailing="8"/>
  354. <prototypes>
  355. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DashboardSessionListTableViewCell" rowHeight="170" id="La0-v9-8OP" customClass="DashboardSessionListTableViewCell" customModule="LMS" customModuleProvider="target">
  356. <rect key="frame" x="0.0" y="50" width="374" height="170"/>
  357. <autoresizingMask key="autoresizingMask"/>
  358. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="La0-v9-8OP" id="gVs-EA-0qL">
  359. <rect key="frame" x="0.0" y="0.0" width="374" height="170"/>
  360. <autoresizingMask key="autoresizingMask"/>
  361. <subviews>
  362. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kwI-Kw-jAy">
  363. <rect key="frame" x="0.0" y="5" width="374" height="160"/>
  364. <subviews>
  365. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="j0c-pn-n4F">
  366. <rect key="frame" x="20" y="10" width="334" height="140"/>
  367. <subviews>
  368. <stackView opaque="NO" contentMode="scaleToFill" spacing="8" translatesAutoresizingMaskIntoConstraints="NO" id="dPQ-Jo-6mF">
  369. <rect key="frame" x="0.0" y="0.0" width="334" height="20"/>
  370. <subviews>
  371. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="circle.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="8Ba-rR-5tf">
  372. <rect key="frame" x="0.0" y="0.99999999999999822" width="20" height="18.666666666666664"/>
  373. <color key="tintColor" red="0.3921568627" green="0.70980392160000005" blue="0.96470588239999999" alpha="1" colorSpace="calibratedRGB"/>
  374. <constraints>
  375. <constraint firstAttribute="height" constant="20" id="Gg7-TC-Lxw"/>
  376. <constraint firstAttribute="width" constant="20" id="bX9-6d-e76"/>
  377. </constraints>
  378. </imageView>
  379. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Session Name" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6v5-iB-rIj">
  380. <rect key="frame" x="28" y="0.0" width="278" height="20"/>
  381. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="18"/>
  382. <nil key="textColor"/>
  383. <nil key="highlightedColor"/>
  384. </label>
  385. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Bos-Kz-obZ">
  386. <rect key="frame" x="314" y="0.0" width="20" height="20"/>
  387. <constraints>
  388. <constraint firstAttribute="height" constant="20" id="5pw-PY-i4n"/>
  389. <constraint firstAttribute="width" constant="20" id="a8U-tR-PGw"/>
  390. </constraints>
  391. <color key="tintColor" white="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  392. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  393. <state key="normal" image="chevron.down" catalog="system"/>
  394. </button>
  395. </subviews>
  396. </stackView>
  397. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kTc-GS-mT9">
  398. <rect key="frame" x="0.0" y="28" width="334" height="112"/>
  399. <subviews>
  400. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Day &amp; Date" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CMR-gC-ErB">
  401. <rect key="frame" x="30" y="0.0" width="284" height="34"/>
  402. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="12"/>
  403. <color key="textColor" white="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  404. <nil key="highlightedColor"/>
  405. </label>
  406. <stackView opaque="NO" contentMode="scaleToFill" spacing="17" translatesAutoresizingMaskIntoConstraints="NO" id="1hX-sh-K45">
  407. <rect key="frame" x="20" y="42" width="148.33333333333334" height="20"/>
  408. <subviews>
  409. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="clock" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="UlL-xv-GrG">
  410. <rect key="frame" x="0.0" y="0.99999999999999822" width="20" height="18.666666666666664"/>
  411. <color key="tintColor" systemColor="labelColor"/>
  412. <constraints>
  413. <constraint firstAttribute="height" constant="20" id="cqL-DX-DdP"/>
  414. <constraint firstAttribute="width" constant="20" id="oO2-bX-J3X"/>
  415. </constraints>
  416. </imageView>
  417. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Time (From - To)" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="g0M-zT-AsY">
  418. <rect key="frame" x="36.999999999999993" y="0.0" width="111.33333333333331" height="20"/>
  419. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  420. <nil key="textColor"/>
  421. <nil key="highlightedColor"/>
  422. </label>
  423. </subviews>
  424. </stackView>
  425. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Wq8-g4-zfl">
  426. <rect key="frame" x="20" y="70" width="140" height="32"/>
  427. <color key="backgroundColor" name="AccentColor"/>
  428. <constraints>
  429. <constraint firstAttribute="height" constant="32" id="Rbz-n4-eSf"/>
  430. <constraint firstAttribute="width" constant="140" id="lsk-N2-jSn"/>
  431. </constraints>
  432. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  433. <state key="normal" title="Button"/>
  434. <buttonConfiguration key="configuration" style="plain" title="Join Class">
  435. <fontDescription key="titleFontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  436. </buttonConfiguration>
  437. </button>
  438. </subviews>
  439. <color key="backgroundColor" systemColor="systemGray6Color"/>
  440. <constraints>
  441. <constraint firstAttribute="bottom" secondItem="Wq8-g4-zfl" secondAttribute="bottom" constant="10" id="7BJ-PK-Qds"/>
  442. <constraint firstItem="Wq8-g4-zfl" firstAttribute="top" secondItem="1hX-sh-K45" secondAttribute="bottom" constant="8" symbolic="YES" id="7EC-sb-z2V"/>
  443. <constraint firstItem="1hX-sh-K45" firstAttribute="top" secondItem="CMR-gC-ErB" secondAttribute="bottom" constant="8" symbolic="YES" id="8XV-OM-cWX"/>
  444. <constraint firstItem="CMR-gC-ErB" firstAttribute="leading" secondItem="kTc-GS-mT9" secondAttribute="leading" constant="30" id="cfA-mL-TG0"/>
  445. <constraint firstItem="CMR-gC-ErB" firstAttribute="top" secondItem="kTc-GS-mT9" secondAttribute="top" id="kwq-x9-YZt"/>
  446. <constraint firstItem="Wq8-g4-zfl" firstAttribute="leading" secondItem="kTc-GS-mT9" secondAttribute="leading" constant="20" symbolic="YES" id="pO4-qo-F7V"/>
  447. <constraint firstItem="1hX-sh-K45" firstAttribute="leading" secondItem="kTc-GS-mT9" secondAttribute="leading" constant="20" symbolic="YES" id="x5f-jw-aF0"/>
  448. <constraint firstAttribute="trailing" secondItem="CMR-gC-ErB" secondAttribute="trailing" constant="20" symbolic="YES" id="zeE-aV-OQx"/>
  449. </constraints>
  450. </view>
  451. </subviews>
  452. <constraints>
  453. <constraint firstAttribute="trailing" secondItem="kTc-GS-mT9" secondAttribute="trailing" id="NLi-ck-RZq"/>
  454. <constraint firstItem="kTc-GS-mT9" firstAttribute="leading" secondItem="j0c-pn-n4F" secondAttribute="leading" id="Rqv-72-FLS"/>
  455. <constraint firstAttribute="trailing" secondItem="dPQ-Jo-6mF" secondAttribute="trailing" id="WxG-Ho-gXa"/>
  456. <constraint firstItem="dPQ-Jo-6mF" firstAttribute="top" secondItem="j0c-pn-n4F" secondAttribute="top" id="h43-sJ-8NA"/>
  457. <constraint firstItem="dPQ-Jo-6mF" firstAttribute="leading" secondItem="j0c-pn-n4F" secondAttribute="leading" id="kWO-SF-6Qd"/>
  458. <constraint firstAttribute="bottom" secondItem="kTc-GS-mT9" secondAttribute="bottom" id="uNM-BD-onK"/>
  459. <constraint firstItem="kTc-GS-mT9" firstAttribute="top" secondItem="dPQ-Jo-6mF" secondAttribute="bottom" constant="8" symbolic="YES" id="vQM-cN-XaK"/>
  460. </constraints>
  461. </stackView>
  462. </subviews>
  463. <color key="backgroundColor" systemColor="systemGray6Color"/>
  464. <constraints>
  465. <constraint firstItem="j0c-pn-n4F" firstAttribute="top" secondItem="kwI-Kw-jAy" secondAttribute="top" constant="10" id="INu-uz-PHd"/>
  466. <constraint firstAttribute="bottom" secondItem="j0c-pn-n4F" secondAttribute="bottom" constant="10" id="JD9-Oa-jBJ"/>
  467. <constraint firstItem="j0c-pn-n4F" firstAttribute="leading" secondItem="kwI-Kw-jAy" secondAttribute="leading" constant="20" symbolic="YES" id="Jk6-pb-KWE"/>
  468. <constraint firstAttribute="trailing" secondItem="j0c-pn-n4F" secondAttribute="trailing" constant="20" symbolic="YES" id="ZnZ-op-0n5"/>
  469. </constraints>
  470. </view>
  471. </subviews>
  472. <constraints>
  473. <constraint firstAttribute="bottom" secondItem="kwI-Kw-jAy" secondAttribute="bottom" constant="5" id="1f1-ti-6ae"/>
  474. <constraint firstItem="kwI-Kw-jAy" firstAttribute="top" secondItem="gVs-EA-0qL" secondAttribute="top" constant="5" id="560-Mr-n8n"/>
  475. <constraint firstItem="kwI-Kw-jAy" firstAttribute="leading" secondItem="gVs-EA-0qL" secondAttribute="leading" id="TLh-F8-6Kv"/>
  476. <constraint firstAttribute="trailing" secondItem="kwI-Kw-jAy" secondAttribute="trailing" id="nkh-7S-vgv"/>
  477. </constraints>
  478. </tableViewCellContentView>
  479. <connections>
  480. <outlet property="dayDateLabel" destination="CMR-gC-ErB" id="w3p-68-uti"/>
  481. <outlet property="dropdownArrowButton" destination="Bos-Kz-obZ" id="0Hq-8j-vSU"/>
  482. <outlet property="hiddenView" destination="kTc-GS-mT9" id="XdY-Cp-gtG"/>
  483. <outlet property="joinButton" destination="Wq8-g4-zfl" id="LAK-NQ-zPl"/>
  484. <outlet property="sessionCustomView" destination="kwI-Kw-jAy" id="iBf-Oo-ruu"/>
  485. <outlet property="sessionNameLabel" destination="6v5-iB-rIj" id="Ld4-7Y-0Q4"/>
  486. <outlet property="timeLabel" destination="g0M-zT-AsY" id="pAt-Qr-9i1"/>
  487. </connections>
  488. </tableViewCell>
  489. </prototypes>
  490. </tableView>
  491. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="leading" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Trj-oo-Ale">
  492. <rect key="frame" x="20" y="449.66666666666663" width="160" height="25"/>
  493. <constraints>
  494. <constraint firstAttribute="width" constant="160" id="0Wr-0v-J2O"/>
  495. <constraint firstAttribute="height" constant="25" id="BNm-TY-Lb9"/>
  496. </constraints>
  497. <state key="normal" title="Button"/>
  498. <buttonConfiguration key="configuration" style="plain" title="view all sessions" imagePadding="5">
  499. <imageReference key="image" image="plus" catalog="system" symbolScale="medium"/>
  500. <fontDescription key="titleFontDescription" name="AvenirNext-MediumItalic" family="Avenir Next" pointSize="15"/>
  501. <color key="baseForegroundColor" name="AccentColor"/>
  502. </buttonConfiguration>
  503. <connections>
  504. <action selector="viewAllSessionAction:" destination="MOP-ZK-IIY" eventType="touchUpInside" id="02f-sK-pdW"/>
  505. </connections>
  506. </button>
  507. </subviews>
  508. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  509. <constraints>
  510. <constraint firstItem="1x8-2k-v4Z" firstAttribute="leading" secondItem="XlJ-3M-DAb" secondAttribute="leading" constant="20" symbolic="YES" id="4pe-Uv-qWD"/>
  511. <constraint firstAttribute="trailing" secondItem="64V-cI-UEG" secondAttribute="trailing" constant="20" symbolic="YES" id="82d-Ma-wnR"/>
  512. <constraint firstItem="Trj-oo-Ale" firstAttribute="top" secondItem="1x8-2k-v4Z" secondAttribute="bottom" priority="250" constant="8" symbolic="YES" id="8G9-AQ-dcX"/>
  513. <constraint firstAttribute="bottom" secondItem="Trj-oo-Ale" secondAttribute="bottom" constant="20" symbolic="YES" id="GFu-Ei-JW8"/>
  514. <constraint firstAttribute="trailing" secondItem="Trj-oo-Ale" secondAttribute="trailing" priority="250" constant="234" id="OrN-PR-5Tg"/>
  515. <constraint firstItem="1x8-2k-v4Z" firstAttribute="top" secondItem="64V-cI-UEG" secondAttribute="bottom" constant="8" symbolic="YES" id="Pcz-rj-BHv"/>
  516. <constraint firstItem="64V-cI-UEG" firstAttribute="top" secondItem="XlJ-3M-DAb" secondAttribute="top" constant="20" symbolic="YES" id="qsr-1E-WET"/>
  517. <constraint firstItem="64V-cI-UEG" firstAttribute="leading" secondItem="XlJ-3M-DAb" secondAttribute="leading" constant="20" symbolic="YES" id="rVM-wd-CqT"/>
  518. <constraint firstAttribute="trailing" secondItem="1x8-2k-v4Z" secondAttribute="trailing" constant="20" symbolic="YES" id="vLp-kK-rX5"/>
  519. <constraint firstItem="Trj-oo-Ale" firstAttribute="leading" secondItem="XlJ-3M-DAb" secondAttribute="leading" constant="20" symbolic="YES" id="xaG-mq-8lc"/>
  520. </constraints>
  521. </view>
  522. </subviews>
  523. <viewLayoutGuide key="safeArea" id="flU-3i-z48"/>
  524. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  525. <constraints>
  526. <constraint firstItem="U7T-d3-gK0" firstAttribute="top" secondItem="ISL-yI-GyY" secondAttribute="bottom" constant="8" symbolic="YES" id="0sB-Dr-Lfn"/>
  527. <constraint firstItem="XlJ-3M-DAb" firstAttribute="trailing" secondItem="flU-3i-z48" secondAttribute="trailing" id="5H6-zh-Tph"/>
  528. <constraint firstItem="5iz-Hn-48K" firstAttribute="leading" secondItem="flU-3i-z48" secondAttribute="leading" constant="20" id="7c6-LO-uFq"/>
  529. <constraint firstItem="vBU-oQ-w6G" firstAttribute="trailing" secondItem="flU-3i-z48" secondAttribute="trailing" id="AOK-Mo-QQQ"/>
  530. <constraint firstItem="ISL-yI-GyY" firstAttribute="leading" secondItem="flU-3i-z48" secondAttribute="leading" constant="20" id="BKD-t8-1zU"/>
  531. <constraint firstItem="vBU-oQ-w6G" firstAttribute="bottom" secondItem="flU-3i-z48" secondAttribute="bottom" id="Fh3-6H-L2t"/>
  532. <constraint firstItem="XlJ-3M-DAb" firstAttribute="bottom" secondItem="flU-3i-z48" secondAttribute="bottom" id="Jtn-UV-RZh"/>
  533. <constraint firstItem="5iz-Hn-48K" firstAttribute="top" secondItem="bBd-KF-hBu" secondAttribute="bottom" constant="20" id="KPq-SZ-UPN"/>
  534. <constraint firstItem="bBd-KF-hBu" firstAttribute="top" secondItem="flU-3i-z48" secondAttribute="top" id="Mw1-fj-C3d"/>
  535. <constraint firstItem="kRw-Hn-Dlh" firstAttribute="top" secondItem="U7T-d3-gK0" secondAttribute="bottom" constant="20" id="Ufy-5Q-Nzp"/>
  536. <constraint firstItem="XlJ-3M-DAb" firstAttribute="leading" secondItem="flU-3i-z48" secondAttribute="leading" id="hhm-U6-LML"/>
  537. <constraint firstItem="flU-3i-z48" firstAttribute="trailing" secondItem="kRw-Hn-Dlh" secondAttribute="trailing" constant="20" id="juF-yZ-nDe"/>
  538. <constraint firstItem="bBd-KF-hBu" firstAttribute="leading" secondItem="flU-3i-z48" secondAttribute="leading" id="l4T-du-biu"/>
  539. <constraint firstItem="hj7-ho-eLQ" firstAttribute="top" secondItem="ISL-yI-GyY" secondAttribute="bottom" constant="8" symbolic="YES" id="l5x-t4-uqd"/>
  540. <constraint firstItem="vBU-oQ-w6G" firstAttribute="leading" secondItem="flU-3i-z48" secondAttribute="leading" id="lSR-vj-LzP"/>
  541. <constraint firstItem="kRw-Hn-Dlh" firstAttribute="leading" secondItem="flU-3i-z48" secondAttribute="leading" constant="20" id="o6c-0C-DGa"/>
  542. <constraint firstItem="vBU-oQ-w6G" firstAttribute="top" secondItem="kRw-Hn-Dlh" secondAttribute="bottom" constant="16.999999999999972" id="o9I-TZ-pIT"/>
  543. <constraint firstItem="bBd-KF-hBu" firstAttribute="trailing" secondItem="flU-3i-z48" secondAttribute="trailing" id="qwA-GZ-4XB"/>
  544. <constraint firstItem="U7T-d3-gK0" firstAttribute="leading" secondItem="flU-3i-z48" secondAttribute="leading" constant="20" id="sZS-zg-D54"/>
  545. <constraint firstItem="hj7-ho-eLQ" firstAttribute="leading" secondItem="U7T-d3-gK0" secondAttribute="trailing" constant="8" symbolic="YES" id="vp8-3Y-bQT"/>
  546. <constraint firstItem="flU-3i-z48" firstAttribute="trailing" secondItem="5iz-Hn-48K" secondAttribute="trailing" constant="20" id="wXA-B2-R2H"/>
  547. <constraint firstItem="ISL-yI-GyY" firstAttribute="top" secondItem="5iz-Hn-48K" secondAttribute="bottom" constant="8" symbolic="YES" id="xO6-ZX-FpR"/>
  548. <constraint firstItem="XlJ-3M-DAb" firstAttribute="top" secondItem="kRw-Hn-Dlh" secondAttribute="bottom" constant="16.999999999999972" id="y9O-wa-Uyn"/>
  549. </constraints>
  550. </view>
  551. <connections>
  552. <outlet property="academicYearLabel" destination="NCE-3L-x14" id="AKm-S6-nl0"/>
  553. <outlet property="assessmentListTableView" destination="F4e-Wz-Nad" id="LVl-Kr-tUo"/>
  554. <outlet property="classLabel" destination="zxF-6x-sjy" id="2Zh-oJ-WPG"/>
  555. <outlet property="divisionLabel" destination="fS9-O7-lc1" id="LTR-xh-t3N"/>
  556. <outlet property="navigationBar" destination="bBd-KF-hBu" id="AQL-A4-NPB"/>
  557. <outlet property="sessionListTableView" destination="1x8-2k-v4Z" id="WKR-Od-6wh"/>
  558. <outlet property="typeSegmentControl" destination="kRw-Hn-Dlh" id="X0b-TL-mfC"/>
  559. <outlet property="upcomingAssessmentView" destination="vBU-oQ-w6G" id="yxE-uG-HWn"/>
  560. <outlet property="upcomingSessionView" destination="XlJ-3M-DAb" id="tZf-df-KEc"/>
  561. <outlet property="usernameLabel" destination="5iz-Hn-48K" id="pEA-uA-a7b"/>
  562. <outlet property="viewAllAssessmentButton" destination="Zn2-EL-NQf" id="pvd-kL-vK8"/>
  563. <outlet property="viewAllSessionButton" destination="Trj-oo-Ale" id="IW1-pA-Qsw"/>
  564. </connections>
  565. </viewController>
  566. <placeholder placeholderIdentifier="IBFirstResponder" id="5BK-Pp-4Yz" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  567. </objects>
  568. <point key="canvasLocation" x="128.98550724637681" y="835.59782608695662"/>
  569. </scene>
  570. <!--Splash Screen View Controller-->
  571. <scene sceneID="tne-QT-ifu">
  572. <objects>
  573. <viewController storyboardIdentifier="SplashScreenViewController" id="BYZ-38-t0r" customClass="SplashScreenViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  574. <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
  575. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  576. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  577. <subviews>
  578. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Presented by - " textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WO0-cE-ZLb">
  579. <rect key="frame" x="20" y="50" width="374" height="34.333333333333343"/>
  580. <fontDescription key="fontDescription" name="AvenirNext-DemiBoldItalic" family="Avenir Next" pointSize="25"/>
  581. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  582. <nil key="highlightedColor"/>
  583. </label>
  584. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="mf4-xN-v81">
  585. <rect key="frame" x="107" y="104.33333333333331" width="200" height="120"/>
  586. <subviews>
  587. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Hinduja Foundation (White)" translatesAutoresizingMaskIntoConstraints="NO" id="IiE-vM-4Nh">
  588. <rect key="frame" x="20" y="20" width="160" height="80"/>
  589. </imageView>
  590. </subviews>
  591. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  592. <constraints>
  593. <constraint firstItem="IiE-vM-4Nh" firstAttribute="leading" secondItem="mf4-xN-v81" secondAttribute="leading" constant="20" id="57g-by-Cva"/>
  594. <constraint firstAttribute="width" constant="200" id="MU3-5V-gpP"/>
  595. <constraint firstAttribute="trailing" secondItem="IiE-vM-4Nh" secondAttribute="trailing" constant="20" id="dhW-QS-JnP"/>
  596. <constraint firstAttribute="bottom" secondItem="IiE-vM-4Nh" secondAttribute="bottom" constant="20" id="h0v-zh-F0B"/>
  597. <constraint firstAttribute="height" constant="120" id="nCq-HB-4f5"/>
  598. <constraint firstItem="IiE-vM-4Nh" firstAttribute="top" secondItem="mf4-xN-v81" secondAttribute="top" constant="20" id="zT1-1v-k35"/>
  599. </constraints>
  600. </view>
  601. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sew-Mh-UY4">
  602. <rect key="frame" x="206.66666666666666" y="224.33333333333334" width="1" height="62.000000000000028"/>
  603. <color key="backgroundColor" red="0.1058823529" green="0.37647058820000001" blue="0.59607843140000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  604. <constraints>
  605. <constraint firstAttribute="width" constant="1" id="vpf-d0-H9a"/>
  606. </constraints>
  607. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  608. <nil key="textColor"/>
  609. <nil key="highlightedColor"/>
  610. </label>
  611. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="&amp;" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="x7u-Fg-rDf">
  612. <rect key="frame" x="196" y="244.33333333333334" width="22" height="22.000000000000028"/>
  613. <color key="backgroundColor" red="0.10588235294117647" green="0.37647058823529411" blue="0.59607843137254901" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  614. <constraints>
  615. <constraint firstAttribute="height" constant="22" id="Gyq-Hb-Ef6"/>
  616. <constraint firstAttribute="width" constant="22" id="uMe-hf-dpv"/>
  617. </constraints>
  618. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="15"/>
  619. <color key="textColor" name="AccentColor"/>
  620. <nil key="highlightedColor"/>
  621. </label>
  622. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gEk-FG-IvU">
  623. <rect key="frame" x="132" y="286.33333333333331" width="150" height="150"/>
  624. <subviews>
  625. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Hinduja College" translatesAutoresizingMaskIntoConstraints="NO" id="JEu-qd-gCG">
  626. <rect key="frame" x="20" y="20" width="110" height="110"/>
  627. </imageView>
  628. </subviews>
  629. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  630. <constraints>
  631. <constraint firstItem="JEu-qd-gCG" firstAttribute="top" secondItem="gEk-FG-IvU" secondAttribute="top" constant="20" id="8rW-qs-C89"/>
  632. <constraint firstAttribute="bottom" secondItem="JEu-qd-gCG" secondAttribute="bottom" constant="20" id="aXK-YU-HWa"/>
  633. <constraint firstItem="JEu-qd-gCG" firstAttribute="leading" secondItem="gEk-FG-IvU" secondAttribute="leading" constant="20" id="csM-ms-dgG"/>
  634. <constraint firstAttribute="width" constant="150" id="dPk-Ix-dnx"/>
  635. <constraint firstAttribute="trailing" secondItem="JEu-qd-gCG" secondAttribute="trailing" constant="20" id="vAR-SG-fD6"/>
  636. <constraint firstAttribute="height" constant="150" id="yhX-mW-tuF"/>
  637. </constraints>
  638. </view>
  639. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cwa-FZ-M5G">
  640. <rect key="frame" x="206.66666666666666" y="436.33333333333331" width="1" height="189.66666666666669"/>
  641. <color key="backgroundColor" red="0.1058823529" green="0.37647058820000001" blue="0.59607843140000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  642. <constraints>
  643. <constraint firstAttribute="width" constant="1" id="pF1-VG-KZ7"/>
  644. </constraints>
  645. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  646. <nil key="textColor"/>
  647. <nil key="highlightedColor"/>
  648. </label>
  649. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by -" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fcp-ct-egs">
  650. <rect key="frame" x="20" y="561.66666666666663" width="374" height="34.333333333333371"/>
  651. <color key="backgroundColor" name="AccentColor"/>
  652. <fontDescription key="fontDescription" name="AvenirNext-DemiBoldItalic" family="Avenir Next" pointSize="25"/>
  653. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  654. <nil key="highlightedColor"/>
  655. </label>
  656. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CSd-LF-IEo">
  657. <rect key="frame" x="107" y="626" width="200" height="70"/>
  658. <subviews>
  659. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Finlabs" translatesAutoresizingMaskIntoConstraints="NO" id="bXg-Cu-Ao4">
  660. <rect key="frame" x="20" y="20" width="160" height="30"/>
  661. </imageView>
  662. </subviews>
  663. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  664. <constraints>
  665. <constraint firstAttribute="trailing" secondItem="bXg-Cu-Ao4" secondAttribute="trailing" constant="20" id="3NC-Jb-rNe"/>
  666. <constraint firstAttribute="height" constant="70" id="4I0-hw-Tal"/>
  667. <constraint firstAttribute="width" constant="200" id="HKE-PW-CkB"/>
  668. <constraint firstAttribute="bottom" secondItem="bXg-Cu-Ao4" secondAttribute="bottom" constant="20" id="UDB-pn-cK0"/>
  669. <constraint firstItem="bXg-Cu-Ao4" firstAttribute="leading" secondItem="CSd-LF-IEo" secondAttribute="leading" constant="20" id="UWO-kQ-9cm"/>
  670. <constraint firstItem="bXg-Cu-Ao4" firstAttribute="top" secondItem="CSd-LF-IEo" secondAttribute="top" constant="20" id="pH3-Bv-Mwo"/>
  671. </constraints>
  672. </view>
  673. </subviews>
  674. <viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
  675. <color key="backgroundColor" name="AccentColor"/>
  676. <constraints>
  677. <constraint firstItem="cwa-FZ-M5G" firstAttribute="top" secondItem="gEk-FG-IvU" secondAttribute="bottom" id="3cr-Bo-OfT"/>
  678. <constraint firstItem="x7u-Fg-rDf" firstAttribute="top" secondItem="mf4-xN-v81" secondAttribute="bottom" constant="20" id="5YH-Dg-X4J"/>
  679. <constraint firstItem="Sew-Mh-UY4" firstAttribute="top" secondItem="mf4-xN-v81" secondAttribute="bottom" id="C9e-1E-0Zn"/>
  680. <constraint firstItem="gEk-FG-IvU" firstAttribute="centerX" secondItem="8bC-Xf-vdC" secondAttribute="centerX" id="Fjn-QX-YfR"/>
  681. <constraint firstItem="CSd-LF-IEo" firstAttribute="top" secondItem="cwa-FZ-M5G" secondAttribute="bottom" id="H0n-YU-u3Q"/>
  682. <constraint firstItem="gEk-FG-IvU" firstAttribute="top" secondItem="Sew-Mh-UY4" secondAttribute="bottom" id="Jm9-N7-AjV"/>
  683. <constraint firstItem="6Tk-OE-BBY" firstAttribute="trailing" secondItem="WO0-cE-ZLb" secondAttribute="trailing" constant="20" id="OHn-hk-yml"/>
  684. <constraint firstItem="CSd-LF-IEo" firstAttribute="top" secondItem="fcp-ct-egs" secondAttribute="bottom" constant="30" id="ORe-MN-8N3"/>
  685. <constraint firstItem="WO0-cE-ZLb" firstAttribute="leading" secondItem="6Tk-OE-BBY" secondAttribute="leading" constant="20" id="OXz-dW-xxZ"/>
  686. <constraint firstItem="mf4-xN-v81" firstAttribute="top" secondItem="WO0-cE-ZLb" secondAttribute="bottom" constant="20" id="Rln-EB-AWk"/>
  687. <constraint firstItem="gEk-FG-IvU" firstAttribute="top" secondItem="x7u-Fg-rDf" secondAttribute="bottom" constant="20" id="SoY-gp-Zft"/>
  688. <constraint firstItem="WO0-cE-ZLb" firstAttribute="top" secondItem="6Tk-OE-BBY" secondAttribute="top" constant="30" id="T4s-XN-V51"/>
  689. <constraint firstItem="cwa-FZ-M5G" firstAttribute="centerX" secondItem="8bC-Xf-vdC" secondAttribute="centerX" id="Whi-lv-Qv8"/>
  690. <constraint firstItem="x7u-Fg-rDf" firstAttribute="centerX" secondItem="8bC-Xf-vdC" secondAttribute="centerX" id="XfQ-uF-p8y"/>
  691. <constraint firstItem="CSd-LF-IEo" firstAttribute="centerX" secondItem="8bC-Xf-vdC" secondAttribute="centerX" id="Xpl-o7-MFc"/>
  692. <constraint firstItem="fcp-ct-egs" firstAttribute="leading" secondItem="6Tk-OE-BBY" secondAttribute="leading" constant="20" id="chu-Dk-WIt"/>
  693. <constraint firstItem="mf4-xN-v81" firstAttribute="centerX" secondItem="8bC-Xf-vdC" secondAttribute="centerX" id="dt8-rs-b4q"/>
  694. <constraint firstItem="6Tk-OE-BBY" firstAttribute="bottom" secondItem="CSd-LF-IEo" secondAttribute="bottom" constant="40" id="ipt-Tj-zuG"/>
  695. <constraint firstItem="fcp-ct-egs" firstAttribute="top" secondItem="gEk-FG-IvU" secondAttribute="bottom" priority="250" constant="135.33333333333331" id="uTF-g2-Y6F"/>
  696. <constraint firstItem="6Tk-OE-BBY" firstAttribute="trailing" secondItem="fcp-ct-egs" secondAttribute="trailing" constant="20" id="yT6-tQ-wPL"/>
  697. <constraint firstItem="Sew-Mh-UY4" firstAttribute="centerX" secondItem="8bC-Xf-vdC" secondAttribute="centerX" id="z9h-Gb-Rjt"/>
  698. </constraints>
  699. </view>
  700. <navigationItem key="navigationItem" id="eKV-0H-KrR"/>
  701. <connections>
  702. <outlet property="andLabel" destination="x7u-Fg-rDf" id="AdY-Hh-TMo"/>
  703. <outlet property="finlabsLogoImageView" destination="bXg-Cu-Ao4" id="qBN-C7-KRi"/>
  704. <outlet property="finlabsLogoView" destination="CSd-LF-IEo" id="nTT-F3-0DD"/>
  705. <outlet property="hindujaCollegeImageView" destination="JEu-qd-gCG" id="avn-5f-pxw"/>
  706. <outlet property="hindujaCollegeView" destination="gEk-FG-IvU" id="aOU-of-uKf"/>
  707. <outlet property="hindujaLogoImageView" destination="IiE-vM-4Nh" id="fbL-hE-Hsg"/>
  708. <outlet property="hindujaLogoView" destination="mf4-xN-v81" id="fMB-Vq-c4U"/>
  709. <outlet property="poweredByLabel" destination="fcp-ct-egs" id="c5F-hR-piz"/>
  710. <outlet property="presentedByLabel" destination="WO0-cE-ZLb" id="xYR-tk-ESj"/>
  711. </connections>
  712. </viewController>
  713. <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
  714. </objects>
  715. <point key="canvasLocation" x="876.81159420289862" y="97.010869565217405"/>
  716. </scene>
  717. <!--Login View Controller-->
  718. <scene sceneID="Ty6-hw-E2N">
  719. <objects>
  720. <viewController storyboardIdentifier="LoginViewController" id="4UB-VE-Edr" customClass="LoginViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  721. <view key="view" contentMode="scaleToFill" id="H86-hJ-sDL">
  722. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  723. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  724. <subviews>
  725. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="oUU-wp-b8X">
  726. <rect key="frame" x="0.0" y="179.33333333333334" width="414" height="377.33333333333326"/>
  727. <subviews>
  728. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Sign in to your account" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oUb-kX-QCi">
  729. <rect key="frame" x="20" y="109.99999999999997" width="374" height="27.333333333333343"/>
  730. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="20"/>
  731. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  732. <nil key="highlightedColor"/>
  733. </label>
  734. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Password" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="qA9-nY-IvY" customClass="PaddedTextField" customModule="LMS" customModuleProvider="target">
  735. <rect key="frame" x="40" y="237.33333333333337" width="334" height="40"/>
  736. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  737. <constraints>
  738. <constraint firstAttribute="height" constant="40" id="Low-Cs-KZk"/>
  739. </constraints>
  740. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  741. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="17"/>
  742. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="namePhonePad" enablesReturnKeyAutomatically="YES" secureTextEntry="YES" textContentType="password"/>
  743. </textField>
  744. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fQj-JP-7v5">
  745. <rect key="frame" x="40" y="307.33333333333337" width="334" height="50"/>
  746. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  747. <constraints>
  748. <constraint firstAttribute="height" constant="50" id="Fub-Ml-rIJ"/>
  749. </constraints>
  750. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  751. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  752. <state key="normal" title="Sign In">
  753. <color key="titleColor" red="0.050980392156862744" green="0.29803921568627451" blue="0.53333333333333333" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  754. </state>
  755. <connections>
  756. <action selector="signInAction:" destination="4UB-VE-Edr" eventType="touchUpInside" id="xIw-kx-W6U"/>
  757. </connections>
  758. </button>
  759. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Qh9-XU-Syu">
  760. <rect key="frame" x="172" y="20" width="70" height="70"/>
  761. <subviews>
  762. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="login-lock" translatesAutoresizingMaskIntoConstraints="NO" id="dGp-Ko-kYS">
  763. <rect key="frame" x="5" y="5" width="60" height="60"/>
  764. </imageView>
  765. </subviews>
  766. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  767. <constraints>
  768. <constraint firstAttribute="width" constant="70" id="C56-RO-QAM"/>
  769. <constraint firstItem="dGp-Ko-kYS" firstAttribute="leading" secondItem="Qh9-XU-Syu" secondAttribute="leading" constant="5" id="CI9-4p-sRa"/>
  770. <constraint firstAttribute="bottom" secondItem="dGp-Ko-kYS" secondAttribute="bottom" constant="5" id="ZPg-6j-hWo"/>
  771. <constraint firstItem="dGp-Ko-kYS" firstAttribute="top" secondItem="Qh9-XU-Syu" secondAttribute="top" constant="5" id="bD4-pH-dN0"/>
  772. <constraint firstAttribute="height" constant="70" id="hXf-jf-2BG"/>
  773. <constraint firstAttribute="trailing" secondItem="dGp-Ko-kYS" secondAttribute="trailing" constant="5" id="yBl-W4-g8W"/>
  774. </constraints>
  775. </view>
  776. <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Username or email" textAlignment="natural" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="E97-bL-Mpu" customClass="PaddedTextField" customModule="LMS" customModuleProvider="target">
  777. <rect key="frame" x="40" y="177.33333333333334" width="334" height="40"/>
  778. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  779. <constraints>
  780. <constraint firstAttribute="height" constant="40" id="AwP-9J-rwJ"/>
  781. </constraints>
  782. <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  783. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="17"/>
  784. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="emailAddress" enablesReturnKeyAutomatically="YES" textContentType="username"/>
  785. </textField>
  786. </subviews>
  787. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  788. <constraints>
  789. <constraint firstItem="Qh9-XU-Syu" firstAttribute="centerX" secondItem="oUU-wp-b8X" secondAttribute="centerX" id="0z7-81-Mbp"/>
  790. <constraint firstAttribute="trailing" secondItem="E97-bL-Mpu" secondAttribute="trailing" constant="40" id="2u3-2a-a16"/>
  791. <constraint firstItem="Qh9-XU-Syu" firstAttribute="top" secondItem="oUU-wp-b8X" secondAttribute="top" constant="20" id="7YM-d2-rw9"/>
  792. <constraint firstAttribute="trailing" secondItem="fQj-JP-7v5" secondAttribute="trailing" constant="40" id="Bsv-ra-prE"/>
  793. <constraint firstAttribute="trailing" secondItem="qA9-nY-IvY" secondAttribute="trailing" constant="40" id="HAn-iw-LT4"/>
  794. <constraint firstItem="qA9-nY-IvY" firstAttribute="top" secondItem="E97-bL-Mpu" secondAttribute="bottom" constant="20" id="TcR-OJ-TiD"/>
  795. <constraint firstItem="E97-bL-Mpu" firstAttribute="leading" secondItem="oUU-wp-b8X" secondAttribute="leading" constant="40" id="ZKz-TQ-C3j"/>
  796. <constraint firstItem="fQj-JP-7v5" firstAttribute="top" secondItem="qA9-nY-IvY" secondAttribute="bottom" constant="30" id="dKd-J8-iT4"/>
  797. <constraint firstItem="E97-bL-Mpu" firstAttribute="top" secondItem="oUb-kX-QCi" secondAttribute="bottom" constant="40" id="do7-np-JV5"/>
  798. <constraint firstItem="oUb-kX-QCi" firstAttribute="leading" secondItem="oUU-wp-b8X" secondAttribute="leading" constant="20" symbolic="YES" id="hDV-Jh-rAK"/>
  799. <constraint firstItem="fQj-JP-7v5" firstAttribute="leading" secondItem="oUU-wp-b8X" secondAttribute="leading" constant="40" id="iL5-CC-AJS"/>
  800. <constraint firstAttribute="bottom" secondItem="fQj-JP-7v5" secondAttribute="bottom" constant="20" id="k0p-r9-RHE"/>
  801. <constraint firstItem="qA9-nY-IvY" firstAttribute="leading" secondItem="oUU-wp-b8X" secondAttribute="leading" constant="40" id="k74-yZ-Jcx"/>
  802. <constraint firstItem="oUb-kX-QCi" firstAttribute="top" secondItem="Qh9-XU-Syu" secondAttribute="bottom" constant="20" id="pEU-Kp-zfp"/>
  803. <constraint firstAttribute="trailing" secondItem="oUb-kX-QCi" secondAttribute="trailing" constant="20" symbolic="YES" id="uIw-KU-ZJ1"/>
  804. </constraints>
  805. </view>
  806. </subviews>
  807. <viewLayoutGuide key="safeArea" id="Zqe-qS-8pM"/>
  808. <color key="backgroundColor" name="AccentColor"/>
  809. <constraints>
  810. <constraint firstItem="oUU-wp-b8X" firstAttribute="centerY" secondItem="H86-hJ-sDL" secondAttribute="centerY" id="VIe-Zs-CxW"/>
  811. <constraint firstItem="oUU-wp-b8X" firstAttribute="centerX" secondItem="H86-hJ-sDL" secondAttribute="centerX" id="fYC-44-bd5"/>
  812. <constraint firstItem="oUU-wp-b8X" firstAttribute="trailing" secondItem="Zqe-qS-8pM" secondAttribute="trailing" id="xP1-PI-oHI"/>
  813. <constraint firstItem="oUU-wp-b8X" firstAttribute="leading" secondItem="Zqe-qS-8pM" secondAttribute="leading" id="z1N-0C-3BI"/>
  814. </constraints>
  815. </view>
  816. <connections>
  817. <outlet property="lockImageView" destination="dGp-Ko-kYS" id="tXV-hP-a7h"/>
  818. <outlet property="lockView" destination="Qh9-XU-Syu" id="ppr-Ld-L5e"/>
  819. <outlet property="passwordTF" destination="qA9-nY-IvY" id="sen-d5-2aq"/>
  820. <outlet property="signInButton" destination="fQj-JP-7v5" id="QKC-kl-cd4"/>
  821. <outlet property="signInTitleLabel" destination="oUb-kX-QCi" id="fhW-6S-AiK"/>
  822. <outlet property="usernameTF" destination="E97-bL-Mpu" id="lkb-Bd-6sz"/>
  823. </connections>
  824. </viewController>
  825. <placeholder placeholderIdentifier="IBFirstResponder" id="crJ-eu-KrD" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  826. </objects>
  827. <point key="canvasLocation" x="1631.8840579710147" y="97.826086956521749"/>
  828. </scene>
  829. <!--Meeting List View Controller-->
  830. <scene sceneID="9Y7-pd-c46">
  831. <objects>
  832. <viewController storyboardIdentifier="MeetingListViewController" id="W9m-9H-WD1" customClass="MeetingListViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  833. <view key="view" contentMode="scaleToFill" id="deU-VZ-AOw">
  834. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  835. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  836. <subviews>
  837. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="IbR-2r-dQx">
  838. <rect key="frame" x="0.0" y="40" width="414" height="696"/>
  839. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  840. <prototypes>
  841. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MeetingListTableViewCell" rowHeight="160" id="lOi-rm-ZZv" customClass="MeetingListTableViewCell" customModule="LMS" customModuleProvider="target">
  842. <rect key="frame" x="0.0" y="50" width="414" height="160"/>
  843. <autoresizingMask key="autoresizingMask"/>
  844. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="lOi-rm-ZZv" id="zl3-he-z3V">
  845. <rect key="frame" x="0.0" y="0.0" width="414" height="160"/>
  846. <autoresizingMask key="autoresizingMask"/>
  847. <subviews>
  848. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="e5T-ua-jpY">
  849. <rect key="frame" x="15" y="5" width="384" height="150"/>
  850. <subviews>
  851. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="circle.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="vk4-Ge-yxf">
  852. <rect key="frame" x="10" y="10.999999999999998" width="25" height="23.666666666666664"/>
  853. <color key="tintColor" red="0.3921568627" green="0.70980392160000005" blue="0.96470588239999999" alpha="1" colorSpace="calibratedRGB"/>
  854. <constraints>
  855. <constraint firstAttribute="width" constant="25" id="7Q4-c9-zek"/>
  856. <constraint firstAttribute="height" constant="25" id="8F6-bR-MS6"/>
  857. </constraints>
  858. </imageView>
  859. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Session Name" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nOT-FE-x8Q">
  860. <rect key="frame" x="55" y="10" width="309" height="22"/>
  861. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="16"/>
  862. <nil key="textColor"/>
  863. <nil key="highlightedColor"/>
  864. </label>
  865. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Day, Month Date, Year" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="azT-Lu-rfp">
  866. <rect key="frame" x="55" y="37" width="309" height="18"/>
  867. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="13"/>
  868. <nil key="textColor"/>
  869. <nil key="highlightedColor"/>
  870. </label>
  871. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_clock" translatesAutoresizingMaskIntoConstraints="NO" id="Xvj-nM-Ra5">
  872. <rect key="frame" x="10" y="62.666666666666671" width="25" height="25"/>
  873. <color key="tintColor" red="0.3921568627" green="0.70980392160000005" blue="0.96470588239999999" alpha="1" colorSpace="calibratedRGB"/>
  874. <constraints>
  875. <constraint firstAttribute="width" constant="25" id="GiW-Ta-4HM"/>
  876. <constraint firstAttribute="height" constant="25" id="Z1T-qz-KZR"/>
  877. </constraints>
  878. </imageView>
  879. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_video_call" translatesAutoresizingMaskIntoConstraints="NO" id="SH4-F9-hlM">
  880. <rect key="frame" x="10" y="115" width="25" height="25"/>
  881. <color key="tintColor" red="0.3921568627" green="0.70980392160000005" blue="0.96470588239999999" alpha="1" colorSpace="calibratedRGB"/>
  882. <constraints>
  883. <constraint firstAttribute="height" constant="25" id="ICC-xx-znc"/>
  884. <constraint firstAttribute="width" constant="25" id="V1w-vm-MfQ"/>
  885. </constraints>
  886. </imageView>
  887. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OwR-0O-eHL">
  888. <rect key="frame" x="55" y="110" width="150" height="30"/>
  889. <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  890. <constraints>
  891. <constraint firstAttribute="width" constant="150" id="J1O-0R-EHu"/>
  892. <constraint firstAttribute="height" constant="30" id="VEe-ct-OUL"/>
  893. </constraints>
  894. <state key="normal" title="Button"/>
  895. <buttonConfiguration key="configuration" style="plain" title="Join Class">
  896. <fontDescription key="titleFontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  897. <color key="baseForegroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  898. </buttonConfiguration>
  899. </button>
  900. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Time (From-To)" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HX5-rl-Hu8">
  901. <rect key="frame" x="55" y="66" width="309" height="18"/>
  902. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="13"/>
  903. <nil key="textColor"/>
  904. <nil key="highlightedColor"/>
  905. </label>
  906. </subviews>
  907. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  908. <constraints>
  909. <constraint firstItem="nOT-FE-x8Q" firstAttribute="leading" secondItem="vk4-Ge-yxf" secondAttribute="trailing" constant="20" id="0Pl-sa-Uhd"/>
  910. <constraint firstAttribute="trailing" secondItem="HX5-rl-Hu8" secondAttribute="trailing" constant="20" symbolic="YES" id="5H9-U0-NzT"/>
  911. <constraint firstAttribute="trailing" secondItem="azT-Lu-rfp" secondAttribute="trailing" constant="20" symbolic="YES" id="6Nw-Ja-zes"/>
  912. <constraint firstAttribute="bottom" secondItem="OwR-0O-eHL" secondAttribute="bottom" constant="10" id="6Qn-YG-N5r"/>
  913. <constraint firstItem="SH4-F9-hlM" firstAttribute="leading" secondItem="e5T-ua-jpY" secondAttribute="leading" constant="10" id="Aqc-ob-a5v"/>
  914. <constraint firstItem="azT-Lu-rfp" firstAttribute="leading" secondItem="nOT-FE-x8Q" secondAttribute="leading" id="Bh2-ok-s2g"/>
  915. <constraint firstAttribute="trailing" secondItem="nOT-FE-x8Q" secondAttribute="trailing" constant="20" symbolic="YES" id="GP7-z9-k2b"/>
  916. <constraint firstItem="OwR-0O-eHL" firstAttribute="leading" secondItem="SH4-F9-hlM" secondAttribute="trailing" constant="20" id="GlG-7I-6VM"/>
  917. <constraint firstItem="vk4-Ge-yxf" firstAttribute="leading" secondItem="e5T-ua-jpY" secondAttribute="leading" constant="10" id="Lek-zF-94o"/>
  918. <constraint firstAttribute="bottom" secondItem="SH4-F9-hlM" secondAttribute="bottom" constant="10" id="PsG-eA-cDH"/>
  919. <constraint firstItem="HX5-rl-Hu8" firstAttribute="top" secondItem="azT-Lu-rfp" secondAttribute="bottom" constant="11" id="TLb-ew-35u"/>
  920. <constraint firstItem="vk4-Ge-yxf" firstAttribute="top" secondItem="e5T-ua-jpY" secondAttribute="top" constant="10" id="UYE-ZM-GfH"/>
  921. <constraint firstItem="Xvj-nM-Ra5" firstAttribute="leading" secondItem="e5T-ua-jpY" secondAttribute="leading" constant="10" id="ZnC-gJ-SDi"/>
  922. <constraint firstItem="nOT-FE-x8Q" firstAttribute="top" secondItem="e5T-ua-jpY" secondAttribute="top" constant="10" id="b2V-up-gcA"/>
  923. <constraint firstItem="Xvj-nM-Ra5" firstAttribute="centerY" secondItem="e5T-ua-jpY" secondAttribute="centerY" id="gTe-Yy-Fa6"/>
  924. <constraint firstItem="HX5-rl-Hu8" firstAttribute="leading" secondItem="Xvj-nM-Ra5" secondAttribute="trailing" constant="20" id="h8A-43-rBb"/>
  925. <constraint firstItem="OwR-0O-eHL" firstAttribute="top" secondItem="HX5-rl-Hu8" secondAttribute="bottom" constant="26" id="iCk-TF-SHX"/>
  926. <constraint firstItem="HX5-rl-Hu8" firstAttribute="centerY" secondItem="e5T-ua-jpY" secondAttribute="centerY" id="kfQ-Mr-Fy1"/>
  927. <constraint firstItem="azT-Lu-rfp" firstAttribute="top" secondItem="nOT-FE-x8Q" secondAttribute="bottom" constant="5" id="sXn-mo-Vyv"/>
  928. </constraints>
  929. </view>
  930. </subviews>
  931. <constraints>
  932. <constraint firstItem="e5T-ua-jpY" firstAttribute="leading" secondItem="zl3-he-z3V" secondAttribute="leading" constant="15" id="1Kp-UQ-hcD"/>
  933. <constraint firstItem="e5T-ua-jpY" firstAttribute="top" secondItem="zl3-he-z3V" secondAttribute="top" constant="5" id="1ud-jx-TB6"/>
  934. <constraint firstAttribute="bottom" secondItem="e5T-ua-jpY" secondAttribute="bottom" constant="5" id="I8J-Wl-Xg9"/>
  935. <constraint firstAttribute="trailing" secondItem="e5T-ua-jpY" secondAttribute="trailing" constant="15" id="zcW-Ma-D1k"/>
  936. </constraints>
  937. </tableViewCellContentView>
  938. <connections>
  939. <outlet property="customView" destination="e5T-ua-jpY" id="vfo-Aw-in6"/>
  940. <outlet property="dayDateLabel" destination="azT-Lu-rfp" id="LGK-UB-fVd"/>
  941. <outlet property="joinClassButton" destination="OwR-0O-eHL" id="i1a-OL-RaE"/>
  942. <outlet property="meetingNameLabel" destination="nOT-FE-x8Q" id="Q92-dG-AJ0"/>
  943. <outlet property="timeLabel" destination="HX5-rl-Hu8" id="Ofw-S5-9Q0"/>
  944. </connections>
  945. </tableViewCell>
  946. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="OfflineMeetingTableViewCell" rowHeight="110" id="HDr-e2-sYS" customClass="OfflineMeetingTableViewCell" customModule="LMS" customModuleProvider="target">
  947. <rect key="frame" x="0.0" y="210" width="414" height="110"/>
  948. <autoresizingMask key="autoresizingMask"/>
  949. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="HDr-e2-sYS" id="yxR-ZP-OJz">
  950. <rect key="frame" x="0.0" y="0.0" width="414" height="110"/>
  951. <autoresizingMask key="autoresizingMask"/>
  952. <subviews>
  953. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Kuk-Zh-2VC">
  954. <rect key="frame" x="15" y="5" width="384" height="100"/>
  955. <subviews>
  956. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="circle.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="RAN-zH-MdJ">
  957. <rect key="frame" x="10" y="10.999999999999998" width="25" height="23.666666666666664"/>
  958. <color key="tintColor" red="0.3921568627" green="0.70980392160000005" blue="0.96470588239999999" alpha="1" colorSpace="calibratedRGB"/>
  959. <constraints>
  960. <constraint firstAttribute="width" constant="25" id="iJl-b9-tpf"/>
  961. <constraint firstAttribute="height" constant="25" id="zgN-KI-Lbg"/>
  962. </constraints>
  963. </imageView>
  964. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Session Name" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wYR-Pp-uKm">
  965. <rect key="frame" x="55" y="10" width="309" height="22"/>
  966. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="16"/>
  967. <nil key="textColor"/>
  968. <nil key="highlightedColor"/>
  969. </label>
  970. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Day, Month Date, Year" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="27g-sN-Tml">
  971. <rect key="frame" x="55" y="37" width="309" height="18"/>
  972. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="13"/>
  973. <nil key="textColor"/>
  974. <nil key="highlightedColor"/>
  975. </label>
  976. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_clock" translatesAutoresizingMaskIntoConstraints="NO" id="a5b-Vf-Sob">
  977. <rect key="frame" x="10" y="65" width="25" height="25"/>
  978. <color key="tintColor" red="0.3921568627" green="0.70980392160000005" blue="0.96470588239999999" alpha="1" colorSpace="calibratedRGB"/>
  979. <constraints>
  980. <constraint firstAttribute="width" constant="25" id="MYe-Sf-c5z"/>
  981. <constraint firstAttribute="height" constant="25" id="PBc-cQ-2OV"/>
  982. </constraints>
  983. </imageView>
  984. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Time (From-To)" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YWb-Lp-2VH">
  985. <rect key="frame" x="55" y="68.666666666666671" width="309" height="18"/>
  986. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="13"/>
  987. <nil key="textColor"/>
  988. <nil key="highlightedColor"/>
  989. </label>
  990. </subviews>
  991. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  992. <constraints>
  993. <constraint firstItem="YWb-Lp-2VH" firstAttribute="top" secondItem="27g-sN-Tml" secondAttribute="bottom" priority="250" constant="11" id="6Zh-Zg-fwn"/>
  994. <constraint firstAttribute="trailing" secondItem="YWb-Lp-2VH" secondAttribute="trailing" constant="20" symbolic="YES" id="7S0-M6-ODQ"/>
  995. <constraint firstItem="RAN-zH-MdJ" firstAttribute="leading" secondItem="Kuk-Zh-2VC" secondAttribute="leading" constant="10" id="JVP-rS-8Ro"/>
  996. <constraint firstItem="a5b-Vf-Sob" firstAttribute="leading" secondItem="Kuk-Zh-2VC" secondAttribute="leading" constant="10" id="Jc0-NM-tS7"/>
  997. <constraint firstItem="RAN-zH-MdJ" firstAttribute="top" secondItem="Kuk-Zh-2VC" secondAttribute="top" constant="10" id="M96-qB-0W0"/>
  998. <constraint firstItem="27g-sN-Tml" firstAttribute="top" secondItem="wYR-Pp-uKm" secondAttribute="bottom" constant="5" id="NK6-GK-U0Z"/>
  999. <constraint firstItem="YWb-Lp-2VH" firstAttribute="centerY" secondItem="a5b-Vf-Sob" secondAttribute="centerY" id="QeG-EE-mCG"/>
  1000. <constraint firstAttribute="trailing" secondItem="27g-sN-Tml" secondAttribute="trailing" constant="20" symbolic="YES" id="SLp-Dv-se7"/>
  1001. <constraint firstItem="wYR-Pp-uKm" firstAttribute="leading" secondItem="RAN-zH-MdJ" secondAttribute="trailing" constant="20" id="bwr-OE-unv"/>
  1002. <constraint firstAttribute="bottom" secondItem="a5b-Vf-Sob" secondAttribute="bottom" constant="10" id="psH-AH-ILi"/>
  1003. <constraint firstItem="YWb-Lp-2VH" firstAttribute="leading" secondItem="a5b-Vf-Sob" secondAttribute="trailing" constant="20" id="qrD-P2-FgZ"/>
  1004. <constraint firstItem="27g-sN-Tml" firstAttribute="leading" secondItem="wYR-Pp-uKm" secondAttribute="leading" id="sLe-JY-c7C"/>
  1005. <constraint firstItem="wYR-Pp-uKm" firstAttribute="top" secondItem="Kuk-Zh-2VC" secondAttribute="top" constant="10" id="wyd-oq-2wS"/>
  1006. <constraint firstAttribute="trailing" secondItem="wYR-Pp-uKm" secondAttribute="trailing" constant="20" symbolic="YES" id="zRe-jR-XMw"/>
  1007. </constraints>
  1008. </view>
  1009. </subviews>
  1010. <constraints>
  1011. <constraint firstAttribute="bottom" secondItem="Kuk-Zh-2VC" secondAttribute="bottom" constant="5" id="2Vb-Lc-56k"/>
  1012. <constraint firstItem="Kuk-Zh-2VC" firstAttribute="leading" secondItem="yxR-ZP-OJz" secondAttribute="leading" constant="15" id="cz2-lZ-auu"/>
  1013. <constraint firstItem="Kuk-Zh-2VC" firstAttribute="top" secondItem="yxR-ZP-OJz" secondAttribute="top" constant="5" id="g5h-eo-JAm"/>
  1014. <constraint firstAttribute="trailing" secondItem="Kuk-Zh-2VC" secondAttribute="trailing" constant="15" id="vXr-1p-xxf"/>
  1015. </constraints>
  1016. </tableViewCellContentView>
  1017. <connections>
  1018. <outlet property="customView" destination="Kuk-Zh-2VC" id="xJJ-nq-4Ew"/>
  1019. <outlet property="dateLabel" destination="27g-sN-Tml" id="78u-nU-0hO"/>
  1020. <outlet property="meetingNameLabel" destination="wYR-Pp-uKm" id="a2e-TO-GlF"/>
  1021. <outlet property="timeLabel" destination="YWb-Lp-2VH" id="gJD-tm-cpO"/>
  1022. </connections>
  1023. </tableViewCell>
  1024. </prototypes>
  1025. </tableView>
  1026. </subviews>
  1027. <viewLayoutGuide key="safeArea" id="tNh-Hc-Udp"/>
  1028. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1029. <constraints>
  1030. <constraint firstItem="IbR-2r-dQx" firstAttribute="leading" secondItem="tNh-Hc-Udp" secondAttribute="leading" id="B8z-K4-Z7i"/>
  1031. <constraint firstItem="IbR-2r-dQx" firstAttribute="trailing" secondItem="tNh-Hc-Udp" secondAttribute="trailing" id="WDs-9Q-dHd"/>
  1032. <constraint firstItem="IbR-2r-dQx" firstAttribute="bottom" secondItem="tNh-Hc-Udp" secondAttribute="bottom" id="fu3-vl-rUG"/>
  1033. <constraint firstItem="IbR-2r-dQx" firstAttribute="top" secondItem="tNh-Hc-Udp" secondAttribute="top" constant="20" id="gfV-J6-ZI1"/>
  1034. </constraints>
  1035. </view>
  1036. <connections>
  1037. <outlet property="meetingListTableView" destination="IbR-2r-dQx" id="aNS-di-q63"/>
  1038. </connections>
  1039. </viewController>
  1040. <placeholder placeholderIdentifier="IBFirstResponder" id="ZgM-TA-svo" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1041. </objects>
  1042. <point key="canvasLocation" x="876.81159420289862" y="1557.8804347826087"/>
  1043. </scene>
  1044. <!--Session List View Controller-->
  1045. <scene sceneID="4hh-Va-dRx">
  1046. <objects>
  1047. <viewController storyboardIdentifier="SessionListViewController" id="Hg3-dp-OsB" customClass="SessionListViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  1048. <view key="view" contentMode="scaleToFill" id="UQL-Et-84T">
  1049. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  1050. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1051. <subviews>
  1052. <navigationBar contentMode="scaleToFill" verticalHuggingPriority="251" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XEc-e1-wYO">
  1053. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  1054. <color key="barTintColor" name="AccentColor"/>
  1055. <textAttributes key="titleTextAttributes">
  1056. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  1057. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1058. </textAttributes>
  1059. <items>
  1060. <navigationItem title="Session List" id="lgw-7x-arn">
  1061. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="k41-RL-4cS">
  1062. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1063. <connections>
  1064. <action selector="sideMenuAction:" destination="Hg3-dp-OsB" id="LmK-ja-LTi"/>
  1065. </connections>
  1066. </barButtonItem>
  1067. </navigationItem>
  1068. </items>
  1069. </navigationBar>
  1070. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="eaR-xB-7Us">
  1071. <rect key="frame" x="0.0" y="64" width="414" height="672"/>
  1072. <subviews>
  1073. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZaD-SG-DDR">
  1074. <rect key="frame" x="0.0" y="0.0" width="414" height="642.33333333333337"/>
  1075. <subviews>
  1076. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="7vF-5o-5Qp">
  1077. <rect key="frame" x="20" y="20" width="374" height="602.33333333333337"/>
  1078. <subviews>
  1079. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="MrA-qI-jCB">
  1080. <rect key="frame" x="0.0" y="0.0" width="374" height="101.33333333333333"/>
  1081. <subviews>
  1082. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Month-Year:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gLl-cL-8l7">
  1083. <rect key="frame" x="20" y="20" width="334" height="19.333333333333329"/>
  1084. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="14"/>
  1085. <color key="textColor" name="AccentColor"/>
  1086. <nil key="highlightedColor"/>
  1087. </label>
  1088. <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Select Month - Year" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="AtI-8b-DdU">
  1089. <rect key="frame" x="20" y="47.333333333333343" width="334" height="34"/>
  1090. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="14"/>
  1091. <textInputTraits key="textInputTraits"/>
  1092. </textField>
  1093. </subviews>
  1094. <color key="backgroundColor" red="0.87058823529999996" green="0.89019607840000003" blue="0.91372549020000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1095. <constraints>
  1096. <constraint firstItem="AtI-8b-DdU" firstAttribute="top" secondItem="gLl-cL-8l7" secondAttribute="bottom" constant="8" symbolic="YES" id="2np-vM-B7f"/>
  1097. <constraint firstItem="gLl-cL-8l7" firstAttribute="leading" secondItem="MrA-qI-jCB" secondAttribute="leading" constant="20" symbolic="YES" id="3ht-TX-6lH"/>
  1098. <constraint firstAttribute="bottom" secondItem="AtI-8b-DdU" secondAttribute="bottom" constant="20" symbolic="YES" id="AFl-T9-a2s"/>
  1099. <constraint firstAttribute="trailing" secondItem="AtI-8b-DdU" secondAttribute="trailing" constant="20" symbolic="YES" id="U6u-DF-rT8"/>
  1100. <constraint firstItem="AtI-8b-DdU" firstAttribute="leading" secondItem="MrA-qI-jCB" secondAttribute="leading" constant="20" symbolic="YES" id="XeC-TB-Bsr"/>
  1101. <constraint firstItem="gLl-cL-8l7" firstAttribute="top" secondItem="MrA-qI-jCB" secondAttribute="top" constant="20" symbolic="YES" id="aKi-lQ-y4a"/>
  1102. <constraint firstAttribute="trailing" secondItem="gLl-cL-8l7" secondAttribute="trailing" constant="20" symbolic="YES" id="snJ-q4-I6c"/>
  1103. <constraint firstAttribute="height" priority="750" constant="101.33" id="wJy-tV-uWG"/>
  1104. </constraints>
  1105. </view>
  1106. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" scrollEnabled="NO" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="emi-OS-Ugu">
  1107. <rect key="frame" x="0.0" y="109.33333333333337" width="374" height="493"/>
  1108. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1109. <constraints>
  1110. <constraint firstAttribute="height" constant="493" id="d5d-x9-eeG"/>
  1111. </constraints>
  1112. <prototypes>
  1113. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SessionListTableViewCell" rowHeight="250" id="dJj-oy-y1l" customClass="SessionListTableViewCell" customModule="LMS" customModuleProvider="target">
  1114. <rect key="frame" x="0.0" y="50" width="374" height="250"/>
  1115. <autoresizingMask key="autoresizingMask"/>
  1116. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="dJj-oy-y1l" id="PZA-6b-Z31">
  1117. <rect key="frame" x="0.0" y="0.0" width="374" height="250"/>
  1118. <autoresizingMask key="autoresizingMask"/>
  1119. <subviews>
  1120. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="WXu-Ja-tdI">
  1121. <rect key="frame" x="0.0" y="10" width="374" height="230"/>
  1122. <subviews>
  1123. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="session_background" translatesAutoresizingMaskIntoConstraints="NO" id="dmM-4W-xUG">
  1124. <rect key="frame" x="0.0" y="0.0" width="374" height="70"/>
  1125. <constraints>
  1126. <constraint firstAttribute="height" constant="70" id="NXT-Fm-MnJ"/>
  1127. </constraints>
  1128. </imageView>
  1129. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jPe-o9-K2Q">
  1130. <rect key="frame" x="10" y="9.9999999999999982" width="8.3333333333333357" height="19.333333333333329"/>
  1131. <constraints>
  1132. <constraint firstAttribute="height" constant="19.333333333333329" id="CB2-pZ-3Ct"/>
  1133. </constraints>
  1134. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="14"/>
  1135. <color key="textColor" name="AccentColor"/>
  1136. <nil key="highlightedColor"/>
  1137. </label>
  1138. <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="BXp-6B-HZ0">
  1139. <rect key="frame" x="303.66666666666669" y="10" width="60.333333333333314" height="15"/>
  1140. <subviews>
  1141. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Online" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p4f-j0-xDC">
  1142. <rect key="frame" x="0.0" y="0.0" width="40.333333333333336" height="15"/>
  1143. <fontDescription key="fontDescription" name="AvenirNext-MediumItalic" family="Avenir Next" pointSize="13"/>
  1144. <color key="textColor" name="AccentColor"/>
  1145. <nil key="highlightedColor"/>
  1146. </label>
  1147. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="circle.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="QYD-58-aMy">
  1148. <rect key="frame" x="45.333333333333314" y="0.99999999999999822" width="15" height="13.666666666666668"/>
  1149. <color key="tintColor" red="0.38431372549019605" green="0.6470588235294118" blue="0.2627450980392157" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1150. <constraints>
  1151. <constraint firstAttribute="width" constant="15" id="BzQ-Xe-06e"/>
  1152. <constraint firstAttribute="height" constant="15" id="kzy-IL-s7L"/>
  1153. </constraints>
  1154. </imageView>
  1155. </subviews>
  1156. </stackView>
  1157. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1 Jan" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ngU-5f-kIx">
  1158. <rect key="frame" x="0.0" y="57.333333333333329" width="60" height="20"/>
  1159. <color key="backgroundColor" red="0.90980392156862744" green="0.29803921568627451" blue="0.24705882352941178" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1160. <constraints>
  1161. <constraint firstAttribute="width" constant="60" id="Ebg-5i-EAH"/>
  1162. <constraint firstAttribute="height" constant="20" id="SHY-nv-1pf"/>
  1163. </constraints>
  1164. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="14"/>
  1165. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1166. <nil key="highlightedColor"/>
  1167. </label>
  1168. <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="wUc-Tk-Yox">
  1169. <rect key="frame" x="220.33333333333337" y="80" width="143.66666666666663" height="15"/>
  1170. <subviews>
  1171. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="clock" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="0Xr-pI-mK4">
  1172. <rect key="frame" x="0.0" y="0.99999999999999822" width="15" height="13.666666666666668"/>
  1173. <color key="tintColor" systemColor="labelColor"/>
  1174. <constraints>
  1175. <constraint firstAttribute="height" constant="15" id="Vmd-Ej-mPP"/>
  1176. <constraint firstAttribute="width" constant="15" id="nDt-4I-mnO"/>
  1177. </constraints>
  1178. </imageView>
  1179. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="12:00 PM to 01:00 PM" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LpE-4b-LgU">
  1180. <rect key="frame" x="20.000000000000007" y="0.0" width="123.66666666666669" height="15"/>
  1181. <fontDescription key="fontDescription" name="AvenirNext-MediumItalic" family="Avenir Next" pointSize="12"/>
  1182. <color key="textColor" name="AccentColor"/>
  1183. <nil key="highlightedColor"/>
  1184. </label>
  1185. </subviews>
  1186. </stackView>
  1187. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Session Name" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nSd-0Z-rE6">
  1188. <rect key="frame" x="15" y="110" width="344" height="21"/>
  1189. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  1190. <color key="textColor" name="AccentColor"/>
  1191. <nil key="highlightedColor"/>
  1192. </label>
  1193. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Teacher: Dinesh Kartik" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="HmF-r5-Fi9">
  1194. <rect key="frame" x="15" y="141" width="344" height="18"/>
  1195. <constraints>
  1196. <constraint firstAttribute="height" constant="18" id="tPR-69-Hqk"/>
  1197. </constraints>
  1198. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="13"/>
  1199. <nil key="textColor"/>
  1200. <nil key="highlightedColor"/>
  1201. </label>
  1202. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Intervention Name: Umang" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tmx-AA-xGG">
  1203. <rect key="frame" x="15" y="164" width="344" height="18"/>
  1204. <constraints>
  1205. <constraint firstAttribute="height" constant="18" id="PBF-Ah-Vdb"/>
  1206. </constraints>
  1207. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="13"/>
  1208. <nil key="textColor"/>
  1209. <nil key="highlightedColor"/>
  1210. </label>
  1211. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillProportionally" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="b78-kI-fH8">
  1212. <rect key="frame" x="15" y="200.66666666666666" width="221" height="19.333333333333343"/>
  1213. <subviews>
  1214. <label opaque="NO" userInteractionEnabled="NO" contentMode="top" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Batch:" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mzU-HL-xlC">
  1215. <rect key="frame" x="0.0" y="0.0" width="50" height="19.333333333333332"/>
  1216. <constraints>
  1217. <constraint firstAttribute="width" constant="50" id="km2-9t-Ldu"/>
  1218. </constraints>
  1219. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="14"/>
  1220. <color key="textColor" name="AccentColor"/>
  1221. <nil key="highlightedColor"/>
  1222. </label>
  1223. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="LMS APP Batch" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MPT-lZ-r0e">
  1224. <rect key="frame" x="58" y="0.0" width="163" height="19.333333333333332"/>
  1225. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="12"/>
  1226. <nil key="textColor"/>
  1227. <nil key="highlightedColor"/>
  1228. </label>
  1229. </subviews>
  1230. </stackView>
  1231. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="tEa-Er-XGz">
  1232. <rect key="frame" x="244" y="190" width="120" height="30"/>
  1233. <color key="backgroundColor" white="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1234. <constraints>
  1235. <constraint firstAttribute="width" constant="120" id="6TR-DA-oaB"/>
  1236. <constraint firstAttribute="height" constant="30" id="UCE-ND-61F"/>
  1237. </constraints>
  1238. <state key="normal" title="Button"/>
  1239. <buttonConfiguration key="configuration" style="plain" title="Join Class">
  1240. <fontDescription key="titleFontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="14"/>
  1241. <color key="baseForegroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1242. </buttonConfiguration>
  1243. </button>
  1244. </subviews>
  1245. <constraints>
  1246. <constraint firstItem="dmM-4W-xUG" firstAttribute="leading" secondItem="WXu-Ja-tdI" secondAttribute="leading" id="4cD-8K-JTn"/>
  1247. <constraint firstItem="tEa-Er-XGz" firstAttribute="top" secondItem="tmx-AA-xGG" secondAttribute="bottom" constant="8" symbolic="YES" id="6Dh-9d-clO"/>
  1248. <constraint firstAttribute="trailing" secondItem="wUc-Tk-Yox" secondAttribute="trailing" constant="10" id="9j7-Mw-6Cl"/>
  1249. <constraint firstItem="jPe-o9-K2Q" firstAttribute="leading" secondItem="WXu-Ja-tdI" secondAttribute="leading" constant="10" id="Cio-Tr-Aex"/>
  1250. <constraint firstItem="BXp-6B-HZ0" firstAttribute="top" secondItem="WXu-Ja-tdI" secondAttribute="top" constant="10" id="Ea9-HU-0Ks"/>
  1251. <constraint firstItem="nSd-0Z-rE6" firstAttribute="leading" secondItem="WXu-Ja-tdI" secondAttribute="leading" constant="15" id="FBN-j1-RuU"/>
  1252. <constraint firstAttribute="trailing" secondItem="BXp-6B-HZ0" secondAttribute="trailing" constant="10" id="JHg-Hl-imt"/>
  1253. <constraint firstItem="b78-kI-fH8" firstAttribute="leading" secondItem="WXu-Ja-tdI" secondAttribute="leading" constant="15" id="Mao-d3-tah"/>
  1254. <constraint firstItem="dmM-4W-xUG" firstAttribute="top" secondItem="WXu-Ja-tdI" secondAttribute="top" id="NNj-jK-M3x"/>
  1255. <constraint firstItem="nSd-0Z-rE6" firstAttribute="top" secondItem="wUc-Tk-Yox" secondAttribute="bottom" constant="15" id="RdF-qs-ZHN"/>
  1256. <constraint firstItem="HmF-r5-Fi9" firstAttribute="leading" secondItem="WXu-Ja-tdI" secondAttribute="leading" constant="15" id="Rxf-xd-2eb"/>
  1257. <constraint firstItem="jPe-o9-K2Q" firstAttribute="top" secondItem="WXu-Ja-tdI" secondAttribute="top" constant="10" id="ToT-MP-gvW"/>
  1258. <constraint firstAttribute="trailing" secondItem="HmF-r5-Fi9" secondAttribute="trailing" constant="15" id="VvW-wg-dan"/>
  1259. <constraint firstItem="ngU-5f-kIx" firstAttribute="top" secondItem="jPe-o9-K2Q" secondAttribute="bottom" constant="28" id="Wtw-KC-bs0"/>
  1260. <constraint firstItem="tmx-AA-xGG" firstAttribute="leading" secondItem="WXu-Ja-tdI" secondAttribute="leading" constant="15" id="d4v-8R-orF"/>
  1261. <constraint firstItem="HmF-r5-Fi9" firstAttribute="top" secondItem="nSd-0Z-rE6" secondAttribute="bottom" constant="10" id="gZD-lf-UvM"/>
  1262. <constraint firstAttribute="trailing" secondItem="tEa-Er-XGz" secondAttribute="trailing" constant="10" id="gda-Oi-vMv"/>
  1263. <constraint firstAttribute="bottom" secondItem="b78-kI-fH8" secondAttribute="bottom" constant="10" id="hvx-em-q78"/>
  1264. <constraint firstAttribute="trailing" secondItem="dmM-4W-xUG" secondAttribute="trailing" id="jHa-wE-NnU"/>
  1265. <constraint firstAttribute="trailing" secondItem="tmx-AA-xGG" secondAttribute="trailing" constant="15" id="lAA-d7-am8"/>
  1266. <constraint firstItem="tmx-AA-xGG" firstAttribute="top" secondItem="HmF-r5-Fi9" secondAttribute="bottom" constant="5" id="lJx-g5-Wsk"/>
  1267. <constraint firstAttribute="trailing" secondItem="nSd-0Z-rE6" secondAttribute="trailing" constant="15" id="n6M-86-FAs"/>
  1268. <constraint firstItem="ngU-5f-kIx" firstAttribute="leading" secondItem="WXu-Ja-tdI" secondAttribute="leading" id="n9p-NO-W3v"/>
  1269. <constraint firstItem="tEa-Er-XGz" firstAttribute="leading" secondItem="b78-kI-fH8" secondAttribute="trailing" constant="8" symbolic="YES" id="swv-af-wUB"/>
  1270. <constraint firstAttribute="bottom" secondItem="tEa-Er-XGz" secondAttribute="bottom" constant="10" id="tjg-PA-Wlx"/>
  1271. <constraint firstItem="wUc-Tk-Yox" firstAttribute="top" secondItem="dmM-4W-xUG" secondAttribute="bottom" constant="10" id="yoS-Ze-XTa"/>
  1272. </constraints>
  1273. </view>
  1274. </subviews>
  1275. <constraints>
  1276. <constraint firstAttribute="trailing" secondItem="WXu-Ja-tdI" secondAttribute="trailing" id="CyS-jx-O69"/>
  1277. <constraint firstItem="WXu-Ja-tdI" firstAttribute="top" secondItem="PZA-6b-Z31" secondAttribute="top" constant="10" id="jsN-tI-gzn"/>
  1278. <constraint firstItem="WXu-Ja-tdI" firstAttribute="leading" secondItem="PZA-6b-Z31" secondAttribute="leading" id="rzq-Ya-4AX"/>
  1279. <constraint firstAttribute="bottom" secondItem="WXu-Ja-tdI" secondAttribute="bottom" constant="10" id="wGF-gj-K3d"/>
  1280. </constraints>
  1281. </tableViewCellContentView>
  1282. <connections>
  1283. <outlet property="activeIndicatorImageView" destination="QYD-58-aMy" id="73T-9O-RMq"/>
  1284. <outlet property="activeStatusLabel" destination="p4f-j0-xDC" id="a3V-Si-v9r"/>
  1285. <outlet property="backgroundImageView" destination="dmM-4W-xUG" id="hUA-D6-NQg"/>
  1286. <outlet property="batchLabel" destination="MPT-lZ-r0e" id="5gB-9V-oof"/>
  1287. <outlet property="dateLabel" destination="ngU-5f-kIx" id="PX8-4E-bZC"/>
  1288. <outlet property="interventionNameLabel" destination="tmx-AA-xGG" id="CGf-5l-way"/>
  1289. <outlet property="joinClassButton" destination="tEa-Er-XGz" id="pWv-ct-k0A"/>
  1290. <outlet property="listCustomView" destination="WXu-Ja-tdI" id="DKb-Mb-1gc"/>
  1291. <outlet property="meetingNameLabel" destination="nSd-0Z-rE6" id="6rE-dp-gSY"/>
  1292. <outlet property="serialNumberLabel" destination="jPe-o9-K2Q" id="OsC-nS-oPW"/>
  1293. <outlet property="teacherLabel" destination="HmF-r5-Fi9" id="qJE-CJ-0SX"/>
  1294. <outlet property="timeLabel" destination="LpE-4b-LgU" id="HfZ-3s-qKx"/>
  1295. </connections>
  1296. </tableViewCell>
  1297. </prototypes>
  1298. </tableView>
  1299. </subviews>
  1300. </stackView>
  1301. </subviews>
  1302. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1303. <constraints>
  1304. <constraint firstAttribute="bottom" secondItem="7vF-5o-5Qp" secondAttribute="bottom" constant="20" symbolic="YES" id="1yH-K6-wFZ"/>
  1305. <constraint firstItem="7vF-5o-5Qp" firstAttribute="leading" secondItem="ZaD-SG-DDR" secondAttribute="leading" constant="20" symbolic="YES" id="QGe-a3-NFW"/>
  1306. <constraint firstAttribute="trailing" secondItem="7vF-5o-5Qp" secondAttribute="trailing" constant="20" symbolic="YES" id="YN4-BT-oyB"/>
  1307. <constraint firstItem="7vF-5o-5Qp" firstAttribute="top" secondItem="ZaD-SG-DDR" secondAttribute="top" constant="20" symbolic="YES" id="lcR-A9-hEc"/>
  1308. </constraints>
  1309. </view>
  1310. </subviews>
  1311. <constraints>
  1312. <constraint firstItem="ZaD-SG-DDR" firstAttribute="width" secondItem="eaR-xB-7Us" secondAttribute="width" id="AAj-Rm-ABg"/>
  1313. <constraint firstItem="ZaD-SG-DDR" firstAttribute="top" secondItem="eaR-xB-7Us" secondAttribute="top" id="PmD-k2-yhN"/>
  1314. <constraint firstItem="ZaD-SG-DDR" firstAttribute="height" secondItem="eaR-xB-7Us" secondAttribute="height" priority="250" id="QbG-FJ-pMF"/>
  1315. <constraint firstAttribute="bottom" secondItem="ZaD-SG-DDR" secondAttribute="bottom" id="dIH-tY-Qa1"/>
  1316. <constraint firstAttribute="trailing" secondItem="ZaD-SG-DDR" secondAttribute="trailing" id="eLh-bf-eKO"/>
  1317. <constraint firstItem="ZaD-SG-DDR" firstAttribute="leading" secondItem="eaR-xB-7Us" secondAttribute="leading" id="lBv-J1-GUx"/>
  1318. </constraints>
  1319. <viewLayoutGuide key="contentLayoutGuide" id="ihi-xw-SHQ"/>
  1320. <viewLayoutGuide key="frameLayoutGuide" id="kvF-2S-5QQ"/>
  1321. </scrollView>
  1322. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="c0A-zY-cFP">
  1323. <rect key="frame" x="344" y="666" width="50" height="50"/>
  1324. <color key="backgroundColor" name="orange"/>
  1325. <constraints>
  1326. <constraint firstAttribute="width" constant="50" id="FaV-Bw-tQh"/>
  1327. <constraint firstAttribute="height" constant="50" id="YrV-m7-585"/>
  1328. </constraints>
  1329. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1330. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  1331. <state key="normal" image="filter">
  1332. <preferredSymbolConfiguration key="preferredSymbolConfiguration"/>
  1333. </state>
  1334. <connections>
  1335. <action selector="filterAction:" destination="Hg3-dp-OsB" eventType="touchUpInside" id="Iqy-Y1-EPI"/>
  1336. </connections>
  1337. </button>
  1338. </subviews>
  1339. <viewLayoutGuide key="safeArea" id="vNc-S0-aRP"/>
  1340. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1341. <constraints>
  1342. <constraint firstItem="eaR-xB-7Us" firstAttribute="bottom" secondItem="vNc-S0-aRP" secondAttribute="bottom" id="0ya-dQ-rca"/>
  1343. <constraint firstItem="vNc-S0-aRP" firstAttribute="trailing" secondItem="c0A-zY-cFP" secondAttribute="trailing" constant="20" id="2AR-Rp-vVj"/>
  1344. <constraint firstItem="eaR-xB-7Us" firstAttribute="leading" secondItem="vNc-S0-aRP" secondAttribute="leading" id="CHM-dL-sVO"/>
  1345. <constraint firstItem="XEc-e1-wYO" firstAttribute="top" secondItem="vNc-S0-aRP" secondAttribute="top" id="TKE-lC-boG"/>
  1346. <constraint firstItem="eaR-xB-7Us" firstAttribute="trailing" secondItem="vNc-S0-aRP" secondAttribute="trailing" id="UMr-y0-KHG"/>
  1347. <constraint firstItem="vNc-S0-aRP" firstAttribute="bottom" secondItem="c0A-zY-cFP" secondAttribute="bottom" constant="20" id="gA5-K7-ppH"/>
  1348. <constraint firstItem="XEc-e1-wYO" firstAttribute="trailing" secondItem="vNc-S0-aRP" secondAttribute="trailing" id="pqb-ED-iKE"/>
  1349. <constraint firstItem="XEc-e1-wYO" firstAttribute="leading" secondItem="vNc-S0-aRP" secondAttribute="leading" id="rkE-Gl-CZf"/>
  1350. <constraint firstItem="eaR-xB-7Us" firstAttribute="top" secondItem="XEc-e1-wYO" secondAttribute="bottom" id="ug2-0b-7w8"/>
  1351. </constraints>
  1352. </view>
  1353. <connections>
  1354. <outlet property="contentScrollView" destination="eaR-xB-7Us" id="zrX-uT-3ZL"/>
  1355. <outlet property="customView" destination="MrA-qI-jCB" id="aVu-JP-a06"/>
  1356. <outlet property="filterButton" destination="c0A-zY-cFP" id="wBZ-0m-Bf9"/>
  1357. <outlet property="monthYearLabel" destination="gLl-cL-8l7" id="Waw-cH-Ybf"/>
  1358. <outlet property="monthYearTF" destination="AtI-8b-DdU" id="rVx-cP-cBP"/>
  1359. <outlet property="navigationBar" destination="XEc-e1-wYO" id="Zbg-hg-IKV"/>
  1360. <outlet property="sessionListTableView" destination="emi-OS-Ugu" id="nnb-cu-XBa"/>
  1361. <outlet property="sessionTableHeightConstraint" destination="d5d-x9-eeG" id="w7i-2E-sjF"/>
  1362. </connections>
  1363. </viewController>
  1364. <placeholder placeholderIdentifier="IBFirstResponder" id="SFd-ip-Cwk" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1365. </objects>
  1366. <point key="canvasLocation" x="1631.8840579710147" y="835.59782608695662"/>
  1367. </scene>
  1368. <!--Study Materials View Controller-->
  1369. <scene sceneID="kE5-4E-hie">
  1370. <objects>
  1371. <viewController storyboardIdentifier="StudyMaterialsViewController" id="dYg-Ex-vIP" customClass="StudyMaterialsViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  1372. <view key="view" contentMode="scaleToFill" id="BG5-bh-nCB">
  1373. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  1374. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1375. <subviews>
  1376. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="kMR-pu-BKs">
  1377. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  1378. <color key="barTintColor" name="AccentColor"/>
  1379. <textAttributes key="titleTextAttributes">
  1380. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  1381. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1382. </textAttributes>
  1383. <items>
  1384. <navigationItem title="Study Materials" id="kb4-5c-329">
  1385. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="0pg-lS-P88">
  1386. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1387. <connections>
  1388. <action selector="sideMenuAction:" destination="dYg-Ex-vIP" id="TkZ-8f-oHW"/>
  1389. </connections>
  1390. </barButtonItem>
  1391. </navigationItem>
  1392. </items>
  1393. </navigationBar>
  1394. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Unit -&gt;" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cxK-I3-kSW">
  1395. <rect key="frame" x="20" y="84" width="374" height="24.666666666666671"/>
  1396. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  1397. <color key="textColor" name="AccentColor"/>
  1398. <nil key="highlightedColor"/>
  1399. </label>
  1400. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="RWl-go-0A4">
  1401. <rect key="frame" x="10" y="128.66666666666669" width="394" height="597.33333333333326"/>
  1402. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1403. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="10" minimumInteritemSpacing="10" id="Hiy-qT-ypP">
  1404. <size key="itemSize" width="192" height="220"/>
  1405. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  1406. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  1407. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  1408. </collectionViewFlowLayout>
  1409. <cells>
  1410. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="UnitsCollectionViewCell" id="fck-bW-G0R" customClass="UnitsCollectionViewCell" customModule="LMS" customModuleProvider="target">
  1411. <rect key="frame" x="0.0" y="0.0" width="192" height="220"/>
  1412. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1413. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="rUA-kr-zPv">
  1414. <rect key="frame" x="0.0" y="0.0" width="192" height="220"/>
  1415. <autoresizingMask key="autoresizingMask"/>
  1416. <subviews>
  1417. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="o68-3D-ANw">
  1418. <rect key="frame" x="0.0" y="0.0" width="192" height="220"/>
  1419. <subviews>
  1420. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Subject Name" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cmx-az-WIq">
  1421. <rect key="frame" x="20" y="175" width="152" height="25"/>
  1422. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  1423. <color key="textColor" name="AccentColor"/>
  1424. <nil key="highlightedColor"/>
  1425. </label>
  1426. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="study-material" translatesAutoresizingMaskIntoConstraints="NO" id="BcI-mF-Lgc" customClass="RoundedTopCornersImageView" customModule="LMS" customModuleProvider="target">
  1427. <rect key="frame" x="0.0" y="0.0" width="192" height="167"/>
  1428. <color key="backgroundColor" systemColor="systemGray6Color"/>
  1429. <constraints>
  1430. <constraint firstAttribute="height" constant="167" id="suq-2l-zds"/>
  1431. </constraints>
  1432. </imageView>
  1433. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="W7u-EJ-xW3">
  1434. <rect key="frame" x="162" y="0.0" width="30" height="40"/>
  1435. <subviews>
  1436. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_slno_bannar" translatesAutoresizingMaskIntoConstraints="NO" id="QGj-wj-AHM">
  1437. <rect key="frame" x="0.0" y="0.0" width="30" height="40"/>
  1438. </imageView>
  1439. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="p0b-BM-ype">
  1440. <rect key="frame" x="0.0" y="0.0" width="30" height="40"/>
  1441. <constraints>
  1442. <constraint firstAttribute="height" constant="40" id="PJM-Cl-wA0"/>
  1443. <constraint firstAttribute="width" constant="30" id="WFu-dm-1ld"/>
  1444. </constraints>
  1445. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="15"/>
  1446. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1447. <nil key="highlightedColor"/>
  1448. </label>
  1449. </subviews>
  1450. <constraints>
  1451. <constraint firstAttribute="trailing" secondItem="p0b-BM-ype" secondAttribute="trailing" id="0HA-Ko-Jtk"/>
  1452. <constraint firstItem="QGj-wj-AHM" firstAttribute="top" secondItem="W7u-EJ-xW3" secondAttribute="top" id="338-Os-Ed7"/>
  1453. <constraint firstAttribute="bottom" secondItem="QGj-wj-AHM" secondAttribute="bottom" id="Dsn-OG-6fE"/>
  1454. <constraint firstItem="QGj-wj-AHM" firstAttribute="leading" secondItem="W7u-EJ-xW3" secondAttribute="leading" id="Nor-Gu-ckV"/>
  1455. <constraint firstItem="p0b-BM-ype" firstAttribute="top" secondItem="W7u-EJ-xW3" secondAttribute="top" id="TwG-Uy-5Fh"/>
  1456. <constraint firstItem="p0b-BM-ype" firstAttribute="leading" secondItem="W7u-EJ-xW3" secondAttribute="leading" id="Yx4-k9-ur4"/>
  1457. <constraint firstAttribute="height" constant="40" id="jcC-ZT-YDg"/>
  1458. <constraint firstItem="p0b-BM-ype" firstAttribute="top" secondItem="W7u-EJ-xW3" secondAttribute="top" id="l4Q-Qa-5lW"/>
  1459. <constraint firstAttribute="width" constant="30" id="lY6-cb-akl"/>
  1460. <constraint firstAttribute="trailing" secondItem="QGj-wj-AHM" secondAttribute="trailing" id="myW-v8-y7k"/>
  1461. <constraint firstAttribute="trailing" secondItem="p0b-BM-ype" secondAttribute="trailing" id="qWd-2j-Gkg"/>
  1462. <constraint firstAttribute="bottom" secondItem="p0b-BM-ype" secondAttribute="bottom" id="rDi-Ov-uZz"/>
  1463. </constraints>
  1464. </view>
  1465. </subviews>
  1466. <constraints>
  1467. <constraint firstAttribute="trailing" secondItem="BcI-mF-Lgc" secondAttribute="trailing" id="1KG-XI-oUv"/>
  1468. <constraint firstItem="BcI-mF-Lgc" firstAttribute="top" secondItem="o68-3D-ANw" secondAttribute="top" id="Fwr-zB-3cA"/>
  1469. <constraint firstItem="cmx-az-WIq" firstAttribute="top" secondItem="BcI-mF-Lgc" secondAttribute="bottom" constant="8" symbolic="YES" id="H6w-DQ-cZU"/>
  1470. <constraint firstItem="W7u-EJ-xW3" firstAttribute="top" secondItem="o68-3D-ANw" secondAttribute="top" id="T2Q-TT-Plh"/>
  1471. <constraint firstAttribute="trailing" secondItem="W7u-EJ-xW3" secondAttribute="trailing" id="WTf-It-YZN"/>
  1472. <constraint firstItem="BcI-mF-Lgc" firstAttribute="leading" secondItem="o68-3D-ANw" secondAttribute="leading" id="fKy-O1-pP2"/>
  1473. <constraint firstItem="cmx-az-WIq" firstAttribute="leading" secondItem="o68-3D-ANw" secondAttribute="leading" constant="20" symbolic="YES" id="oX6-3B-MUb"/>
  1474. <constraint firstAttribute="trailing" secondItem="cmx-az-WIq" secondAttribute="trailing" constant="20" symbolic="YES" id="q6y-Jd-1Xr"/>
  1475. <constraint firstAttribute="bottom" secondItem="cmx-az-WIq" secondAttribute="bottom" constant="20" symbolic="YES" id="rHp-13-aXe"/>
  1476. </constraints>
  1477. </view>
  1478. </subviews>
  1479. <constraints>
  1480. <constraint firstItem="o68-3D-ANw" firstAttribute="leading" secondItem="rUA-kr-zPv" secondAttribute="leading" id="LZj-dI-wgW"/>
  1481. <constraint firstItem="o68-3D-ANw" firstAttribute="top" secondItem="rUA-kr-zPv" secondAttribute="top" id="b1j-el-rla"/>
  1482. <constraint firstAttribute="bottom" secondItem="o68-3D-ANw" secondAttribute="bottom" id="irJ-EO-zSY"/>
  1483. <constraint firstAttribute="trailing" secondItem="o68-3D-ANw" secondAttribute="trailing" id="qE1-s9-vxo"/>
  1484. </constraints>
  1485. </collectionViewCellContentView>
  1486. <size key="customSize" width="192" height="220"/>
  1487. <connections>
  1488. <outlet property="customView" destination="o68-3D-ANw" id="VXs-KX-Vgn"/>
  1489. <outlet property="serialNumberLabel" destination="p0b-BM-ype" id="pzY-RX-95d"/>
  1490. <outlet property="subjectImageView" destination="BcI-mF-Lgc" id="0xa-IX-iWq"/>
  1491. <outlet property="subjectNameLabel" destination="cmx-az-WIq" id="KSB-ae-yFy"/>
  1492. </connections>
  1493. </collectionViewCell>
  1494. </cells>
  1495. </collectionView>
  1496. </subviews>
  1497. <viewLayoutGuide key="safeArea" id="2ts-c9-08a"/>
  1498. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1499. <constraints>
  1500. <constraint firstItem="cxK-I3-kSW" firstAttribute="top" secondItem="kMR-pu-BKs" secondAttribute="bottom" constant="20" id="1fp-uA-J2N"/>
  1501. <constraint firstItem="2ts-c9-08a" firstAttribute="trailing" secondItem="RWl-go-0A4" secondAttribute="trailing" constant="10" id="3OI-Z1-8mn"/>
  1502. <constraint firstItem="RWl-go-0A4" firstAttribute="top" secondItem="cxK-I3-kSW" secondAttribute="bottom" constant="20" id="3yr-MN-kIC"/>
  1503. <constraint firstItem="kMR-pu-BKs" firstAttribute="leading" secondItem="2ts-c9-08a" secondAttribute="leading" id="5T6-0N-GjH"/>
  1504. <constraint firstItem="2ts-c9-08a" firstAttribute="trailing" secondItem="cxK-I3-kSW" secondAttribute="trailing" constant="20" id="A9N-av-1AZ"/>
  1505. <constraint firstItem="2ts-c9-08a" firstAttribute="bottom" secondItem="RWl-go-0A4" secondAttribute="bottom" constant="10" id="Cfb-ac-3Y8"/>
  1506. <constraint firstItem="kMR-pu-BKs" firstAttribute="trailing" secondItem="2ts-c9-08a" secondAttribute="trailing" id="DuZ-ni-T6S"/>
  1507. <constraint firstItem="kMR-pu-BKs" firstAttribute="top" secondItem="2ts-c9-08a" secondAttribute="top" id="GQR-6E-NTp"/>
  1508. <constraint firstItem="RWl-go-0A4" firstAttribute="leading" secondItem="2ts-c9-08a" secondAttribute="leading" constant="10" id="odX-6H-ayg"/>
  1509. <constraint firstItem="cxK-I3-kSW" firstAttribute="leading" secondItem="2ts-c9-08a" secondAttribute="leading" constant="20" id="pxH-9p-wI5"/>
  1510. </constraints>
  1511. </view>
  1512. <connections>
  1513. <outlet property="navigationBar" destination="kMR-pu-BKs" id="cxe-7h-8ig"/>
  1514. <outlet property="pageNameLabel" destination="cxK-I3-kSW" id="Gvb-3d-9Fa"/>
  1515. <outlet property="unitsCollectionView" destination="RWl-go-0A4" id="YCq-GI-Z6X"/>
  1516. </connections>
  1517. </viewController>
  1518. <placeholder placeholderIdentifier="IBFirstResponder" id="3h9-QV-SqM" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1519. </objects>
  1520. <point key="canvasLocation" x="2392.753623188406" y="835.59782608695662"/>
  1521. </scene>
  1522. <!--Lesson View Controller-->
  1523. <scene sceneID="Pn2-9C-oSK">
  1524. <objects>
  1525. <viewController storyboardIdentifier="LessonViewController" id="HN7-UW-rfI" customClass="LessonViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  1526. <view key="view" contentMode="scaleToFill" id="2tE-fz-cYW">
  1527. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  1528. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1529. <subviews>
  1530. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="c5Z-u2-N6f">
  1531. <rect key="frame" x="20" y="128.66666666666669" width="374" height="607.33333333333326"/>
  1532. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1533. <prototypes>
  1534. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LessonTableViewCell" rowHeight="70" id="xgV-OB-5zy" customClass="LessonTableViewCell" customModule="LMS" customModuleProvider="target">
  1535. <rect key="frame" x="0.0" y="50" width="374" height="70"/>
  1536. <autoresizingMask key="autoresizingMask"/>
  1537. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="xgV-OB-5zy" id="pPl-ud-099">
  1538. <rect key="frame" x="0.0" y="0.0" width="374" height="70"/>
  1539. <autoresizingMask key="autoresizingMask"/>
  1540. <subviews>
  1541. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="AFC-BH-buj">
  1542. <rect key="frame" x="0.0" y="0.0" width="374" height="62"/>
  1543. <subviews>
  1544. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="L2y-RU-2ir">
  1545. <rect key="frame" x="20" y="0.0" width="354" height="62"/>
  1546. <subviews>
  1547. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Lesson name" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7t7-Lb-pSO">
  1548. <rect key="frame" x="20" y="20" width="314" height="22"/>
  1549. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="17"/>
  1550. <nil key="textColor"/>
  1551. <nil key="highlightedColor"/>
  1552. </label>
  1553. </subviews>
  1554. <color key="backgroundColor" systemColor="systemGray6Color"/>
  1555. <constraints>
  1556. <constraint firstAttribute="bottom" secondItem="7t7-Lb-pSO" secondAttribute="bottom" constant="20" symbolic="YES" id="5Yx-XL-MTi"/>
  1557. <constraint firstAttribute="trailing" secondItem="7t7-Lb-pSO" secondAttribute="trailing" constant="20" symbolic="YES" id="EDX-5q-0s4"/>
  1558. <constraint firstItem="7t7-Lb-pSO" firstAttribute="top" secondItem="L2y-RU-2ir" secondAttribute="top" constant="20" symbolic="YES" id="iq1-zq-7ab"/>
  1559. <constraint firstItem="7t7-Lb-pSO" firstAttribute="leading" secondItem="L2y-RU-2ir" secondAttribute="leading" constant="20" symbolic="YES" id="wMD-6y-AQs"/>
  1560. </constraints>
  1561. </view>
  1562. </subviews>
  1563. <color key="backgroundColor" name="orange"/>
  1564. <constraints>
  1565. <constraint firstItem="L2y-RU-2ir" firstAttribute="leading" secondItem="AFC-BH-buj" secondAttribute="leading" constant="20" id="3Ft-l6-hFC"/>
  1566. <constraint firstAttribute="bottom" secondItem="L2y-RU-2ir" secondAttribute="bottom" id="V7B-Uf-FnY"/>
  1567. <constraint firstItem="L2y-RU-2ir" firstAttribute="top" secondItem="AFC-BH-buj" secondAttribute="top" id="Vik-aL-9J9"/>
  1568. <constraint firstAttribute="trailing" secondItem="L2y-RU-2ir" secondAttribute="trailing" id="cIv-qe-Jv7"/>
  1569. </constraints>
  1570. </view>
  1571. </subviews>
  1572. <constraints>
  1573. <constraint firstItem="AFC-BH-buj" firstAttribute="leading" secondItem="pPl-ud-099" secondAttribute="leading" id="OlC-KB-O0c"/>
  1574. <constraint firstItem="AFC-BH-buj" firstAttribute="top" secondItem="pPl-ud-099" secondAttribute="top" id="WWa-3Q-SDa"/>
  1575. <constraint firstAttribute="trailing" secondItem="AFC-BH-buj" secondAttribute="trailing" id="hVE-gA-k2H"/>
  1576. <constraint firstAttribute="bottom" secondItem="AFC-BH-buj" secondAttribute="bottom" constant="8" id="hqM-c8-2Lx"/>
  1577. </constraints>
  1578. </tableViewCellContentView>
  1579. <connections>
  1580. <outlet property="customCellView" destination="AFC-BH-buj" id="ESp-sp-CGW"/>
  1581. <outlet property="lessonNameLabel" destination="7t7-Lb-pSO" id="OTX-Xx-dVX"/>
  1582. </connections>
  1583. </tableViewCell>
  1584. </prototypes>
  1585. </tableView>
  1586. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hvY-dR-LTe">
  1587. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  1588. <color key="barTintColor" name="AccentColor"/>
  1589. <textAttributes key="titleTextAttributes">
  1590. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  1591. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1592. </textAttributes>
  1593. <items>
  1594. <navigationItem title="Study Materials" id="LIT-hX-0ZO">
  1595. <barButtonItem key="leftBarButtonItem" image="arrow.backward" catalog="system" id="xrj-aI-XwL">
  1596. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1597. <connections>
  1598. <action selector="backAction:" destination="HN7-UW-rfI" id="M9Y-eH-uDz"/>
  1599. </connections>
  1600. </barButtonItem>
  1601. </navigationItem>
  1602. </items>
  1603. </navigationBar>
  1604. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Lesson Name -&gt;" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Gh-gE-5ex">
  1605. <rect key="frame" x="20" y="84" width="374" height="24.666666666666671"/>
  1606. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  1607. <color key="textColor" name="AccentColor"/>
  1608. <nil key="highlightedColor"/>
  1609. </label>
  1610. </subviews>
  1611. <viewLayoutGuide key="safeArea" id="7fQ-e0-4MO"/>
  1612. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1613. <constraints>
  1614. <constraint firstItem="c5Z-u2-N6f" firstAttribute="top" secondItem="5Gh-gE-5ex" secondAttribute="bottom" constant="20" id="2YU-93-geP"/>
  1615. <constraint firstItem="hvY-dR-LTe" firstAttribute="top" secondItem="7fQ-e0-4MO" secondAttribute="top" id="EDB-Jg-9Kb"/>
  1616. <constraint firstItem="c5Z-u2-N6f" firstAttribute="bottom" secondItem="7fQ-e0-4MO" secondAttribute="bottom" id="Lej-U2-zNj"/>
  1617. <constraint firstItem="7fQ-e0-4MO" firstAttribute="trailing" secondItem="hvY-dR-LTe" secondAttribute="trailing" id="Oqm-5I-lfY"/>
  1618. <constraint firstItem="5Gh-gE-5ex" firstAttribute="top" secondItem="hvY-dR-LTe" secondAttribute="bottom" constant="20" id="cpz-u9-H9V"/>
  1619. <constraint firstItem="7fQ-e0-4MO" firstAttribute="trailing" secondItem="5Gh-gE-5ex" secondAttribute="trailing" constant="20" id="fkZ-H2-ic7"/>
  1620. <constraint firstItem="5Gh-gE-5ex" firstAttribute="leading" secondItem="2tE-fz-cYW" secondAttribute="leading" constant="20" id="jK1-y3-b04"/>
  1621. <constraint firstItem="7fQ-e0-4MO" firstAttribute="trailing" secondItem="c5Z-u2-N6f" secondAttribute="trailing" constant="20" id="uY9-CP-j2i"/>
  1622. <constraint firstItem="c5Z-u2-N6f" firstAttribute="leading" secondItem="7fQ-e0-4MO" secondAttribute="leading" constant="20" id="xTE-ik-aYm"/>
  1623. <constraint firstItem="hvY-dR-LTe" firstAttribute="leading" secondItem="2tE-fz-cYW" secondAttribute="leading" id="xTF-ad-ATs"/>
  1624. </constraints>
  1625. </view>
  1626. <connections>
  1627. <outlet property="lessonNameLabel" destination="5Gh-gE-5ex" id="CTg-vF-fTX"/>
  1628. <outlet property="lessonsTableView" destination="c5Z-u2-N6f" id="Rjg-z2-olb"/>
  1629. <outlet property="navigationBar" destination="hvY-dR-LTe" id="0Tx-xV-pOF"/>
  1630. </connections>
  1631. </viewController>
  1632. <placeholder placeholderIdentifier="IBFirstResponder" id="yfF-5I-SXp" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1633. </objects>
  1634. <point key="canvasLocation" x="2424.6376811594205" y="1557.8804347826087"/>
  1635. </scene>
  1636. <!--Instruction View Controller-->
  1637. <scene sceneID="Aum-Xd-o2T">
  1638. <objects>
  1639. <viewController storyboardIdentifier="InstructionViewController" id="7P3-6n-LyI" customClass="InstructionViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  1640. <view key="view" contentMode="scaleToFill" id="WQE-gj-yIr">
  1641. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  1642. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1643. <subviews>
  1644. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="hkJ-UX-Gzv">
  1645. <rect key="frame" x="0.0" y="122.33333333333331" width="414" height="545.66666666666674"/>
  1646. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1647. <prototypes>
  1648. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="InstructionTableViewCell" id="ePQ-GF-fBg" customClass="InstructionTableViewCell" customModule="LMS" customModuleProvider="target">
  1649. <rect key="frame" x="0.0" y="50" width="414" height="41"/>
  1650. <autoresizingMask key="autoresizingMask"/>
  1651. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="ePQ-GF-fBg" id="tyd-RM-NWt">
  1652. <rect key="frame" x="0.0" y="0.0" width="414" height="41"/>
  1653. <autoresizingMask key="autoresizingMask"/>
  1654. <subviews>
  1655. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Nae-0Y-IrM">
  1656. <rect key="frame" x="0.0" y="0.0" width="414" height="41"/>
  1657. <subviews>
  1658. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8Y1-Px-XjU">
  1659. <rect key="frame" x="20" y="10" width="374" height="21"/>
  1660. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="15"/>
  1661. <nil key="textColor"/>
  1662. <nil key="highlightedColor"/>
  1663. </label>
  1664. </subviews>
  1665. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1666. <constraints>
  1667. <constraint firstItem="8Y1-Px-XjU" firstAttribute="leading" secondItem="Nae-0Y-IrM" secondAttribute="leading" constant="20" symbolic="YES" id="FhG-7l-Aak"/>
  1668. <constraint firstAttribute="trailing" secondItem="8Y1-Px-XjU" secondAttribute="trailing" constant="20" symbolic="YES" id="KAp-9h-GLz"/>
  1669. <constraint firstAttribute="bottom" secondItem="8Y1-Px-XjU" secondAttribute="bottom" constant="10" id="MjM-vR-IeT"/>
  1670. <constraint firstItem="8Y1-Px-XjU" firstAttribute="top" secondItem="Nae-0Y-IrM" secondAttribute="top" constant="10" id="hta-zC-hdG"/>
  1671. </constraints>
  1672. </view>
  1673. </subviews>
  1674. <constraints>
  1675. <constraint firstAttribute="bottom" secondItem="Nae-0Y-IrM" secondAttribute="bottom" id="41Y-HC-far"/>
  1676. <constraint firstItem="Nae-0Y-IrM" firstAttribute="leading" secondItem="tyd-RM-NWt" secondAttribute="leading" id="LMy-Gq-zaZ"/>
  1677. <constraint firstAttribute="trailing" secondItem="Nae-0Y-IrM" secondAttribute="trailing" id="SWJ-MA-Zn5"/>
  1678. <constraint firstItem="Nae-0Y-IrM" firstAttribute="top" secondItem="tyd-RM-NWt" secondAttribute="top" id="r9k-7G-cS3"/>
  1679. </constraints>
  1680. </tableViewCellContentView>
  1681. <connections>
  1682. <outlet property="instructionLabel" destination="8Y1-Px-XjU" id="h4m-Am-udi"/>
  1683. </connections>
  1684. </tableViewCell>
  1685. </prototypes>
  1686. </tableView>
  1687. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="KUW-Kj-0e9">
  1688. <rect key="frame" x="20" y="676" width="200" height="40"/>
  1689. <color key="backgroundColor" name="AccentColor"/>
  1690. <constraints>
  1691. <constraint firstAttribute="height" constant="40" id="Egm-TK-q8O"/>
  1692. </constraints>
  1693. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  1694. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  1695. <state key="normal" title="Continue">
  1696. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1697. </state>
  1698. <connections>
  1699. <action selector="continueAction:" destination="7P3-6n-LyI" eventType="touchUpInside" id="BYa-NW-0ac"/>
  1700. </connections>
  1701. </button>
  1702. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="R24-nj-Z3Q">
  1703. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  1704. <color key="barTintColor" name="AccentColor"/>
  1705. <textAttributes key="titleTextAttributes">
  1706. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  1707. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1708. </textAttributes>
  1709. <items>
  1710. <navigationItem title="Exam Instructions" id="hmc-qQ-QNZ">
  1711. <barButtonItem key="leftBarButtonItem" image="arrow.left" catalog="system" id="g5f-lx-eKQ">
  1712. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1713. <connections>
  1714. <action selector="backAction:" destination="7P3-6n-LyI" id="3OB-U1-1AM"/>
  1715. </connections>
  1716. </barButtonItem>
  1717. </navigationItem>
  1718. </items>
  1719. </navigationBar>
  1720. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Instructions For Examination" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Jdl-5o-KF7">
  1721. <rect key="frame" x="20" y="84" width="374" height="30.333333333333329"/>
  1722. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="22"/>
  1723. <color key="textColor" name="AccentColor"/>
  1724. <nil key="highlightedColor"/>
  1725. </label>
  1726. </subviews>
  1727. <viewLayoutGuide key="safeArea" id="NMl-Rm-ZcG"/>
  1728. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1729. <constraints>
  1730. <constraint firstItem="NMl-Rm-ZcG" firstAttribute="trailing" secondItem="hkJ-UX-Gzv" secondAttribute="trailing" id="2eO-nv-8Li"/>
  1731. <constraint firstItem="Jdl-5o-KF7" firstAttribute="leading" secondItem="NMl-Rm-ZcG" secondAttribute="leading" constant="20" id="3j9-na-4g8"/>
  1732. <constraint firstItem="NMl-Rm-ZcG" firstAttribute="trailing" secondItem="Jdl-5o-KF7" secondAttribute="trailing" constant="20" id="AcR-Uc-Jxy"/>
  1733. <constraint firstItem="hkJ-UX-Gzv" firstAttribute="top" secondItem="Jdl-5o-KF7" secondAttribute="bottom" constant="8" symbolic="YES" id="C0y-Pa-Yk4"/>
  1734. <constraint firstItem="KUW-Kj-0e9" firstAttribute="leading" secondItem="NMl-Rm-ZcG" secondAttribute="leading" constant="20" id="IbF-sN-mMj"/>
  1735. <constraint firstItem="KUW-Kj-0e9" firstAttribute="width" secondItem="WQE-gj-yIr" secondAttribute="width" multiplier="0.483092" id="PEm-KM-f3H"/>
  1736. <constraint firstItem="hkJ-UX-Gzv" firstAttribute="leading" secondItem="NMl-Rm-ZcG" secondAttribute="leading" id="dsT-2t-xMs"/>
  1737. <constraint firstItem="NMl-Rm-ZcG" firstAttribute="bottom" secondItem="KUW-Kj-0e9" secondAttribute="bottom" constant="20" id="fOA-Jk-qEP"/>
  1738. <constraint firstItem="R24-nj-Z3Q" firstAttribute="top" secondItem="NMl-Rm-ZcG" secondAttribute="top" id="h4c-Ky-Y8Z"/>
  1739. <constraint firstItem="R24-nj-Z3Q" firstAttribute="leading" secondItem="WQE-gj-yIr" secondAttribute="leading" id="q0q-65-rOh"/>
  1740. <constraint firstItem="NMl-Rm-ZcG" firstAttribute="trailing" secondItem="R24-nj-Z3Q" secondAttribute="trailing" id="rcg-jD-WcZ"/>
  1741. <constraint firstItem="KUW-Kj-0e9" firstAttribute="top" secondItem="hkJ-UX-Gzv" secondAttribute="bottom" constant="8" symbolic="YES" id="uxB-om-Cg1"/>
  1742. <constraint firstItem="Jdl-5o-KF7" firstAttribute="top" secondItem="R24-nj-Z3Q" secondAttribute="bottom" constant="20" id="yhU-J2-3aj"/>
  1743. </constraints>
  1744. </view>
  1745. <connections>
  1746. <outlet property="instructionTableView" destination="hkJ-UX-Gzv" id="j8m-tM-6UG"/>
  1747. </connections>
  1748. </viewController>
  1749. <placeholder placeholderIdentifier="IBFirstResponder" id="GUx-ML-iTt" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1750. </objects>
  1751. <point key="canvasLocation" x="3554" y="1558"/>
  1752. </scene>
  1753. <!--Lesson List View Controller-->
  1754. <scene sceneID="8d0-Em-75w">
  1755. <objects>
  1756. <viewController storyboardIdentifier="LessonListViewController" id="PAB-SN-vG4" customClass="LessonListViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  1757. <view key="view" contentMode="scaleToFill" id="G2w-hG-PSp">
  1758. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  1759. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1760. <subviews>
  1761. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="oHE-dt-RT3">
  1762. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  1763. <color key="barTintColor" name="AccentColor"/>
  1764. <textAttributes key="titleTextAttributes">
  1765. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  1766. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1767. </textAttributes>
  1768. <items>
  1769. <navigationItem title="Study Materials" id="hLG-5h-dOa">
  1770. <barButtonItem key="leftBarButtonItem" image="arrow.backward" catalog="system" id="Iwl-ub-anA">
  1771. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1772. <connections>
  1773. <action selector="backAction:" destination="PAB-SN-vG4" id="XVr-Uk-So0"/>
  1774. </connections>
  1775. </barButtonItem>
  1776. </navigationItem>
  1777. </items>
  1778. </navigationBar>
  1779. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Content Name -&gt;" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="chc-gV-sm3">
  1780. <rect key="frame" x="20" y="84" width="374" height="24.666666666666671"/>
  1781. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  1782. <color key="textColor" name="AccentColor"/>
  1783. <nil key="highlightedColor"/>
  1784. </label>
  1785. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="bl7-6E-YwJ">
  1786. <rect key="frame" x="20" y="128.66666666666669" width="374" height="587.33333333333326"/>
  1787. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1788. <prototypes>
  1789. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContentListTableViewCell" rowHeight="60" id="nID-J7-hzq" customClass="ContentListTableViewCell" customModule="LMS" customModuleProvider="target">
  1790. <rect key="frame" x="0.0" y="50" width="374" height="60"/>
  1791. <autoresizingMask key="autoresizingMask"/>
  1792. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="nID-J7-hzq" id="VOJ-Me-n3G">
  1793. <rect key="frame" x="0.0" y="0.0" width="374" height="60"/>
  1794. <autoresizingMask key="autoresizingMask"/>
  1795. <subviews>
  1796. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7YE-dO-X4v">
  1797. <rect key="frame" x="0.0" y="5" width="374" height="50"/>
  1798. <subviews>
  1799. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Content" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Cc0-xV-ceL">
  1800. <rect key="frame" x="20" y="15" width="296" height="20"/>
  1801. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  1802. <color key="textColor" name="AccentColor"/>
  1803. <nil key="highlightedColor"/>
  1804. </label>
  1805. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="scorn-test" translatesAutoresizingMaskIntoConstraints="NO" id="hNE-C1-03e">
  1806. <rect key="frame" x="324" y="10" width="30" height="30"/>
  1807. <constraints>
  1808. <constraint firstAttribute="height" constant="30" id="27R-K7-anr"/>
  1809. <constraint firstAttribute="width" constant="30" id="nZF-8V-M5I"/>
  1810. </constraints>
  1811. </imageView>
  1812. </subviews>
  1813. <color key="backgroundColor" systemColor="systemGray6Color"/>
  1814. <constraints>
  1815. <constraint firstItem="hNE-C1-03e" firstAttribute="leading" secondItem="Cc0-xV-ceL" secondAttribute="trailing" constant="8" symbolic="YES" id="45J-ua-gJO"/>
  1816. <constraint firstItem="Cc0-xV-ceL" firstAttribute="top" secondItem="7YE-dO-X4v" secondAttribute="top" constant="15" id="G9b-5D-7Jb"/>
  1817. <constraint firstItem="hNE-C1-03e" firstAttribute="top" secondItem="7YE-dO-X4v" secondAttribute="top" constant="10" id="OKb-uJ-wHa"/>
  1818. <constraint firstAttribute="bottom" secondItem="hNE-C1-03e" secondAttribute="bottom" constant="10" id="g8x-PC-OBO"/>
  1819. <constraint firstAttribute="bottom" secondItem="Cc0-xV-ceL" secondAttribute="bottom" constant="15" id="px4-s2-T1w"/>
  1820. <constraint firstAttribute="trailing" secondItem="hNE-C1-03e" secondAttribute="trailing" constant="20" id="wGO-tt-vWI"/>
  1821. <constraint firstItem="Cc0-xV-ceL" firstAttribute="leading" secondItem="7YE-dO-X4v" secondAttribute="leading" constant="20" symbolic="YES" id="yzb-nB-qlI"/>
  1822. </constraints>
  1823. </view>
  1824. </subviews>
  1825. <constraints>
  1826. <constraint firstItem="7YE-dO-X4v" firstAttribute="top" secondItem="VOJ-Me-n3G" secondAttribute="top" constant="5" id="OC6-pL-YI6"/>
  1827. <constraint firstAttribute="bottom" secondItem="7YE-dO-X4v" secondAttribute="bottom" constant="5" id="Yl1-fN-ztP"/>
  1828. <constraint firstItem="7YE-dO-X4v" firstAttribute="leading" secondItem="VOJ-Me-n3G" secondAttribute="leading" id="ctV-kg-65D"/>
  1829. <constraint firstAttribute="trailing" secondItem="7YE-dO-X4v" secondAttribute="trailing" id="h1A-8x-4sl"/>
  1830. </constraints>
  1831. </tableViewCellContentView>
  1832. <connections>
  1833. <outlet property="contentImageView" destination="hNE-C1-03e" id="IzM-mO-DNJ"/>
  1834. <outlet property="contentLabel" destination="Cc0-xV-ceL" id="qVb-15-VZE"/>
  1835. <outlet property="customView" destination="7YE-dO-X4v" id="X8y-yh-Cou"/>
  1836. </connections>
  1837. </tableViewCell>
  1838. </prototypes>
  1839. </tableView>
  1840. </subviews>
  1841. <viewLayoutGuide key="safeArea" id="Hcx-U6-Nas"/>
  1842. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1843. <constraints>
  1844. <constraint firstItem="Hcx-U6-Nas" firstAttribute="trailing" secondItem="chc-gV-sm3" secondAttribute="trailing" constant="20" id="7UT-Ak-aNF"/>
  1845. <constraint firstItem="chc-gV-sm3" firstAttribute="leading" secondItem="Hcx-U6-Nas" secondAttribute="leading" constant="20" id="Fah-e8-a5v"/>
  1846. <constraint firstItem="oHE-dt-RT3" firstAttribute="leading" secondItem="Hcx-U6-Nas" secondAttribute="leading" id="PQ1-CJ-rh4"/>
  1847. <constraint firstItem="Hcx-U6-Nas" firstAttribute="trailing" secondItem="bl7-6E-YwJ" secondAttribute="trailing" constant="20" id="Rlx-af-Hjl"/>
  1848. <constraint firstItem="oHE-dt-RT3" firstAttribute="trailing" secondItem="Hcx-U6-Nas" secondAttribute="trailing" id="kbs-XT-PH9"/>
  1849. <constraint firstItem="chc-gV-sm3" firstAttribute="top" secondItem="oHE-dt-RT3" secondAttribute="bottom" constant="20" id="pg9-Vw-swj"/>
  1850. <constraint firstItem="bl7-6E-YwJ" firstAttribute="top" secondItem="chc-gV-sm3" secondAttribute="bottom" constant="20" id="tDh-PY-VF0"/>
  1851. <constraint firstItem="oHE-dt-RT3" firstAttribute="top" secondItem="Hcx-U6-Nas" secondAttribute="top" id="uPc-9l-2lg"/>
  1852. <constraint firstItem="bl7-6E-YwJ" firstAttribute="leading" secondItem="Hcx-U6-Nas" secondAttribute="leading" constant="20" id="x6V-BJ-qcF"/>
  1853. <constraint firstItem="Hcx-U6-Nas" firstAttribute="bottom" secondItem="bl7-6E-YwJ" secondAttribute="bottom" constant="20" id="zyl-B0-hU0"/>
  1854. </constraints>
  1855. </view>
  1856. <connections>
  1857. <outlet property="contentListTableView" destination="bl7-6E-YwJ" id="UjI-gj-GxN"/>
  1858. <outlet property="contentNameLabel" destination="chc-gV-sm3" id="ZqH-2D-0i8"/>
  1859. <outlet property="navigationBar" destination="oHE-dt-RT3" id="VsZ-O2-ptY"/>
  1860. </connections>
  1861. </viewController>
  1862. <placeholder placeholderIdentifier="IBFirstResponder" id="oVF-Bh-TL0" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  1863. </objects>
  1864. <point key="canvasLocation" x="2424.6376811594205" y="2282.608695652174"/>
  1865. </scene>
  1866. <!--Quiz View Controller-->
  1867. <scene sceneID="jLn-UH-MgK">
  1868. <objects>
  1869. <viewController storyboardIdentifier="QuizViewController" id="JRX-qz-6Fp" customClass="QuizViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  1870. <view key="view" contentMode="scaleToFill" id="sfs-eW-PqE">
  1871. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  1872. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1873. <subviews>
  1874. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vMW-yC-FYt">
  1875. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  1876. <color key="barTintColor" name="AccentColor"/>
  1877. <textAttributes key="titleTextAttributes">
  1878. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  1879. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1880. </textAttributes>
  1881. <items>
  1882. <navigationItem title="Assessment Name" id="7EQ-sg-0ac">
  1883. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="vDZ-ta-HJm">
  1884. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1885. <connections>
  1886. <action selector="backAction:" destination="PAB-SN-vG4" id="Grr-1s-U47"/>
  1887. </connections>
  1888. </barButtonItem>
  1889. </navigationItem>
  1890. </items>
  1891. </navigationBar>
  1892. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Mt5-zc-VXx">
  1893. <rect key="frame" x="0.0" y="64" width="414" height="672"/>
  1894. <subviews>
  1895. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Question No - 0/0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6PK-wt-TD2">
  1896. <rect key="frame" x="20" y="20" width="200" height="40"/>
  1897. <color key="backgroundColor" name="orange"/>
  1898. <constraints>
  1899. <constraint firstAttribute="width" priority="250" constant="200" id="d8W-7t-EAl"/>
  1900. <constraint firstAttribute="height" constant="40" id="kjM-C1-sTq"/>
  1901. </constraints>
  1902. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="18"/>
  1903. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1904. <nil key="highlightedColor"/>
  1905. </label>
  1906. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="isf-YE-2lb">
  1907. <rect key="frame" x="220" y="58" width="174" height="2"/>
  1908. <color key="backgroundColor" name="orange"/>
  1909. <constraints>
  1910. <constraint firstAttribute="height" constant="2" id="iMJ-JY-gtX"/>
  1911. </constraints>
  1912. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1913. <nil key="textColor"/>
  1914. <nil key="highlightedColor"/>
  1915. </label>
  1916. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Question Type : Multiple Select MCQ" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0aV-3h-R9e">
  1917. <rect key="frame" x="20" y="68" width="276" height="22"/>
  1918. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="15"/>
  1919. <nil key="highlightedColor"/>
  1920. </label>
  1921. <stackView opaque="NO" contentMode="scaleToFill" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="3bb-gD-FoJ">
  1922. <rect key="frame" x="304" y="68" width="90" height="22"/>
  1923. <subviews>
  1924. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="stopwatch" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="YYb-er-g9E">
  1925. <rect key="frame" x="0.0" y="-0.66666666666666785" width="22" height="22.333333333333336"/>
  1926. <color key="tintColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1927. <constraints>
  1928. <constraint firstAttribute="width" constant="22" id="BIK-zK-YIQ"/>
  1929. <constraint firstAttribute="height" constant="22" id="hWN-y9-qA7"/>
  1930. </constraints>
  1931. </imageView>
  1932. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="00:00" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1tz-JB-2RQ">
  1933. <rect key="frame" x="30" y="0.0" width="60" height="22"/>
  1934. <constraints>
  1935. <constraint firstAttribute="height" constant="22" id="QJj-og-1TJ"/>
  1936. <constraint firstAttribute="width" constant="60" id="tXQ-HH-udE"/>
  1937. </constraints>
  1938. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  1939. <color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1940. <nil key="highlightedColor"/>
  1941. </label>
  1942. </subviews>
  1943. </stackView>
  1944. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Question" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="b7p-qx-7Qb">
  1945. <rect key="frame" x="20" y="110" width="374" height="30.333333333333343"/>
  1946. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="22"/>
  1947. <color key="textColor" red="0.18431372549019609" green="0.42745098039215684" blue="0.66274509803921566" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1948. <nil key="highlightedColor"/>
  1949. </label>
  1950. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Answer selection instruction" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Oq5-7e-2zg">
  1951. <rect key="frame" x="20" y="148.33333333333334" width="374" height="24.666666666666657"/>
  1952. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  1953. <color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1954. <nil key="highlightedColor"/>
  1955. </label>
  1956. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="yih-j8-uvi">
  1957. <rect key="frame" x="0.0" y="193" width="414" height="399"/>
  1958. <subviews>
  1959. <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Enter your answer" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="azX-vZ-zOq">
  1960. <rect key="frame" x="20" y="20" width="374" height="34"/>
  1961. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="15"/>
  1962. <textInputTraits key="textInputTraits"/>
  1963. </textField>
  1964. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="5H0-Ej-ump">
  1965. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  1966. <subviews>
  1967. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="bg3-PZ-n9V">
  1968. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  1969. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1970. <prototypes>
  1971. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MCQTableViewCell" rowHeight="100" id="YU1-Kz-TH7" customClass="MCQTableViewCell" customModule="LMS" customModuleProvider="target">
  1972. <rect key="frame" x="0.0" y="50" width="414" height="100"/>
  1973. <autoresizingMask key="autoresizingMask"/>
  1974. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="YU1-Kz-TH7" id="QQU-Sr-okZ">
  1975. <rect key="frame" x="0.0" y="0.0" width="414" height="100"/>
  1976. <autoresizingMask key="autoresizingMask"/>
  1977. <subviews>
  1978. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="VXi-9Z-Ggg">
  1979. <rect key="frame" x="0.0" y="0.0" width="414" height="100"/>
  1980. <subviews>
  1981. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jqL-pX-fsa">
  1982. <rect key="frame" x="20" y="37.666666666666664" width="25" height="25"/>
  1983. <constraints>
  1984. <constraint firstAttribute="height" constant="25" id="Ife-wM-2uS"/>
  1985. <constraint firstAttribute="width" constant="25" id="MSk-M8-Fha"/>
  1986. </constraints>
  1987. <color key="tintColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1988. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  1989. <state key="normal" image="square" catalog="system"/>
  1990. </button>
  1991. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Bxu-sb-bjK">
  1992. <rect key="frame" x="53" y="10" width="341" height="80"/>
  1993. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  1994. <nil key="textColor"/>
  1995. <nil key="highlightedColor"/>
  1996. </label>
  1997. </subviews>
  1998. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  1999. <constraints>
  2000. <constraint firstItem="Bxu-sb-bjK" firstAttribute="leading" secondItem="jqL-pX-fsa" secondAttribute="trailing" constant="8" symbolic="YES" id="8fU-vA-6eC"/>
  2001. <constraint firstItem="jqL-pX-fsa" firstAttribute="leading" secondItem="VXi-9Z-Ggg" secondAttribute="leading" constant="20" symbolic="YES" id="A19-Pi-QAi"/>
  2002. <constraint firstItem="Bxu-sb-bjK" firstAttribute="top" secondItem="VXi-9Z-Ggg" secondAttribute="top" constant="10" id="IsK-1w-5Tq"/>
  2003. <constraint firstItem="jqL-pX-fsa" firstAttribute="centerY" secondItem="VXi-9Z-Ggg" secondAttribute="centerY" id="SV3-rY-nIp"/>
  2004. <constraint firstAttribute="trailing" secondItem="Bxu-sb-bjK" secondAttribute="trailing" constant="20" symbolic="YES" id="upa-he-zLf"/>
  2005. <constraint firstAttribute="bottom" secondItem="Bxu-sb-bjK" secondAttribute="bottom" constant="10" id="yk1-M5-YUc"/>
  2006. </constraints>
  2007. </view>
  2008. </subviews>
  2009. <constraints>
  2010. <constraint firstAttribute="bottom" secondItem="VXi-9Z-Ggg" secondAttribute="bottom" id="cbz-f8-ivU"/>
  2011. <constraint firstAttribute="trailing" secondItem="VXi-9Z-Ggg" secondAttribute="trailing" id="fEZ-K1-5HK"/>
  2012. <constraint firstItem="VXi-9Z-Ggg" firstAttribute="top" secondItem="QQU-Sr-okZ" secondAttribute="top" id="wd2-cs-6m8"/>
  2013. <constraint firstItem="VXi-9Z-Ggg" firstAttribute="leading" secondItem="QQU-Sr-okZ" secondAttribute="leading" id="yXV-UR-0Mo"/>
  2014. </constraints>
  2015. </tableViewCellContentView>
  2016. <connections>
  2017. <outlet property="checkButton" destination="jqL-pX-fsa" id="kfr-nM-PAl"/>
  2018. <outlet property="customView" destination="VXi-9Z-Ggg" id="nWG-CV-f8g"/>
  2019. <outlet property="optionLabel" destination="Bxu-sb-bjK" id="HDr-42-X5b"/>
  2020. </connections>
  2021. </tableViewCell>
  2022. </prototypes>
  2023. </tableView>
  2024. </subviews>
  2025. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2026. <constraints>
  2027. <constraint firstAttribute="trailing" secondItem="bg3-PZ-n9V" secondAttribute="trailing" id="MXA-mh-TAV"/>
  2028. <constraint firstItem="bg3-PZ-n9V" firstAttribute="top" secondItem="5H0-Ej-ump" secondAttribute="top" id="owH-VC-SIt"/>
  2029. <constraint firstAttribute="bottom" secondItem="bg3-PZ-n9V" secondAttribute="bottom" id="sfy-Xk-hDS"/>
  2030. <constraint firstItem="bg3-PZ-n9V" firstAttribute="leading" secondItem="5H0-Ej-ump" secondAttribute="leading" id="xsH-lF-1sR"/>
  2031. </constraints>
  2032. </view>
  2033. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7Eq-o5-ad4">
  2034. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  2035. <subviews>
  2036. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="2Ij-tc-qjL">
  2037. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  2038. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2039. <prototypes>
  2040. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="TrueFalseTableViewCell" rowHeight="45" id="y8D-Lq-3mb" customClass="TrueFalseTableViewCell" customModule="LMS" customModuleProvider="target">
  2041. <rect key="frame" x="0.0" y="50" width="414" height="45"/>
  2042. <autoresizingMask key="autoresizingMask"/>
  2043. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="y8D-Lq-3mb" id="dkE-cn-45q">
  2044. <rect key="frame" x="0.0" y="0.0" width="414" height="45"/>
  2045. <autoresizingMask key="autoresizingMask"/>
  2046. <subviews>
  2047. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0B6-su-v0S">
  2048. <rect key="frame" x="0.0" y="0.0" width="414" height="45"/>
  2049. <subviews>
  2050. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="l4q-sM-Vaj">
  2051. <rect key="frame" x="20" y="10" width="25" height="25"/>
  2052. <constraints>
  2053. <constraint firstAttribute="width" constant="25" id="WB6-mz-fev"/>
  2054. <constraint firstAttribute="height" constant="25" id="hyj-TA-RKj"/>
  2055. </constraints>
  2056. <color key="tintColor" systemColor="labelColor"/>
  2057. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2058. <state key="normal" image="circle" catalog="system"/>
  2059. </button>
  2060. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qm8-Wy-dZh">
  2061. <rect key="frame" x="53" y="10" width="341" height="25"/>
  2062. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  2063. <nil key="textColor"/>
  2064. <nil key="highlightedColor"/>
  2065. </label>
  2066. </subviews>
  2067. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2068. <constraints>
  2069. <constraint firstAttribute="bottom" secondItem="qm8-Wy-dZh" secondAttribute="bottom" constant="10" id="0Js-wF-zVf"/>
  2070. <constraint firstItem="qm8-Wy-dZh" firstAttribute="top" secondItem="0B6-su-v0S" secondAttribute="top" constant="10" id="3Ry-Va-32x"/>
  2071. <constraint firstItem="qm8-Wy-dZh" firstAttribute="leading" secondItem="l4q-sM-Vaj" secondAttribute="trailing" constant="8" symbolic="YES" id="4fE-El-Jup"/>
  2072. <constraint firstAttribute="trailing" secondItem="qm8-Wy-dZh" secondAttribute="trailing" constant="20" symbolic="YES" id="Crv-Kc-oTZ"/>
  2073. <constraint firstItem="l4q-sM-Vaj" firstAttribute="top" secondItem="0B6-su-v0S" secondAttribute="top" constant="10" id="IVb-IA-OBS"/>
  2074. <constraint firstAttribute="bottom" secondItem="l4q-sM-Vaj" secondAttribute="bottom" constant="10" id="ZG7-GX-T2B"/>
  2075. <constraint firstItem="l4q-sM-Vaj" firstAttribute="leading" secondItem="0B6-su-v0S" secondAttribute="leading" constant="20" symbolic="YES" id="job-ZG-4RQ"/>
  2076. </constraints>
  2077. </view>
  2078. </subviews>
  2079. <constraints>
  2080. <constraint firstAttribute="bottom" secondItem="0B6-su-v0S" secondAttribute="bottom" id="Mgc-Yd-eke"/>
  2081. <constraint firstItem="0B6-su-v0S" firstAttribute="top" secondItem="dkE-cn-45q" secondAttribute="top" id="jnH-hC-dxK"/>
  2082. <constraint firstAttribute="trailing" secondItem="0B6-su-v0S" secondAttribute="trailing" id="sUJ-R5-mRM"/>
  2083. <constraint firstItem="0B6-su-v0S" firstAttribute="leading" secondItem="dkE-cn-45q" secondAttribute="leading" id="w5o-zG-X7j"/>
  2084. </constraints>
  2085. </tableViewCellContentView>
  2086. <connections>
  2087. <outlet property="customView" destination="0B6-su-v0S" id="CbU-Lg-tUG"/>
  2088. <outlet property="optionLabel" destination="qm8-Wy-dZh" id="Eks-y7-lk2"/>
  2089. <outlet property="selectButton" destination="l4q-sM-Vaj" id="Vkl-ig-q9d"/>
  2090. </connections>
  2091. </tableViewCell>
  2092. </prototypes>
  2093. </tableView>
  2094. </subviews>
  2095. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2096. <constraints>
  2097. <constraint firstItem="2Ij-tc-qjL" firstAttribute="leading" secondItem="7Eq-o5-ad4" secondAttribute="leading" id="L9m-Zq-5vX"/>
  2098. <constraint firstAttribute="trailing" secondItem="2Ij-tc-qjL" secondAttribute="trailing" id="Obp-vz-cRa"/>
  2099. <constraint firstItem="2Ij-tc-qjL" firstAttribute="top" secondItem="7Eq-o5-ad4" secondAttribute="top" id="ojh-V6-RBz"/>
  2100. <constraint firstAttribute="bottom" secondItem="2Ij-tc-qjL" secondAttribute="bottom" id="vdx-7w-kTk"/>
  2101. </constraints>
  2102. </view>
  2103. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="bfu-V6-1cR">
  2104. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  2105. <subviews>
  2106. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="JAr-Bf-BIN">
  2107. <rect key="frame" x="20" y="0.0" width="374" height="399"/>
  2108. <subviews>
  2109. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="UIj-1n-7au">
  2110. <rect key="frame" x="0.0" y="0.0" width="177" height="399"/>
  2111. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2112. <prototypes>
  2113. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DragTableViewCell" rowHeight="50" id="W1b-eb-Dee" customClass="DragTableViewCell" customModule="LMS" customModuleProvider="target">
  2114. <rect key="frame" x="0.0" y="50" width="177" height="50"/>
  2115. <autoresizingMask key="autoresizingMask"/>
  2116. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="W1b-eb-Dee" id="HwT-OB-GPV">
  2117. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  2118. <autoresizingMask key="autoresizingMask"/>
  2119. <subviews>
  2120. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="U0r-nn-PMd">
  2121. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  2122. <subviews>
  2123. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option 1" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5B9-lu-0fd">
  2124. <rect key="frame" x="10" y="10" width="157" height="30"/>
  2125. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  2126. <color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2127. <nil key="highlightedColor"/>
  2128. </label>
  2129. </subviews>
  2130. <color key="backgroundColor" red="0.7803921568627451" green="0.7803921568627451" blue="0.7803921568627451" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2131. <constraints>
  2132. <constraint firstAttribute="trailing" secondItem="5B9-lu-0fd" secondAttribute="trailing" constant="10" id="GhI-9F-ZHO"/>
  2133. <constraint firstAttribute="height" constant="50" id="ZUf-Nu-aDP"/>
  2134. <constraint firstItem="5B9-lu-0fd" firstAttribute="leading" secondItem="U0r-nn-PMd" secondAttribute="leading" constant="10" id="iKi-jr-gzZ"/>
  2135. <constraint firstAttribute="bottom" secondItem="5B9-lu-0fd" secondAttribute="bottom" constant="10" id="tVf-o2-4zm"/>
  2136. <constraint firstItem="5B9-lu-0fd" firstAttribute="top" secondItem="U0r-nn-PMd" secondAttribute="top" constant="10" id="umu-Vm-Uta"/>
  2137. </constraints>
  2138. </view>
  2139. </subviews>
  2140. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2141. <constraints>
  2142. <constraint firstItem="U0r-nn-PMd" firstAttribute="top" secondItem="HwT-OB-GPV" secondAttribute="top" id="7De-tA-fub"/>
  2143. <constraint firstItem="U0r-nn-PMd" firstAttribute="leading" secondItem="HwT-OB-GPV" secondAttribute="leading" id="QJq-3q-FJg"/>
  2144. <constraint firstAttribute="bottom" secondItem="U0r-nn-PMd" secondAttribute="bottom" id="Uoj-q9-Srb"/>
  2145. <constraint firstAttribute="trailing" secondItem="U0r-nn-PMd" secondAttribute="trailing" id="jat-y1-SUN"/>
  2146. </constraints>
  2147. </tableViewCellContentView>
  2148. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2149. <connections>
  2150. <outlet property="optionLabel" destination="5B9-lu-0fd" id="bxH-xT-Qn9"/>
  2151. </connections>
  2152. </tableViewCell>
  2153. </prototypes>
  2154. </tableView>
  2155. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="P4u-em-D73">
  2156. <rect key="frame" x="197" y="0.0" width="177" height="399"/>
  2157. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2158. <prototypes>
  2159. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DragTableViewCell" rowHeight="50" id="hst-c2-aSS" customClass="DragTableViewCell" customModule="LMS" customModuleProvider="target">
  2160. <rect key="frame" x="0.0" y="50" width="177" height="50"/>
  2161. <autoresizingMask key="autoresizingMask"/>
  2162. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="hst-c2-aSS" id="J5s-pX-F7m">
  2163. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  2164. <autoresizingMask key="autoresizingMask"/>
  2165. <subviews>
  2166. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="VV1-BS-aOf">
  2167. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  2168. <subviews>
  2169. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option 2" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="GU7-5K-1Pr">
  2170. <rect key="frame" x="10" y="10" width="157" height="30"/>
  2171. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="16"/>
  2172. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2173. <nil key="highlightedColor"/>
  2174. </label>
  2175. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_drag_white" translatesAutoresizingMaskIntoConstraints="NO" id="y0A-Xo-aIV">
  2176. <rect key="frame" x="142" y="5" width="25" height="40"/>
  2177. <constraints>
  2178. <constraint firstAttribute="height" constant="40" id="xlT-PV-PS1"/>
  2179. <constraint firstAttribute="width" constant="25" id="zXj-qD-yVe"/>
  2180. </constraints>
  2181. </imageView>
  2182. </subviews>
  2183. <color key="backgroundColor" red="0.18431372549019609" green="0.42745098039215684" blue="0.66274509803921566" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2184. <constraints>
  2185. <constraint firstItem="y0A-Xo-aIV" firstAttribute="top" secondItem="VV1-BS-aOf" secondAttribute="top" constant="5" id="HwP-ye-3k0"/>
  2186. <constraint firstAttribute="bottom" secondItem="y0A-Xo-aIV" secondAttribute="bottom" constant="5" id="N9A-Mb-H99"/>
  2187. <constraint firstAttribute="bottom" secondItem="GU7-5K-1Pr" secondAttribute="bottom" constant="10" id="RiO-lQ-Zee"/>
  2188. <constraint firstItem="y0A-Xo-aIV" firstAttribute="trailing" secondItem="GU7-5K-1Pr" secondAttribute="trailing" id="X2m-Qg-7zG"/>
  2189. <constraint firstAttribute="trailing" secondItem="GU7-5K-1Pr" secondAttribute="trailing" constant="10" id="han-r4-Gs3"/>
  2190. <constraint firstItem="GU7-5K-1Pr" firstAttribute="top" secondItem="VV1-BS-aOf" secondAttribute="top" constant="10" id="ieZ-gg-ihB"/>
  2191. <constraint firstAttribute="height" constant="50" id="pe5-HK-SJM"/>
  2192. <constraint firstItem="GU7-5K-1Pr" firstAttribute="leading" secondItem="VV1-BS-aOf" secondAttribute="leading" constant="10" id="qKz-VK-UJR"/>
  2193. </constraints>
  2194. </view>
  2195. </subviews>
  2196. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2197. <constraints>
  2198. <constraint firstItem="VV1-BS-aOf" firstAttribute="top" secondItem="J5s-pX-F7m" secondAttribute="top" id="94Q-Zs-hyb"/>
  2199. <constraint firstAttribute="trailing" secondItem="VV1-BS-aOf" secondAttribute="trailing" id="Cnw-eJ-YBG"/>
  2200. <constraint firstAttribute="bottom" secondItem="VV1-BS-aOf" secondAttribute="bottom" id="FFh-Y1-2TQ"/>
  2201. <constraint firstItem="VV1-BS-aOf" firstAttribute="leading" secondItem="J5s-pX-F7m" secondAttribute="leading" id="jOT-VI-sXQ"/>
  2202. </constraints>
  2203. </tableViewCellContentView>
  2204. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2205. <connections>
  2206. <outlet property="optionLabel" destination="GU7-5K-1Pr" id="SCd-uy-BD3"/>
  2207. </connections>
  2208. </tableViewCell>
  2209. </prototypes>
  2210. </tableView>
  2211. </subviews>
  2212. <constraints>
  2213. <constraint firstItem="P4u-em-D73" firstAttribute="top" secondItem="JAr-Bf-BIN" secondAttribute="top" id="0p4-7Z-CSl"/>
  2214. <constraint firstAttribute="trailing" secondItem="P4u-em-D73" secondAttribute="trailing" id="BNA-KM-utN"/>
  2215. <constraint firstItem="UIj-1n-7au" firstAttribute="top" secondItem="JAr-Bf-BIN" secondAttribute="top" id="IDY-90-lUj"/>
  2216. <constraint firstAttribute="bottom" secondItem="UIj-1n-7au" secondAttribute="bottom" id="ULR-RZ-rwS"/>
  2217. <constraint firstItem="UIj-1n-7au" firstAttribute="leading" secondItem="JAr-Bf-BIN" secondAttribute="leading" id="Wky-07-cVD"/>
  2218. <constraint firstItem="P4u-em-D73" firstAttribute="leading" secondItem="UIj-1n-7au" secondAttribute="trailing" constant="20" id="iBV-1b-B8e"/>
  2219. <constraint firstAttribute="bottom" secondItem="P4u-em-D73" secondAttribute="bottom" id="mhL-lY-cKb"/>
  2220. </constraints>
  2221. </stackView>
  2222. </subviews>
  2223. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2224. <constraints>
  2225. <constraint firstAttribute="trailing" secondItem="JAr-Bf-BIN" secondAttribute="trailing" constant="20" symbolic="YES" id="0T8-8J-SrC"/>
  2226. <constraint firstItem="JAr-Bf-BIN" firstAttribute="top" secondItem="bfu-V6-1cR" secondAttribute="top" id="m3V-77-vUr"/>
  2227. <constraint firstAttribute="bottom" secondItem="JAr-Bf-BIN" secondAttribute="bottom" id="qaS-tp-Ur5"/>
  2228. <constraint firstItem="JAr-Bf-BIN" firstAttribute="leading" secondItem="bfu-V6-1cR" secondAttribute="leading" constant="20" symbolic="YES" id="xy4-rz-9uI"/>
  2229. </constraints>
  2230. </view>
  2231. </subviews>
  2232. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2233. <constraints>
  2234. <constraint firstAttribute="bottom" secondItem="bfu-V6-1cR" secondAttribute="bottom" id="0ak-Kw-FXP"/>
  2235. <constraint firstItem="azX-vZ-zOq" firstAttribute="top" secondItem="yih-j8-uvi" secondAttribute="top" constant="20" symbolic="YES" id="1Mu-N1-QWf"/>
  2236. <constraint firstItem="bfu-V6-1cR" firstAttribute="top" secondItem="yih-j8-uvi" secondAttribute="top" id="5og-op-e3c"/>
  2237. <constraint firstAttribute="trailing" secondItem="azX-vZ-zOq" secondAttribute="trailing" constant="20" symbolic="YES" id="Lhb-Jz-e3g"/>
  2238. <constraint firstAttribute="bottom" secondItem="5H0-Ej-ump" secondAttribute="bottom" id="PGI-37-CIa"/>
  2239. <constraint firstItem="7Eq-o5-ad4" firstAttribute="leading" secondItem="yih-j8-uvi" secondAttribute="leading" id="TXj-gm-sft"/>
  2240. <constraint firstItem="azX-vZ-zOq" firstAttribute="leading" secondItem="yih-j8-uvi" secondAttribute="leading" constant="20" symbolic="YES" id="b1y-7P-HC6"/>
  2241. <constraint firstAttribute="bottom" secondItem="7Eq-o5-ad4" secondAttribute="bottom" id="fZc-mQ-HE8"/>
  2242. <constraint firstItem="bfu-V6-1cR" firstAttribute="leading" secondItem="yih-j8-uvi" secondAttribute="leading" id="ghx-Ak-so2"/>
  2243. <constraint firstItem="7Eq-o5-ad4" firstAttribute="top" secondItem="yih-j8-uvi" secondAttribute="top" id="hQi-yi-uMy"/>
  2244. <constraint firstAttribute="trailing" secondItem="7Eq-o5-ad4" secondAttribute="trailing" id="o9I-4d-c9O"/>
  2245. <constraint firstItem="5H0-Ej-ump" firstAttribute="leading" secondItem="yih-j8-uvi" secondAttribute="leading" id="qhV-Mq-QLW"/>
  2246. <constraint firstItem="5H0-Ej-ump" firstAttribute="top" secondItem="yih-j8-uvi" secondAttribute="top" id="t6D-Fw-gnY"/>
  2247. <constraint firstAttribute="trailing" secondItem="bfu-V6-1cR" secondAttribute="trailing" id="xIE-Sh-mYD"/>
  2248. <constraint firstAttribute="trailing" secondItem="5H0-Ej-ump" secondAttribute="trailing" id="y9r-k6-IOj"/>
  2249. </constraints>
  2250. </view>
  2251. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="muf-s0-kJm">
  2252. <rect key="frame" x="344" y="542" width="50" height="50"/>
  2253. <color key="backgroundColor" name="orange"/>
  2254. <constraints>
  2255. <constraint firstAttribute="height" constant="50" id="AjF-TA-AHi"/>
  2256. <constraint firstAttribute="width" constant="50" id="zog-Z1-8Un"/>
  2257. </constraints>
  2258. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2259. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2260. <state key="normal" image="circle.grid.3x3.fill" catalog="system">
  2261. <preferredSymbolConfiguration key="preferredSymbolConfiguration"/>
  2262. </state>
  2263. <connections>
  2264. <action selector="filterAction:" destination="Hg3-dp-OsB" eventType="touchUpInside" id="Jt4-Ah-cQO"/>
  2265. <action selector="quesNumberAction:" destination="JRX-qz-6Fp" eventType="touchUpInside" id="gmX-lR-qAt"/>
  2266. </connections>
  2267. </button>
  2268. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="AJw-mT-Jhb">
  2269. <rect key="frame" x="20" y="612" width="374" height="40"/>
  2270. <subviews>
  2271. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Dc7-ez-Bta">
  2272. <rect key="frame" x="0.0" y="0.0" width="183" height="40"/>
  2273. <color key="backgroundColor" name="AccentColor"/>
  2274. <constraints>
  2275. <constraint firstAttribute="height" constant="40" id="jaX-vq-iMP"/>
  2276. </constraints>
  2277. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  2278. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2279. <state key="normal" title="Skip">
  2280. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2281. </state>
  2282. <connections>
  2283. <action selector="skipAction:" destination="JRX-qz-6Fp" eventType="touchUpInside" id="VfM-Nj-lnc"/>
  2284. </connections>
  2285. </button>
  2286. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Txy-lS-3cX">
  2287. <rect key="frame" x="191" y="0.0" width="183" height="40"/>
  2288. <color key="backgroundColor" name="AccentColor"/>
  2289. <constraints>
  2290. <constraint firstAttribute="height" constant="40" id="Od5-MK-svs"/>
  2291. </constraints>
  2292. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  2293. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2294. <state key="normal" title="Next">
  2295. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2296. </state>
  2297. <connections>
  2298. <action selector="nextAction:" destination="JRX-qz-6Fp" eventType="touchUpInside" id="h2r-LY-TdS"/>
  2299. </connections>
  2300. </button>
  2301. </subviews>
  2302. </stackView>
  2303. </subviews>
  2304. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2305. <constraints>
  2306. <constraint firstItem="6PK-wt-TD2" firstAttribute="leading" secondItem="Mt5-zc-VXx" secondAttribute="leading" constant="20" symbolic="YES" id="1L3-Zb-AD2"/>
  2307. <constraint firstAttribute="trailing" secondItem="AJw-mT-Jhb" secondAttribute="trailing" constant="20" symbolic="YES" id="5yb-Hr-U9S"/>
  2308. <constraint firstItem="3bb-gD-FoJ" firstAttribute="leading" secondItem="0aV-3h-R9e" secondAttribute="trailing" constant="8" symbolic="YES" id="C3p-gX-n9m"/>
  2309. <constraint firstAttribute="trailing" secondItem="3bb-gD-FoJ" secondAttribute="trailing" constant="20" symbolic="YES" id="CI1-kW-2es"/>
  2310. <constraint firstItem="3bb-gD-FoJ" firstAttribute="trailing" secondItem="Oq5-7e-2zg" secondAttribute="trailing" id="HW7-Ri-kF9"/>
  2311. <constraint firstItem="b7p-qx-7Qb" firstAttribute="leading" secondItem="Mt5-zc-VXx" secondAttribute="leading" constant="20" symbolic="YES" id="I3c-ba-hLz"/>
  2312. <constraint firstItem="b7p-qx-7Qb" firstAttribute="top" secondItem="3bb-gD-FoJ" secondAttribute="bottom" constant="20" id="Ihx-fL-i7t"/>
  2313. <constraint firstItem="0aV-3h-R9e" firstAttribute="centerY" secondItem="3bb-gD-FoJ" secondAttribute="centerY" id="J7M-q2-5HJ"/>
  2314. <constraint firstAttribute="trailing" secondItem="Oq5-7e-2zg" secondAttribute="trailing" constant="20" symbolic="YES" id="MqK-By-f2r"/>
  2315. <constraint firstItem="0aV-3h-R9e" firstAttribute="leading" secondItem="AJw-mT-Jhb" secondAttribute="leading" id="Mu5-Fc-VMb"/>
  2316. <constraint firstItem="0aV-3h-R9e" firstAttribute="leading" secondItem="Oq5-7e-2zg" secondAttribute="leading" id="Owf-Ff-6uQ"/>
  2317. <constraint firstAttribute="trailing" secondItem="yih-j8-uvi" secondAttribute="trailing" id="RI5-1a-g04"/>
  2318. <constraint firstItem="AJw-mT-Jhb" firstAttribute="top" secondItem="yih-j8-uvi" secondAttribute="bottom" constant="20" id="V89-Ya-SP4"/>
  2319. <constraint firstItem="Oq5-7e-2zg" firstAttribute="top" secondItem="b7p-qx-7Qb" secondAttribute="bottom" constant="8" symbolic="YES" id="Vlh-ae-IEi"/>
  2320. <constraint firstItem="AJw-mT-Jhb" firstAttribute="top" secondItem="muf-s0-kJm" secondAttribute="bottom" constant="20" id="Wi6-tm-4dx"/>
  2321. <constraint firstItem="yih-j8-uvi" firstAttribute="leading" secondItem="Mt5-zc-VXx" secondAttribute="leading" id="ZVf-JM-jGm"/>
  2322. <constraint firstItem="0aV-3h-R9e" firstAttribute="top" secondItem="6PK-wt-TD2" secondAttribute="bottom" constant="8" symbolic="YES" id="Zed-Ae-9PW"/>
  2323. <constraint firstAttribute="trailing" secondItem="b7p-qx-7Qb" secondAttribute="trailing" constant="20" symbolic="YES" id="deZ-DL-KMp"/>
  2324. <constraint firstAttribute="bottom" secondItem="AJw-mT-Jhb" secondAttribute="bottom" constant="20" symbolic="YES" id="fCV-Qf-1UE"/>
  2325. <constraint firstItem="yih-j8-uvi" firstAttribute="top" secondItem="Oq5-7e-2zg" secondAttribute="bottom" constant="20" id="fcC-OO-Dpi"/>
  2326. <constraint firstItem="0aV-3h-R9e" firstAttribute="leading" secondItem="Mt5-zc-VXx" secondAttribute="leading" constant="20" symbolic="YES" id="hS7-K7-hQR"/>
  2327. <constraint firstItem="AJw-mT-Jhb" firstAttribute="leading" secondItem="Mt5-zc-VXx" secondAttribute="leading" constant="20" symbolic="YES" id="ieg-Q6-Hbw"/>
  2328. <constraint firstItem="isf-YE-2lb" firstAttribute="top" secondItem="Mt5-zc-VXx" secondAttribute="top" constant="58" id="m3T-38-xlc"/>
  2329. <constraint firstItem="6PK-wt-TD2" firstAttribute="top" secondItem="Mt5-zc-VXx" secondAttribute="top" constant="20" symbolic="YES" id="qCy-Te-i2G"/>
  2330. <constraint firstItem="Oq5-7e-2zg" firstAttribute="leading" secondItem="Mt5-zc-VXx" secondAttribute="leading" constant="20" symbolic="YES" id="swc-m8-lj6"/>
  2331. <constraint firstItem="3bb-gD-FoJ" firstAttribute="top" secondItem="isf-YE-2lb" secondAttribute="bottom" constant="8" symbolic="YES" id="uOi-az-Ix7"/>
  2332. <constraint firstAttribute="trailing" secondItem="isf-YE-2lb" secondAttribute="trailing" constant="20" symbolic="YES" id="wb5-un-1ch"/>
  2333. <constraint firstItem="isf-YE-2lb" firstAttribute="leading" secondItem="6PK-wt-TD2" secondAttribute="trailing" id="xFt-jE-828"/>
  2334. <constraint firstAttribute="trailing" secondItem="muf-s0-kJm" secondAttribute="trailing" constant="20" id="zq4-io-Itf"/>
  2335. </constraints>
  2336. </view>
  2337. <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="BA4-V2-98G">
  2338. <rect key="frame" x="0.0" y="20" width="414" height="716"/>
  2339. <subviews>
  2340. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RwF-qQ-duz">
  2341. <rect key="frame" x="10" y="211.66666666666666" width="394" height="292.66666666666674"/>
  2342. <subviews>
  2343. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Congratulations You Have Submitted Your Exam Successfully!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vvk-62-1pS">
  2344. <rect key="frame" x="20" y="176.33333333333334" width="354" height="38.333333333333343"/>
  2345. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="14"/>
  2346. <nil key="textColor"/>
  2347. <nil key="highlightedColor"/>
  2348. </label>
  2349. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="X4j-XJ-Dgi">
  2350. <rect key="frame" x="105.66666666666669" y="222.66666666666666" width="183" height="39.999999999999972"/>
  2351. <color key="backgroundColor" name="AccentColor"/>
  2352. <constraints>
  2353. <constraint firstAttribute="height" constant="40" id="6qT-Pa-I8e"/>
  2354. </constraints>
  2355. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  2356. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2357. <state key="normal" title="Close">
  2358. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2359. </state>
  2360. <connections>
  2361. <action selector="closeAction:" destination="JRX-qz-6Fp" eventType="touchUpInside" id="0IN-gQ-Kav"/>
  2362. </connections>
  2363. </button>
  2364. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" verticalCompressionResistancePriority="749" image="check-mark" translatesAutoresizingMaskIntoConstraints="NO" id="OxV-LB-LHf">
  2365. <rect key="frame" x="124" y="30.000000000000028" width="146" height="138.33333333333334"/>
  2366. </imageView>
  2367. </subviews>
  2368. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2369. <constraints>
  2370. <constraint firstItem="OxV-LB-LHf" firstAttribute="top" secondItem="RwF-qQ-duz" secondAttribute="top" constant="30" id="3zG-br-KKw"/>
  2371. <constraint firstItem="vvk-62-1pS" firstAttribute="top" secondItem="OxV-LB-LHf" secondAttribute="bottom" constant="8" symbolic="YES" id="54n-NZ-gx9"/>
  2372. <constraint firstAttribute="trailing" secondItem="vvk-62-1pS" secondAttribute="trailing" constant="20" symbolic="YES" id="MrU-GH-pWw"/>
  2373. <constraint firstItem="OxV-LB-LHf" firstAttribute="centerX" secondItem="RwF-qQ-duz" secondAttribute="centerX" id="URc-vf-q6O"/>
  2374. <constraint firstItem="vvk-62-1pS" firstAttribute="leading" secondItem="RwF-qQ-duz" secondAttribute="leading" constant="20" symbolic="YES" id="a4t-eS-zy6"/>
  2375. <constraint firstItem="X4j-XJ-Dgi" firstAttribute="width" secondItem="RwF-qQ-duz" secondAttribute="width" multiplier="0.464467" id="aUF-6L-pGv"/>
  2376. <constraint firstItem="OxV-LB-LHf" firstAttribute="width" secondItem="RwF-qQ-duz" secondAttribute="height" multiplier="1:2" id="ckf-XE-iBl"/>
  2377. <constraint firstItem="X4j-XJ-Dgi" firstAttribute="centerX" secondItem="RwF-qQ-duz" secondAttribute="centerX" id="fzQ-1d-Jf1"/>
  2378. <constraint firstAttribute="bottom" secondItem="X4j-XJ-Dgi" secondAttribute="bottom" constant="30" id="iTz-Eu-ZxK"/>
  2379. <constraint firstItem="X4j-XJ-Dgi" firstAttribute="top" secondItem="vvk-62-1pS" secondAttribute="bottom" constant="8" id="t6f-zU-jTP"/>
  2380. </constraints>
  2381. </view>
  2382. </subviews>
  2383. <color key="backgroundColor" systemColor="secondaryLabelColor"/>
  2384. <constraints>
  2385. <constraint firstItem="RwF-qQ-duz" firstAttribute="centerY" secondItem="BA4-V2-98G" secondAttribute="centerY" id="GsU-kY-Dma"/>
  2386. <constraint firstItem="RwF-qQ-duz" firstAttribute="width" secondItem="BA4-V2-98G" secondAttribute="width" multiplier="0.951691" id="J7q-7A-Da0"/>
  2387. <constraint firstItem="RwF-qQ-duz" firstAttribute="height" secondItem="BA4-V2-98G" secondAttribute="height" multiplier="0.408514" id="Nnl-eO-pgb"/>
  2388. <constraint firstItem="RwF-qQ-duz" firstAttribute="centerX" secondItem="BA4-V2-98G" secondAttribute="centerX" id="khB-oP-OeS"/>
  2389. </constraints>
  2390. </view>
  2391. <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JeF-Z1-LZT">
  2392. <rect key="frame" x="0.0" y="20" width="414" height="716"/>
  2393. <subviews>
  2394. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7jS-Sw-QnU">
  2395. <rect key="frame" x="20" y="239.66666666666669" width="374" height="237"/>
  2396. <subviews>
  2397. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="VIz-kd-vWa">
  2398. <rect key="frame" x="10" y="10" width="30" height="30"/>
  2399. <constraints>
  2400. <constraint firstAttribute="height" constant="30" id="XrJ-iF-QUt"/>
  2401. <constraint firstAttribute="width" constant="30" id="tde-gX-m6b"/>
  2402. </constraints>
  2403. <color key="tintColor" name="orange"/>
  2404. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2405. <state key="normal" image="x.circle" catalog="system"/>
  2406. <connections>
  2407. <action selector="cancelAction:" destination="JRX-qz-6Fp" eventType="touchUpInside" id="Ga4-6v-1DL"/>
  2408. </connections>
  2409. </button>
  2410. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" bounces="NO" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="BJ8-vO-wNO">
  2411. <rect key="frame" x="20" y="48" width="334" height="169"/>
  2412. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2413. <constraints>
  2414. <constraint firstAttribute="height" constant="169" id="QXp-ud-nc8"/>
  2415. </constraints>
  2416. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="10" minimumInteritemSpacing="10" id="4uD-ve-Vj7">
  2417. <size key="itemSize" width="100" height="100"/>
  2418. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  2419. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  2420. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  2421. </collectionViewFlowLayout>
  2422. <cells>
  2423. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="QuestionNumberCollectionViewCell" id="xd5-LM-8e3" customClass="QuestionNumberCollectionViewCell" customModule="LMS" customModuleProvider="target">
  2424. <rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
  2425. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2426. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="m0p-pp-guy">
  2427. <rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
  2428. <autoresizingMask key="autoresizingMask"/>
  2429. <subviews>
  2430. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Rr2-gf-VcD">
  2431. <rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
  2432. <subviews>
  2433. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dqF-Pl-Z4T">
  2434. <rect key="frame" x="20" y="20" width="60" height="60"/>
  2435. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  2436. <nil key="textColor"/>
  2437. <nil key="highlightedColor"/>
  2438. </label>
  2439. </subviews>
  2440. <color key="backgroundColor" systemColor="systemGray5Color"/>
  2441. <constraints>
  2442. <constraint firstAttribute="trailing" secondItem="dqF-Pl-Z4T" secondAttribute="trailing" constant="20" symbolic="YES" id="CwT-mN-JvI"/>
  2443. <constraint firstItem="dqF-Pl-Z4T" firstAttribute="leading" secondItem="Rr2-gf-VcD" secondAttribute="leading" constant="20" symbolic="YES" id="Iic-Xy-zJs"/>
  2444. <constraint firstItem="dqF-Pl-Z4T" firstAttribute="top" secondItem="Rr2-gf-VcD" secondAttribute="top" constant="20" symbolic="YES" id="fPh-xx-rdD"/>
  2445. <constraint firstAttribute="bottom" secondItem="dqF-Pl-Z4T" secondAttribute="bottom" constant="20" symbolic="YES" id="stR-T3-KmQ"/>
  2446. </constraints>
  2447. </view>
  2448. </subviews>
  2449. <constraints>
  2450. <constraint firstAttribute="bottom" secondItem="Rr2-gf-VcD" secondAttribute="bottom" id="Gm8-9n-jbn"/>
  2451. <constraint firstAttribute="trailing" secondItem="Rr2-gf-VcD" secondAttribute="trailing" id="Hcp-ec-bgs"/>
  2452. <constraint firstItem="Rr2-gf-VcD" firstAttribute="top" secondItem="m0p-pp-guy" secondAttribute="top" id="Hh3-ZF-oDz"/>
  2453. <constraint firstItem="Rr2-gf-VcD" firstAttribute="leading" secondItem="m0p-pp-guy" secondAttribute="leading" id="lgg-4a-vD6"/>
  2454. </constraints>
  2455. </collectionViewCellContentView>
  2456. <connections>
  2457. <outlet property="customCellView" destination="Rr2-gf-VcD" id="uDk-4r-YCB"/>
  2458. <outlet property="serialNoLabel" destination="dqF-Pl-Z4T" id="Y3T-Xl-GMl"/>
  2459. </connections>
  2460. </collectionViewCell>
  2461. </cells>
  2462. </collectionView>
  2463. </subviews>
  2464. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2465. <constraints>
  2466. <constraint firstItem="VIz-kd-vWa" firstAttribute="leading" secondItem="7jS-Sw-QnU" secondAttribute="leading" constant="10" id="FqA-YJ-rCq"/>
  2467. <constraint firstItem="BJ8-vO-wNO" firstAttribute="top" secondItem="VIz-kd-vWa" secondAttribute="bottom" constant="8" symbolic="YES" id="J4K-RR-Whd"/>
  2468. <constraint firstItem="BJ8-vO-wNO" firstAttribute="leading" secondItem="7jS-Sw-QnU" secondAttribute="leading" constant="20" id="Jjv-2j-Zxi"/>
  2469. <constraint firstAttribute="bottom" secondItem="BJ8-vO-wNO" secondAttribute="bottom" constant="20" id="e0t-Jp-n86"/>
  2470. <constraint firstItem="VIz-kd-vWa" firstAttribute="top" secondItem="7jS-Sw-QnU" secondAttribute="top" constant="10" id="mMG-cK-dK3"/>
  2471. <constraint firstAttribute="trailing" secondItem="BJ8-vO-wNO" secondAttribute="trailing" constant="20" id="tHi-Xi-uhZ"/>
  2472. </constraints>
  2473. </view>
  2474. </subviews>
  2475. <color key="backgroundColor" systemColor="secondaryLabelColor"/>
  2476. <constraints>
  2477. <constraint firstItem="7jS-Sw-QnU" firstAttribute="centerX" secondItem="JeF-Z1-LZT" secondAttribute="centerX" id="1Nz-FF-Lob"/>
  2478. <constraint firstItem="7jS-Sw-QnU" firstAttribute="height" secondItem="JeF-Z1-LZT" secondAttribute="height" multiplier="0.331006" priority="250" id="IJq-8Y-v5s"/>
  2479. <constraint firstItem="7jS-Sw-QnU" firstAttribute="centerY" secondItem="JeF-Z1-LZT" secondAttribute="centerY" id="Qhv-Hk-uhy"/>
  2480. <constraint firstAttribute="trailing" secondItem="7jS-Sw-QnU" secondAttribute="trailing" constant="20" symbolic="YES" id="nFw-LV-xUx"/>
  2481. <constraint firstItem="7jS-Sw-QnU" firstAttribute="leading" secondItem="JeF-Z1-LZT" secondAttribute="leading" constant="20" symbolic="YES" id="tyI-Pk-TBQ"/>
  2482. </constraints>
  2483. </view>
  2484. </subviews>
  2485. <viewLayoutGuide key="safeArea" id="4bN-Un-cON"/>
  2486. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2487. <constraints>
  2488. <constraint firstItem="Mt5-zc-VXx" firstAttribute="leading" secondItem="4bN-Un-cON" secondAttribute="leading" id="7w3-v3-YBX"/>
  2489. <constraint firstItem="Mt5-zc-VXx" firstAttribute="trailing" secondItem="4bN-Un-cON" secondAttribute="trailing" id="8Pu-Qz-Nhv"/>
  2490. <constraint firstItem="BA4-V2-98G" firstAttribute="top" secondItem="4bN-Un-cON" secondAttribute="top" id="8Sg-Q3-djW"/>
  2491. <constraint firstItem="vMW-yC-FYt" firstAttribute="top" secondItem="4bN-Un-cON" secondAttribute="top" id="8iQ-3J-Ddc"/>
  2492. <constraint firstAttribute="trailing" secondItem="vMW-yC-FYt" secondAttribute="trailing" id="Bde-GN-jXO"/>
  2493. <constraint firstItem="Mt5-zc-VXx" firstAttribute="top" secondItem="vMW-yC-FYt" secondAttribute="bottom" id="Jaq-MA-JQB"/>
  2494. <constraint firstItem="JeF-Z1-LZT" firstAttribute="leading" secondItem="4bN-Un-cON" secondAttribute="leading" id="NPH-qz-Bjv"/>
  2495. <constraint firstItem="BA4-V2-98G" firstAttribute="trailing" secondItem="4bN-Un-cON" secondAttribute="trailing" id="OGb-fa-bBg"/>
  2496. <constraint firstItem="4bN-Un-cON" firstAttribute="bottom" secondItem="JeF-Z1-LZT" secondAttribute="bottom" id="U4L-jz-Qa1"/>
  2497. <constraint firstItem="BA4-V2-98G" firstAttribute="leading" secondItem="4bN-Un-cON" secondAttribute="leading" id="VKu-CK-M2h"/>
  2498. <constraint firstItem="vMW-yC-FYt" firstAttribute="leading" secondItem="4bN-Un-cON" secondAttribute="leading" id="VW3-v2-VTe"/>
  2499. <constraint firstItem="BA4-V2-98G" firstAttribute="bottom" secondItem="4bN-Un-cON" secondAttribute="bottom" id="hJW-HE-PJ5"/>
  2500. <constraint firstItem="Mt5-zc-VXx" firstAttribute="bottom" secondItem="4bN-Un-cON" secondAttribute="bottom" id="rBn-SV-lMf"/>
  2501. <constraint firstItem="JeF-Z1-LZT" firstAttribute="top" secondItem="4bN-Un-cON" secondAttribute="top" id="yoq-8w-TR6"/>
  2502. <constraint firstItem="4bN-Un-cON" firstAttribute="trailing" secondItem="JeF-Z1-LZT" secondAttribute="trailing" id="z8T-A9-dZD"/>
  2503. </constraints>
  2504. </view>
  2505. <connections>
  2506. <outlet property="answerInstructionLabel" destination="Oq5-7e-2zg" id="NRt-bn-FfJ"/>
  2507. <outlet property="answerTF" destination="azX-vZ-zOq" id="Igv-lG-ve4"/>
  2508. <outlet property="boolTableView" destination="2Ij-tc-qjL" id="tc3-Lv-6Br"/>
  2509. <outlet property="checkImageView" destination="OxV-LB-LHf" id="zuz-04-5BA"/>
  2510. <outlet property="collectionViewHeightConstraint" destination="QXp-ud-nc8" id="yio-mY-ake"/>
  2511. <outlet property="customSubmittedView" destination="RwF-qQ-duz" id="k7T-3b-IVT"/>
  2512. <outlet property="dragView" destination="bfu-V6-1cR" id="1tV-lC-ObI"/>
  2513. <outlet property="mcqTableView" destination="bg3-PZ-n9V" id="J7R-EX-016"/>
  2514. <outlet property="mcqView" destination="5H0-Ej-ump" id="LHw-aZ-v3c"/>
  2515. <outlet property="navigationBar" destination="vMW-yC-FYt" id="WxP-RP-Swy"/>
  2516. <outlet property="option1TableView" destination="UIj-1n-7au" id="b5u-cT-QmJ"/>
  2517. <outlet property="option2TableView" destination="P4u-em-D73" id="JEV-xS-AV0"/>
  2518. <outlet property="questionCustomView" destination="7jS-Sw-QnU" id="R7D-R1-j7O"/>
  2519. <outlet property="questionLabel" destination="b7p-qx-7Qb" id="hDs-2b-jSC"/>
  2520. <outlet property="questionNumberCollectionView" destination="BJ8-vO-wNO" id="Hfh-X9-xWM"/>
  2521. <outlet property="questionNumberLabel" destination="6PK-wt-TD2" id="8E0-hk-9Sa"/>
  2522. <outlet property="questionNumberView" destination="JeF-Z1-LZT" id="LFH-KZ-75G"/>
  2523. <outlet property="questionNumbersButton" destination="muf-s0-kJm" id="Y8U-kH-O8h"/>
  2524. <outlet property="questionTypeLabel" destination="0aV-3h-R9e" id="xrm-7Y-9Kg"/>
  2525. <outlet property="quizSubmittedView" destination="BA4-V2-98G" id="l3t-rU-7Dw"/>
  2526. <outlet property="quizView" destination="yih-j8-uvi" id="D1y-G6-QHc"/>
  2527. <outlet property="timerLabel" destination="1tz-JB-2RQ" id="HSM-V5-1Nx"/>
  2528. <outlet property="trueFalseView" destination="7Eq-o5-ad4" id="3r2-ib-2J0"/>
  2529. </connections>
  2530. </viewController>
  2531. <placeholder placeholderIdentifier="IBFirstResponder" id="HUy-YW-u63" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  2532. </objects>
  2533. <point key="canvasLocation" x="3957" y="2283"/>
  2534. </scene>
  2535. <!--Offline Assessment View Controller-->
  2536. <scene sceneID="cZR-ki-0xf">
  2537. <objects>
  2538. <viewController storyboardIdentifier="OfflineAssessmentViewController" id="I9e-39-7Hh" customClass="OfflineAssessmentViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  2539. <view key="view" contentMode="scaleToFill" id="PF7-um-3EZ">
  2540. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  2541. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2542. <subviews>
  2543. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RaZ-KQ-URm">
  2544. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  2545. <color key="barTintColor" name="AccentColor"/>
  2546. <textAttributes key="titleTextAttributes">
  2547. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  2548. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2549. </textAttributes>
  2550. <items>
  2551. <navigationItem title=" Assessment Upload" id="S1w-C9-lVF">
  2552. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="xwR-MV-qMW">
  2553. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2554. <connections>
  2555. <action selector="sideMenuAction:" destination="I9e-39-7Hh" id="fJ0-Si-G5b"/>
  2556. </connections>
  2557. </barButtonItem>
  2558. </navigationItem>
  2559. </items>
  2560. </navigationBar>
  2561. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="xWG-1P-pWi">
  2562. <rect key="frame" x="67" y="104" width="280" height="240"/>
  2563. <subviews>
  2564. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Download Question Paper" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5ft-zU-hlo">
  2565. <rect key="frame" x="20" y="155" width="240" height="60"/>
  2566. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="20"/>
  2567. <color key="textColor" name="AccentColor"/>
  2568. <nil key="highlightedColor"/>
  2569. </label>
  2570. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="icloud.and.arrow.down.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="6wk-u2-AMW">
  2571. <rect key="frame" x="80" y="25.666666666666671" width="120" height="120.33333333333333"/>
  2572. <color key="tintColor" name="AccentColor"/>
  2573. <constraints>
  2574. <constraint firstAttribute="height" constant="120" id="HTn-dB-fxP"/>
  2575. <constraint firstAttribute="width" constant="120" id="Oc1-em-ueb"/>
  2576. </constraints>
  2577. </imageView>
  2578. </subviews>
  2579. <constraints>
  2580. <constraint firstAttribute="bottom" secondItem="5ft-zU-hlo" secondAttribute="bottom" constant="25" id="7Zf-aR-FWB"/>
  2581. <constraint firstItem="5ft-zU-hlo" firstAttribute="leading" secondItem="xWG-1P-pWi" secondAttribute="leading" constant="20" symbolic="YES" id="8Rw-Pl-Jy5"/>
  2582. <constraint firstItem="6wk-u2-AMW" firstAttribute="top" secondItem="xWG-1P-pWi" secondAttribute="top" constant="25" id="FMg-K7-Wy7"/>
  2583. <constraint firstAttribute="width" constant="280" id="HEt-PZ-z8D"/>
  2584. <constraint firstAttribute="height" constant="240" id="IQr-KG-ZKM"/>
  2585. <constraint firstAttribute="trailing" secondItem="5ft-zU-hlo" secondAttribute="trailing" constant="20" symbolic="YES" id="ObI-z5-fcS"/>
  2586. <constraint firstItem="5ft-zU-hlo" firstAttribute="top" secondItem="6wk-u2-AMW" secondAttribute="bottom" constant="10" id="S2B-Dz-8Vf"/>
  2587. <constraint firstItem="6wk-u2-AMW" firstAttribute="centerX" secondItem="xWG-1P-pWi" secondAttribute="centerX" id="gbI-fT-O1z"/>
  2588. </constraints>
  2589. </view>
  2590. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6cf-te-O2e">
  2591. <rect key="frame" x="67" y="456" width="280" height="240"/>
  2592. <subviews>
  2593. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="icloud.and.arrow.up.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="quq-Ho-dUx">
  2594. <rect key="frame" x="80" y="30.666666666666664" width="120" height="119.66666666666669"/>
  2595. <color key="tintColor" name="AccentColor"/>
  2596. <constraints>
  2597. <constraint firstAttribute="height" constant="120" id="Lrb-XF-HFU"/>
  2598. <constraint firstAttribute="width" constant="120" id="YSB-jk-Wvr"/>
  2599. </constraints>
  2600. </imageView>
  2601. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Upload Answer" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EVR-Bg-dO7">
  2602. <rect key="frame" x="20" y="160" width="240" height="55"/>
  2603. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="20"/>
  2604. <color key="textColor" name="AccentColor"/>
  2605. <nil key="highlightedColor"/>
  2606. </label>
  2607. </subviews>
  2608. <constraints>
  2609. <constraint firstItem="quq-Ho-dUx" firstAttribute="centerX" secondItem="6cf-te-O2e" secondAttribute="centerX" id="5x7-fE-W5L"/>
  2610. <constraint firstAttribute="bottom" secondItem="EVR-Bg-dO7" secondAttribute="bottom" constant="25" id="9il-wE-AEs"/>
  2611. <constraint firstAttribute="width" constant="280" id="LFM-wX-HqH"/>
  2612. <constraint firstAttribute="trailing" secondItem="EVR-Bg-dO7" secondAttribute="trailing" constant="20" symbolic="YES" id="MJO-xt-ld7"/>
  2613. <constraint firstItem="EVR-Bg-dO7" firstAttribute="leading" secondItem="6cf-te-O2e" secondAttribute="leading" constant="20" symbolic="YES" id="OKq-Ih-hAH"/>
  2614. <constraint firstAttribute="height" constant="240" id="VtU-8S-31e"/>
  2615. <constraint firstItem="quq-Ho-dUx" firstAttribute="top" secondItem="6cf-te-O2e" secondAttribute="top" constant="30" id="WSk-Cf-lWp"/>
  2616. <constraint firstItem="EVR-Bg-dO7" firstAttribute="top" secondItem="quq-Ho-dUx" secondAttribute="bottom" constant="10" id="rO4-Oz-3QP"/>
  2617. </constraints>
  2618. </view>
  2619. </subviews>
  2620. <viewLayoutGuide key="safeArea" id="vHe-p8-qdC"/>
  2621. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2622. <constraints>
  2623. <constraint firstItem="vHe-p8-qdC" firstAttribute="trailing" secondItem="RaZ-KQ-URm" secondAttribute="trailing" id="82g-Rj-51d"/>
  2624. <constraint firstItem="xWG-1P-pWi" firstAttribute="centerX" secondItem="PF7-um-3EZ" secondAttribute="centerX" id="9yG-Yz-VqJ"/>
  2625. <constraint firstItem="6cf-te-O2e" firstAttribute="centerX" secondItem="PF7-um-3EZ" secondAttribute="centerX" id="QHl-XF-neg"/>
  2626. <constraint firstItem="vHe-p8-qdC" firstAttribute="bottom" secondItem="6cf-te-O2e" secondAttribute="bottom" constant="40" id="XKX-Y4-ivR"/>
  2627. <constraint firstItem="RaZ-KQ-URm" firstAttribute="leading" secondItem="PF7-um-3EZ" secondAttribute="leading" id="nbF-cK-UIv"/>
  2628. <constraint firstItem="RaZ-KQ-URm" firstAttribute="top" secondItem="vHe-p8-qdC" secondAttribute="top" id="qML-Ug-VLF"/>
  2629. <constraint firstItem="6cf-te-O2e" firstAttribute="top" secondItem="xWG-1P-pWi" secondAttribute="bottom" priority="250" constant="132" id="tIG-3N-qmH"/>
  2630. <constraint firstItem="xWG-1P-pWi" firstAttribute="top" secondItem="RaZ-KQ-URm" secondAttribute="bottom" constant="40" id="yPi-1E-Qtt"/>
  2631. </constraints>
  2632. </view>
  2633. <connections>
  2634. <outlet property="downloadImageView" destination="6wk-u2-AMW" id="NUv-CC-aF0"/>
  2635. <outlet property="downloadLabel" destination="5ft-zU-hlo" id="Nyh-Hm-3f8"/>
  2636. <outlet property="downloadView" destination="xWG-1P-pWi" id="u6z-WV-dDP"/>
  2637. <outlet property="uploadImageView" destination="quq-Ho-dUx" id="knO-wg-cpW"/>
  2638. <outlet property="uploadLabel" destination="EVR-Bg-dO7" id="KOU-q9-Zan"/>
  2639. <outlet property="uploadView" destination="6cf-te-O2e" id="FBD-4A-lUa"/>
  2640. </connections>
  2641. </viewController>
  2642. <placeholder placeholderIdentifier="IBFirstResponder" id="qGg-Hu-SzF" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  2643. </objects>
  2644. <point key="canvasLocation" x="4728" y="2283"/>
  2645. </scene>
  2646. <!--Assessment Beneficiary View Controller-->
  2647. <scene sceneID="Zvc-Sa-HMG">
  2648. <objects>
  2649. <viewController storyboardIdentifier="AssessmentBeneficiaryViewController" id="Pze-hb-fV2" customClass="AssessmentBeneficiaryViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  2650. <view key="view" contentMode="scaleToFill" id="ZP1-j8-pxj">
  2651. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  2652. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2653. <subviews>
  2654. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="K6B-On-SsD">
  2655. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  2656. <color key="barTintColor" name="AccentColor"/>
  2657. <textAttributes key="titleTextAttributes">
  2658. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  2659. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2660. </textAttributes>
  2661. <items>
  2662. <navigationItem title="Final Exam" id="c3K-YX-tri">
  2663. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="4GX-7z-xO2">
  2664. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2665. <connections>
  2666. <action selector="sideMenuAction:" destination="Pze-hb-fV2" id="7bs-ap-J5O"/>
  2667. </connections>
  2668. </barButtonItem>
  2669. </navigationItem>
  2670. </items>
  2671. </navigationBar>
  2672. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="4w6-1r-YcE">
  2673. <rect key="frame" x="20" y="84" width="374" height="632"/>
  2674. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2675. <prototypes>
  2676. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="AssessmentListTableViewCell" rowHeight="170" id="LPX-KB-dp0" customClass="AssessmentListTableViewCell" customModule="LMS" customModuleProvider="target">
  2677. <rect key="frame" x="0.0" y="50" width="374" height="170"/>
  2678. <autoresizingMask key="autoresizingMask"/>
  2679. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="LPX-KB-dp0" id="r2E-GU-rhu">
  2680. <rect key="frame" x="0.0" y="0.0" width="374" height="170"/>
  2681. <autoresizingMask key="autoresizingMask"/>
  2682. <subviews>
  2683. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iiO-hV-h0F">
  2684. <rect key="frame" x="0.0" y="5" width="374" height="160"/>
  2685. <subviews>
  2686. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="session_background" translatesAutoresizingMaskIntoConstraints="NO" id="gKa-If-3aI">
  2687. <rect key="frame" x="0.0" y="0.0" width="374" height="70"/>
  2688. <constraints>
  2689. <constraint firstAttribute="height" constant="70" id="euX-cn-ECd"/>
  2690. </constraints>
  2691. </imageView>
  2692. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="b3E-aO-VnX">
  2693. <rect key="frame" x="10" y="9.9999999999999982" width="8.3333333333333357" height="20.333333333333329"/>
  2694. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="14"/>
  2695. <color key="textColor" name="AccentColor"/>
  2696. <nil key="highlightedColor"/>
  2697. </label>
  2698. <stackView opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="3Sd-85-d5P">
  2699. <rect key="frame" x="294" y="9.9999999999999982" width="65" height="20.333333333333329"/>
  2700. <subviews>
  2701. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Online" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="voL-Im-K2h">
  2702. <rect key="frame" x="0.0" y="0.0" width="40.333333333333336" height="20.333333333333332"/>
  2703. <fontDescription key="fontDescription" name="AvenirNext-MediumItalic" family="Avenir Next" pointSize="13"/>
  2704. <color key="textColor" name="AccentColor"/>
  2705. <nil key="highlightedColor"/>
  2706. </label>
  2707. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="circle.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="3jd-eF-0Rf">
  2708. <rect key="frame" x="45.333333333333314" y="0.99999999999999822" width="19.666666666666671" height="19"/>
  2709. <color key="tintColor" red="0.38431372549999998" green="0.64705882349999999" blue="0.26274509800000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2710. </imageView>
  2711. </subviews>
  2712. </stackView>
  2713. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1 Jan" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nSV-Cc-apf">
  2714. <rect key="frame" x="0.0" y="61" width="34" height="20"/>
  2715. <color key="backgroundColor" red="0.90980392160000001" green="0.29803921570000003" blue="0.2470588235" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2716. <constraints>
  2717. <constraint firstAttribute="width" priority="250" constant="60" id="OyW-oR-OPg"/>
  2718. <constraint firstAttribute="height" constant="20" id="RF2-j4-9H0"/>
  2719. </constraints>
  2720. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="14"/>
  2721. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2722. <nil key="highlightedColor"/>
  2723. </label>
  2724. <stackView hidden="YES" opaque="NO" contentMode="scaleToFill" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="L2m-CB-1Su">
  2725. <rect key="frame" x="210.66666666666663" y="80" width="148.33333333333337" height="30"/>
  2726. <subviews>
  2727. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="clock" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="cBD-On-tlR">
  2728. <rect key="frame" x="0.0" y="0.99999999999999822" width="19.666666666666668" height="28.666666666666664"/>
  2729. <color key="tintColor" systemColor="labelColor"/>
  2730. </imageView>
  2731. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="12:00 PM to 01:00 PM" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gad-6e-ctB">
  2732. <rect key="frame" x="24.666666666666693" y="0.0" width="123.66666666666669" height="30"/>
  2733. <fontDescription key="fontDescription" name="AvenirNext-MediumItalic" family="Avenir Next" pointSize="12"/>
  2734. <color key="textColor" name="AccentColor"/>
  2735. <nil key="highlightedColor"/>
  2736. </label>
  2737. </subviews>
  2738. </stackView>
  2739. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DO7-Yr-b4C">
  2740. <rect key="frame" x="259" y="115" width="100" height="30"/>
  2741. <color key="backgroundColor" white="0.66666666669999997" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2742. <constraints>
  2743. <constraint firstAttribute="width" constant="100" id="cQN-7i-RXR"/>
  2744. <constraint firstAttribute="height" constant="30" id="upd-Nx-9lH"/>
  2745. </constraints>
  2746. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="14"/>
  2747. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2748. <state key="normal" title="Submitted">
  2749. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2750. </state>
  2751. </button>
  2752. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Assessment Name" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fPs-lC-WTH">
  2753. <rect key="frame" x="10" y="94" width="241" height="51"/>
  2754. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  2755. <color key="textColor" name="AccentColor"/>
  2756. <nil key="highlightedColor"/>
  2757. </label>
  2758. </subviews>
  2759. <constraints>
  2760. <constraint firstAttribute="trailing" secondItem="L2m-CB-1Su" secondAttribute="trailing" constant="15" id="0xM-pV-Yiw"/>
  2761. <constraint firstItem="DO7-Yr-b4C" firstAttribute="top" secondItem="L2m-CB-1Su" secondAttribute="bottom" constant="5" id="3cZ-Ma-aa1"/>
  2762. <constraint firstItem="gKa-If-3aI" firstAttribute="leading" secondItem="iiO-hV-h0F" secondAttribute="leading" id="3hN-h9-DcH"/>
  2763. <constraint firstItem="3Sd-85-d5P" firstAttribute="top" secondItem="iiO-hV-h0F" secondAttribute="top" constant="10" id="4bB-fM-Sm5"/>
  2764. <constraint firstItem="b3E-aO-VnX" firstAttribute="top" secondItem="iiO-hV-h0F" secondAttribute="top" constant="10" id="5fH-5E-beE"/>
  2765. <constraint firstItem="nSV-Cc-apf" firstAttribute="top" secondItem="b3E-aO-VnX" secondAttribute="bottom" constant="30.670000000000002" id="Eb2-pJ-UIZ"/>
  2766. <constraint firstAttribute="trailing" secondItem="gKa-If-3aI" secondAttribute="trailing" id="G9L-G4-2eB"/>
  2767. <constraint firstItem="fPs-lC-WTH" firstAttribute="top" secondItem="nSV-Cc-apf" secondAttribute="bottom" constant="13" id="KLj-SC-tUy"/>
  2768. <constraint firstItem="DO7-Yr-b4C" firstAttribute="leading" secondItem="fPs-lC-WTH" secondAttribute="trailing" constant="8" symbolic="YES" id="Nde-eW-39n"/>
  2769. <constraint firstItem="b3E-aO-VnX" firstAttribute="leading" secondItem="iiO-hV-h0F" secondAttribute="leading" constant="10" id="RL8-XM-Mja"/>
  2770. <constraint firstItem="gKa-If-3aI" firstAttribute="top" secondItem="iiO-hV-h0F" secondAttribute="top" id="RnH-IT-bgp"/>
  2771. <constraint firstAttribute="bottom" secondItem="fPs-lC-WTH" secondAttribute="bottom" constant="15" id="SK8-gy-4nY"/>
  2772. <constraint firstAttribute="trailing" secondItem="DO7-Yr-b4C" secondAttribute="trailing" constant="15" id="baf-ac-vev"/>
  2773. <constraint firstItem="L2m-CB-1Su" firstAttribute="top" secondItem="gKa-If-3aI" secondAttribute="bottom" constant="10" id="brA-3H-M58"/>
  2774. <constraint firstItem="nSV-Cc-apf" firstAttribute="leading" secondItem="iiO-hV-h0F" secondAttribute="leading" id="fCc-Xj-yyh"/>
  2775. <constraint firstItem="fPs-lC-WTH" firstAttribute="leading" secondItem="iiO-hV-h0F" secondAttribute="leading" constant="10" id="nQu-yz-Bc7"/>
  2776. <constraint firstAttribute="trailing" secondItem="3Sd-85-d5P" secondAttribute="trailing" constant="15" id="v33-Ij-ed6"/>
  2777. <constraint firstAttribute="bottom" secondItem="DO7-Yr-b4C" secondAttribute="bottom" constant="15" id="vPQ-Tn-cI2"/>
  2778. <constraint firstItem="b3E-aO-VnX" firstAttribute="centerY" secondItem="3Sd-85-d5P" secondAttribute="centerY" id="wJe-K6-Wtn"/>
  2779. </constraints>
  2780. </view>
  2781. </subviews>
  2782. <constraints>
  2783. <constraint firstAttribute="bottom" secondItem="iiO-hV-h0F" secondAttribute="bottom" constant="5" id="HTR-Pa-KUQ"/>
  2784. <constraint firstAttribute="trailing" secondItem="iiO-hV-h0F" secondAttribute="trailing" id="ajb-vK-4WL"/>
  2785. <constraint firstItem="iiO-hV-h0F" firstAttribute="top" secondItem="r2E-GU-rhu" secondAttribute="top" constant="5" id="yZt-Zy-n8v"/>
  2786. <constraint firstItem="iiO-hV-h0F" firstAttribute="leading" secondItem="r2E-GU-rhu" secondAttribute="leading" id="zoC-K5-Xnh"/>
  2787. </constraints>
  2788. </tableViewCellContentView>
  2789. <connections>
  2790. <outlet property="activeStatusImageView" destination="3jd-eF-0Rf" id="xNF-Jl-YGQ"/>
  2791. <outlet property="activeStatusLabel" destination="voL-Im-K2h" id="GCh-lL-N9Q"/>
  2792. <outlet property="assessmentNameLabel" destination="fPs-lC-WTH" id="uvd-7j-2AN"/>
  2793. <outlet property="backgroundImageView" destination="gKa-If-3aI" id="DFb-mJ-iey"/>
  2794. <outlet property="customView" destination="iiO-hV-h0F" id="LDy-Ym-2dQ"/>
  2795. <outlet property="dateLabel" destination="nSV-Cc-apf" id="UQf-QM-4LW"/>
  2796. <outlet property="serialNoLabel" destination="b3E-aO-VnX" id="bJi-5p-DcG"/>
  2797. <outlet property="startButton" destination="DO7-Yr-b4C" id="dOh-55-Rfp"/>
  2798. <outlet property="timeLabel" destination="gad-6e-ctB" id="9CY-S5-d6A"/>
  2799. </connections>
  2800. </tableViewCell>
  2801. </prototypes>
  2802. </tableView>
  2803. </subviews>
  2804. <viewLayoutGuide key="safeArea" id="0Xh-EM-SMr"/>
  2805. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2806. <constraints>
  2807. <constraint firstItem="0Xh-EM-SMr" firstAttribute="bottom" secondItem="4w6-1r-YcE" secondAttribute="bottom" constant="20" id="GOq-r3-eQ4"/>
  2808. <constraint firstItem="K6B-On-SsD" firstAttribute="top" secondItem="0Xh-EM-SMr" secondAttribute="top" id="GaQ-P4-q3V"/>
  2809. <constraint firstItem="K6B-On-SsD" firstAttribute="trailing" secondItem="0Xh-EM-SMr" secondAttribute="trailing" id="NLM-3B-atv"/>
  2810. <constraint firstItem="0Xh-EM-SMr" firstAttribute="trailing" secondItem="4w6-1r-YcE" secondAttribute="trailing" constant="20" id="mbZ-6H-Is5"/>
  2811. <constraint firstItem="4w6-1r-YcE" firstAttribute="top" secondItem="K6B-On-SsD" secondAttribute="bottom" constant="20" id="smL-6p-ZBQ"/>
  2812. <constraint firstItem="4w6-1r-YcE" firstAttribute="leading" secondItem="0Xh-EM-SMr" secondAttribute="leading" constant="20" id="uCI-6F-UBS"/>
  2813. <constraint firstItem="K6B-On-SsD" firstAttribute="leading" secondItem="0Xh-EM-SMr" secondAttribute="leading" id="yp0-1Y-nQE"/>
  2814. </constraints>
  2815. </view>
  2816. <connections>
  2817. <outlet property="assessmentListTableView" destination="4w6-1r-YcE" id="1Ac-EV-I1b"/>
  2818. <outlet property="navigationBar" destination="K6B-On-SsD" id="Blo-xK-vdU"/>
  2819. </connections>
  2820. </viewController>
  2821. <placeholder placeholderIdentifier="IBFirstResponder" id="bfa-GB-omZ" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  2822. </objects>
  2823. <point key="canvasLocation" x="3958" y="836"/>
  2824. </scene>
  2825. <!--Pdf Reader View Controller-->
  2826. <scene sceneID="7Ue-4X-prw">
  2827. <objects>
  2828. <viewController storyboardIdentifier="PdfReaderViewController" id="FN5-PA-Xh2" customClass="PdfReaderViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  2829. <view key="view" contentMode="scaleToFill" id="Wy5-JA-uZi">
  2830. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  2831. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2832. <subviews>
  2833. <wkWebView contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CeU-7I-tmk">
  2834. <rect key="frame" x="0.0" y="64" width="414" height="672"/>
  2835. <color key="backgroundColor" red="0.36078431370000003" green="0.38823529410000002" blue="0.4039215686" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2836. <wkWebViewConfiguration key="configuration">
  2837. <audiovisualMediaTypes key="mediaTypesRequiringUserActionForPlayback" none="YES"/>
  2838. <wkPreferences key="preferences"/>
  2839. </wkWebViewConfiguration>
  2840. </wkWebView>
  2841. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NsR-oP-H35">
  2842. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  2843. <color key="barTintColor" name="AccentColor"/>
  2844. <textAttributes key="titleTextAttributes">
  2845. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  2846. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2847. </textAttributes>
  2848. <items>
  2849. <navigationItem title="Topic Name" id="BpO-al-zgL">
  2850. <barButtonItem key="leftBarButtonItem" image="arrow.backward" catalog="system" id="JuC-Q5-ydJ">
  2851. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2852. <connections>
  2853. <action selector="backAction:" destination="FN5-PA-Xh2" id="sXH-53-14W"/>
  2854. </connections>
  2855. </barButtonItem>
  2856. </navigationItem>
  2857. </items>
  2858. </navigationBar>
  2859. </subviews>
  2860. <viewLayoutGuide key="safeArea" id="GGY-Ru-q2v"/>
  2861. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2862. <constraints>
  2863. <constraint firstItem="NsR-oP-H35" firstAttribute="leading" secondItem="GGY-Ru-q2v" secondAttribute="leading" id="AzA-V5-sYG"/>
  2864. <constraint firstItem="CeU-7I-tmk" firstAttribute="top" secondItem="NsR-oP-H35" secondAttribute="bottom" id="Dbk-f0-Gcc"/>
  2865. <constraint firstItem="NsR-oP-H35" firstAttribute="top" secondItem="GGY-Ru-q2v" secondAttribute="top" id="OhO-jT-FYJ"/>
  2866. <constraint firstItem="GGY-Ru-q2v" firstAttribute="bottom" secondItem="CeU-7I-tmk" secondAttribute="bottom" id="TU8-RV-dHp"/>
  2867. <constraint firstItem="GGY-Ru-q2v" firstAttribute="trailing" secondItem="CeU-7I-tmk" secondAttribute="trailing" id="d7V-tC-em7"/>
  2868. <constraint firstItem="CeU-7I-tmk" firstAttribute="leading" secondItem="GGY-Ru-q2v" secondAttribute="leading" id="hKc-hW-QVp"/>
  2869. <constraint firstItem="NsR-oP-H35" firstAttribute="trailing" secondItem="GGY-Ru-q2v" secondAttribute="trailing" id="kqh-Ej-sU5"/>
  2870. </constraints>
  2871. </view>
  2872. <connections>
  2873. <outlet property="navigationBar" destination="NsR-oP-H35" id="DYF-zT-DFY"/>
  2874. <outlet property="webView" destination="CeU-7I-tmk" id="d0b-sF-szb"/>
  2875. </connections>
  2876. </viewController>
  2877. <placeholder placeholderIdentifier="IBFirstResponder" id="MWN-p5-ccv" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  2878. </objects>
  2879. <point key="canvasLocation" x="2425" y="3011"/>
  2880. </scene>
  2881. <!--View Answers View Controller-->
  2882. <scene sceneID="hTO-kz-IsF">
  2883. <objects>
  2884. <viewController storyboardIdentifier="ViewAnswersViewController" id="rqj-DP-qqc" customClass="ViewAnswersViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  2885. <view key="view" contentMode="scaleToFill" id="P5a-vw-8fC">
  2886. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  2887. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2888. <subviews>
  2889. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MFO-yu-6LS">
  2890. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  2891. <color key="barTintColor" name="AccentColor"/>
  2892. <textAttributes key="titleTextAttributes">
  2893. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  2894. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2895. </textAttributes>
  2896. <items>
  2897. <navigationItem title="All Answers View" id="wfA-QB-pgz"/>
  2898. </items>
  2899. </navigationBar>
  2900. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="lar-rh-aEM">
  2901. <rect key="frame" x="20" y="84" width="374" height="572"/>
  2902. <prototypes>
  2903. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ViewAnswerQuestionTableViewCell" rowHeight="60" id="Szb-z9-f66" customClass="ViewAnswerQuestionTableViewCell" customModule="LMS" customModuleProvider="target">
  2904. <rect key="frame" x="0.0" y="50" width="374" height="60"/>
  2905. <autoresizingMask key="autoresizingMask"/>
  2906. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Szb-z9-f66" id="rj3-76-F8w">
  2907. <rect key="frame" x="0.0" y="0.0" width="374" height="60"/>
  2908. <autoresizingMask key="autoresizingMask"/>
  2909. <subviews>
  2910. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="790-x6-8O8">
  2911. <rect key="frame" x="0.0" y="0.0" width="374" height="60"/>
  2912. <subviews>
  2913. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Q. Question" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="bFS-3d-RdB">
  2914. <rect key="frame" x="5" y="5" width="364" height="50"/>
  2915. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  2916. <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2917. <nil key="highlightedColor"/>
  2918. </label>
  2919. </subviews>
  2920. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2921. <constraints>
  2922. <constraint firstAttribute="bottom" secondItem="bFS-3d-RdB" secondAttribute="bottom" constant="5" id="3OK-SN-uVK"/>
  2923. <constraint firstItem="bFS-3d-RdB" firstAttribute="leading" secondItem="790-x6-8O8" secondAttribute="leading" constant="5" id="CwU-bI-IE8"/>
  2924. <constraint firstAttribute="trailing" secondItem="bFS-3d-RdB" secondAttribute="trailing" constant="5" id="MqD-t5-yc6"/>
  2925. <constraint firstItem="bFS-3d-RdB" firstAttribute="top" secondItem="790-x6-8O8" secondAttribute="top" constant="5" id="W3b-wc-lsU"/>
  2926. </constraints>
  2927. </view>
  2928. </subviews>
  2929. <constraints>
  2930. <constraint firstAttribute="bottom" secondItem="790-x6-8O8" secondAttribute="bottom" id="HyJ-ot-COl"/>
  2931. <constraint firstItem="790-x6-8O8" firstAttribute="top" secondItem="rj3-76-F8w" secondAttribute="top" id="JNq-sg-sf0"/>
  2932. <constraint firstItem="790-x6-8O8" firstAttribute="leading" secondItem="rj3-76-F8w" secondAttribute="leading" id="a1V-Il-XI0"/>
  2933. <constraint firstAttribute="trailing" secondItem="790-x6-8O8" secondAttribute="trailing" id="fkZ-bo-f2h"/>
  2934. </constraints>
  2935. </tableViewCellContentView>
  2936. <connections>
  2937. <outlet property="questionLabel" destination="bFS-3d-RdB" id="JSn-xU-Xa7"/>
  2938. </connections>
  2939. </tableViewCell>
  2940. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ViewAnswerOptionsTableViewCell" rowHeight="60" id="K0z-jc-mfU" customClass="ViewAnswerOptionsTableViewCell" customModule="LMS" customModuleProvider="target">
  2941. <rect key="frame" x="0.0" y="110" width="374" height="60"/>
  2942. <autoresizingMask key="autoresizingMask"/>
  2943. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="K0z-jc-mfU" id="XB9-TI-jC7">
  2944. <rect key="frame" x="0.0" y="0.0" width="374" height="60"/>
  2945. <autoresizingMask key="autoresizingMask"/>
  2946. <subviews>
  2947. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2YG-fs-h7q">
  2948. <rect key="frame" x="0.0" y="0.0" width="374" height="60"/>
  2949. <subviews>
  2950. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="circle.fill" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="oDL-0Y-E07">
  2951. <rect key="frame" x="5" y="26" width="10" height="8.6666666666666714"/>
  2952. <color key="tintColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  2953. <constraints>
  2954. <constraint firstAttribute="height" constant="10" id="cSa-P3-IgD"/>
  2955. <constraint firstAttribute="width" constant="10" id="fZB-ab-QUG"/>
  2956. </constraints>
  2957. </imageView>
  2958. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Choice" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="I2J-lB-I9s">
  2959. <rect key="frame" x="23" y="5" width="346" height="50"/>
  2960. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  2961. <nil key="textColor"/>
  2962. <nil key="highlightedColor"/>
  2963. </label>
  2964. </subviews>
  2965. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2966. <constraints>
  2967. <constraint firstItem="I2J-lB-I9s" firstAttribute="leading" secondItem="oDL-0Y-E07" secondAttribute="trailing" constant="8" symbolic="YES" id="0r6-im-V4o"/>
  2968. <constraint firstAttribute="bottom" secondItem="I2J-lB-I9s" secondAttribute="bottom" constant="5" id="2Sw-cZ-4KG"/>
  2969. <constraint firstAttribute="trailing" secondItem="I2J-lB-I9s" secondAttribute="trailing" constant="5" id="6iJ-xu-xgZ"/>
  2970. <constraint firstItem="oDL-0Y-E07" firstAttribute="leading" secondItem="2YG-fs-h7q" secondAttribute="leading" constant="5" id="NgB-A9-dJd"/>
  2971. <constraint firstItem="I2J-lB-I9s" firstAttribute="top" secondItem="2YG-fs-h7q" secondAttribute="top" constant="5" id="PFq-yo-ogt"/>
  2972. <constraint firstItem="oDL-0Y-E07" firstAttribute="centerY" secondItem="2YG-fs-h7q" secondAttribute="centerY" id="xXr-XR-FfP"/>
  2973. </constraints>
  2974. </view>
  2975. </subviews>
  2976. <constraints>
  2977. <constraint firstItem="2YG-fs-h7q" firstAttribute="leading" secondItem="XB9-TI-jC7" secondAttribute="leading" id="BWN-D2-jXE"/>
  2978. <constraint firstAttribute="trailing" secondItem="2YG-fs-h7q" secondAttribute="trailing" id="IHm-az-Wep"/>
  2979. <constraint firstItem="2YG-fs-h7q" firstAttribute="top" secondItem="XB9-TI-jC7" secondAttribute="top" id="irb-Vx-LDc"/>
  2980. <constraint firstAttribute="bottom" secondItem="2YG-fs-h7q" secondAttribute="bottom" id="jpX-WZ-s4m"/>
  2981. </constraints>
  2982. </tableViewCellContentView>
  2983. <connections>
  2984. <outlet property="choiceLabel" destination="I2J-lB-I9s" id="u3Y-M5-w4h"/>
  2985. <outlet property="dotImageView" destination="oDL-0Y-E07" id="VVb-It-wyt"/>
  2986. </connections>
  2987. </tableViewCell>
  2988. </prototypes>
  2989. <sections/>
  2990. </tableView>
  2991. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="K7F-eM-N0g">
  2992. <rect key="frame" x="20" y="676" width="142" height="40"/>
  2993. <color key="backgroundColor" name="AccentColor"/>
  2994. <constraints>
  2995. <constraint firstAttribute="height" constant="40" id="k77-Q9-vxa"/>
  2996. </constraints>
  2997. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  2998. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  2999. <state key="normal" title="Continue">
  3000. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3001. </state>
  3002. <connections>
  3003. <action selector="continueAction:" destination="rqj-DP-qqc" eventType="touchUpInside" id="wQN-2i-Z20"/>
  3004. <action selector="viewResultAction:" destination="5NQ-mJ-DHR" eventType="touchUpInside" id="Xc3-Js-z1T"/>
  3005. </connections>
  3006. </button>
  3007. </subviews>
  3008. <viewLayoutGuide key="safeArea" id="3cm-IZ-a1s"/>
  3009. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3010. <constraints>
  3011. <constraint firstItem="lar-rh-aEM" firstAttribute="top" secondItem="MFO-yu-6LS" secondAttribute="bottom" constant="20" id="Nwk-bt-jUk"/>
  3012. <constraint firstItem="MFO-yu-6LS" firstAttribute="leading" secondItem="P5a-vw-8fC" secondAttribute="leading" id="PRF-IC-JBc"/>
  3013. <constraint firstItem="3cm-IZ-a1s" firstAttribute="bottom" secondItem="K7F-eM-N0g" secondAttribute="bottom" constant="20" id="ZZH-av-YlF"/>
  3014. <constraint firstItem="3cm-IZ-a1s" firstAttribute="trailing" secondItem="lar-rh-aEM" secondAttribute="trailing" constant="20" id="Zut-A5-gvb"/>
  3015. <constraint firstItem="3cm-IZ-a1s" firstAttribute="trailing" secondItem="MFO-yu-6LS" secondAttribute="trailing" id="bpc-VP-IDZ"/>
  3016. <constraint firstItem="lar-rh-aEM" firstAttribute="leading" secondItem="3cm-IZ-a1s" secondAttribute="leading" constant="20" id="c4Z-yK-dRy"/>
  3017. <constraint firstItem="MFO-yu-6LS" firstAttribute="top" secondItem="3cm-IZ-a1s" secondAttribute="top" id="dnu-4i-CnP"/>
  3018. <constraint firstItem="K7F-eM-N0g" firstAttribute="width" secondItem="P5a-vw-8fC" secondAttribute="width" multiplier="0.342995" id="fDR-dO-SXD"/>
  3019. <constraint firstItem="K7F-eM-N0g" firstAttribute="leading" secondItem="3cm-IZ-a1s" secondAttribute="leading" constant="20" id="gIW-m5-m8b"/>
  3020. <constraint firstItem="K7F-eM-N0g" firstAttribute="top" secondItem="lar-rh-aEM" secondAttribute="bottom" constant="20" id="loh-7C-Vut"/>
  3021. </constraints>
  3022. </view>
  3023. <connections>
  3024. <outlet property="answersTableView" destination="lar-rh-aEM" id="CFF-fX-ST5"/>
  3025. <outlet property="continueButton" destination="K7F-eM-N0g" id="SxS-8W-3df"/>
  3026. </connections>
  3027. </viewController>
  3028. <placeholder placeholderIdentifier="IBFirstResponder" id="r2H-on-jd7" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3029. </objects>
  3030. <point key="canvasLocation" x="3186.9565217391305" y="3010.597826086957"/>
  3031. </scene>
  3032. <!--Video View Controller-->
  3033. <scene sceneID="CFT-Ul-gVX">
  3034. <objects>
  3035. <viewController storyboardIdentifier="VideoViewController" id="nff-Mu-tYA" customClass="VideoViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3036. <view key="view" contentMode="scaleToFill" id="LdU-Nu-T32">
  3037. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3038. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3039. <subviews>
  3040. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="go6-PW-S6D">
  3041. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  3042. <color key="barTintColor" name="AccentColor"/>
  3043. <textAttributes key="titleTextAttributes">
  3044. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3045. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3046. </textAttributes>
  3047. <items>
  3048. <navigationItem title="Video Player" id="bQb-bc-9ln">
  3049. <barButtonItem key="leftBarButtonItem" image="arrow.backward" catalog="system" id="88E-z7-hci">
  3050. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3051. <connections>
  3052. <action selector="backAction:" destination="nff-Mu-tYA" id="7Cd-WC-KKb"/>
  3053. </connections>
  3054. </barButtonItem>
  3055. </navigationItem>
  3056. </items>
  3057. </navigationBar>
  3058. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="74t-qF-pCF">
  3059. <rect key="frame" x="20" y="253" width="374" height="230"/>
  3060. </imageView>
  3061. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="pW2-bs-MFI">
  3062. <rect key="frame" x="115.66666666666669" y="503" width="183" height="40"/>
  3063. <color key="backgroundColor" name="AccentColor"/>
  3064. <constraints>
  3065. <constraint firstAttribute="height" constant="40" id="Np8-WJ-KS1"/>
  3066. </constraints>
  3067. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  3068. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3069. <state key="normal" title="Play Video">
  3070. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3071. </state>
  3072. <connections>
  3073. <action selector="playAction:" destination="nff-Mu-tYA" eventType="touchUpInside" id="zfo-oB-nit"/>
  3074. </connections>
  3075. </button>
  3076. </subviews>
  3077. <viewLayoutGuide key="safeArea" id="iLc-gR-f66"/>
  3078. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3079. <constraints>
  3080. <constraint firstItem="pW2-bs-MFI" firstAttribute="width" secondItem="LdU-Nu-T32" secondAttribute="width" multiplier="0.442029" id="5O1-nn-gmm"/>
  3081. <constraint firstItem="go6-PW-S6D" firstAttribute="top" secondItem="iLc-gR-f66" secondAttribute="top" id="GJq-Ko-vfj"/>
  3082. <constraint firstItem="74t-qF-pCF" firstAttribute="centerY" secondItem="LdU-Nu-T32" secondAttribute="centerY" id="HsI-fc-gvO"/>
  3083. <constraint firstItem="74t-qF-pCF" firstAttribute="width" secondItem="LdU-Nu-T32" secondAttribute="width" multiplier="0.903382" id="Mr5-EP-x4v"/>
  3084. <constraint firstItem="go6-PW-S6D" firstAttribute="leading" secondItem="iLc-gR-f66" secondAttribute="leading" id="NKV-Dg-kHD"/>
  3085. <constraint firstItem="pW2-bs-MFI" firstAttribute="top" secondItem="74t-qF-pCF" secondAttribute="bottom" constant="20" id="P4y-4X-UuP"/>
  3086. <constraint firstAttribute="trailing" secondItem="go6-PW-S6D" secondAttribute="trailing" id="TJN-YP-6Jj"/>
  3087. <constraint firstItem="74t-qF-pCF" firstAttribute="height" secondItem="LdU-Nu-T32" secondAttribute="height" multiplier="0.3125" id="dlj-HF-WpW"/>
  3088. <constraint firstItem="74t-qF-pCF" firstAttribute="centerX" secondItem="LdU-Nu-T32" secondAttribute="centerX" id="wew-QE-xVf"/>
  3089. <constraint firstItem="pW2-bs-MFI" firstAttribute="centerX" secondItem="LdU-Nu-T32" secondAttribute="centerX" id="xiy-Vs-m87"/>
  3090. </constraints>
  3091. </view>
  3092. <connections>
  3093. <outlet property="navigationBar" destination="go6-PW-S6D" id="ap2-qe-ghg"/>
  3094. <outlet property="playButton" destination="pW2-bs-MFI" id="pbS-yk-TOu"/>
  3095. <outlet property="thumbnailImageView" destination="74t-qF-pCF" id="fYk-4e-Prh"/>
  3096. </connections>
  3097. </viewController>
  3098. <placeholder placeholderIdentifier="IBFirstResponder" id="Fwm-7B-Yeu" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3099. </objects>
  3100. <point key="canvasLocation" x="2425" y="4496"/>
  3101. </scene>
  3102. <!--Audio View Controller-->
  3103. <scene sceneID="aTT-CH-YzB">
  3104. <objects>
  3105. <viewController storyboardIdentifier="AudioViewController" id="pv4-hi-9eA" customClass="AudioViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3106. <view key="view" contentMode="scaleToFill" id="gLf-Rb-Mxf">
  3107. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3108. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3109. <subviews>
  3110. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YkE-Gc-f95">
  3111. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  3112. <color key="barTintColor" name="AccentColor"/>
  3113. <textAttributes key="titleTextAttributes">
  3114. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3115. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3116. </textAttributes>
  3117. <items>
  3118. <navigationItem title="Audio Player" id="PKQ-e0-nXM">
  3119. <barButtonItem key="leftBarButtonItem" image="arrow.backward" catalog="system" id="ba0-B6-rTt">
  3120. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3121. <connections>
  3122. <action selector="backAction:" destination="pv4-hi-9eA" id="0U2-0q-fbD"/>
  3123. </connections>
  3124. </barButtonItem>
  3125. </navigationItem>
  3126. </items>
  3127. </navigationBar>
  3128. <slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" minValue="0.0" maxValue="0.0" translatesAutoresizingMaskIntoConstraints="NO" id="FJl-C6-wJm">
  3129. <rect key="frame" x="18" y="353" width="378" height="31"/>
  3130. <color key="tintColor" name="AccentColor"/>
  3131. <connections>
  3132. <action selector="progressAction:" destination="pv4-hi-9eA" eventType="valueChanged" id="g5o-EY-czy"/>
  3133. </connections>
  3134. </slider>
  3135. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="qjx-mQ-iay">
  3136. <rect key="frame" x="20" y="308.33333333333331" width="374" height="24.666666666666686"/>
  3137. <subviews>
  3138. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="00:00" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="KRw-UM-ukd">
  3139. <rect key="frame" x="0.0" y="0.0" width="183" height="24.666666666666668"/>
  3140. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  3141. <nil key="textColor"/>
  3142. <nil key="highlightedColor"/>
  3143. </label>
  3144. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="00:00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XKO-BK-NYh">
  3145. <rect key="frame" x="191" y="0.0" width="183" height="24.666666666666668"/>
  3146. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  3147. <nil key="textColor"/>
  3148. <nil key="highlightedColor"/>
  3149. </label>
  3150. </subviews>
  3151. </stackView>
  3152. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="50" translatesAutoresizingMaskIntoConstraints="NO" id="SSN-Ks-Av8">
  3153. <rect key="frame" x="97" y="413" width="220" height="40"/>
  3154. <subviews>
  3155. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Yvb-9O-yYo">
  3156. <rect key="frame" x="0.0" y="0.0" width="40" height="40"/>
  3157. <constraints>
  3158. <constraint firstAttribute="height" constant="40" id="7bY-gh-rn0"/>
  3159. <constraint firstAttribute="width" constant="40" id="KfD-rL-Sra"/>
  3160. </constraints>
  3161. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3162. <state key="normal" image="backward-arrows-couple"/>
  3163. </button>
  3164. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ghy-Ri-ci0">
  3165. <rect key="frame" x="90" y="0.0" width="40" height="40"/>
  3166. <constraints>
  3167. <constraint firstAttribute="height" constant="40" id="9Im-qQ-5pP"/>
  3168. <constraint firstAttribute="width" constant="40" id="itb-RL-YWf"/>
  3169. </constraints>
  3170. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3171. <state key="normal" image="play-button-arrowhead"/>
  3172. <connections>
  3173. <action selector="playAction:" destination="pv4-hi-9eA" eventType="touchUpInside" id="leQ-zS-7ZH"/>
  3174. </connections>
  3175. </button>
  3176. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="f6g-Zl-z8t">
  3177. <rect key="frame" x="180" y="0.0" width="40" height="40"/>
  3178. <constraints>
  3179. <constraint firstAttribute="width" constant="40" id="Mwk-tj-eRy"/>
  3180. <constraint firstAttribute="height" constant="40" id="eb0-cG-xHh"/>
  3181. </constraints>
  3182. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3183. <state key="normal" image="fast-forward"/>
  3184. </button>
  3185. </subviews>
  3186. </stackView>
  3187. </subviews>
  3188. <viewLayoutGuide key="safeArea" id="W4Y-WD-fRz"/>
  3189. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3190. <constraints>
  3191. <constraint firstItem="FJl-C6-wJm" firstAttribute="centerY" secondItem="gLf-Rb-Mxf" secondAttribute="centerY" id="4Jj-MQ-eUP"/>
  3192. <constraint firstItem="SSN-Ks-Av8" firstAttribute="top" secondItem="FJl-C6-wJm" secondAttribute="bottom" constant="30" id="6Sg-U6-WSh"/>
  3193. <constraint firstItem="FJl-C6-wJm" firstAttribute="centerX" secondItem="gLf-Rb-Mxf" secondAttribute="centerX" id="LCU-0k-alz"/>
  3194. <constraint firstItem="FJl-C6-wJm" firstAttribute="top" secondItem="qjx-mQ-iay" secondAttribute="bottom" constant="20" id="Ncv-Re-XVt"/>
  3195. <constraint firstItem="FJl-C6-wJm" firstAttribute="leading" secondItem="W4Y-WD-fRz" secondAttribute="leading" constant="20" id="WjC-27-gDP"/>
  3196. <constraint firstItem="W4Y-WD-fRz" firstAttribute="trailing" secondItem="FJl-C6-wJm" secondAttribute="trailing" constant="20" id="Ym3-ia-ic0"/>
  3197. <constraint firstItem="W4Y-WD-fRz" firstAttribute="trailing" secondItem="qjx-mQ-iay" secondAttribute="trailing" constant="20" id="cSw-ur-4pZ"/>
  3198. <constraint firstItem="qjx-mQ-iay" firstAttribute="leading" secondItem="W4Y-WD-fRz" secondAttribute="leading" constant="20" id="j7c-sP-IUO"/>
  3199. <constraint firstItem="YkE-Gc-f95" firstAttribute="leading" secondItem="gLf-Rb-Mxf" secondAttribute="leading" id="kLn-kd-is6"/>
  3200. <constraint firstItem="SSN-Ks-Av8" firstAttribute="centerX" secondItem="gLf-Rb-Mxf" secondAttribute="centerX" id="ojp-G2-swx"/>
  3201. <constraint firstItem="YkE-Gc-f95" firstAttribute="top" secondItem="W4Y-WD-fRz" secondAttribute="top" id="uZ6-U8-a5Y"/>
  3202. <constraint firstItem="W4Y-WD-fRz" firstAttribute="trailing" secondItem="YkE-Gc-f95" secondAttribute="trailing" id="vqp-2p-vle"/>
  3203. </constraints>
  3204. </view>
  3205. <connections>
  3206. <outlet property="backwardButton" destination="Yvb-9O-yYo" id="J4m-VT-Ccb"/>
  3207. <outlet property="currentTimeLabel" destination="KRw-UM-ukd" id="1eB-L5-DdW"/>
  3208. <outlet property="forwardButton" destination="f6g-Zl-z8t" id="tu4-rg-Ljt"/>
  3209. <outlet property="navigationBar" destination="YkE-Gc-f95" id="AMd-Uf-m9A"/>
  3210. <outlet property="playButton" destination="ghy-Ri-ci0" id="VMh-26-v9R"/>
  3211. <outlet property="progressSlider" destination="FJl-C6-wJm" id="Osq-Mu-m0m"/>
  3212. <outlet property="totalTimeLabel" destination="XKO-BK-NYh" id="juR-Cl-U1i"/>
  3213. </connections>
  3214. </viewController>
  3215. <placeholder placeholderIdentifier="IBFirstResponder" id="cFb-R2-Cb9" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3216. </objects>
  3217. <point key="canvasLocation" x="2425" y="3748"/>
  3218. </scene>
  3219. <!--Side Menu Navigation Controller-->
  3220. <scene sceneID="NvB-00-6qZ">
  3221. <objects>
  3222. <navigationController storyboardIdentifier="SideMenuNavigationController" navigationBarHidden="YES" id="xiJ-Iu-0mz" customClass="SideMenuNavigationController" customModule="SideMenu" sceneMemberID="viewController">
  3223. <navigationBar key="navigationBar" contentMode="scaleToFill" id="SkI-M9-qzu">
  3224. <autoresizingMask key="autoresizingMask"/>
  3225. </navigationBar>
  3226. <userDefinedRuntimeAttributes>
  3227. <userDefinedRuntimeAttribute type="boolean" keyPath="leftSide" value="YES"/>
  3228. <userDefinedRuntimeAttribute type="boolean" keyPath="enableTapToDismissGesture" value="YES"/>
  3229. </userDefinedRuntimeAttributes>
  3230. <connections>
  3231. <segue destination="LNl-ys-EkH" kind="relationship" relationship="rootViewController" id="Nxq-5z-e0V"/>
  3232. </connections>
  3233. </navigationController>
  3234. <placeholder placeholderIdentifier="IBFirstResponder" id="bvk-17-w0H" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3235. </objects>
  3236. <point key="canvasLocation" x="2394" y="98"/>
  3237. </scene>
  3238. <!--Side Menu View Controller-->
  3239. <scene sceneID="bdt-5c-Xwe">
  3240. <objects>
  3241. <viewController storyboardIdentifier="SideMenuViewController" id="LNl-ys-EkH" customClass="SideMenuViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3242. <view key="view" contentMode="scaleToFill" id="Iga-eH-v9H">
  3243. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3244. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3245. <subviews>
  3246. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="cWe-Q1-fNG">
  3247. <rect key="frame" x="0.0" y="20" width="414" height="628"/>
  3248. <color key="backgroundColor" name="AccentColor"/>
  3249. <prototypes>
  3250. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MenuHeaderTableViewCell" rowHeight="100" id="1Yo-I5-fXr" customClass="MenuHeaderTableViewCell" customModule="LMS" customModuleProvider="target">
  3251. <rect key="frame" x="0.0" y="50" width="414" height="100"/>
  3252. <autoresizingMask key="autoresizingMask"/>
  3253. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="1Yo-I5-fXr" id="uCi-Dd-Biq">
  3254. <rect key="frame" x="0.0" y="0.0" width="414" height="100"/>
  3255. <autoresizingMask key="autoresizingMask"/>
  3256. <subviews>
  3257. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sw1-S1-gMO">
  3258. <rect key="frame" x="0.0" y="99" width="414" height="1"/>
  3259. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3260. <constraints>
  3261. <constraint firstAttribute="height" constant="1" id="jsB-f5-yp9"/>
  3262. </constraints>
  3263. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3264. <nil key="textColor"/>
  3265. <nil key="highlightedColor"/>
  3266. </label>
  3267. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillProportionally" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="kbP-0K-QWZ">
  3268. <rect key="frame" x="20" y="51.666666666666664" width="374" height="27.333333333333336"/>
  3269. <subviews>
  3270. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="User Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ext-hz-MnM">
  3271. <rect key="frame" x="0.0" y="0.0" width="342.66666666666669" height="27.333333333333332"/>
  3272. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="20"/>
  3273. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3274. <nil key="highlightedColor"/>
  3275. </label>
  3276. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="0" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XFh-xf-UuL">
  3277. <rect key="frame" x="350.66666666666669" y="0.0" width="23.333333333333314" height="27.333333333333332"/>
  3278. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="16"/>
  3279. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3280. <nil key="highlightedColor"/>
  3281. </label>
  3282. </subviews>
  3283. </stackView>
  3284. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4Dn-54-b3x">
  3285. <rect key="frame" x="10" y="10" width="26" height="26"/>
  3286. <constraints>
  3287. <constraint firstAttribute="width" constant="26" id="5ie-bb-Vur"/>
  3288. <constraint firstAttribute="height" constant="26" id="x3B-xe-3gi"/>
  3289. </constraints>
  3290. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3291. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3292. <state key="normal" image="multiply.circle.fill" catalog="system">
  3293. <preferredSymbolConfiguration key="preferredSymbolConfiguration" scale="large"/>
  3294. </state>
  3295. </button>
  3296. </subviews>
  3297. <constraints>
  3298. <constraint firstItem="Sw1-S1-gMO" firstAttribute="top" secondItem="kbP-0K-QWZ" secondAttribute="bottom" constant="20" id="85w-HE-ZQK"/>
  3299. <constraint firstAttribute="trailing" secondItem="kbP-0K-QWZ" secondAttribute="trailing" constant="20" symbolic="YES" id="AwH-Rb-r8R"/>
  3300. <constraint firstAttribute="bottom" secondItem="Sw1-S1-gMO" secondAttribute="bottom" id="Noc-06-JPc"/>
  3301. <constraint firstItem="Sw1-S1-gMO" firstAttribute="leading" secondItem="uCi-Dd-Biq" secondAttribute="leading" id="aKy-yE-R0T"/>
  3302. <constraint firstItem="kbP-0K-QWZ" firstAttribute="leading" secondItem="uCi-Dd-Biq" secondAttribute="leading" constant="20" symbolic="YES" id="dgc-s3-jg5"/>
  3303. <constraint firstAttribute="trailing" secondItem="Sw1-S1-gMO" secondAttribute="trailing" id="mpM-PQ-Jxs"/>
  3304. <constraint firstItem="4Dn-54-b3x" firstAttribute="leading" secondItem="uCi-Dd-Biq" secondAttribute="leading" constant="10" id="rxX-YH-sFT"/>
  3305. <constraint firstItem="4Dn-54-b3x" firstAttribute="top" secondItem="uCi-Dd-Biq" secondAttribute="top" constant="10" id="thD-77-6wz"/>
  3306. </constraints>
  3307. </tableViewCellContentView>
  3308. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3309. <connections>
  3310. <outlet property="appVersionLabel" destination="XFh-xf-UuL" id="LmX-7r-VoD"/>
  3311. <outlet property="cancelButton" destination="4Dn-54-b3x" id="SiG-Cz-ShJ"/>
  3312. <outlet property="userNameLabel" destination="ext-hz-MnM" id="Wzr-nL-2tr"/>
  3313. </connections>
  3314. </tableViewCell>
  3315. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MenuTableViewCell" rowHeight="64" id="5hb-Zv-PJM" customClass="MenuTableViewCell" customModule="LMS" customModuleProvider="target">
  3316. <rect key="frame" x="0.0" y="150" width="414" height="64"/>
  3317. <autoresizingMask key="autoresizingMask"/>
  3318. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="5hb-Zv-PJM" id="dSb-Iy-S9e">
  3319. <rect key="frame" x="0.0" y="0.0" width="414" height="64"/>
  3320. <autoresizingMask key="autoresizingMask"/>
  3321. <subviews>
  3322. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PHm-di-Zli">
  3323. <rect key="frame" x="0.0" y="0.0" width="414" height="64"/>
  3324. <subviews>
  3325. <stackView opaque="NO" contentMode="scaleToFill" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="6o6-4h-Qek">
  3326. <rect key="frame" x="20" y="20" width="374" height="24"/>
  3327. <subviews>
  3328. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="pencil.and.list.clipboard" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="sef-re-gsF">
  3329. <rect key="frame" x="0.0" y="-1.3333333333333321" width="31.666666666666668" height="26"/>
  3330. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3331. <constraints>
  3332. <constraint firstAttribute="width" constant="30" id="Jug-Hy-mSi"/>
  3333. <constraint firstAttribute="height" constant="30" id="csr-bt-DI5"/>
  3334. </constraints>
  3335. </imageView>
  3336. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Menu Name" textAlignment="natural" lineBreakMode="clip" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="hdI-Sz-wHa">
  3337. <rect key="frame" x="38" y="0.0" width="336" height="24"/>
  3338. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="16"/>
  3339. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3340. <nil key="highlightedColor"/>
  3341. </label>
  3342. </subviews>
  3343. </stackView>
  3344. </subviews>
  3345. <color key="backgroundColor" name="secondary"/>
  3346. <constraints>
  3347. <constraint firstAttribute="bottom" secondItem="6o6-4h-Qek" secondAttribute="bottom" constant="20" symbolic="YES" id="OeP-kP-zxm"/>
  3348. <constraint firstItem="6o6-4h-Qek" firstAttribute="top" secondItem="PHm-di-Zli" secondAttribute="top" constant="20" symbolic="YES" id="QEw-Xz-pWp"/>
  3349. <constraint firstAttribute="trailing" secondItem="6o6-4h-Qek" secondAttribute="trailing" constant="20" symbolic="YES" id="Wzf-JU-nNl"/>
  3350. <constraint firstItem="6o6-4h-Qek" firstAttribute="leading" secondItem="PHm-di-Zli" secondAttribute="leading" constant="20" symbolic="YES" id="kpQ-42-2Bw"/>
  3351. </constraints>
  3352. </view>
  3353. </subviews>
  3354. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3355. <constraints>
  3356. <constraint firstAttribute="trailing" secondItem="PHm-di-Zli" secondAttribute="trailing" id="BKU-KS-eAp"/>
  3357. <constraint firstItem="PHm-di-Zli" firstAttribute="leading" secondItem="dSb-Iy-S9e" secondAttribute="leading" id="Ee3-gg-K3R"/>
  3358. <constraint firstAttribute="bottom" secondItem="PHm-di-Zli" secondAttribute="bottom" id="aIt-O1-yQJ"/>
  3359. <constraint firstItem="PHm-di-Zli" firstAttribute="top" secondItem="dSb-Iy-S9e" secondAttribute="top" id="qrX-iq-0GE"/>
  3360. </constraints>
  3361. </tableViewCellContentView>
  3362. <color key="backgroundColor" name="AccentColor"/>
  3363. <connections>
  3364. <outlet property="customView" destination="PHm-di-Zli" id="PW5-m2-UTv"/>
  3365. <outlet property="menuIconImageView" destination="sef-re-gsF" id="qVE-ER-QiS"/>
  3366. <outlet property="menuNameLabel" destination="hdI-Sz-wHa" id="L1J-ea-V8a"/>
  3367. </connections>
  3368. </tableViewCell>
  3369. </prototypes>
  3370. </tableView>
  3371. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MDY-Yd-cIi">
  3372. <rect key="frame" x="20" y="656" width="374" height="50"/>
  3373. <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3374. <constraints>
  3375. <constraint firstAttribute="height" constant="50" id="ITp-az-xfz"/>
  3376. </constraints>
  3377. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="20"/>
  3378. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3379. <state key="normal" title="Logout">
  3380. <color key="titleColor" name="AccentColor"/>
  3381. </state>
  3382. <connections>
  3383. <action selector="logoutAction:" destination="LNl-ys-EkH" eventType="touchUpInside" id="XhZ-rx-M7D"/>
  3384. </connections>
  3385. </button>
  3386. </subviews>
  3387. <viewLayoutGuide key="safeArea" id="Wfe-vS-0GL"/>
  3388. <color key="backgroundColor" name="AccentColor"/>
  3389. <constraints>
  3390. <constraint firstItem="cWe-Q1-fNG" firstAttribute="leading" secondItem="Wfe-vS-0GL" secondAttribute="leading" id="3Zh-yN-ShK"/>
  3391. <constraint firstItem="MDY-Yd-cIi" firstAttribute="top" secondItem="cWe-Q1-fNG" secondAttribute="bottom" constant="8" symbolic="YES" id="An7-X7-y98"/>
  3392. <constraint firstItem="Wfe-vS-0GL" firstAttribute="trailing" secondItem="MDY-Yd-cIi" secondAttribute="trailing" constant="20" id="M7M-As-JCQ"/>
  3393. <constraint firstItem="cWe-Q1-fNG" firstAttribute="top" secondItem="Wfe-vS-0GL" secondAttribute="top" id="Rsl-KP-dFi"/>
  3394. <constraint firstItem="cWe-Q1-fNG" firstAttribute="centerX" secondItem="Iga-eH-v9H" secondAttribute="centerX" id="TRz-gg-aHK"/>
  3395. <constraint firstItem="Wfe-vS-0GL" firstAttribute="bottom" secondItem="MDY-Yd-cIi" secondAttribute="bottom" constant="30" id="XZP-9l-7Un"/>
  3396. <constraint firstItem="MDY-Yd-cIi" firstAttribute="leading" secondItem="Wfe-vS-0GL" secondAttribute="leading" constant="20" id="uJd-X3-mHW"/>
  3397. </constraints>
  3398. </view>
  3399. <navigationItem key="navigationItem" id="8OU-Kb-n72"/>
  3400. <connections>
  3401. <outlet property="logoutButton" destination="MDY-Yd-cIi" id="IRH-oG-but"/>
  3402. <outlet property="menuTableView" destination="cWe-Q1-fNG" id="wi1-kM-CQs"/>
  3403. </connections>
  3404. </viewController>
  3405. <placeholder placeholderIdentifier="IBFirstResponder" id="QPE-os-yco" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3406. </objects>
  3407. <point key="canvasLocation" x="3186.9565217391305" y="96.195652173913047"/>
  3408. </scene>
  3409. <!--Notification View Controller-->
  3410. <scene sceneID="j8Y-4F-Hat">
  3411. <objects>
  3412. <viewController storyboardIdentifier="NotificationViewController" id="g4j-Js-w0C" customClass="NotificationViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3413. <view key="view" contentMode="scaleToFill" id="HKp-UW-myA">
  3414. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3415. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3416. <subviews>
  3417. <navigationBar contentMode="scaleToFill" verticalHuggingPriority="252" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7VI-e3-lLy">
  3418. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  3419. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3420. <color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3421. <color key="barTintColor" name="AccentColor"/>
  3422. <textAttributes key="titleTextAttributes">
  3423. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3424. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3425. </textAttributes>
  3426. <items>
  3427. <navigationItem title="Notification" id="y6i-AR-olH">
  3428. <barButtonItem key="leftBarButtonItem" image="arrow.left" catalog="system" id="2Bv-sO-T1y">
  3429. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3430. <connections>
  3431. <action selector="sideMenuAction:" destination="MOP-ZK-IIY" id="mCw-G0-s6B"/>
  3432. </connections>
  3433. </barButtonItem>
  3434. </navigationItem>
  3435. </items>
  3436. </navigationBar>
  3437. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="SSP-UE-vTH">
  3438. <rect key="frame" x="20" y="84" width="374" height="632"/>
  3439. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3440. <prototypes>
  3441. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="NotificationTableViewCell" rowHeight="80" id="cNu-sS-BA8" customClass="NotificationTableViewCell" customModule="LMS" customModuleProvider="target">
  3442. <rect key="frame" x="0.0" y="50" width="374" height="80"/>
  3443. <autoresizingMask key="autoresizingMask"/>
  3444. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="cNu-sS-BA8" id="M8i-ck-R6V">
  3445. <rect key="frame" x="0.0" y="0.0" width="374" height="80"/>
  3446. <autoresizingMask key="autoresizingMask"/>
  3447. <subviews>
  3448. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wYk-qH-ti6">
  3449. <rect key="frame" x="0.0" y="0.0" width="374" height="70"/>
  3450. <subviews>
  3451. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Z2F-a0-aUD">
  3452. <rect key="frame" x="20" y="20" width="334" height="30"/>
  3453. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="14"/>
  3454. <color key="textColor" red="0.18431372549019609" green="0.35686274509803922" blue="0.28627450980392155" alpha="1" colorSpace="calibratedRGB"/>
  3455. <nil key="highlightedColor"/>
  3456. </label>
  3457. </subviews>
  3458. <color key="backgroundColor" red="0.81960784313725488" green="0.90196078431372551" blue="0.8666666666666667" alpha="1" colorSpace="calibratedRGB"/>
  3459. <constraints>
  3460. <constraint firstItem="Z2F-a0-aUD" firstAttribute="top" secondItem="wYk-qH-ti6" secondAttribute="top" constant="20" symbolic="YES" id="Cbm-Zr-F5c"/>
  3461. <constraint firstAttribute="bottom" secondItem="Z2F-a0-aUD" secondAttribute="bottom" constant="20" symbolic="YES" id="CdX-KX-pY0"/>
  3462. <constraint firstItem="Z2F-a0-aUD" firstAttribute="leading" secondItem="wYk-qH-ti6" secondAttribute="leading" constant="20" symbolic="YES" id="R0a-pp-aFf"/>
  3463. <constraint firstAttribute="trailing" secondItem="Z2F-a0-aUD" secondAttribute="trailing" constant="20" symbolic="YES" id="n5x-bJ-vjM"/>
  3464. </constraints>
  3465. </view>
  3466. </subviews>
  3467. <constraints>
  3468. <constraint firstItem="wYk-qH-ti6" firstAttribute="top" secondItem="M8i-ck-R6V" secondAttribute="top" id="OIN-xj-uZp"/>
  3469. <constraint firstItem="wYk-qH-ti6" firstAttribute="leading" secondItem="M8i-ck-R6V" secondAttribute="leading" id="i5a-Zr-mpO"/>
  3470. <constraint firstAttribute="bottom" secondItem="wYk-qH-ti6" secondAttribute="bottom" constant="10" id="l6K-fu-kNv"/>
  3471. <constraint firstAttribute="trailing" secondItem="wYk-qH-ti6" secondAttribute="trailing" id="v6X-nU-Enx"/>
  3472. </constraints>
  3473. </tableViewCellContentView>
  3474. <connections>
  3475. <outlet property="customView" destination="wYk-qH-ti6" id="Mzk-vb-lBh"/>
  3476. <outlet property="messageLabel" destination="Z2F-a0-aUD" id="yOa-ne-QUk"/>
  3477. </connections>
  3478. </tableViewCell>
  3479. </prototypes>
  3480. </tableView>
  3481. </subviews>
  3482. <viewLayoutGuide key="safeArea" id="lYb-1j-IoQ"/>
  3483. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3484. <constraints>
  3485. <constraint firstItem="lYb-1j-IoQ" firstAttribute="bottom" secondItem="SSP-UE-vTH" secondAttribute="bottom" constant="20" id="1yM-x5-r29"/>
  3486. <constraint firstItem="SSP-UE-vTH" firstAttribute="leading" secondItem="lYb-1j-IoQ" secondAttribute="leading" constant="20" id="9IZ-ui-eSw"/>
  3487. <constraint firstItem="7VI-e3-lLy" firstAttribute="top" secondItem="lYb-1j-IoQ" secondAttribute="top" id="UOX-ar-ypz"/>
  3488. <constraint firstItem="SSP-UE-vTH" firstAttribute="top" secondItem="7VI-e3-lLy" secondAttribute="bottom" constant="20" id="fqh-vT-LYf"/>
  3489. <constraint firstItem="lYb-1j-IoQ" firstAttribute="trailing" secondItem="7VI-e3-lLy" secondAttribute="trailing" id="lDR-zG-EXa"/>
  3490. <constraint firstItem="7VI-e3-lLy" firstAttribute="leading" secondItem="HKp-UW-myA" secondAttribute="leading" id="t9S-5o-mKK"/>
  3491. <constraint firstItem="lYb-1j-IoQ" firstAttribute="trailing" secondItem="SSP-UE-vTH" secondAttribute="trailing" constant="20" id="ylE-tj-l5N"/>
  3492. </constraints>
  3493. </view>
  3494. <connections>
  3495. <outlet property="navigationBar" destination="7VI-e3-lLy" id="XOv-EA-qaC"/>
  3496. <outlet property="notificationTableView" destination="SSP-UE-vTH" id="mMw-FN-EV2"/>
  3497. </connections>
  3498. </viewController>
  3499. <placeholder placeholderIdentifier="IBFirstResponder" id="eV0-0v-Fhi" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3500. </objects>
  3501. <point key="canvasLocation" x="3956.521739130435" y="97.826086956521749"/>
  3502. </scene>
  3503. <!--Scrom View Controller-->
  3504. <scene sceneID="dbb-ra-tIm">
  3505. <objects>
  3506. <viewController storyboardIdentifier="ScromViewController" id="JCo-ge-jY8" customClass="ScromViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3507. <view key="view" contentMode="scaleToFill" id="3Dx-W4-o60">
  3508. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3509. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3510. <subviews>
  3511. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cpB-Vk-Vpv">
  3512. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  3513. <color key="barTintColor" name="AccentColor"/>
  3514. <textAttributes key="titleTextAttributes">
  3515. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3516. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3517. </textAttributes>
  3518. <items>
  3519. <navigationItem title="Scrom" id="4mt-42-bav">
  3520. <barButtonItem key="leftBarButtonItem" image="arrow.backward" catalog="system" id="qXQ-9V-JmL">
  3521. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3522. <connections>
  3523. <action selector="backAction:" destination="JCo-ge-jY8" id="RIQ-wv-Bnl"/>
  3524. </connections>
  3525. </barButtonItem>
  3526. </navigationItem>
  3527. </items>
  3528. </navigationBar>
  3529. <wkWebView contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="W2A-hZ-Iq3">
  3530. <rect key="frame" x="10" y="74" width="394" height="652"/>
  3531. <color key="backgroundColor" red="0.36078431370000003" green="0.38823529410000002" blue="0.4039215686" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3532. <wkWebViewConfiguration key="configuration">
  3533. <audiovisualMediaTypes key="mediaTypesRequiringUserActionForPlayback" none="YES"/>
  3534. <wkPreferences key="preferences"/>
  3535. </wkWebViewConfiguration>
  3536. </wkWebView>
  3537. </subviews>
  3538. <viewLayoutGuide key="safeArea" id="Avd-Yz-zcx"/>
  3539. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3540. <constraints>
  3541. <constraint firstItem="cpB-Vk-Vpv" firstAttribute="trailing" secondItem="Avd-Yz-zcx" secondAttribute="trailing" id="4lj-pN-Ycc"/>
  3542. <constraint firstItem="cpB-Vk-Vpv" firstAttribute="leading" secondItem="Avd-Yz-zcx" secondAttribute="leading" id="6Z8-bY-jdu"/>
  3543. <constraint firstItem="W2A-hZ-Iq3" firstAttribute="leading" secondItem="Avd-Yz-zcx" secondAttribute="leading" constant="10" id="AG4-9l-rMZ"/>
  3544. <constraint firstItem="W2A-hZ-Iq3" firstAttribute="top" secondItem="cpB-Vk-Vpv" secondAttribute="bottom" constant="10" id="OYq-Jy-Gr9"/>
  3545. <constraint firstItem="Avd-Yz-zcx" firstAttribute="trailing" secondItem="W2A-hZ-Iq3" secondAttribute="trailing" constant="10" id="ZVZ-ay-3TE"/>
  3546. <constraint firstItem="cpB-Vk-Vpv" firstAttribute="top" secondItem="Avd-Yz-zcx" secondAttribute="top" id="qju-HA-aLY"/>
  3547. <constraint firstItem="Avd-Yz-zcx" firstAttribute="bottom" secondItem="W2A-hZ-Iq3" secondAttribute="bottom" constant="10" id="tP2-1q-yZi"/>
  3548. </constraints>
  3549. </view>
  3550. <connections>
  3551. <outlet property="htmlWebView" destination="W2A-hZ-Iq3" id="pbf-k0-ucL"/>
  3552. <outlet property="navigationBar" destination="cpB-Vk-Vpv" id="tYd-SJ-afy"/>
  3553. </connections>
  3554. </viewController>
  3555. <placeholder placeholderIdentifier="IBFirstResponder" id="leB-qg-jWF" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3556. </objects>
  3557. <point key="canvasLocation" x="2425" y="5255"/>
  3558. </scene>
  3559. <!--Calendar View Controller-->
  3560. <scene sceneID="WXq-3M-kVM">
  3561. <objects>
  3562. <viewController storyboardIdentifier="CalendarViewController" id="66f-kT-52X" customClass="CalendarViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3563. <view key="view" contentMode="scaleToFill" id="kI8-dJ-wHA">
  3564. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3565. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3566. <subviews>
  3567. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4mk-Ni-OUI">
  3568. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  3569. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3570. <color key="tintColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3571. <color key="barTintColor" name="AccentColor"/>
  3572. <textAttributes key="titleTextAttributes">
  3573. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3574. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3575. </textAttributes>
  3576. <items>
  3577. <navigationItem title="Calendar" id="cdB-YP-oHA">
  3578. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="PZT-jD-zSF">
  3579. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3580. <connections>
  3581. <action selector="sideMenuAction:" destination="66f-kT-52X" id="bUL-bU-jMO"/>
  3582. </connections>
  3583. </barButtonItem>
  3584. </navigationItem>
  3585. </items>
  3586. </navigationBar>
  3587. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gnk-Nt-ElP" customClass="FSCalendar">
  3588. <rect key="frame" x="20" y="84" width="374" height="632"/>
  3589. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3590. <color key="tintColor" name="AccentColor"/>
  3591. <userDefinedRuntimeAttributes>
  3592. <userDefinedRuntimeAttribute type="color" keyPath="titleDefaultColor">
  3593. <color key="value" name="AccentColor"/>
  3594. </userDefinedRuntimeAttribute>
  3595. <userDefinedRuntimeAttribute type="boolean" keyPath="allowsSelection" value="YES"/>
  3596. <userDefinedRuntimeAttribute type="boolean" keyPath="allowsMultipleSelection" value="YES"/>
  3597. <userDefinedRuntimeAttribute type="color" keyPath="headerTitleColor">
  3598. <color key="value" name="AccentColor"/>
  3599. </userDefinedRuntimeAttribute>
  3600. <userDefinedRuntimeAttribute type="boolean" keyPath="pagingEnabled" value="YES"/>
  3601. <userDefinedRuntimeAttribute type="number" keyPath="titleTextSize">
  3602. <real key="value" value="18"/>
  3603. </userDefinedRuntimeAttribute>
  3604. <userDefinedRuntimeAttribute type="color" keyPath="weekdayTextColor">
  3605. <color key="value" name="AccentColor"/>
  3606. </userDefinedRuntimeAttribute>
  3607. <userDefinedRuntimeAttribute type="number" keyPath="weekdayTextSize">
  3608. <real key="value" value="20"/>
  3609. </userDefinedRuntimeAttribute>
  3610. <userDefinedRuntimeAttribute type="number" keyPath="headerTitleTextSize">
  3611. <real key="value" value="22"/>
  3612. </userDefinedRuntimeAttribute>
  3613. </userDefinedRuntimeAttributes>
  3614. </view>
  3615. </subviews>
  3616. <viewLayoutGuide key="safeArea" id="sUp-cb-j1G"/>
  3617. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3618. <constraints>
  3619. <constraint firstItem="sUp-cb-j1G" firstAttribute="bottom" secondItem="gnk-Nt-ElP" secondAttribute="bottom" constant="20" id="9is-Ga-kEN"/>
  3620. <constraint firstItem="4mk-Ni-OUI" firstAttribute="top" secondItem="sUp-cb-j1G" secondAttribute="top" id="Ud8-7r-LDM"/>
  3621. <constraint firstItem="4mk-Ni-OUI" firstAttribute="leading" secondItem="sUp-cb-j1G" secondAttribute="leading" id="htG-GD-b5O"/>
  3622. <constraint firstItem="gnk-Nt-ElP" firstAttribute="leading" secondItem="sUp-cb-j1G" secondAttribute="leading" constant="20" id="mqn-3P-7Ea"/>
  3623. <constraint firstItem="gnk-Nt-ElP" firstAttribute="top" secondItem="4mk-Ni-OUI" secondAttribute="bottom" constant="20" id="njp-A9-Zdt"/>
  3624. <constraint firstItem="sUp-cb-j1G" firstAttribute="trailing" secondItem="gnk-Nt-ElP" secondAttribute="trailing" constant="20" id="oIh-7C-nQS"/>
  3625. <constraint firstAttribute="trailing" secondItem="4mk-Ni-OUI" secondAttribute="trailing" id="qCN-Zf-tzz"/>
  3626. </constraints>
  3627. </view>
  3628. <connections>
  3629. <outlet property="calendar" destination="gnk-Nt-ElP" id="dK0-9P-Tt0"/>
  3630. <outlet property="navigationBar" destination="4mk-Ni-OUI" id="hku-ow-kXT"/>
  3631. </connections>
  3632. </viewController>
  3633. <placeholder placeholderIdentifier="IBFirstResponder" id="Cmy-kI-G6S" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3634. </objects>
  3635. <point key="canvasLocation" x="876.81159420289862" y="835.59782608695662"/>
  3636. </scene>
  3637. <!--New Assessment View Controller-->
  3638. <scene sceneID="C5N-j7-nP7">
  3639. <objects>
  3640. <viewController storyboardIdentifier="NewAssessmentViewController" id="h7s-RD-CTj" customClass="NewAssessmentViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3641. <view key="view" contentMode="scaleToFill" id="vsa-3M-Oz7">
  3642. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3643. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3644. <subviews>
  3645. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="itf-Wo-UGR">
  3646. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  3647. <color key="barTintColor" name="AccentColor"/>
  3648. <textAttributes key="titleTextAttributes">
  3649. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3650. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3651. </textAttributes>
  3652. <items>
  3653. <navigationItem title=" Assessment" id="dNs-c0-D8c">
  3654. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="C05-xV-dIM">
  3655. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3656. <connections>
  3657. <action selector="sideMenuAction:" destination="h7s-RD-CTj" id="bAE-SA-Z8D"/>
  3658. </connections>
  3659. </barButtonItem>
  3660. </navigationItem>
  3661. </items>
  3662. </navigationBar>
  3663. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="mtV-wr-oQ6">
  3664. <rect key="frame" x="10" y="74" width="394" height="652"/>
  3665. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3666. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="10" minimumInteritemSpacing="10" id="AJL-yq-ciP">
  3667. <size key="itemSize" width="192" height="270"/>
  3668. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  3669. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  3670. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  3671. </collectionViewFlowLayout>
  3672. <cells>
  3673. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="NewAssessmentCollectionViewCell" id="akT-HY-zJL" customClass="NewAssessmentCollectionViewCell" customModule="LMS" customModuleProvider="target">
  3674. <rect key="frame" x="0.0" y="0.0" width="192" height="270"/>
  3675. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3676. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="wpL-yO-VAF">
  3677. <rect key="frame" x="0.0" y="0.0" width="192" height="270"/>
  3678. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3679. <subviews>
  3680. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dW7-6K-LJL">
  3681. <rect key="frame" x="0.0" y="0.0" width="192" height="270"/>
  3682. <subviews>
  3683. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="center" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="newAssessment-image" translatesAutoresizingMaskIntoConstraints="NO" id="nV4-gQ-Pbg" customClass="RoundedTopCornersImageView" customModule="LMS" customModuleProvider="target">
  3684. <rect key="frame" x="0.0" y="0.0" width="192" height="110"/>
  3685. <color key="backgroundColor" systemColor="systemGray6Color"/>
  3686. <constraints>
  3687. <constraint firstAttribute="height" constant="110" id="KKq-Ra-VNT"/>
  3688. </constraints>
  3689. </imageView>
  3690. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Test Name" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="1bR-2W-xZV">
  3691. <rect key="frame" x="10" y="120.00000000000001" width="172" height="20.666666666666671"/>
  3692. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="15"/>
  3693. <color key="textColor" name="AccentColor"/>
  3694. <nil key="highlightedColor"/>
  3695. </label>
  3696. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jRb-Jp-kEi">
  3697. <rect key="frame" x="162" y="0.0" width="30" height="40"/>
  3698. <subviews>
  3699. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_slno_bannar" translatesAutoresizingMaskIntoConstraints="NO" id="ATg-jg-85K">
  3700. <rect key="frame" x="0.0" y="0.0" width="30" height="40"/>
  3701. </imageView>
  3702. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="uf7-JN-Phl">
  3703. <rect key="frame" x="0.0" y="0.0" width="30" height="40"/>
  3704. <constraints>
  3705. <constraint firstAttribute="height" constant="40" id="CkP-ys-adc"/>
  3706. <constraint firstAttribute="width" constant="30" id="bMh-9q-Etq"/>
  3707. </constraints>
  3708. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="15"/>
  3709. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3710. <nil key="highlightedColor"/>
  3711. </label>
  3712. </subviews>
  3713. <constraints>
  3714. <constraint firstAttribute="trailing" secondItem="uf7-JN-Phl" secondAttribute="trailing" id="Irk-ad-9RU"/>
  3715. <constraint firstItem="uf7-JN-Phl" firstAttribute="leading" secondItem="jRb-Jp-kEi" secondAttribute="leading" id="Jkl-2y-YkF"/>
  3716. <constraint firstItem="ATg-jg-85K" firstAttribute="leading" secondItem="jRb-Jp-kEi" secondAttribute="leading" id="KjU-is-huq"/>
  3717. <constraint firstAttribute="height" constant="40" id="Kxv-5W-XtA"/>
  3718. <constraint firstAttribute="bottom" secondItem="ATg-jg-85K" secondAttribute="bottom" id="OI4-J2-2cw"/>
  3719. <constraint firstAttribute="bottom" secondItem="uf7-JN-Phl" secondAttribute="bottom" id="XcT-MB-3om"/>
  3720. <constraint firstItem="uf7-JN-Phl" firstAttribute="top" secondItem="jRb-Jp-kEi" secondAttribute="top" id="fwr-iu-NRQ"/>
  3721. <constraint firstAttribute="width" constant="30" id="jOj-1f-b2S"/>
  3722. <constraint firstItem="ATg-jg-85K" firstAttribute="top" secondItem="jRb-Jp-kEi" secondAttribute="top" id="lpz-ce-mGW"/>
  3723. <constraint firstAttribute="trailing" secondItem="uf7-JN-Phl" secondAttribute="trailing" id="nj9-XJ-VLs"/>
  3724. <constraint firstItem="uf7-JN-Phl" firstAttribute="top" secondItem="jRb-Jp-kEi" secondAttribute="top" id="xUX-5a-byH"/>
  3725. <constraint firstAttribute="trailing" secondItem="ATg-jg-85K" secondAttribute="trailing" id="y3X-3C-KgM"/>
  3726. </constraints>
  3727. </view>
  3728. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="TB5-w5-l7U">
  3729. <rect key="frame" x="10" y="184" width="100" height="25"/>
  3730. <color key="backgroundColor" name="AccentColor"/>
  3731. <constraints>
  3732. <constraint firstAttribute="height" constant="25" id="CR0-L2-erZ"/>
  3733. </constraints>
  3734. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="14"/>
  3735. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3736. <state key="normal" title="Take Exam">
  3737. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3738. </state>
  3739. </button>
  3740. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Highest Score: 5/15" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Hr-ez-3O1">
  3741. <rect key="frame" x="10" y="219" width="172" height="18"/>
  3742. <constraints>
  3743. <constraint firstAttribute="height" constant="18" id="NlK-0k-f75"/>
  3744. </constraints>
  3745. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="13"/>
  3746. <nil key="textColor"/>
  3747. <nil key="highlightedColor"/>
  3748. </label>
  3749. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="No. Of Attempts: 1" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EQx-kK-rcJ">
  3750. <rect key="frame" x="10" y="242" width="172" height="18"/>
  3751. <constraints>
  3752. <constraint firstAttribute="height" constant="18" id="fBs-hm-XkA"/>
  3753. </constraints>
  3754. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="13"/>
  3755. <nil key="textColor"/>
  3756. <nil key="highlightedColor"/>
  3757. </label>
  3758. </subviews>
  3759. <constraints>
  3760. <constraint firstAttribute="bottom" secondItem="EQx-kK-rcJ" secondAttribute="bottom" constant="10" id="1FO-at-PVY"/>
  3761. <constraint firstItem="jRb-Jp-kEi" firstAttribute="top" secondItem="dW7-6K-LJL" secondAttribute="top" id="BGU-mM-F82"/>
  3762. <constraint firstAttribute="trailing" secondItem="jRb-Jp-kEi" secondAttribute="trailing" id="DCM-al-u4B"/>
  3763. <constraint firstItem="EQx-kK-rcJ" firstAttribute="top" secondItem="5Hr-ez-3O1" secondAttribute="bottom" constant="5" id="GnG-T3-3et"/>
  3764. <constraint firstAttribute="trailing" secondItem="5Hr-ez-3O1" secondAttribute="trailing" constant="10" id="J7Q-zF-iCw"/>
  3765. <constraint firstItem="1bR-2W-xZV" firstAttribute="leading" secondItem="dW7-6K-LJL" secondAttribute="leading" constant="10" id="Nbu-z4-wAW"/>
  3766. <constraint firstItem="nV4-gQ-Pbg" firstAttribute="top" secondItem="dW7-6K-LJL" secondAttribute="top" id="Nz1-bs-2Gn"/>
  3767. <constraint firstAttribute="trailing" secondItem="EQx-kK-rcJ" secondAttribute="trailing" constant="10" id="OyC-dj-otT"/>
  3768. <constraint firstItem="nV4-gQ-Pbg" firstAttribute="leading" secondItem="dW7-6K-LJL" secondAttribute="leading" id="VJK-PT-HmI"/>
  3769. <constraint firstAttribute="trailing" secondItem="nV4-gQ-Pbg" secondAttribute="trailing" id="YmY-Rw-P62"/>
  3770. <constraint firstItem="EQx-kK-rcJ" firstAttribute="leading" secondItem="dW7-6K-LJL" secondAttribute="leading" constant="10" id="Z5d-0G-W24"/>
  3771. <constraint firstItem="TB5-w5-l7U" firstAttribute="top" secondItem="1bR-2W-xZV" secondAttribute="bottom" priority="250" constant="13.33" id="c1V-JR-9hI"/>
  3772. <constraint firstItem="TB5-w5-l7U" firstAttribute="width" secondItem="dW7-6K-LJL" secondAttribute="width" multiplier="0.520833" id="iiG-PE-oIl"/>
  3773. <constraint firstItem="5Hr-ez-3O1" firstAttribute="top" secondItem="TB5-w5-l7U" secondAttribute="bottom" constant="10" id="kYP-MH-IaR"/>
  3774. <constraint firstItem="1bR-2W-xZV" firstAttribute="top" secondItem="nV4-gQ-Pbg" secondAttribute="bottom" constant="10" id="llj-8n-6Pu"/>
  3775. <constraint firstItem="TB5-w5-l7U" firstAttribute="leading" secondItem="dW7-6K-LJL" secondAttribute="leading" constant="10" id="vpJ-Ho-GGz"/>
  3776. <constraint firstAttribute="trailing" secondItem="1bR-2W-xZV" secondAttribute="trailing" constant="10" id="y2V-35-To1"/>
  3777. <constraint firstItem="5Hr-ez-3O1" firstAttribute="leading" secondItem="dW7-6K-LJL" secondAttribute="leading" constant="10" id="zfV-iF-jb9"/>
  3778. </constraints>
  3779. </view>
  3780. </subviews>
  3781. <constraints>
  3782. <constraint firstItem="dW7-6K-LJL" firstAttribute="top" secondItem="wpL-yO-VAF" secondAttribute="top" id="MVZ-1j-dsE"/>
  3783. <constraint firstAttribute="bottom" secondItem="dW7-6K-LJL" secondAttribute="bottom" id="ZZK-8S-BvW"/>
  3784. <constraint firstAttribute="trailing" secondItem="dW7-6K-LJL" secondAttribute="trailing" id="l1N-aY-0eV"/>
  3785. <constraint firstItem="dW7-6K-LJL" firstAttribute="leading" secondItem="wpL-yO-VAF" secondAttribute="leading" id="tIm-lx-xgB"/>
  3786. </constraints>
  3787. </collectionViewCellContentView>
  3788. <size key="customSize" width="192" height="270"/>
  3789. <connections>
  3790. <outlet property="attemptsLabel" destination="EQx-kK-rcJ" id="dbR-zy-aBn"/>
  3791. <outlet property="customView" destination="dW7-6K-LJL" id="fZf-dO-At9"/>
  3792. <outlet property="scoreLabel" destination="5Hr-ez-3O1" id="z6c-L9-W4B"/>
  3793. <outlet property="serialNoLabel" destination="uf7-JN-Phl" id="tf9-Sr-TJq"/>
  3794. <outlet property="takeExamButton" destination="TB5-w5-l7U" id="XIG-qj-oQS"/>
  3795. <outlet property="testImageView" destination="nV4-gQ-Pbg" id="K0k-my-Mer"/>
  3796. <outlet property="testNameLabel" destination="1bR-2W-xZV" id="b8w-Bv-IaB"/>
  3797. </connections>
  3798. </collectionViewCell>
  3799. </cells>
  3800. </collectionView>
  3801. </subviews>
  3802. <viewLayoutGuide key="safeArea" id="LPH-10-SgT"/>
  3803. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3804. <constraints>
  3805. <constraint firstItem="LPH-10-SgT" firstAttribute="bottom" secondItem="mtV-wr-oQ6" secondAttribute="bottom" constant="10" id="JAi-rY-tho"/>
  3806. <constraint firstItem="itf-Wo-UGR" firstAttribute="trailing" secondItem="LPH-10-SgT" secondAttribute="trailing" id="MzZ-3o-gDx"/>
  3807. <constraint firstItem="itf-Wo-UGR" firstAttribute="leading" secondItem="LPH-10-SgT" secondAttribute="leading" id="RJX-dk-kAj"/>
  3808. <constraint firstItem="LPH-10-SgT" firstAttribute="trailing" secondItem="mtV-wr-oQ6" secondAttribute="trailing" constant="10" id="eFf-YT-nB0"/>
  3809. <constraint firstItem="mtV-wr-oQ6" firstAttribute="leading" secondItem="LPH-10-SgT" secondAttribute="leading" constant="10" id="sns-T5-h9O"/>
  3810. <constraint firstItem="mtV-wr-oQ6" firstAttribute="top" secondItem="itf-Wo-UGR" secondAttribute="bottom" constant="10" id="tKK-pz-TpG"/>
  3811. <constraint firstItem="itf-Wo-UGR" firstAttribute="top" secondItem="LPH-10-SgT" secondAttribute="top" id="xpb-EN-Smy"/>
  3812. </constraints>
  3813. </view>
  3814. <connections>
  3815. <outlet property="assessmentListCollectionView" destination="mtV-wr-oQ6" id="G9i-JY-8lg"/>
  3816. <outlet property="navigationBar" destination="itf-Wo-UGR" id="aZx-Cx-cnr"/>
  3817. </connections>
  3818. </viewController>
  3819. <placeholder placeholderIdentifier="IBFirstResponder" id="5L4-O4-dVP" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  3820. </objects>
  3821. <point key="canvasLocation" x="3186.9565217391305" y="835.59782608695662"/>
  3822. </scene>
  3823. <!--New Quiz View Controller-->
  3824. <scene sceneID="2tz-wD-G5j">
  3825. <objects>
  3826. <viewController storyboardIdentifier="NewQuizViewController" id="5NQ-mJ-DHR" customClass="NewQuizViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  3827. <view key="view" contentMode="scaleToFill" id="ZoS-go-uzp">
  3828. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  3829. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3830. <subviews>
  3831. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QsQ-ni-5ad">
  3832. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  3833. <color key="barTintColor" name="AccentColor"/>
  3834. <textAttributes key="titleTextAttributes">
  3835. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3836. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3837. </textAttributes>
  3838. <items>
  3839. <navigationItem title="Assessment Name" id="2rt-0h-mnk">
  3840. <barButtonItem key="leftBarButtonItem" image="line.3.horizontal.circle" catalog="system" id="BcO-Od-3BA">
  3841. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3842. <connections>
  3843. <action selector="sideMenuAction:" destination="5NQ-mJ-DHR" id="cZa-Le-574"/>
  3844. </connections>
  3845. </barButtonItem>
  3846. </navigationItem>
  3847. </items>
  3848. </navigationBar>
  3849. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Tvf-PG-bnB">
  3850. <rect key="frame" x="0.0" y="64" width="414" height="672"/>
  3851. <subviews>
  3852. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Question No - 0/0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="AZT-U5-XmL">
  3853. <rect key="frame" x="20" y="20" width="200" height="40"/>
  3854. <color key="backgroundColor" name="orange"/>
  3855. <constraints>
  3856. <constraint firstAttribute="width" priority="250" constant="200" id="Vyn-Dr-Hbr"/>
  3857. <constraint firstAttribute="height" constant="40" id="pfI-W9-xt2"/>
  3858. </constraints>
  3859. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="18"/>
  3860. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3861. <nil key="highlightedColor"/>
  3862. </label>
  3863. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Y7R-GD-CfR">
  3864. <rect key="frame" x="220" y="58" width="174" height="2"/>
  3865. <color key="backgroundColor" name="orange"/>
  3866. <constraints>
  3867. <constraint firstAttribute="height" constant="2" id="3yu-0Q-CUa"/>
  3868. </constraints>
  3869. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3870. <nil key="textColor"/>
  3871. <nil key="highlightedColor"/>
  3872. </label>
  3873. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Question Type : Multiple Select MCQ" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="nAO-ky-VUE">
  3874. <rect key="frame" x="20" y="68" width="276" height="22"/>
  3875. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="15"/>
  3876. <nil key="highlightedColor"/>
  3877. </label>
  3878. <stackView opaque="NO" contentMode="scaleToFill" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="Hfk-Zt-Kdi">
  3879. <rect key="frame" x="304" y="68" width="90" height="22"/>
  3880. <subviews>
  3881. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="stopwatch" catalog="system" translatesAutoresizingMaskIntoConstraints="NO" id="JjS-l3-y7V">
  3882. <rect key="frame" x="0.0" y="-0.66666666666666785" width="22" height="22.333333333333336"/>
  3883. <color key="tintColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3884. <constraints>
  3885. <constraint firstAttribute="width" constant="22" id="Wla-EG-dYr"/>
  3886. <constraint firstAttribute="height" constant="22" id="z2V-wj-w3O"/>
  3887. </constraints>
  3888. </imageView>
  3889. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="00:00" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Aq1-m1-wu1">
  3890. <rect key="frame" x="30" y="0.0" width="60" height="22"/>
  3891. <constraints>
  3892. <constraint firstAttribute="width" constant="60" id="E1n-1z-8dX"/>
  3893. <constraint firstAttribute="height" constant="22" id="vgJ-iu-wxc"/>
  3894. </constraints>
  3895. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  3896. <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3897. <nil key="highlightedColor"/>
  3898. </label>
  3899. </subviews>
  3900. </stackView>
  3901. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Question" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ScL-L9-BfK">
  3902. <rect key="frame" x="20" y="110" width="374" height="30.333333333333343"/>
  3903. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="22"/>
  3904. <color key="textColor" red="0.1843137255" green="0.42745098040000001" blue="0.66274509800000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3905. <nil key="highlightedColor"/>
  3906. </label>
  3907. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Answer selection instruction" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Jt7-1L-bCv">
  3908. <rect key="frame" x="20" y="148.33333333333334" width="374" height="24.666666666666657"/>
  3909. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  3910. <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3911. <nil key="highlightedColor"/>
  3912. </label>
  3913. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="pB0-FE-TR7">
  3914. <rect key="frame" x="0.0" y="193" width="414" height="399"/>
  3915. <subviews>
  3916. <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Enter your answer" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="vIi-eT-VBF">
  3917. <rect key="frame" x="20" y="20" width="374" height="34"/>
  3918. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="15"/>
  3919. <textInputTraits key="textInputTraits"/>
  3920. </textField>
  3921. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zf4-AM-HrR">
  3922. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  3923. <subviews>
  3924. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="0fX-TV-SOr">
  3925. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  3926. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3927. <prototypes>
  3928. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MCQTableViewCell" rowHeight="100" id="26M-y4-MSX" customClass="MCQTableViewCell" customModule="LMS" customModuleProvider="target">
  3929. <rect key="frame" x="0.0" y="50" width="414" height="100"/>
  3930. <autoresizingMask key="autoresizingMask"/>
  3931. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="26M-y4-MSX" id="VMS-UU-e6j">
  3932. <rect key="frame" x="0.0" y="0.0" width="414" height="100"/>
  3933. <autoresizingMask key="autoresizingMask"/>
  3934. <subviews>
  3935. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="J87-3S-7ld">
  3936. <rect key="frame" x="0.0" y="0.0" width="414" height="100"/>
  3937. <subviews>
  3938. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="kGO-Ca-exf">
  3939. <rect key="frame" x="20" y="37.666666666666664" width="25" height="25"/>
  3940. <constraints>
  3941. <constraint firstAttribute="width" constant="25" id="Yjn-BD-llY"/>
  3942. <constraint firstAttribute="height" constant="25" id="xw9-6W-Xmu"/>
  3943. </constraints>
  3944. <color key="tintColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3945. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  3946. <state key="normal" image="square" catalog="system"/>
  3947. <state key="selected" image="checkmark.square" catalog="system"/>
  3948. </button>
  3949. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6uV-YR-P3y">
  3950. <rect key="frame" x="53" y="10" width="341" height="80"/>
  3951. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  3952. <nil key="textColor"/>
  3953. <nil key="highlightedColor"/>
  3954. </label>
  3955. </subviews>
  3956. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3957. <constraints>
  3958. <constraint firstAttribute="bottom" secondItem="6uV-YR-P3y" secondAttribute="bottom" constant="10" id="BxF-48-JOq"/>
  3959. <constraint firstAttribute="trailing" secondItem="6uV-YR-P3y" secondAttribute="trailing" constant="20" symbolic="YES" id="NHA-a3-mr4"/>
  3960. <constraint firstItem="kGO-Ca-exf" firstAttribute="centerY" secondItem="J87-3S-7ld" secondAttribute="centerY" id="WXB-N9-f0N"/>
  3961. <constraint firstItem="6uV-YR-P3y" firstAttribute="top" secondItem="J87-3S-7ld" secondAttribute="top" constant="10" id="Y21-QZ-U6g"/>
  3962. <constraint firstItem="6uV-YR-P3y" firstAttribute="leading" secondItem="kGO-Ca-exf" secondAttribute="trailing" constant="8" symbolic="YES" id="fwq-Fz-Woo"/>
  3963. <constraint firstItem="kGO-Ca-exf" firstAttribute="leading" secondItem="J87-3S-7ld" secondAttribute="leading" constant="20" symbolic="YES" id="qI3-6m-UbZ"/>
  3964. </constraints>
  3965. </view>
  3966. </subviews>
  3967. <constraints>
  3968. <constraint firstAttribute="trailing" secondItem="J87-3S-7ld" secondAttribute="trailing" id="9Wo-DW-2jH"/>
  3969. <constraint firstItem="J87-3S-7ld" firstAttribute="leading" secondItem="VMS-UU-e6j" secondAttribute="leading" id="Z1e-2y-Ea5"/>
  3970. <constraint firstAttribute="bottom" secondItem="J87-3S-7ld" secondAttribute="bottom" id="Zb0-70-ucQ"/>
  3971. <constraint firstItem="J87-3S-7ld" firstAttribute="top" secondItem="VMS-UU-e6j" secondAttribute="top" id="gbP-ja-oca"/>
  3972. </constraints>
  3973. </tableViewCellContentView>
  3974. <connections>
  3975. <outlet property="checkButton" destination="kGO-Ca-exf" id="uMJ-w4-dyk"/>
  3976. <outlet property="customView" destination="J87-3S-7ld" id="IOE-No-SFE"/>
  3977. <outlet property="optionLabel" destination="6uV-YR-P3y" id="oAC-UC-NqK"/>
  3978. </connections>
  3979. </tableViewCell>
  3980. </prototypes>
  3981. </tableView>
  3982. </subviews>
  3983. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3984. <constraints>
  3985. <constraint firstAttribute="trailing" secondItem="0fX-TV-SOr" secondAttribute="trailing" id="CgV-C9-iXx"/>
  3986. <constraint firstItem="0fX-TV-SOr" firstAttribute="top" secondItem="zf4-AM-HrR" secondAttribute="top" id="LP1-H1-Cpc"/>
  3987. <constraint firstItem="0fX-TV-SOr" firstAttribute="leading" secondItem="zf4-AM-HrR" secondAttribute="leading" id="tNS-Px-6HD"/>
  3988. <constraint firstAttribute="bottom" secondItem="0fX-TV-SOr" secondAttribute="bottom" id="tWS-qg-1xT"/>
  3989. </constraints>
  3990. </view>
  3991. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0xR-zA-0or">
  3992. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  3993. <subviews>
  3994. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="oEF-rV-Mbc">
  3995. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  3996. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  3997. <prototypes>
  3998. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="TrueFalseTableViewCell" rowHeight="45" id="94b-Xn-vb6" customClass="TrueFalseTableViewCell" customModule="LMS" customModuleProvider="target">
  3999. <rect key="frame" x="0.0" y="50" width="414" height="45"/>
  4000. <autoresizingMask key="autoresizingMask"/>
  4001. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="94b-Xn-vb6" id="ghk-6f-En6">
  4002. <rect key="frame" x="0.0" y="0.0" width="414" height="45"/>
  4003. <autoresizingMask key="autoresizingMask"/>
  4004. <subviews>
  4005. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="uuG-68-hbi">
  4006. <rect key="frame" x="0.0" y="0.0" width="414" height="45"/>
  4007. <subviews>
  4008. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vXE-Bt-9i6">
  4009. <rect key="frame" x="20" y="10" width="25" height="25"/>
  4010. <constraints>
  4011. <constraint firstAttribute="height" constant="25" id="tlm-q3-AZv"/>
  4012. <constraint firstAttribute="width" constant="25" id="vz4-UL-dCZ"/>
  4013. </constraints>
  4014. <color key="tintColor" systemColor="labelColor"/>
  4015. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  4016. <state key="normal" image="circle" catalog="system"/>
  4017. </button>
  4018. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6bF-Go-lmM">
  4019. <rect key="frame" x="53" y="10" width="341" height="25"/>
  4020. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  4021. <nil key="textColor"/>
  4022. <nil key="highlightedColor"/>
  4023. </label>
  4024. </subviews>
  4025. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4026. <constraints>
  4027. <constraint firstAttribute="bottom" secondItem="vXE-Bt-9i6" secondAttribute="bottom" constant="10" id="DhN-yq-045"/>
  4028. <constraint firstAttribute="trailing" secondItem="6bF-Go-lmM" secondAttribute="trailing" constant="20" symbolic="YES" id="J5W-dr-xv3"/>
  4029. <constraint firstAttribute="bottom" secondItem="6bF-Go-lmM" secondAttribute="bottom" constant="10" id="J9N-tD-dLB"/>
  4030. <constraint firstItem="6bF-Go-lmM" firstAttribute="leading" secondItem="vXE-Bt-9i6" secondAttribute="trailing" constant="8" symbolic="YES" id="M6O-GO-Kj6"/>
  4031. <constraint firstItem="vXE-Bt-9i6" firstAttribute="leading" secondItem="uuG-68-hbi" secondAttribute="leading" constant="20" symbolic="YES" id="QtZ-6Z-tdG"/>
  4032. <constraint firstItem="6bF-Go-lmM" firstAttribute="top" secondItem="uuG-68-hbi" secondAttribute="top" constant="10" id="fQQ-49-gvG"/>
  4033. <constraint firstItem="vXE-Bt-9i6" firstAttribute="top" secondItem="uuG-68-hbi" secondAttribute="top" constant="10" id="g8j-Y9-KCU"/>
  4034. </constraints>
  4035. </view>
  4036. </subviews>
  4037. <constraints>
  4038. <constraint firstAttribute="bottom" secondItem="uuG-68-hbi" secondAttribute="bottom" id="EZ9-Yk-B6L"/>
  4039. <constraint firstItem="uuG-68-hbi" firstAttribute="leading" secondItem="ghk-6f-En6" secondAttribute="leading" id="G70-li-gF8"/>
  4040. <constraint firstItem="uuG-68-hbi" firstAttribute="top" secondItem="ghk-6f-En6" secondAttribute="top" id="Uom-dt-hzz"/>
  4041. <constraint firstAttribute="trailing" secondItem="uuG-68-hbi" secondAttribute="trailing" id="hvM-SU-XIK"/>
  4042. </constraints>
  4043. </tableViewCellContentView>
  4044. <connections>
  4045. <outlet property="customView" destination="uuG-68-hbi" id="VOn-zX-Uvp"/>
  4046. <outlet property="optionLabel" destination="6bF-Go-lmM" id="VaB-eK-BSo"/>
  4047. <outlet property="selectButton" destination="vXE-Bt-9i6" id="qvX-yy-OBq"/>
  4048. </connections>
  4049. </tableViewCell>
  4050. </prototypes>
  4051. </tableView>
  4052. </subviews>
  4053. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4054. <constraints>
  4055. <constraint firstItem="oEF-rV-Mbc" firstAttribute="leading" secondItem="0xR-zA-0or" secondAttribute="leading" id="2hx-X1-Kbu"/>
  4056. <constraint firstAttribute="bottom" secondItem="oEF-rV-Mbc" secondAttribute="bottom" id="6dq-F6-62c"/>
  4057. <constraint firstItem="oEF-rV-Mbc" firstAttribute="top" secondItem="0xR-zA-0or" secondAttribute="top" id="Ypc-FG-2yw"/>
  4058. <constraint firstAttribute="trailing" secondItem="oEF-rV-Mbc" secondAttribute="trailing" id="t3N-Nr-9gN"/>
  4059. </constraints>
  4060. </view>
  4061. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="llW-SS-PnM">
  4062. <rect key="frame" x="0.0" y="0.0" width="414" height="399"/>
  4063. <subviews>
  4064. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="zCU-hE-aCn">
  4065. <rect key="frame" x="20" y="0.0" width="374" height="399"/>
  4066. <subviews>
  4067. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="zYB-b2-jFe">
  4068. <rect key="frame" x="0.0" y="0.0" width="177" height="399"/>
  4069. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4070. <prototypes>
  4071. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DragTableViewCell" rowHeight="50" id="VPK-zU-KOm" customClass="DragTableViewCell" customModule="LMS" customModuleProvider="target">
  4072. <rect key="frame" x="0.0" y="50" width="177" height="50"/>
  4073. <autoresizingMask key="autoresizingMask"/>
  4074. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="VPK-zU-KOm" id="adI-GH-auU">
  4075. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  4076. <autoresizingMask key="autoresizingMask"/>
  4077. <subviews>
  4078. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="m1k-cA-3k7">
  4079. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  4080. <subviews>
  4081. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option 1" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k8w-KL-9da">
  4082. <rect key="frame" x="10" y="10" width="157" height="30"/>
  4083. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  4084. <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4085. <nil key="highlightedColor"/>
  4086. </label>
  4087. </subviews>
  4088. <color key="backgroundColor" red="0.78039215689999997" green="0.78039215689999997" blue="0.78039215689999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4089. <constraints>
  4090. <constraint firstAttribute="bottom" secondItem="k8w-KL-9da" secondAttribute="bottom" constant="10" id="NCa-8y-DFr"/>
  4091. <constraint firstAttribute="height" constant="50" id="Nma-hO-TBJ"/>
  4092. <constraint firstItem="k8w-KL-9da" firstAttribute="leading" secondItem="m1k-cA-3k7" secondAttribute="leading" constant="10" id="TmA-ft-oMT"/>
  4093. <constraint firstItem="k8w-KL-9da" firstAttribute="top" secondItem="m1k-cA-3k7" secondAttribute="top" constant="10" id="WTo-jl-ozn"/>
  4094. <constraint firstAttribute="trailing" secondItem="k8w-KL-9da" secondAttribute="trailing" constant="10" id="ijS-6h-B1p"/>
  4095. </constraints>
  4096. </view>
  4097. </subviews>
  4098. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4099. <constraints>
  4100. <constraint firstItem="m1k-cA-3k7" firstAttribute="leading" secondItem="adI-GH-auU" secondAttribute="leading" id="2lw-4o-lky"/>
  4101. <constraint firstAttribute="bottom" secondItem="m1k-cA-3k7" secondAttribute="bottom" id="Cl1-7E-9SB"/>
  4102. <constraint firstItem="m1k-cA-3k7" firstAttribute="top" secondItem="adI-GH-auU" secondAttribute="top" id="KUw-Jf-aRN"/>
  4103. <constraint firstAttribute="trailing" secondItem="m1k-cA-3k7" secondAttribute="trailing" id="RNQ-Ap-3Sb"/>
  4104. </constraints>
  4105. </tableViewCellContentView>
  4106. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4107. <connections>
  4108. <outlet property="optionLabel" destination="k8w-KL-9da" id="Log-8u-4AU"/>
  4109. </connections>
  4110. </tableViewCell>
  4111. </prototypes>
  4112. </tableView>
  4113. <tableView clipsSubviews="YES" contentMode="scaleToFill" bounces="NO" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="r2Z-iD-ScN">
  4114. <rect key="frame" x="197" y="0.0" width="177" height="399"/>
  4115. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4116. <prototypes>
  4117. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DragTableViewCell" rowHeight="50" id="WVY-ni-M7k" customClass="DragTableViewCell" customModule="LMS" customModuleProvider="target">
  4118. <rect key="frame" x="0.0" y="50" width="177" height="50"/>
  4119. <autoresizingMask key="autoresizingMask"/>
  4120. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="WVY-ni-M7k" id="BcL-lM-lVF">
  4121. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  4122. <autoresizingMask key="autoresizingMask"/>
  4123. <subviews>
  4124. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="WWB-yu-HWR">
  4125. <rect key="frame" x="0.0" y="0.0" width="177" height="50"/>
  4126. <subviews>
  4127. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Option 2" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ugy-CB-QBe">
  4128. <rect key="frame" x="10" y="10" width="157" height="30"/>
  4129. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="16"/>
  4130. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4131. <nil key="highlightedColor"/>
  4132. </label>
  4133. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ic_drag_white" translatesAutoresizingMaskIntoConstraints="NO" id="VNf-xU-Vug">
  4134. <rect key="frame" x="142" y="5" width="25" height="40"/>
  4135. <constraints>
  4136. <constraint firstAttribute="width" constant="25" id="1dr-Pl-GWM"/>
  4137. <constraint firstAttribute="height" constant="40" id="hHU-gG-tkJ"/>
  4138. </constraints>
  4139. </imageView>
  4140. </subviews>
  4141. <color key="backgroundColor" red="0.1843137255" green="0.42745098040000001" blue="0.66274509800000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4142. <constraints>
  4143. <constraint firstItem="VNf-xU-Vug" firstAttribute="top" secondItem="WWB-yu-HWR" secondAttribute="top" constant="5" id="74b-sp-lbU"/>
  4144. <constraint firstItem="Ugy-CB-QBe" firstAttribute="leading" secondItem="WWB-yu-HWR" secondAttribute="leading" constant="10" id="7JZ-OP-nXx"/>
  4145. <constraint firstAttribute="bottom" secondItem="Ugy-CB-QBe" secondAttribute="bottom" constant="10" id="MXI-sc-6Q9"/>
  4146. <constraint firstAttribute="trailing" secondItem="Ugy-CB-QBe" secondAttribute="trailing" constant="10" id="S4t-R6-nfs"/>
  4147. <constraint firstAttribute="height" constant="50" id="S9q-xD-gwX"/>
  4148. <constraint firstItem="Ugy-CB-QBe" firstAttribute="top" secondItem="WWB-yu-HWR" secondAttribute="top" constant="10" id="iWh-8U-aV8"/>
  4149. <constraint firstItem="VNf-xU-Vug" firstAttribute="trailing" secondItem="Ugy-CB-QBe" secondAttribute="trailing" id="mdc-02-2pT"/>
  4150. <constraint firstAttribute="bottom" secondItem="VNf-xU-Vug" secondAttribute="bottom" constant="5" id="zfn-Nd-rED"/>
  4151. </constraints>
  4152. </view>
  4153. </subviews>
  4154. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4155. <constraints>
  4156. <constraint firstAttribute="bottom" secondItem="WWB-yu-HWR" secondAttribute="bottom" id="Ysh-po-7kj"/>
  4157. <constraint firstAttribute="trailing" secondItem="WWB-yu-HWR" secondAttribute="trailing" id="dc0-Ux-LJa"/>
  4158. <constraint firstItem="WWB-yu-HWR" firstAttribute="leading" secondItem="BcL-lM-lVF" secondAttribute="leading" id="oBX-cS-Z5U"/>
  4159. <constraint firstItem="WWB-yu-HWR" firstAttribute="top" secondItem="BcL-lM-lVF" secondAttribute="top" id="skq-C4-Gkn"/>
  4160. </constraints>
  4161. </tableViewCellContentView>
  4162. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4163. <connections>
  4164. <outlet property="optionLabel" destination="Ugy-CB-QBe" id="zQt-YT-gzE"/>
  4165. </connections>
  4166. </tableViewCell>
  4167. </prototypes>
  4168. </tableView>
  4169. </subviews>
  4170. <constraints>
  4171. <constraint firstItem="zYB-b2-jFe" firstAttribute="top" secondItem="zCU-hE-aCn" secondAttribute="top" id="1xn-10-Ygq"/>
  4172. <constraint firstItem="r2Z-iD-ScN" firstAttribute="leading" secondItem="zYB-b2-jFe" secondAttribute="trailing" constant="20" id="6HG-MZ-PM3"/>
  4173. <constraint firstAttribute="bottom" secondItem="zYB-b2-jFe" secondAttribute="bottom" id="Pwe-WQ-Lyi"/>
  4174. <constraint firstItem="zYB-b2-jFe" firstAttribute="leading" secondItem="zCU-hE-aCn" secondAttribute="leading" id="Zmq-T6-xuW"/>
  4175. <constraint firstAttribute="bottom" secondItem="r2Z-iD-ScN" secondAttribute="bottom" id="fZO-BQ-UJN"/>
  4176. <constraint firstItem="r2Z-iD-ScN" firstAttribute="top" secondItem="zCU-hE-aCn" secondAttribute="top" id="mc1-Uj-6lj"/>
  4177. <constraint firstAttribute="trailing" secondItem="r2Z-iD-ScN" secondAttribute="trailing" id="oBq-NG-ydP"/>
  4178. </constraints>
  4179. </stackView>
  4180. </subviews>
  4181. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4182. <constraints>
  4183. <constraint firstAttribute="trailing" secondItem="zCU-hE-aCn" secondAttribute="trailing" constant="20" symbolic="YES" id="JSn-Ia-cS0"/>
  4184. <constraint firstItem="zCU-hE-aCn" firstAttribute="leading" secondItem="llW-SS-PnM" secondAttribute="leading" constant="20" symbolic="YES" id="Rkm-F7-etC"/>
  4185. <constraint firstAttribute="bottom" secondItem="zCU-hE-aCn" secondAttribute="bottom" id="dkv-fw-1jJ"/>
  4186. <constraint firstItem="zCU-hE-aCn" firstAttribute="top" secondItem="llW-SS-PnM" secondAttribute="top" id="hzA-Wc-qtr"/>
  4187. </constraints>
  4188. </view>
  4189. </subviews>
  4190. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4191. <constraints>
  4192. <constraint firstAttribute="bottom" secondItem="0xR-zA-0or" secondAttribute="bottom" id="2qE-r1-EGq"/>
  4193. <constraint firstItem="llW-SS-PnM" firstAttribute="leading" secondItem="pB0-FE-TR7" secondAttribute="leading" id="3OU-AP-RNA"/>
  4194. <constraint firstAttribute="trailing" secondItem="zf4-AM-HrR" secondAttribute="trailing" id="7vN-Aq-DpW"/>
  4195. <constraint firstItem="0xR-zA-0or" firstAttribute="top" secondItem="pB0-FE-TR7" secondAttribute="top" id="Baz-Ld-TNs"/>
  4196. <constraint firstItem="vIi-eT-VBF" firstAttribute="leading" secondItem="pB0-FE-TR7" secondAttribute="leading" constant="20" symbolic="YES" id="Lvs-f2-WBu"/>
  4197. <constraint firstAttribute="bottom" secondItem="zf4-AM-HrR" secondAttribute="bottom" id="atZ-CN-l6H"/>
  4198. <constraint firstItem="llW-SS-PnM" firstAttribute="top" secondItem="pB0-FE-TR7" secondAttribute="top" id="cQ2-se-XPF"/>
  4199. <constraint firstAttribute="trailing" secondItem="llW-SS-PnM" secondAttribute="trailing" id="csB-4s-4T0"/>
  4200. <constraint firstAttribute="bottom" secondItem="llW-SS-PnM" secondAttribute="bottom" id="jKu-yT-7PH"/>
  4201. <constraint firstItem="vIi-eT-VBF" firstAttribute="top" secondItem="pB0-FE-TR7" secondAttribute="top" constant="20" symbolic="YES" id="kkv-8g-oaC"/>
  4202. <constraint firstItem="zf4-AM-HrR" firstAttribute="leading" secondItem="pB0-FE-TR7" secondAttribute="leading" id="mnR-or-lo2"/>
  4203. <constraint firstItem="0xR-zA-0or" firstAttribute="leading" secondItem="pB0-FE-TR7" secondAttribute="leading" id="oLd-CT-sRe"/>
  4204. <constraint firstItem="zf4-AM-HrR" firstAttribute="top" secondItem="pB0-FE-TR7" secondAttribute="top" id="tb5-go-tAM"/>
  4205. <constraint firstAttribute="trailing" secondItem="0xR-zA-0or" secondAttribute="trailing" id="uzi-mN-3oe"/>
  4206. <constraint firstAttribute="trailing" secondItem="vIi-eT-VBF" secondAttribute="trailing" constant="20" symbolic="YES" id="w3e-Xf-dza"/>
  4207. </constraints>
  4208. </view>
  4209. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="O0Q-aO-DQf">
  4210. <rect key="frame" x="344" y="542" width="50" height="50"/>
  4211. <color key="backgroundColor" name="orange"/>
  4212. <constraints>
  4213. <constraint firstAttribute="width" constant="50" id="QGj-32-T3E"/>
  4214. <constraint firstAttribute="height" constant="50" id="wZr-eH-aMA"/>
  4215. </constraints>
  4216. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4217. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  4218. <state key="normal" image="circle.grid.3x3.fill" catalog="system">
  4219. <preferredSymbolConfiguration key="preferredSymbolConfiguration"/>
  4220. </state>
  4221. <connections>
  4222. <action selector="filterAction:" destination="Hg3-dp-OsB" eventType="touchUpInside" id="PoY-TV-ACu"/>
  4223. <action selector="quesNumberAction:" destination="5NQ-mJ-DHR" eventType="touchUpInside" id="dmf-fL-WyQ"/>
  4224. </connections>
  4225. </button>
  4226. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="4wq-Du-wow">
  4227. <rect key="frame" x="20" y="612" width="374" height="40"/>
  4228. <subviews>
  4229. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="GUP-Xn-OPP">
  4230. <rect key="frame" x="0.0" y="0.0" width="183" height="40"/>
  4231. <color key="backgroundColor" name="AccentColor"/>
  4232. <constraints>
  4233. <constraint firstAttribute="height" constant="40" id="lSw-nh-N2A"/>
  4234. </constraints>
  4235. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  4236. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  4237. <state key="normal" title="Skip">
  4238. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4239. </state>
  4240. <connections>
  4241. <action selector="skipAction:" destination="5NQ-mJ-DHR" eventType="touchUpInside" id="aU2-Cj-ygY"/>
  4242. </connections>
  4243. </button>
  4244. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0AJ-De-JH5">
  4245. <rect key="frame" x="191" y="0.0" width="183" height="40"/>
  4246. <color key="backgroundColor" name="AccentColor"/>
  4247. <constraints>
  4248. <constraint firstAttribute="height" constant="40" id="wLQ-YO-2gU"/>
  4249. </constraints>
  4250. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  4251. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  4252. <state key="normal" title="Next">
  4253. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4254. </state>
  4255. <connections>
  4256. <action selector="nextAction:" destination="5NQ-mJ-DHR" eventType="touchUpInside" id="wkM-tz-ASh"/>
  4257. </connections>
  4258. </button>
  4259. </subviews>
  4260. </stackView>
  4261. </subviews>
  4262. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4263. <constraints>
  4264. <constraint firstItem="Hfk-Zt-Kdi" firstAttribute="trailing" secondItem="Jt7-1L-bCv" secondAttribute="trailing" id="2Pk-as-rJO"/>
  4265. <constraint firstAttribute="trailing" secondItem="ScL-L9-BfK" secondAttribute="trailing" constant="20" symbolic="YES" id="3Rm-es-92n"/>
  4266. <constraint firstItem="Hfk-Zt-Kdi" firstAttribute="leading" secondItem="nAO-ky-VUE" secondAttribute="trailing" constant="8" symbolic="YES" id="45i-3F-EF3"/>
  4267. <constraint firstItem="Jt7-1L-bCv" firstAttribute="leading" secondItem="Tvf-PG-bnB" secondAttribute="leading" constant="20" symbolic="YES" id="79J-Y2-4mf"/>
  4268. <constraint firstItem="nAO-ky-VUE" firstAttribute="top" secondItem="AZT-U5-XmL" secondAttribute="bottom" constant="8" symbolic="YES" id="8oN-JA-3AU"/>
  4269. <constraint firstItem="4wq-Du-wow" firstAttribute="leading" secondItem="Tvf-PG-bnB" secondAttribute="leading" constant="20" symbolic="YES" id="8qv-oX-UJ7"/>
  4270. <constraint firstItem="AZT-U5-XmL" firstAttribute="leading" secondItem="Tvf-PG-bnB" secondAttribute="leading" constant="20" symbolic="YES" id="ABm-5T-Sf2"/>
  4271. <constraint firstItem="nAO-ky-VUE" firstAttribute="leading" secondItem="4wq-Du-wow" secondAttribute="leading" id="AYz-0B-bNM"/>
  4272. <constraint firstItem="4wq-Du-wow" firstAttribute="top" secondItem="O0Q-aO-DQf" secondAttribute="bottom" constant="20" id="Bch-Rh-FHf"/>
  4273. <constraint firstItem="nAO-ky-VUE" firstAttribute="leading" secondItem="Jt7-1L-bCv" secondAttribute="leading" id="C3Y-BP-Ua0"/>
  4274. <constraint firstItem="Hfk-Zt-Kdi" firstAttribute="top" secondItem="Y7R-GD-CfR" secondAttribute="bottom" constant="8" symbolic="YES" id="E78-lO-isE"/>
  4275. <constraint firstItem="Y7R-GD-CfR" firstAttribute="leading" secondItem="AZT-U5-XmL" secondAttribute="trailing" id="E8H-Fn-Qif"/>
  4276. <constraint firstItem="pB0-FE-TR7" firstAttribute="leading" secondItem="Tvf-PG-bnB" secondAttribute="leading" id="EOD-eF-TPW"/>
  4277. <constraint firstAttribute="trailing" secondItem="4wq-Du-wow" secondAttribute="trailing" constant="20" symbolic="YES" id="III-G2-Ma9"/>
  4278. <constraint firstItem="nAO-ky-VUE" firstAttribute="centerY" secondItem="Hfk-Zt-Kdi" secondAttribute="centerY" id="LNm-o3-DZH"/>
  4279. <constraint firstAttribute="trailing" secondItem="O0Q-aO-DQf" secondAttribute="trailing" constant="20" id="Pfc-KG-W3H"/>
  4280. <constraint firstItem="ScL-L9-BfK" firstAttribute="leading" secondItem="Tvf-PG-bnB" secondAttribute="leading" constant="20" symbolic="YES" id="TZF-yb-0iD"/>
  4281. <constraint firstAttribute="bottom" secondItem="4wq-Du-wow" secondAttribute="bottom" constant="20" symbolic="YES" id="Tba-Gd-O5m"/>
  4282. <constraint firstAttribute="trailing" secondItem="Jt7-1L-bCv" secondAttribute="trailing" constant="20" symbolic="YES" id="V71-7y-y6G"/>
  4283. <constraint firstItem="AZT-U5-XmL" firstAttribute="top" secondItem="Tvf-PG-bnB" secondAttribute="top" constant="20" symbolic="YES" id="XSl-2K-ELs"/>
  4284. <constraint firstItem="ScL-L9-BfK" firstAttribute="top" secondItem="Hfk-Zt-Kdi" secondAttribute="bottom" constant="20" id="bAg-MP-cfY"/>
  4285. <constraint firstItem="Y7R-GD-CfR" firstAttribute="top" secondItem="Tvf-PG-bnB" secondAttribute="top" constant="58" id="hsM-DY-Dc2"/>
  4286. <constraint firstAttribute="trailing" secondItem="Hfk-Zt-Kdi" secondAttribute="trailing" constant="20" symbolic="YES" id="iC7-QF-Qty"/>
  4287. <constraint firstItem="4wq-Du-wow" firstAttribute="top" secondItem="pB0-FE-TR7" secondAttribute="bottom" constant="20" id="j3I-Q6-M6x"/>
  4288. <constraint firstAttribute="trailing" secondItem="pB0-FE-TR7" secondAttribute="trailing" id="lbx-uS-5TP"/>
  4289. <constraint firstItem="Jt7-1L-bCv" firstAttribute="top" secondItem="ScL-L9-BfK" secondAttribute="bottom" constant="8" symbolic="YES" id="mfX-pZ-4KX"/>
  4290. <constraint firstAttribute="trailing" secondItem="Y7R-GD-CfR" secondAttribute="trailing" constant="20" symbolic="YES" id="nK4-c1-Hhj"/>
  4291. <constraint firstItem="nAO-ky-VUE" firstAttribute="leading" secondItem="Tvf-PG-bnB" secondAttribute="leading" constant="20" symbolic="YES" id="vcE-5d-np5"/>
  4292. <constraint firstItem="pB0-FE-TR7" firstAttribute="top" secondItem="Jt7-1L-bCv" secondAttribute="bottom" constant="20" id="zee-m9-yL3"/>
  4293. </constraints>
  4294. </view>
  4295. <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wYN-z0-CWx">
  4296. <rect key="frame" x="0.0" y="20" width="414" height="716"/>
  4297. <subviews>
  4298. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="cEJ-gi-p1m">
  4299. <rect key="frame" x="10" y="158.66666666666663" width="394" height="399"/>
  4300. <subviews>
  4301. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Congratulations You Have Submitted Your Exam Successfully!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="k0O-ec-5w0">
  4302. <rect key="frame" x="20" y="175.00000000000003" width="354" height="38.333333333333343"/>
  4303. <fontDescription key="fontDescription" name="AvenirNext-Regular" family="Avenir Next" pointSize="14"/>
  4304. <nil key="textColor"/>
  4305. <nil key="highlightedColor"/>
  4306. </label>
  4307. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="9mx-tw-K6V">
  4308. <rect key="frame" x="20" y="329" width="354" height="40"/>
  4309. <subviews>
  4310. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="43s-n9-J9e">
  4311. <rect key="frame" x="0.0" y="0.0" width="173" height="40"/>
  4312. <color key="backgroundColor" name="AccentColor"/>
  4313. <constraints>
  4314. <constraint firstAttribute="height" constant="40" id="kAr-Rp-50u"/>
  4315. </constraints>
  4316. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  4317. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  4318. <state key="normal" title="OK">
  4319. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4320. </state>
  4321. <connections>
  4322. <action selector="closeAction:" destination="5NQ-mJ-DHR" eventType="touchUpInside" id="3aW-0F-aWv"/>
  4323. </connections>
  4324. </button>
  4325. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="E3u-Ue-Q0x">
  4326. <rect key="frame" x="181" y="0.0" width="173" height="40"/>
  4327. <color key="backgroundColor" name="AccentColor"/>
  4328. <constraints>
  4329. <constraint firstAttribute="height" constant="40" id="wvk-Cx-Xuy"/>
  4330. </constraints>
  4331. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="18"/>
  4332. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  4333. <state key="normal" title="View Answers">
  4334. <color key="titleColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4335. </state>
  4336. <connections>
  4337. <action selector="viewResultAction:" destination="5NQ-mJ-DHR" eventType="touchUpInside" id="xuR-10-JRB"/>
  4338. </connections>
  4339. </button>
  4340. </subviews>
  4341. </stackView>
  4342. <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" verticalCompressionResistancePriority="749" image="check-mark" translatesAutoresizingMaskIntoConstraints="NO" id="pCK-9B-Sih">
  4343. <rect key="frame" x="122" y="30" width="150" height="130"/>
  4344. <constraints>
  4345. <constraint firstAttribute="width" constant="150" id="Ahd-RH-54R"/>
  4346. <constraint firstAttribute="height" constant="130" id="cMj-nf-bZx"/>
  4347. </constraints>
  4348. </imageView>
  4349. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Pass / Fail" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tbU-Bo-Zu9">
  4350. <rect key="frame" x="20" y="233.33333333333334" width="354" height="27.333333333333343"/>
  4351. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="20"/>
  4352. <color key="textColor" systemColor="systemRedColor"/>
  4353. <nil key="highlightedColor"/>
  4354. </label>
  4355. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Score: 0/0" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h8G-zf-E4g">
  4356. <rect key="frame" x="20" y="275.66666666666663" width="354" height="22"/>
  4357. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="16"/>
  4358. <nil key="textColor"/>
  4359. <nil key="highlightedColor"/>
  4360. </label>
  4361. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MMc-FK-Plo">
  4362. <rect key="frame" x="47" y="307.66666666666663" width="300" height="1"/>
  4363. <color key="backgroundColor" systemColor="systemGray3Color"/>
  4364. <constraints>
  4365. <constraint firstAttribute="height" constant="1" id="Sz8-o3-GgR"/>
  4366. </constraints>
  4367. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4368. <nil key="textColor"/>
  4369. <nil key="highlightedColor"/>
  4370. </label>
  4371. </subviews>
  4372. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4373. <constraints>
  4374. <constraint firstItem="MMc-FK-Plo" firstAttribute="width" secondItem="cEJ-gi-p1m" secondAttribute="width" multiplier="0.761421" id="3Jo-CP-iyd"/>
  4375. <constraint firstItem="tbU-Bo-Zu9" firstAttribute="leading" secondItem="cEJ-gi-p1m" secondAttribute="leading" constant="20" symbolic="YES" id="5FR-EM-X22"/>
  4376. <constraint firstAttribute="trailing" secondItem="tbU-Bo-Zu9" secondAttribute="trailing" constant="20" symbolic="YES" id="D6e-24-Fl1"/>
  4377. <constraint firstAttribute="trailing" secondItem="h8G-zf-E4g" secondAttribute="trailing" constant="20" symbolic="YES" id="EAR-kM-aSu"/>
  4378. <constraint firstAttribute="bottom" secondItem="9mx-tw-K6V" secondAttribute="bottom" constant="30" id="Lh6-EJ-1k1"/>
  4379. <constraint firstItem="pCK-9B-Sih" firstAttribute="centerX" secondItem="cEJ-gi-p1m" secondAttribute="centerX" id="MDq-Kn-MJD"/>
  4380. <constraint firstAttribute="trailing" secondItem="k0O-ec-5w0" secondAttribute="trailing" constant="20" symbolic="YES" id="MUj-Td-u6b"/>
  4381. <constraint firstItem="tbU-Bo-Zu9" firstAttribute="top" secondItem="k0O-ec-5w0" secondAttribute="bottom" constant="20" id="Tzo-jq-HcJ"/>
  4382. <constraint firstItem="MMc-FK-Plo" firstAttribute="top" secondItem="h8G-zf-E4g" secondAttribute="bottom" constant="10" id="U9u-WK-xxh"/>
  4383. <constraint firstItem="pCK-9B-Sih" firstAttribute="top" secondItem="cEJ-gi-p1m" secondAttribute="top" constant="30" id="VIU-Hb-erX"/>
  4384. <constraint firstAttribute="trailing" secondItem="9mx-tw-K6V" secondAttribute="trailing" constant="20" symbolic="YES" id="Ye2-Cu-JbM"/>
  4385. <constraint firstItem="h8G-zf-E4g" firstAttribute="top" secondItem="tbU-Bo-Zu9" secondAttribute="bottom" constant="15" id="bDH-CJ-e0e"/>
  4386. <constraint firstItem="9mx-tw-K6V" firstAttribute="leading" secondItem="cEJ-gi-p1m" secondAttribute="leading" constant="20" symbolic="YES" id="ghP-bk-Gn2"/>
  4387. <constraint firstItem="k0O-ec-5w0" firstAttribute="top" secondItem="pCK-9B-Sih" secondAttribute="bottom" constant="15" id="ksm-bd-iJm"/>
  4388. <constraint firstItem="k0O-ec-5w0" firstAttribute="leading" secondItem="cEJ-gi-p1m" secondAttribute="leading" constant="20" symbolic="YES" id="ohL-tG-OPG"/>
  4389. <constraint firstItem="MMc-FK-Plo" firstAttribute="centerX" secondItem="cEJ-gi-p1m" secondAttribute="centerX" id="pVy-AK-lKq"/>
  4390. <constraint firstItem="9mx-tw-K6V" firstAttribute="top" secondItem="MMc-FK-Plo" secondAttribute="bottom" constant="20.329999999999998" id="shq-Wi-ttB"/>
  4391. <constraint firstItem="h8G-zf-E4g" firstAttribute="leading" secondItem="cEJ-gi-p1m" secondAttribute="leading" constant="20" symbolic="YES" id="x2S-oX-mBW"/>
  4392. </constraints>
  4393. </view>
  4394. </subviews>
  4395. <color key="backgroundColor" systemColor="secondaryLabelColor"/>
  4396. <constraints>
  4397. <constraint firstItem="cEJ-gi-p1m" firstAttribute="centerY" secondItem="wYN-z0-CWx" secondAttribute="centerY" id="5kc-fT-lZE"/>
  4398. <constraint firstItem="cEJ-gi-p1m" firstAttribute="height" secondItem="wYN-z0-CWx" secondAttribute="height" multiplier="0.557263" priority="250" id="GHP-Iq-Fv1"/>
  4399. <constraint firstItem="cEJ-gi-p1m" firstAttribute="width" secondItem="wYN-z0-CWx" secondAttribute="width" multiplier="0.951691" id="Jmh-5D-pbZ"/>
  4400. <constraint firstItem="cEJ-gi-p1m" firstAttribute="centerX" secondItem="wYN-z0-CWx" secondAttribute="centerX" id="bF3-f2-dod"/>
  4401. </constraints>
  4402. </view>
  4403. <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="pG6-Zn-0fu">
  4404. <rect key="frame" x="0.0" y="20" width="414" height="716"/>
  4405. <subviews>
  4406. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="6jc-jx-UuD">
  4407. <rect key="frame" x="20" y="239.66666666666669" width="374" height="237"/>
  4408. <subviews>
  4409. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="c9o-Hc-O5Q">
  4410. <rect key="frame" x="10" y="10" width="30" height="30"/>
  4411. <constraints>
  4412. <constraint firstAttribute="height" constant="30" id="a8b-pR-JE9"/>
  4413. <constraint firstAttribute="width" constant="30" id="cNa-V6-s1C"/>
  4414. </constraints>
  4415. <color key="tintColor" name="orange"/>
  4416. <inset key="imageEdgeInsets" minX="0.0" minY="0.0" maxX="2.2250738585072014e-308" maxY="0.0"/>
  4417. <state key="normal" image="x.circle" catalog="system"/>
  4418. <connections>
  4419. <action selector="cancelAction:" destination="5NQ-mJ-DHR" eventType="touchUpInside" id="HIi-vB-Pmd"/>
  4420. </connections>
  4421. </button>
  4422. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" bounces="NO" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" bouncesZoom="NO" keyboardDismissMode="onDrag" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="r0t-59-ij9">
  4423. <rect key="frame" x="20" y="48" width="334" height="169"/>
  4424. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4425. <constraints>
  4426. <constraint firstAttribute="height" constant="169" id="fba-Ek-H8O"/>
  4427. </constraints>
  4428. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="10" minimumInteritemSpacing="10" id="rb4-9H-0dW">
  4429. <size key="itemSize" width="100" height="100"/>
  4430. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  4431. <size key="footerReferenceSize" width="0.0" height="0.0"/>
  4432. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  4433. </collectionViewFlowLayout>
  4434. <cells>
  4435. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="QuestionNumberCollectionViewCell" id="lS3-Py-51j" customClass="QuestionNumberCollectionViewCell" customModule="LMS" customModuleProvider="target">
  4436. <rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
  4437. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4438. <collectionViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" id="HSa-8C-5gv">
  4439. <rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
  4440. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4441. <subviews>
  4442. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3mE-Ci-mDy">
  4443. <rect key="frame" x="0.0" y="0.0" width="100" height="100"/>
  4444. <subviews>
  4445. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="1" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tq2-63-N50">
  4446. <rect key="frame" x="20" y="20" width="60" height="60"/>
  4447. <fontDescription key="fontDescription" name="AvenirNext-DemiBold" family="Avenir Next" pointSize="16"/>
  4448. <nil key="textColor"/>
  4449. <nil key="highlightedColor"/>
  4450. </label>
  4451. </subviews>
  4452. <color key="backgroundColor" systemColor="systemGray5Color"/>
  4453. <constraints>
  4454. <constraint firstAttribute="bottom" secondItem="tq2-63-N50" secondAttribute="bottom" constant="20" symbolic="YES" id="0cw-Z0-QGX"/>
  4455. <constraint firstAttribute="trailing" secondItem="tq2-63-N50" secondAttribute="trailing" constant="20" symbolic="YES" id="7Z0-6j-j2X"/>
  4456. <constraint firstItem="tq2-63-N50" firstAttribute="top" secondItem="3mE-Ci-mDy" secondAttribute="top" constant="20" symbolic="YES" id="xgc-SM-Len"/>
  4457. <constraint firstItem="tq2-63-N50" firstAttribute="leading" secondItem="3mE-Ci-mDy" secondAttribute="leading" constant="20" symbolic="YES" id="zZT-8N-wJc"/>
  4458. </constraints>
  4459. </view>
  4460. </subviews>
  4461. <constraints>
  4462. <constraint firstAttribute="trailing" secondItem="3mE-Ci-mDy" secondAttribute="trailing" id="7h2-Ne-1Fx"/>
  4463. <constraint firstAttribute="bottom" secondItem="3mE-Ci-mDy" secondAttribute="bottom" id="R6x-z9-mWH"/>
  4464. <constraint firstItem="3mE-Ci-mDy" firstAttribute="top" secondItem="HSa-8C-5gv" secondAttribute="top" id="aGx-89-MzX"/>
  4465. <constraint firstItem="3mE-Ci-mDy" firstAttribute="leading" secondItem="HSa-8C-5gv" secondAttribute="leading" id="kBN-nB-kIA"/>
  4466. </constraints>
  4467. </collectionViewCellContentView>
  4468. <connections>
  4469. <outlet property="customCellView" destination="3mE-Ci-mDy" id="IJm-2I-kUq"/>
  4470. <outlet property="serialNoLabel" destination="tq2-63-N50" id="c1m-PZ-XYX"/>
  4471. </connections>
  4472. </collectionViewCell>
  4473. </cells>
  4474. </collectionView>
  4475. </subviews>
  4476. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4477. <constraints>
  4478. <constraint firstAttribute="bottom" secondItem="r0t-59-ij9" secondAttribute="bottom" constant="20" id="75j-We-Af9"/>
  4479. <constraint firstItem="c9o-Hc-O5Q" firstAttribute="leading" secondItem="6jc-jx-UuD" secondAttribute="leading" constant="10" id="7RL-No-hWZ"/>
  4480. <constraint firstItem="r0t-59-ij9" firstAttribute="leading" secondItem="6jc-jx-UuD" secondAttribute="leading" constant="20" id="WiC-g2-puG"/>
  4481. <constraint firstItem="c9o-Hc-O5Q" firstAttribute="top" secondItem="6jc-jx-UuD" secondAttribute="top" constant="10" id="pIB-zZ-9HJ"/>
  4482. <constraint firstItem="r0t-59-ij9" firstAttribute="top" secondItem="c9o-Hc-O5Q" secondAttribute="bottom" constant="8" symbolic="YES" id="pXb-Ud-tSb"/>
  4483. <constraint firstAttribute="trailing" secondItem="r0t-59-ij9" secondAttribute="trailing" constant="20" id="yaO-Lx-ZOC"/>
  4484. </constraints>
  4485. </view>
  4486. </subviews>
  4487. <color key="backgroundColor" systemColor="secondaryLabelColor"/>
  4488. <constraints>
  4489. <constraint firstItem="6jc-jx-UuD" firstAttribute="leading" secondItem="pG6-Zn-0fu" secondAttribute="leading" constant="20" symbolic="YES" id="6wj-8C-bqs"/>
  4490. <constraint firstItem="6jc-jx-UuD" firstAttribute="height" secondItem="pG6-Zn-0fu" secondAttribute="height" multiplier="0.331006" priority="250" id="Dvr-Dc-WKi"/>
  4491. <constraint firstItem="6jc-jx-UuD" firstAttribute="centerX" secondItem="pG6-Zn-0fu" secondAttribute="centerX" id="F0e-8P-jfs"/>
  4492. <constraint firstItem="6jc-jx-UuD" firstAttribute="centerY" secondItem="pG6-Zn-0fu" secondAttribute="centerY" id="ZQN-Bg-Pgo"/>
  4493. <constraint firstAttribute="trailing" secondItem="6jc-jx-UuD" secondAttribute="trailing" constant="20" symbolic="YES" id="kuv-ga-YIW"/>
  4494. </constraints>
  4495. </view>
  4496. </subviews>
  4497. <viewLayoutGuide key="safeArea" id="Qrs-IP-Cer"/>
  4498. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4499. <constraints>
  4500. <constraint firstItem="wYN-z0-CWx" firstAttribute="trailing" secondItem="Qrs-IP-Cer" secondAttribute="trailing" id="5t4-Yk-gv7"/>
  4501. <constraint firstAttribute="trailing" secondItem="QsQ-ni-5ad" secondAttribute="trailing" id="D5C-5S-7yB"/>
  4502. <constraint firstItem="Tvf-PG-bnB" firstAttribute="bottom" secondItem="Qrs-IP-Cer" secondAttribute="bottom" id="G8G-hD-YZq"/>
  4503. <constraint firstItem="Tvf-PG-bnB" firstAttribute="leading" secondItem="Qrs-IP-Cer" secondAttribute="leading" id="Ip8-Ma-0hA"/>
  4504. <constraint firstItem="Tvf-PG-bnB" firstAttribute="top" secondItem="QsQ-ni-5ad" secondAttribute="bottom" id="Pb3-Vs-vQr"/>
  4505. <constraint firstItem="QsQ-ni-5ad" firstAttribute="top" secondItem="Qrs-IP-Cer" secondAttribute="top" id="ZR7-dn-9Gh"/>
  4506. <constraint firstItem="pG6-Zn-0fu" firstAttribute="top" secondItem="Qrs-IP-Cer" secondAttribute="top" id="fBa-ud-Z7e"/>
  4507. <constraint firstItem="QsQ-ni-5ad" firstAttribute="leading" secondItem="Qrs-IP-Cer" secondAttribute="leading" id="fNI-lm-e9b"/>
  4508. <constraint firstItem="Qrs-IP-Cer" firstAttribute="trailing" secondItem="pG6-Zn-0fu" secondAttribute="trailing" id="hJV-U3-Knm"/>
  4509. <constraint firstItem="wYN-z0-CWx" firstAttribute="bottom" secondItem="Qrs-IP-Cer" secondAttribute="bottom" id="i9L-fE-LsP"/>
  4510. <constraint firstItem="Tvf-PG-bnB" firstAttribute="trailing" secondItem="Qrs-IP-Cer" secondAttribute="trailing" id="jwO-6a-cJo"/>
  4511. <constraint firstItem="wYN-z0-CWx" firstAttribute="leading" secondItem="Qrs-IP-Cer" secondAttribute="leading" id="klc-S0-uE9"/>
  4512. <constraint firstItem="wYN-z0-CWx" firstAttribute="top" secondItem="Qrs-IP-Cer" secondAttribute="top" id="mbT-Oj-M6X"/>
  4513. <constraint firstItem="Qrs-IP-Cer" firstAttribute="bottom" secondItem="pG6-Zn-0fu" secondAttribute="bottom" id="wIj-VJ-aOJ"/>
  4514. <constraint firstItem="pG6-Zn-0fu" firstAttribute="leading" secondItem="Qrs-IP-Cer" secondAttribute="leading" id="yK3-Xg-dVE"/>
  4515. </constraints>
  4516. </view>
  4517. <connections>
  4518. <outlet property="answerInstructionLabel" destination="Jt7-1L-bCv" id="Tyq-As-chy"/>
  4519. <outlet property="answerTF" destination="vIi-eT-VBF" id="AQu-0c-YgD"/>
  4520. <outlet property="boolTableView" destination="oEF-rV-Mbc" id="Io2-5l-L3t"/>
  4521. <outlet property="checkImageView" destination="pCK-9B-Sih" id="k0c-p6-PX7"/>
  4522. <outlet property="collectionViewHeightConstraint" destination="fba-Ek-H8O" id="F5x-Gu-Hgi"/>
  4523. <outlet property="customSubmittedView" destination="cEJ-gi-p1m" id="lYP-a2-zzN"/>
  4524. <outlet property="dragView" destination="llW-SS-PnM" id="YSh-wv-T69"/>
  4525. <outlet property="mcqTableView" destination="0fX-TV-SOr" id="c9N-ec-EXc"/>
  4526. <outlet property="mcqView" destination="zf4-AM-HrR" id="ren-g7-cie"/>
  4527. <outlet property="navigationBar" destination="QsQ-ni-5ad" id="8b7-ff-4pA"/>
  4528. <outlet property="nextButton" destination="0AJ-De-JH5" id="vQC-DB-4Kp"/>
  4529. <outlet property="okButton" destination="43s-n9-J9e" id="cq2-5U-D1Y"/>
  4530. <outlet property="option1TableView" destination="zYB-b2-jFe" id="uzS-L2-Hwc"/>
  4531. <outlet property="option2TableView" destination="r2Z-iD-ScN" id="a15-JP-eyq"/>
  4532. <outlet property="questionCustomView" destination="6jc-jx-UuD" id="EDe-98-2wD"/>
  4533. <outlet property="questionLabel" destination="ScL-L9-BfK" id="0E2-1L-gqI"/>
  4534. <outlet property="questionNumberCollectionView" destination="r0t-59-ij9" id="ZR1-iS-3UA"/>
  4535. <outlet property="questionNumberLabel" destination="AZT-U5-XmL" id="vn7-dU-o9W"/>
  4536. <outlet property="questionNumberView" destination="pG6-Zn-0fu" id="FTS-7J-0zP"/>
  4537. <outlet property="questionNumbersButton" destination="O0Q-aO-DQf" id="kN0-04-C2s"/>
  4538. <outlet property="questionTypeLabel" destination="nAO-ky-VUE" id="sNQ-sp-ZFj"/>
  4539. <outlet property="quizSubmittedView" destination="wYN-z0-CWx" id="XSn-Ei-Dt1"/>
  4540. <outlet property="quizView" destination="pB0-FE-TR7" id="D7t-6r-SW4"/>
  4541. <outlet property="resultStatusLabel" destination="tbU-Bo-Zu9" id="nZv-FC-Qgj"/>
  4542. <outlet property="scoreLabel" destination="h8G-zf-E4g" id="fS1-tu-N6V"/>
  4543. <outlet property="skipButton" destination="GUP-Xn-OPP" id="Snd-wI-HLM"/>
  4544. <outlet property="timerLabel" destination="Aq1-m1-wu1" id="0Co-mp-omq"/>
  4545. <outlet property="trueFalseView" destination="0xR-zA-0or" id="qlA-SM-ycE"/>
  4546. <outlet property="viewAnswerButton" destination="E3u-Ue-Q0x" id="Yb9-Cq-OjU"/>
  4547. </connections>
  4548. </viewController>
  4549. <placeholder placeholderIdentifier="IBFirstResponder" id="1Ap-8a-0vc" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  4550. </objects>
  4551. <point key="canvasLocation" x="3186.9565217391305" y="2282.608695652174"/>
  4552. </scene>
  4553. <!--You Tube View Controller-->
  4554. <scene sceneID="TYE-mb-iZA">
  4555. <objects>
  4556. <viewController storyboardIdentifier="YouTubeViewController" id="WGO-Qh-ghF" customClass="YouTubeViewController" customModule="LMS" customModuleProvider="target" sceneMemberID="viewController">
  4557. <view key="view" contentMode="scaleToFill" id="Eb1-9d-2zB">
  4558. <rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
  4559. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4560. <subviews>
  4561. <navigationBar contentMode="scaleToFill" translucent="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EHd-JC-Ptt">
  4562. <rect key="frame" x="0.0" y="20" width="414" height="44"/>
  4563. <color key="barTintColor" name="AccentColor"/>
  4564. <textAttributes key="titleTextAttributes">
  4565. <fontDescription key="fontDescription" name="AvenirNext-Medium" family="Avenir Next" pointSize="15"/>
  4566. <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4567. </textAttributes>
  4568. <items>
  4569. <navigationItem title="Video Player" id="USK-vv-mXd">
  4570. <barButtonItem key="leftBarButtonItem" image="arrow.backward" catalog="system" id="enW-OW-A2q">
  4571. <color key="tintColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4572. <connections>
  4573. <action selector="backAction:" destination="WGO-Qh-ghF" id="TxU-xj-u4V"/>
  4574. </connections>
  4575. </barButtonItem>
  4576. </navigationItem>
  4577. </items>
  4578. </navigationBar>
  4579. <wkWebView contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="IhF-y4-5DX">
  4580. <rect key="frame" x="20" y="243" width="374" height="250"/>
  4581. <color key="backgroundColor" red="0.36078431370000003" green="0.38823529410000002" blue="0.4039215686" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4582. <constraints>
  4583. <constraint firstAttribute="height" constant="250" id="2ZR-fn-bhv"/>
  4584. </constraints>
  4585. <wkWebViewConfiguration key="configuration">
  4586. <audiovisualMediaTypes key="mediaTypesRequiringUserActionForPlayback" none="YES"/>
  4587. <wkPreferences key="preferences"/>
  4588. </wkWebViewConfiguration>
  4589. </wkWebView>
  4590. </subviews>
  4591. <viewLayoutGuide key="safeArea" id="RTr-C1-AFs"/>
  4592. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  4593. <constraints>
  4594. <constraint firstItem="EHd-JC-Ptt" firstAttribute="top" secondItem="RTr-C1-AFs" secondAttribute="top" id="0fW-p9-FQm"/>
  4595. <constraint firstItem="EHd-JC-Ptt" firstAttribute="leading" secondItem="RTr-C1-AFs" secondAttribute="leading" id="BPF-lm-vta"/>
  4596. <constraint firstItem="IhF-y4-5DX" firstAttribute="leading" secondItem="RTr-C1-AFs" secondAttribute="leading" constant="20" id="CMe-2l-Jzp"/>
  4597. <constraint firstItem="RTr-C1-AFs" firstAttribute="trailing" secondItem="IhF-y4-5DX" secondAttribute="trailing" constant="20" id="EGK-ex-LNx"/>
  4598. <constraint firstAttribute="trailing" secondItem="EHd-JC-Ptt" secondAttribute="trailing" id="EgO-yy-vdq"/>
  4599. <constraint firstItem="IhF-y4-5DX" firstAttribute="centerY" secondItem="Eb1-9d-2zB" secondAttribute="centerY" id="kx7-iv-p8s"/>
  4600. <constraint firstItem="IhF-y4-5DX" firstAttribute="centerX" secondItem="Eb1-9d-2zB" secondAttribute="centerX" id="lhK-fx-NXa"/>
  4601. </constraints>
  4602. </view>
  4603. <connections>
  4604. <outlet property="navigationBar" destination="EHd-JC-Ptt" id="xyY-On-FOu"/>
  4605. <outlet property="youtubeWebView" destination="IhF-y4-5DX" id="hU4-e5-J8M"/>
  4606. </connections>
  4607. </viewController>
  4608. <placeholder placeholderIdentifier="IBFirstResponder" id="4hJ-0A-vAw" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  4609. </objects>
  4610. <point key="canvasLocation" x="2424.6376811594205" y="6015.489130434783"/>
  4611. </scene>
  4612. </scenes>
  4613. <resources>
  4614. <image name="Finlabs" width="321" height="65"/>
  4615. <image name="Hinduja College" width="172" height="213"/>
  4616. <image name="Hinduja Foundation (White)" width="3474" height="1698"/>
  4617. <image name="arrow.backward" catalog="system" width="128" height="95"/>
  4618. <image name="arrow.left" catalog="system" width="128" height="95"/>
  4619. <image name="backward-arrows-couple" width="512" height="512"/>
  4620. <image name="book.closed.fill" catalog="system" width="115" height="128"/>
  4621. <image name="check-mark" width="512" height="512"/>
  4622. <image name="checkmark.square" catalog="system" width="128" height="114"/>
  4623. <image name="chevron.down" catalog="system" width="128" height="70"/>
  4624. <image name="chevron.right" catalog="system" width="97" height="128"/>
  4625. <image name="circle" catalog="system" width="128" height="123"/>
  4626. <image name="circle.fill" catalog="system" width="128" height="123"/>
  4627. <image name="circle.grid.3x3.fill" catalog="system" width="128" height="111"/>
  4628. <image name="clock" catalog="system" width="128" height="123"/>
  4629. <image name="fast-forward" width="512" height="512"/>
  4630. <image name="filter" width="21.333333969116211" height="21.333333969116211"/>
  4631. <image name="graduationcap.fill" catalog="system" width="128" height="108"/>
  4632. <image name="ic_clock" width="512" height="512"/>
  4633. <image name="ic_drag_white" width="683" height="683"/>
  4634. <image name="ic_slno_bannar" width="60" height="66"/>
  4635. <image name="ic_video_call" width="512" height="512"/>
  4636. <image name="icloud.and.arrow.down.fill" catalog="system" width="128" height="111"/>
  4637. <image name="icloud.and.arrow.up.fill" catalog="system" width="128" height="108"/>
  4638. <image name="line.3.horizontal.circle" catalog="system" width="128" height="123"/>
  4639. <image name="login-lock" width="131" height="127"/>
  4640. <image name="multiply.circle.fill" catalog="system" width="128" height="123"/>
  4641. <image name="newAssessment-image" width="64" height="64"/>
  4642. <image name="pencil.and.list.clipboard" catalog="system" width="114" height="128"/>
  4643. <image name="person.fill" catalog="system" width="128" height="120"/>
  4644. <image name="play-button-arrowhead" width="512" height="512"/>
  4645. <image name="plus" catalog="system" width="128" height="113"/>
  4646. <image name="scorn-test" width="60" height="46"/>
  4647. <image name="session_background" width="362" height="84"/>
  4648. <image name="square" catalog="system" width="128" height="114"/>
  4649. <image name="stopwatch" catalog="system" width="121" height="128"/>
  4650. <image name="study-material" width="800" height="800"/>
  4651. <image name="x.circle" catalog="system" width="128" height="123"/>
  4652. <namedColor name="AccentColor">
  4653. <color red="0.050999999046325684" green="0.29800000786781311" blue="0.53299999237060547" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4654. </namedColor>
  4655. <namedColor name="orange">
  4656. <color red="0.98000001907348633" green="0.52899998426437378" blue="0.016000000759959221" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4657. </namedColor>
  4658. <namedColor name="secondary">
  4659. <color red="0.10599999874830246" green="0.37599998712539673" blue="0.59600001573562622" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4660. </namedColor>
  4661. <systemColor name="labelColor">
  4662. <color white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4663. </systemColor>
  4664. <systemColor name="secondaryLabelColor">
  4665. <color red="0.23529411764705882" green="0.23529411764705882" blue="0.2627450980392157" alpha="0.59999999999999998" colorSpace="custom" customColorSpace="sRGB"/>
  4666. </systemColor>
  4667. <systemColor name="systemBackgroundColor">
  4668. <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  4669. </systemColor>
  4670. <systemColor name="systemGray3Color">
  4671. <color red="0.7803921568627451" green="0.7803921568627451" blue="0.80000000000000004" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4672. </systemColor>
  4673. <systemColor name="systemGray5Color">
  4674. <color red="0.89803921568627454" green="0.89803921568627454" blue="0.91764705882352937" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4675. </systemColor>
  4676. <systemColor name="systemGray6Color">
  4677. <color red="0.94901960784313721" green="0.94901960784313721" blue="0.96862745098039216" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4678. </systemColor>
  4679. <systemColor name="systemRedColor">
  4680. <color red="1" green="0.23137254901960785" blue="0.18823529411764706" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4681. </systemColor>
  4682. </resources>
  4683. </document>