| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184 |
- <shapes name="mxgraph.rack.hpe_aruba.security">
- <shape aspect="variable" h="62.916" name="Aruba ClearPass C1000 front" strokewidth="inherit" w="682.593">
- <connections/>
- <foreground>
- <save/>
- <strokecolor color="#4a4a4a"/>
- <fillcolor color="#595959"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="0" y="0.008"/>
- <line x="0" y="62.883"/>
- <line x="682.593" y="62.883"/>
- <line x="682.593" y="0.008"/>
- <line x="0" y="0.008"/>
- <close/>
- <move x="9.755" y="4.402"/>
- <line x="14.753" y="4.402"/>
- <curve x1="17.304" x2="19.357" x3="19.357" y1="4.402" y2="6.456" y3="9.006"/>
- <curve x1="19.357" x2="17.304" x3="14.753" y1="11.557" y2="13.61" y3="13.61"/>
- <line x="9.755" y="13.61"/>
- <curve x1="7.204" x2="5.151" x3="5.151" y1="13.61" y2="11.557" y3="9.006"/>
- <curve x1="5.151" x2="7.204" x3="9.755" y1="6.456" y2="4.402" y3="4.402"/>
- <close/>
- <move x="667.842" y="4.402"/>
- <line x="672.84" y="4.402"/>
- <curve x1="675.391" x2="677.444" x3="677.444" y1="4.402" y2="6.456" y3="9.006"/>
- <curve x1="677.444" x2="675.391" x3="672.84" y1="11.557" y2="13.61" y3="13.61"/>
- <line x="667.842" y="13.61"/>
- <curve x1="665.291" x2="663.238" x3="663.238" y1="13.61" y2="11.557" y3="9.006"/>
- <curve x1="663.238" x2="665.291" x3="667.842" y1="6.456" y2="4.402" y3="4.402"/>
- <close/>
- <move x="9.755" y="26.848"/>
- <line x="14.753" y="26.848"/>
- <curve x1="17.304" x2="19.357" x3="19.357" y1="26.848" y2="28.901" y3="31.452"/>
- <curve x1="19.357" x2="17.304" x3="14.753" y1="34.003" y2="36.056" y3="36.056"/>
- <line x="9.755" y="36.056"/>
- <curve x1="7.204" x2="5.151" x3="5.151" y1="36.056" y2="34.003" y3="31.452"/>
- <curve x1="5.151" x2="7.204" x3="9.755" y1="28.901" y2="26.848" y3="26.848"/>
- <close/>
- <move x="667.842" y="26.848"/>
- <line x="672.84" y="26.848"/>
- <curve x1="675.39" x2="677.444" x3="677.444" y1="26.848" y2="28.901" y3="31.452"/>
- <curve x1="677.444" x2="675.39" x3="672.84" y1="34.003" y2="36.056" y3="36.056"/>
- <line x="667.842" y="36.056"/>
- <curve x1="665.291" x2="663.238" x3="663.238" y1="36.056" y2="34.003" y3="31.452"/>
- <curve x1="663.238" x2="665.291" x3="667.842" y1="28.901" y2="26.848" y3="26.848"/>
- <close/>
- <move x="9.755" y="49.295"/>
- <line x="14.753" y="49.295"/>
- <curve x1="17.304" x2="19.357" x3="19.357" y1="49.295" y2="51.349" y3="53.899"/>
- <curve x1="19.357" x2="17.304" x3="14.753" y1="56.45" y2="58.503" y3="58.503"/>
- <line x="9.755" y="58.503"/>
- <curve x1="7.204" x2="5.151" x3="5.151" y1="58.503" y2="56.45" y3="53.899"/>
- <curve x1="5.151" x2="7.204" x3="9.755" y1="51.349" y2="49.295" y3="49.295"/>
- <close/>
- <move x="667.842" y="49.295"/>
- <line x="672.84" y="49.295"/>
- <curve x1="675.391" x2="677.444" x3="677.444" y1="49.295" y2="51.349" y3="53.899"/>
- <curve x1="677.444" x2="675.391" x3="672.84" y1="56.45" y2="58.503" y3="58.503"/>
- <line x="667.842" y="58.503"/>
- <curve x1="665.291" x2="663.238" x3="663.238" y1="58.503" y2="56.45" y3="53.899"/>
- <curve x1="663.238" x2="665.291" x3="667.842" y1="51.349" y2="49.295" y3="49.295"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#4b4b4b"/>
- <fillcolor color="#666"/>
- <rect h="62.916" w="639.022" x="21.744" y="0"/>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#404040"/>
- <path>
- <move x="33.041" y="44.561"/>
- <line x="33.041" y="4.668"/>
- <line x="320.105" y="4.668"/>
- <line x="320.105" y="56.115"/>
- <line x="181.154" y="56.115"/>
- <line x="181.154" y="44.561"/>
- <line x="33.041" y="44.561"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#1a1a1a"/>
- <path>
- <move x="321.644" y="4.597"/>
- <line x="512.989" y="4.597"/>
- <line x="512.989" y="56.352"/>
- <line x="321.644" y="56.352"/>
- <line x="321.644" y="4.597"/>
- <close/>
- <move x="44.594" y="47.828"/>
- <line x="179.901" y="47.828"/>
- <line x="179.901" y="53.389"/>
- <line x="44.594" y="53.389"/>
- <line x="44.594" y="47.828"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#4e4e4e"/>
- <fillcolor color="#595959"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="634.939" y="9.465"/>
- <curve x1="634.939" x2="633.679" x3="632.126" y1="7.913" y2="6.653" y3="6.653"/>
- <line x="554.215" y="6.653"/>
- <curve x1="552.663" x2="551.402" x3="551.402" y1="6.653" y2="7.913" y3="9.465"/>
- <line x="551.402" y="28.731"/>
- <curve x1="551.402" x2="552.663" x3="554.215" y1="30.283" y2="31.543" y3="31.543"/>
- <line x="632.126" y="31.543"/>
- <curve x1="633.679" x2="634.939" x3="634.939" y1="31.543" y2="30.283" y3="28.731"/>
- <line x="634.939" y="9.465"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#d56d88"/>
- <fillcolor color="#e23662"/>
- <path>
- <move x="610.365" y="17.615"/>
- <curve x1="610.365" x2="608.866" x3="607.044" y1="19.437" y2="20.936" y3="20.936"/>
- <curve x1="607.044" x2="607.044" x3="607.044" y1="20.936" y2="20.936" y3="20.936"/>
- <curve x1="605.222" x2="603.723" x3="603.723" y1="20.936" y2="19.437" y3="17.615"/>
- <line x="603.723" y="17.615"/>
- <curve x1="603.723" x2="605.222" x3="607.044" y1="15.793" y2="14.294" y3="14.294"/>
- <curve x1="607.044" x2="607.044" x3="607.044" y1="14.294" y2="14.294" y3="14.294"/>
- <curve x1="608.866" x2="610.365" x3="610.365" y1="14.294" y2="15.793" y3="17.615"/>
- <close/>
- <move x="624.296" y="17.566"/>
- <curve x1="624.296" x2="622.222" x3="619.702" y1="20.086" y2="22.159" y3="22.159"/>
- <curve x1="617.183" x2="615.109" x3="615.109" y1="22.159" y2="20.086" y3="17.566"/>
- <curve x1="615.109" x2="617.183" x3="619.702" y1="15.046" y2="12.972" y3="12.972"/>
- <curve x1="622.222" x2="624.296" x3="624.296" y1="12.972" y2="15.046" y3="17.566"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#474a47"/>
- <fillcolor color="#7d9ed5"/>
- <path>
- <move x="563.273" y="21.655"/>
- <curve x1="563.273" x2="562.409" x3="561.358" y1="22.706" y2="23.57" y3="23.57"/>
- <curve x1="560.308" x2="559.443" x3="559.443" y1="23.57" y2="22.706" y3="21.655"/>
- <curve x1="559.443" x2="560.308" x3="561.358" y1="20.605" y2="19.74" y3="19.74"/>
- <curve x1="562.409" x2="563.273" x3="563.273" y1="19.74" y2="20.605" y3="21.655"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#78cf6c"/>
- <path>
- <move x="571.694" y="21.655"/>
- <curve x1="571.694" x2="570.829" x3="569.779" y1="22.706" y2="23.57" y3="23.57"/>
- <curve x1="569.779" x2="569.779" x3="569.779" y1="23.57" y2="23.57" y3="23.57"/>
- <curve x1="568.728" x2="567.864" x3="567.864" y1="23.57" y2="22.706" y3="21.655"/>
- <line x="567.864" y="21.655"/>
- <curve x1="567.864" x2="568.728" x3="569.779" y1="20.605" y2="19.74" y3="19.74"/>
- <curve x1="569.779" x2="569.779" x3="569.779" y1="19.74" y2="19.74" y3="19.74"/>
- <curve x1="570.829" x2="571.694" x3="571.694" y1="19.74" y2="20.605" y3="21.655"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="580.114" y="21.655"/>
- <curve x1="580.114" x2="579.25" x3="578.199" y1="22.706" y2="23.57" y3="23.57"/>
- <curve x1="577.149" x2="576.284" x3="576.284" y1="23.57" y2="22.706" y3="21.655"/>
- <curve x1="576.284" x2="577.149" x3="578.199" y1="20.605" y2="19.74" y3="19.74"/>
- <curve x1="579.25" x2="580.114" x3="580.114" y1="19.74" y2="20.605" y3="21.655"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#ded69b"/>
- <path>
- <move x="588.535" y="21.655"/>
- <curve x1="588.535" x2="587.67" x3="586.62" y1="22.706" y2="23.57" y3="23.57"/>
- <curve x1="585.569" x2="584.705" x3="584.705" y1="23.57" y2="22.706" y3="21.655"/>
- <curve x1="584.705" x2="585.569" x3="586.62" y1="20.605" y2="19.74" y3="19.74"/>
- <curve x1="587.67" x2="588.535" x3="588.535" y1="19.74" y2="20.605" y3="21.655"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#78cf6c"/>
- <path>
- <move x="596.955" y="21.655"/>
- <curve x1="596.955" x2="596.091" x3="595.041" y1="22.706" y2="23.57" y3="23.57"/>
- <curve x1="595.041" x2="595.041" x3="595.04" y1="23.57" y2="23.57" y3="23.57"/>
- <curve x1="593.99" x2="593.126" x3="593.126" y1="23.57" y2="22.706" y3="21.655"/>
- <line x="593.126" y="21.655"/>
- <curve x1="593.126" x2="593.99" x3="595.04" y1="20.605" y2="19.74" y3="19.74"/>
- <curve x1="595.041" x2="595.041" x3="595.041" y1="19.74" y2="19.74" y3="19.74"/>
- <curve x1="596.091" x2="596.955" x3="596.955" y1="19.74" y2="20.605" y3="21.655"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="62.875" name="Aruba ClearPass C1000 rear" strokewidth="inherit" w="643.386">
- <connections/>
- <foreground>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <strokecolor color="#0f0"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="128.885" y="5.521"/>
- <line x="193.513" y="5.521"/>
- <line x="193.513" y="11.345"/>
- <line x="195.661" y="11.345"/>
- <line x="195.661" y="57.559"/>
- <line x="128.885" y="57.559"/>
- <line x="128.885" y="5.521"/>
- <close/>
- </path>
- <stroke/>
- <strokecolor color="#4a4a4a"/>
- <fillcolor color="#666"/>
- <rect h="62.875" w="643.386" x="0" y="0"/>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#ff0"/>
- <rect h="22.5" w="30.937" x="128.885" y="5.521"/>
- <fill/>
- <strokecolor color="#848484"/>
- <fillcolor color="#333"/>
- <strokewidth width="0.85"/>
- <path>
- <move x="170.102" y="42.853"/>
- <line x="189.522" y="42.853"/>
- <line x="189.522" y="51.291"/>
- <line x="170.102" y="51.291"/>
- <line x="170.102" y="42.853"/>
- <close/>
- <move x="170.102" y="29.962"/>
- <line x="189.522" y="29.962"/>
- <line x="189.522" y="38.4"/>
- <line x="170.102" y="38.4"/>
- <line x="170.102" y="29.962"/>
- <close/>
- <move x="136.318" y="42.853"/>
- <line x="155.738" y="42.853"/>
- <line x="155.738" y="51.291"/>
- <line x="136.318" y="51.291"/>
- <line x="136.318" y="42.853"/>
- <close/>
- <move x="136.318" y="29.962"/>
- <line x="155.738" y="29.962"/>
- <line x="155.738" y="38.4"/>
- <line x="136.318" y="38.4"/>
- <line x="136.318" y="29.962"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#414141"/>
- <fillcolor color="#535353"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="84.509" y="9.479"/>
- <curve x1="82.941" x2="81.669" x3="81.669" y1="9.479" y2="10.752" y3="12.319"/>
- <line x="81.669" y="50.715"/>
- <curve x1="81.669" x2="82.941" x3="84.509" y1="52.282" y2="53.555" y3="53.555"/>
- <line x="112.589" y="53.555"/>
- <curve x1="114.156" x2="115.429" x3="115.429" y1="53.555" y2="52.282" y3="50.715"/>
- <line x="115.429" y="12.319"/>
- <curve x1="115.429" x2="114.156" x3="112.589" y1="10.752" y2="9.479" y3="9.479"/>
- <line x="84.509" y="9.479"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="94.396" y="50.736"/>
- <line x="85.913" y="42.205"/>
- <line x="85.913" y="21.777"/>
- <line x="94.103" y="13.489"/>
- <line x="106.535" y="13.489"/>
- <curve x1="110.006" x2="111.606" x3="111.606" y1="13.489" y2="15.273" y3="18.803"/>
- <line x="111.606" y="44.886"/>
- <curve x1="111.606" x2="109.972" x3="106.438" y1="48.193" y2="50.736" y3="50.736"/>
- <line x="94.396" y="50.736"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#9a9a9a"/>
- <path>
- <move x="99.075" y="22.752"/>
- <line x="99.075" y="19.926"/>
- <line x="106.659" y="19.926"/>
- <line x="106.659" y="22.752"/>
- <line x="99.075" y="22.752"/>
- <close/>
- <move x="91.146" y="33.457"/>
- <line x="91.146" y="30.63"/>
- <line x="98.73" y="30.63"/>
- <line x="98.73" y="33.457"/>
- <line x="91.146" y="33.457"/>
- <close/>
- <move x="99.075" y="44.161"/>
- <line x="99.075" y="41.334"/>
- <line x="106.659" y="41.334"/>
- <line x="106.659" y="44.161"/>
- <line x="99.075" y="44.161"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#06f"/>
- <rect h="23.178" w="32.562" x="195.661" y="11.202"/>
- <fill/>
- <fillcolor color="#f00"/>
- <rect h="23.178" w="32.562" x="195.661" y="34.38"/>
- <fill/>
- <fillcolor color="#ccc"/>
- <rect h="46.08" w="29.615" x="228.223" y="11.202"/>
- <fill/>
- <strokecolor color="#98985f"/>
- <fillcolor color="#fdfd1c"/>
- <strokewidth width="0.33"/>
- <path>
- <move x="218.154" y="52.817"/>
- <line x="222.091" y="52.817"/>
- <line x="222.091" y="50.683"/>
- <line x="218.154" y="50.683"/>
- <line x="218.154" y="52.817"/>
- <close/>
- <move x="202.829" y="52.817"/>
- <line x="206.766" y="52.817"/>
- <line x="206.766" y="50.683"/>
- <line x="202.829" y="50.683"/>
- <line x="202.829" y="52.817"/>
- <close/>
- <move x="250.257" y="52.817"/>
- <line x="254.195" y="52.817"/>
- <line x="254.195" y="50.683"/>
- <line x="250.257" y="50.683"/>
- <line x="250.257" y="52.817"/>
- <close/>
- <move x="234.932" y="52.817"/>
- <line x="238.869" y="52.817"/>
- <line x="238.869" y="50.683"/>
- <line x="234.932" y="50.683"/>
- <line x="234.932" y="52.817"/>
- <close/>
- <move x="250.188" y="15.813"/>
- <line x="254.125" y="15.813"/>
- <line x="254.125" y="17.947"/>
- <line x="250.188" y="17.947"/>
- <line x="250.188" y="15.813"/>
- <close/>
- <move x="234.863" y="15.813"/>
- <line x="238.8" y="15.813"/>
- <line x="238.8" y="17.947"/>
- <line x="234.863" y="17.947"/>
- <line x="234.863" y="15.813"/>
- <close/>
- <move x="218.223" y="15.813"/>
- <line x="222.16" y="15.813"/>
- <line x="222.16" y="17.947"/>
- <line x="218.223" y="17.947"/>
- <line x="218.223" y="15.813"/>
- <close/>
- <move x="202.898" y="15.813"/>
- <line x="206.835" y="15.813"/>
- <line x="206.835" y="17.947"/>
- <line x="202.898" y="17.947"/>
- <line x="202.898" y="15.813"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="207.647" y="53.907"/>
- <line x="207.647" y="49.537"/>
- <line x="203.354" y="49.537"/>
- <line x="203.354" y="38.61"/>
- <line x="221.514" y="38.61"/>
- <line x="221.514" y="49.537"/>
- <line x="217.221" y="49.537"/>
- <line x="217.221" y="53.907"/>
- <line x="207.647" y="53.907"/>
- <close/>
- <move x="239.682" y="53.907"/>
- <line x="239.682" y="49.537"/>
- <line x="235.389" y="49.537"/>
- <line x="235.389" y="38.61"/>
- <line x="253.549" y="38.61"/>
- <line x="253.549" y="49.537"/>
- <line x="249.255" y="49.537"/>
- <line x="249.255" y="53.907"/>
- <line x="239.682" y="53.907"/>
- <close/>
- <move x="239.682" y="14.723"/>
- <line x="239.682" y="19.093"/>
- <line x="235.389" y="19.093"/>
- <line x="235.389" y="30.02"/>
- <line x="253.549" y="30.02"/>
- <line x="253.549" y="19.093"/>
- <line x="249.255" y="19.093"/>
- <line x="249.255" y="14.723"/>
- <line x="239.682" y="14.723"/>
- <close/>
- <move x="207.647" y="14.723"/>
- <line x="207.647" y="19.093"/>
- <line x="203.354" y="19.093"/>
- <line x="203.354" y="30.02"/>
- <line x="221.514" y="30.02"/>
- <line x="221.514" y="19.093"/>
- <line x="217.221" y="19.093"/>
- <line x="217.221" y="14.723"/>
- <line x="207.647" y="14.723"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#1a1a1a"/>
- <ellipse h="56.518" w="56.518" x="19.867" y="3.645"/>
- <fill/>
- <fillcolor color="#d9d9d9"/>
- <ellipse h="33.204" w="33.204" x="31.19" y="15.102"/>
- <fill/>
- <strokecolor color="#9b9b9b"/>
- <fillcolor color="#dcdcdc"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="28.305" y="55.476"/>
- <curve x1="28.305" x2="26.491" x3="24.287" y1="57.68" y2="59.494" y3="59.494"/>
- <curve x1="22.083" x2="20.269" x3="20.269" y1="59.494" y2="57.68" y3="55.476"/>
- <line x="20.269" y="55.476"/>
- <curve x1="20.269" x2="22.083" x3="24.287" y1="53.272" y2="51.458" y3="51.458"/>
- <curve x1="26.491" x2="28.305" x3="28.305" y1="51.458" y2="53.272" y3="55.476"/>
- <line x="28.305" y="55.476"/>
- <close/>
- <move x="75.481" y="55.476"/>
- <curve x1="75.481" x2="73.668" x3="71.463" y1="57.68" y2="59.494" y3="59.494"/>
- <line x="71.463" y="59.494"/>
- <curve x1="69.259" x2="67.446" x3="67.446" y1="59.494" y2="57.68" y3="55.476"/>
- <line x="67.446" y="55.476"/>
- <curve x1="67.446" x2="69.259" x3="71.463" y1="53.272" y2="51.458" y3="51.458"/>
- <line x="71.463" y="51.458"/>
- <curve x1="73.668" x2="75.481" x3="75.481" y1="51.458" y2="53.272" y3="55.476"/>
- <line x="75.481" y="55.476"/>
- <close/>
- <move x="75.448" y="8.333"/>
- <curve x1="75.448" x2="73.634" x3="71.43" y1="10.537" y2="12.351" y3="12.351"/>
- <curve x1="69.226" x2="67.412" x3="67.412" y1="12.351" y2="10.537" y3="8.333"/>
- <curve x1="67.412" x2="69.226" x3="71.43" y1="6.129" y2="4.315" y3="4.315"/>
- <curve x1="73.634" x2="75.448" x3="75.448" y1="4.315" y2="6.129" y3="8.333"/>
- <close/>
- <move x="28.305" y="8.048"/>
- <curve x1="28.305" x2="26.491" x3="24.287" y1="10.252" y2="12.066" y3="12.066"/>
- <curve x1="22.083" x2="20.269" x3="20.269" y1="12.066" y2="10.252" y3="8.048"/>
- <curve x1="20.269" x2="22.083" x3="24.287" y1="5.844" y2="4.03" y3="4.03"/>
- <curve x1="26.491" x2="28.305" x3="28.305" y1="4.03" y2="5.844" y3="8.048"/>
- <line x="28.305" y="8.048"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#4d4d4d"/>
- <fillcolor color="#5b5b5b"/>
- <path>
- <move x="15.447" y="55.688"/>
- <curve x1="15.447" x2="13.845" x3="11.898" y1="57.635" y2="59.237" y3="59.237"/>
- <curve x1="9.951" x2="8.349" x3="8.349" y1="59.237" y2="57.635" y3="55.688"/>
- <curve x1="8.349" x2="9.951" x3="11.898" y1="53.741" y2="52.139" y3="52.139"/>
- <curve x1="13.845" x2="15.447" x3="15.447" y1="52.139" y2="53.741" y3="55.688"/>
- <close/>
- <move x="15.447" y="10.744"/>
- <curve x1="15.447" x2="13.845" x3="11.898" y1="12.691" y2="14.293" y3="14.293"/>
- <curve x1="9.951" x2="8.349" x3="8.349" y1="14.293" y2="12.691" y3="10.744"/>
- <curve x1="8.349" x2="9.951" x3="11.898" y1="8.797" y2="7.195" y3="7.195"/>
- <curve x1="13.845" x2="15.447" x3="15.447" y1="7.195" y2="8.797" y3="10.744"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#767676"/>
- <path>
- <move x="581.466" y="19.603"/>
- <curve x1="581.466" x2="579.864" x3="577.917" y1="21.55" y2="23.153" y3="23.153"/>
- <curve x1="577.917" x2="577.917" x3="577.917" y1="23.153" y2="23.153" y3="23.153"/>
- <curve x1="575.97" x2="574.368" x3="574.368" y1="23.153" y2="21.55" y3="19.603"/>
- <curve x1="574.368" x2="575.97" x3="577.917" y1="17.656" y2="16.054" y3="16.054"/>
- <curve x1="577.917" x2="577.917" x3="577.917" y1="16.054" y2="16.054" y3="16.054"/>
- <curve x1="579.864" x2="581.466" x3="581.466" y1="16.054" y2="17.656" y3="19.603"/>
- <close/>
- <move x="365.631" y="4.874"/>
- <curve x1="365.631" x2="364.029" x3="362.082" y1="6.821" y2="8.423" y3="8.423"/>
- <curve x1="362.082" x2="362.082" x3="362.082" y1="8.423" y2="8.423" y3="8.423"/>
- <curve x1="360.135" x2="358.533" x3="358.533" y1="8.423" y2="6.821" y3="4.874"/>
- <curve x1="358.533" x2="360.135" x3="362.082" y1="2.927" y2="1.325" y3="1.325"/>
- <curve x1="362.082" x2="362.082" x3="362.082" y1="1.325" y2="1.325" y3="1.325"/>
- <curve x1="364.029" x2="365.631" x3="365.631" y1="1.325" y2="2.927" y3="4.874"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#4d4d4d"/>
- <fillcolor color="#efefef"/>
- <strokewidth width="0.28"/>
- <path>
- <move x="339.827" y="47.71"/>
- <curve x1="339.827" x2="338.459" x3="336.797" y1="49.373" y2="50.741" y3="50.741"/>
- <curve x1="336.797" x2="336.797" x3="336.797" y1="50.741" y2="50.741" y3="50.741"/>
- <curve x1="335.134" x2="333.766" x3="333.766" y1="50.741" y2="49.373" y3="47.71"/>
- <curve x1="333.766" x2="335.134" x3="336.797" y1="46.048" y2="44.68" y3="44.68"/>
- <curve x1="336.797" x2="336.797" x3="336.797" y1="44.68" y2="44.68" y3="44.68"/>
- <curve x1="338.459" x2="339.827" x3="339.827" y1="44.68" y2="46.048" y3="47.71"/>
- <close/>
- <move x="302.993" y="47.71"/>
- <curve x1="302.993" x2="301.625" x3="299.962" y1="49.373" y2="50.741" y3="50.741"/>
- <curve x1="298.3" x2="296.932" x3="296.932" y1="50.741" y2="49.373" y3="47.71"/>
- <curve x1="296.932" x2="298.3" x3="299.962" y1="46.048" y2="44.68" y3="44.68"/>
- <curve x1="301.625" x2="302.993" x3="302.993" y1="44.68" y2="46.048" y3="47.71"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#ebeef2"/>
- <fillcolor color="#5285c2"/>
- <strokewidth width="0.85"/>
- <linejoin join="miter"/>
- <linecap cap="butt"/>
- <path>
- <move x="310.233" y="52.698"/>
- <curve x1="309.027" x2="308.205" x3="307.865" y1="52.698" y2="51.555" y3="49.905"/>
- <line x="307.278" y="45.178"/>
- <curve x1="307.071" x2="308.507" x3="309.912" y1="43.777" y2="42.46" y3="42.46"/>
- <line x="327.192" y="42.426"/>
- <curve x1="329.063" x2="329.842" x3="329.694" y1="42.426" y2="43.777" y3="44.911"/>
- <line x="329.014" y="50.448"/>
- <curve x1="328.655" x2="328.177" x3="326.616" y1="51.592" y2="52.84" y3="52.84"/>
- <line x="310.233" y="52.698"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#454545"/>
- <strokewidth width="0.28"/>
- <path>
- <move x="264.93" y="34.137"/>
- <line x="287.99" y="34.137"/>
- <line x="287.99" y="53.077"/>
- <line x="264.93" y="53.077"/>
- <line x="264.93" y="34.137"/>
- <close/>
- <move x="264.93" y="11.598"/>
- <line x="287.99" y="11.598"/>
- <line x="287.99" y="30.538"/>
- <line x="264.93" y="30.538"/>
- <line x="264.93" y="11.598"/>
- <close/>
- </path>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#1a1a1a"/>
- <path>
- <move x="268.303" y="36.41"/>
- <line x="284.592" y="36.41"/>
- <line x="284.592" y="50.662"/>
- <line x="268.303" y="50.662"/>
- <line x="268.303" y="36.41"/>
- <close/>
- <move x="194.856" y="4.983"/>
- <line x="344.984" y="4.983"/>
- <line x="344.984" y="35.576"/>
- <line x="328.7" y="35.576"/>
- <line x="328.7" y="30.43"/>
- <line x="309.506" y="30.43"/>
- <line x="309.506" y="35.576"/>
- <line x="292.814" y="35.576"/>
- <line x="292.814" y="9.404"/>
- <line x="194.856" y="9.404"/>
- <line x="194.856" y="4.983"/>
- <close/>
- <move x="268.28" y="13.871"/>
- <line x="284.569" y="13.871"/>
- <line x="284.569" y="28.123"/>
- <line x="268.28" y="28.123"/>
- <line x="268.28" y="13.871"/>
- <close/>
- </path>
- <fill/>
- <path>
- <move x="360.883" y="53.969"/>
- <line x="360.883" y="17.842"/>
- <line x="369.053" y="17.842"/>
- <line x="369.053" y="9.873"/>
- <line x="374.276" y="9.873"/>
- <line x="374.276" y="40.811"/>
- <line x="592.245" y="40.811"/>
- <line x="592.245" y="9.873"/>
- <line x="636.575" y="9.873"/>
- <line x="636.575" y="53.969"/>
- <line x="360.883" y="53.969"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#404040"/>
- <strokewidth width="0.57"/>
- <rect h="18.993" w="144.862" x="402.171" y="11.831"/>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#1a1a1a"/>
- <path>
- <move x="527.814" y="18.188"/>
- <line x="543.176" y="18.188"/>
- <curve x1="544.933" x2="546.347" x3="546.347" y1="18.188" y2="19.602" y3="21.358"/>
- <curve x1="546.347" x2="544.933" x3="543.176" y1="23.114" y2="24.528" y3="24.528"/>
- <line x="527.814" y="24.528"/>
- <curve x1="526.057" x2="524.644" x3="524.644" y1="24.528" y2="23.114" y3="21.358"/>
- <curve x1="524.644" x2="526.057" x3="527.814" y1="19.602" y2="18.188" y3="18.188"/>
- <close/>
- <move x="500.157" y="18.188"/>
- <line x="515.52" y="18.188"/>
- <curve x1="517.276" x2="518.69" x3="518.69" y1="18.188" y2="19.602" y3="21.358"/>
- <curve x1="518.69" x2="517.276" x3="515.52" y1="23.114" y2="24.528" y3="24.528"/>
- <line x="500.157" y="24.528"/>
- <curve x1="498.401" x2="496.987" x3="496.987" y1="24.528" y2="23.114" y3="21.358"/>
- <curve x1="496.987" x2="498.401" x3="500.157" y1="19.602" y2="18.188" y3="18.188"/>
- <close/>
- <move x="472.501" y="18.188"/>
- <line x="487.863" y="18.188"/>
- <curve x1="489.62" x2="491.034" x3="491.034" y1="18.188" y2="19.602" y3="21.358"/>
- <curve x1="491.034" x2="489.62" x3="487.863" y1="23.114" y2="24.528" y3="24.528"/>
- <line x="472.501" y="24.528"/>
- <curve x1="470.745" x2="469.331" x3="469.331" y1="24.528" y2="23.114" y3="21.358"/>
- <curve x1="469.331" x2="470.745" x3="472.501" y1="19.602" y2="18.188" y3="18.188"/>
- <close/>
- <move x="444.844" y="18.188"/>
- <line x="460.207" y="18.188"/>
- <curve x1="461.963" x2="463.377" x3="463.377" y1="18.188" y2="19.602" y3="21.358"/>
- <curve x1="463.377" x2="461.963" x3="460.207" y1="23.114" y2="24.528" y3="24.528"/>
- <line x="444.844" y="24.528"/>
- <curve x1="443.088" x2="441.674" x3="441.674" y1="24.528" y2="23.114" y3="21.358"/>
- <curve x1="441.674" x2="443.088" x3="444.844" y1="19.602" y2="18.188" y3="18.188"/>
- <close/>
- <move x="417.188" y="18.188"/>
- <line x="432.551" y="18.188"/>
- <curve x1="434.307" x2="435.721" x3="435.721" y1="18.188" y2="19.602" y3="21.358"/>
- <curve x1="435.721" x2="434.307" x3="432.551" y1="23.114" y2="24.528" y3="24.528"/>
- <line x="417.188" y="24.528"/>
- <curve x1="415.432" x2="414.018" x3="414.018" y1="24.528" y2="23.114" y3="21.358"/>
- <curve x1="414.018" x2="415.432" x3="417.188" y1="19.602" y2="18.188" y3="18.188"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#565656"/>
- <fillcolor color="#696969"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="421.572" y="26.123"/>
- <line x="537.345" y="26.123"/>
- <curve x1="538.48" x2="539.393" x3="539.393" y1="26.123" y2="27.036" y3="28.171"/>
- <curve x1="539.393" x2="538.48" x3="537.345" y1="29.305" y2="30.219" y3="30.219"/>
- <line x="421.572" y="30.219"/>
- <curve x1="420.438" x2="419.524" x3="419.524" y1="30.219" y2="29.305" y3="28.171"/>
- <curve x1="419.524" x2="420.438" x3="421.572" y1="27.036" y2="26.123" y3="26.123"/>
- <close/>
- <move x="421.572" y="12.497"/>
- <line x="537.345" y="12.497"/>
- <curve x1="538.48" x2="539.393" x3="539.393" y1="12.497" y2="13.411" y3="14.545"/>
- <curve x1="539.393" x2="538.48" x3="537.345" y1="15.68" y2="16.593" y3="16.593"/>
- <line x="421.572" y="16.593"/>
- <curve x1="420.438" x2="419.524" x3="419.524" y1="16.593" y2="15.68" y3="14.545"/>
- <curve x1="419.524" x2="420.438" x3="421.572" y1="13.411" y2="12.497" y3="12.497"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#292929"/>
- <fillcolor color="#e6e6e6"/>
- <strokewidth width="0.28"/>
- <linejoin join="miter"/>
- <rect h="18.686" w="23.24" x="134.1" y="7.789"/>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#909090"/>
- <fillcolor color="#fbfb1d"/>
- <strokewidth width="0.33"/>
- <path>
- <move x="151.856" y="9.301"/>
- <line x="155.793" y="9.301"/>
- <line x="155.793" y="11.435"/>
- <line x="151.856" y="11.435"/>
- <line x="151.856" y="9.301"/>
- <close/>
- <move x="136.531" y="9.301"/>
- <line x="140.468" y="9.301"/>
- <line x="140.468" y="11.435"/>
- <line x="136.531" y="11.435"/>
- <line x="136.531" y="9.301"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="141.28" y="8.211"/>
- <line x="141.28" y="12.581"/>
- <line x="136.987" y="12.581"/>
- <line x="136.987" y="23.508"/>
- <line x="155.147" y="23.508"/>
- <line x="155.147" y="12.581"/>
- <line x="150.854" y="12.581"/>
- <line x="150.854" y="8.211"/>
- <line x="141.28" y="8.211"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#868686"/>
- <fillcolor color="#e6e6e6"/>
- <strokewidth width="0.57"/>
- <linejoin join="miter"/>
- <path>
- <move x="200.852" y="35.958"/>
- <line x="223.865" y="35.958"/>
- <line x="223.865" y="54.757"/>
- <line x="200.852" y="54.757"/>
- <line x="200.852" y="35.958"/>
- <close/>
- <move x="200.852" y="13.525"/>
- <line x="223.865" y="13.525"/>
- <line x="223.865" y="32.323"/>
- <line x="200.852" y="32.323"/>
- <line x="200.852" y="13.525"/>
- <close/>
- <move x="232.9" y="35.958"/>
- <line x="255.913" y="35.958"/>
- <line x="255.913" y="54.757"/>
- <line x="232.9" y="54.757"/>
- <line x="232.9" y="35.958"/>
- <close/>
- <move x="232.9" y="13.525"/>
- <line x="255.913" y="13.525"/>
- <line x="255.913" y="32.323"/>
- <line x="232.9" y="32.323"/>
- <line x="232.9" y="13.525"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="62.927" name="Aruba ClearPass C2000 front" strokewidth="inherit" w="703.485">
- <connections/>
- <foreground>
- <save/>
- <save/>
- <strokecolor color="#373737"/>
- <fillcolor color="#666"/>
- <strokewidth width="0.77"/>
- <rect h="62.875" w="703.485" x="0" y="0.018"/>
- <fillstroke/>
- <strokecolor color="#3c3c3c"/>
- <fillcolor color="#5c5c5c"/>
- <rect h="62.916" w="634.067" x="34.332" y="0.011"/>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#1a1a1a"/>
- <path>
- <move x="480.743" y="12.121"/>
- <line x="658.024" y="12.121"/>
- <line x="658.024" y="54.861"/>
- <line x="480.743" y="54.861"/>
- <line x="480.743" y="12.121"/>
- <close/>
- <move x="366.855" y="12.121"/>
- <line x="393.862" y="12.121"/>
- <line x="393.862" y="54.861"/>
- <line x="366.855" y="54.861"/>
- <line x="366.855" y="12.121"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#9c9c9c"/>
- <fillcolor color="#e6e6e6"/>
- <strokewidth width="0.75"/>
- <linejoin join="miter"/>
- <linecap cap="butt"/>
- <path>
- <move x="34.332" y="62.927"/>
- <line x="34.332" y="0.011"/>
- <line x="99.168" y="0"/>
- <line x="102.96" y="4.159"/>
- <line x="600.38" y="3.663"/>
- <line x="603.795" y="0.047"/>
- <line x="668.399" y="0.011"/>
- <line x="668.399" y="62.927"/>
- <line x="628.276" y="62.682"/>
- <line x="595.849" y="46.435"/>
- <line x="107.446" y="46.414"/>
- <line x="74.211" y="62.654"/>
- <line x="34.332" y="62.927"/>
- <close/>
- <move x="50.335" y="44.779"/>
- <curve x1="50.335" x2="51.54" x3="55.291" y1="47.609" y2="50.323" y3="50.323"/>
- <line x="71.362" y="50.323"/>
- <line x="91.251" y="40.025"/>
- <line x="91.251" y="23.351"/>
- <line x="71.094" y="13.708"/>
- <line x="55.09" y="13.708"/>
- <curve x1="52.137" x2="50.335" x3="50.335" y1="13.708" y2="15.989" y3="19.333"/>
- <line x="50.335" y="44.779"/>
- <close/>
- <move x="649.272" y="50.296"/>
- <curve x1="651.316" x2="652.586" x3="652.586" y1="50.296" y2="48.077" y3="46.087"/>
- <line x="652.586" y="18.058"/>
- <curve x1="652.586" x2="651.35" x3="648.697" y1="15.767" y2="13.702" y3="13.702"/>
- <line x="632.063" y="13.702"/>
- <line x="611.757" y="23.502"/>
- <line x="611.757" y="40.775"/>
- <line x="631.652" y="50.296"/>
- <line x="649.272" y="50.296"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#787878"/>
- <rect h="31.071" w="438.75" x="155.536" y="14.512"/>
- <fill/>
- <strokecolor color="#919191"/>
- <strokewidth width="0.57"/>
- <ellipse h="22.16" w="22.16" x="129.257" y="18.86"/>
- <stroke/>
- <strokecolor color="#454545"/>
- <fillcolor color="#ddd"/>
- <strokewidth width="1.7"/>
- <path>
- <move x="696.245" y="23.954"/>
- <line x="696.245" y="23.954"/>
- <curve x1="696.245" x2="693.295" x3="689.71" y1="27.538" y2="30.488" y3="30.488"/>
- <line x="689.71" y="30.488"/>
- <curve x1="686.126" x2="683.176" x3="683.176" y1="30.488" y2="27.538" y3="23.954"/>
- <line x="683.176" y="23.954"/>
- <curve x1="683.176" x2="686.126" x3="689.71" y1="20.369" y2="17.419" y3="17.419"/>
- <curve x1="693.295" x2="696.245" x3="696.245" y1="17.419" y2="20.369" y3="23.954"/>
- <close/>
- <move x="18.503" y="24.116"/>
- <line x="18.503" y="24.116"/>
- <curve x1="18.503" x2="15.553" x3="11.969" y1="27.701" y2="30.651" y3="30.651"/>
- <line x="11.969" y="30.651"/>
- <curve x1="8.384" x2="5.434" x3="5.434" y1="30.651" y2="27.701" y3="24.116"/>
- <line x="5.434" y="24.116"/>
- <curve x1="5.434" x2="8.384" x3="11.969" y1="20.532" y2="17.582" y3="17.582"/>
- <line x="11.969" y="17.582"/>
- <curve x1="15.553" x2="18.503" x3="18.503" y1="17.582" y2="20.532" y3="24.116"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#424242"/>
- <fillcolor color="#fff"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="686.153" y="32.295"/>
- <line x="695.813" y="32.295"/>
- <curve x1="697.203" x2="698.322" x3="698.322" y1="32.295" y2="33.415" y3="34.805"/>
- <line x="698.322" y="40.156"/>
- <curve x1="698.322" x2="697.203" x3="695.813" y1="41.546" y2="42.665" y3="42.665"/>
- <line x="686.153" y="42.665"/>
- <curve x1="684.763" x2="683.643" x3="683.643" y1="42.665" y2="41.546" y3="40.156"/>
- <line x="683.643" y="34.805"/>
- <curve x1="683.643" x2="684.763" x3="686.153" y1="33.415" y2="32.295" y3="32.295"/>
- <close/>
- <move x="7.66" y="32.261"/>
- <line x="17.319" y="32.261"/>
- <curve x1="18.71" x2="19.829" x3="19.829" y1="32.261" y2="33.38" y3="34.77"/>
- <line x="19.829" y="40.121"/>
- <curve x1="19.829" x2="18.71" x3="17.319" y1="41.511" y2="42.63" y3="42.63"/>
- <line x="7.66" y="42.63"/>
- <curve x1="6.269" x2="5.15" x3="5.15" y1="42.63" y2="41.511" y3="40.121"/>
- <line x="5.15" y="34.77"/>
- <curve x1="5.15" x2="6.269" x3="7.66" y1="33.38" y2="32.261" y3="32.261"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#02a781"/>
- <strokewidth width="2.27"/>
- <linejoin join="miter"/>
- <rect h="5.324" w="15.871" x="680.503" y="3.864"/>
- <stroke/>
- <strokecolor color="#575757"/>
- <fillcolor color="#ececec"/>
- <strokewidth width="1.13"/>
- <rect h="25.062" w="47.651" x="160.205" y="17.242"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="62.921" name="Aruba ClearPass C2000 rear" strokewidth="inherit" w="688.843">
- <connections/>
- <foreground>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <strokecolor color="#3a3a3a"/>
- <fillcolor color="#666"/>
- <strokewidth width="0.57"/>
- <rect h="62.87" w="688.843" x="0" y="0"/>
- <fillstroke/>
- <strokecolor color="#5c5c5c"/>
- <fillcolor color="#e6e6e6"/>
- <linejoin join="miter"/>
- <rect h="62.87" w="619.886" x="34.78" y="0"/>
- <fillstroke/>
- <strokecolor color="#343434"/>
- <fillcolor color="#fff"/>
- <path>
- <move x="20.066" y="35.268"/>
- <curve x1="20.066" x2="18.836" x3="17.32" y1="33.752" y2="32.522" y3="32.522"/>
- <line x="8.418" y="32.522"/>
- <curve x1="6.902" x2="5.672" x3="5.672" y1="32.522" y2="33.752" y3="35.268"/>
- <line x="5.672" y="39.908"/>
- <curve x1="5.672" x2="6.902" x3="8.418" y1="41.424" y2="42.655" y3="42.655"/>
- <line x="17.32" y="42.655"/>
- <curve x1="18.836" x2="20.066" x3="20.066" y1="42.655" y2="41.424" y3="39.908"/>
- <line x="20.066" y="35.268"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#363636"/>
- <path>
- <move x="684" y="35.259"/>
- <curve x1="684" x2="682.77" x3="681.254" y1="33.743" y2="32.512" y3="32.512"/>
- <line x="672.352" y="32.512"/>
- <curve x1="670.836" x2="669.605" x3="669.605" y1="32.512" y2="33.743" y3="35.259"/>
- <line x="669.605" y="39.899"/>
- <curve x1="669.605" x2="670.836" x3="672.352" y1="41.415" y2="42.646" y3="42.646"/>
- <line x="681.254" y="42.646"/>
- <curve x1="682.77" x2="684" x3="684" y1="42.646" y2="41.415" y3="39.899"/>
- <line x="684" y="35.259"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#303030"/>
- <fillcolor color="#535353"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="580.673" y="9.269"/>
- <curve x1="579.105" x2="577.833" x3="577.833" y1="9.269" y2="10.541" y3="12.109"/>
- <line x="577.833" y="50.505"/>
- <curve x1="577.833" x2="579.105" x3="580.673" y1="52.072" y2="53.345" y3="53.345"/>
- <line x="608.753" y="53.345"/>
- <curve x1="610.321" x2="611.593" x3="611.593" y1="53.345" y2="52.072" y3="50.505"/>
- <line x="611.593" y="12.109"/>
- <curve x1="611.593" x2="610.321" x3="608.753" y1="10.541" y2="9.269" y3="9.269"/>
- <line x="580.673" y="9.269"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="590.56" y="50.526"/>
- <line x="582.077" y="41.994"/>
- <line x="582.077" y="21.567"/>
- <line x="590.267" y="13.279"/>
- <line x="602.699" y="13.279"/>
- <curve x1="606.17" x2="607.77" x3="607.77" y1="13.279" y2="15.063" y3="18.593"/>
- <line x="607.77" y="44.676"/>
- <curve x1="607.77" x2="606.136" x3="602.602" y1="47.983" y2="50.526" y3="50.526"/>
- <line x="590.56" y="50.526"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#999"/>
- <path>
- <move x="595.239" y="22.542"/>
- <line x="595.239" y="19.715"/>
- <line x="602.823" y="19.715"/>
- <line x="602.823" y="22.542"/>
- <line x="595.239" y="22.542"/>
- <close/>
- <move x="587.31" y="33.246"/>
- <line x="587.31" y="30.419"/>
- <line x="594.894" y="30.419"/>
- <line x="594.894" y="33.246"/>
- <line x="587.31" y="33.246"/>
- <close/>
- <move x="595.239" y="43.95"/>
- <line x="595.239" y="41.123"/>
- <line x="602.823" y="41.123"/>
- <line x="602.823" y="43.95"/>
- <line x="595.239" y="43.95"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#1a1a1a"/>
- <ellipse h="56.518" w="56.518" x="519.893" y="3.073"/>
- <fill/>
- <fillcolor color="#ececec"/>
- <ellipse h="27.522" w="27.522" x="534.056" y="17.37"/>
- <fill/>
- <strokecolor color="#4c4c4c"/>
- <fillcolor color="#f1f1f1"/>
- <strokewidth width="0.28"/>
- <path>
- <move x="248.374" y="47.124"/>
- <curve x1="248.374" x2="247.006" x3="245.343" y1="48.786" y2="50.154" y3="50.154"/>
- <curve x1="243.681" x2="242.313" x3="242.313" y1="50.154" y2="48.786" y3="47.124"/>
- <curve x1="242.313" x2="243.681" x3="245.343" y1="45.461" y2="44.093" y3="44.093"/>
- <curve x1="247.006" x2="248.374" x3="248.374" y1="44.093" y2="45.461" y3="47.124"/>
- <close/>
- <move x="211.539" y="47.124"/>
- <curve x1="211.539" x2="210.171" x3="208.509" y1="48.786" y2="50.154" y3="50.154"/>
- <curve x1="206.846" x2="205.478" x3="205.478" y1="50.154" y2="48.786" y3="47.124"/>
- <curve x1="205.478" x2="206.846" x3="208.509" y1="45.461" y2="44.093" y3="44.093"/>
- <curve x1="210.171" x2="211.539" x3="211.539" y1="44.093" y2="45.461" y3="47.124"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#d3d2d2"/>
- <fillcolor color="#5285c2"/>
- <strokewidth width="0.85"/>
- <linejoin join="miter"/>
- <linecap cap="butt"/>
- <path>
- <move x="218.779" y="52.112"/>
- <curve x1="217.574" x2="216.751" x3="216.412" y1="52.112" y2="50.969" y3="49.318"/>
- <line x="215.824" y="44.591"/>
- <curve x1="215.618" x2="217.053" x3="218.459" y1="43.191" y2="41.873" y3="41.873"/>
- <line x="235.739" y="41.84"/>
- <curve x1="237.609" x2="238.388" x3="238.24" y1="41.84" y2="43.19" y3="44.324"/>
- <line x="237.561" y="49.861"/>
- <curve x1="237.201" x2="236.724" x3="235.163" y1="51.006" y2="52.254" y3="52.254"/>
- <line x="218.779" y="52.112"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#ababab"/>
- <fillcolor color="#d8d8d8"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="447.945" y="18.79"/>
- <curve x1="447.945" x2="446.343" x3="444.396" y1="20.737" y2="22.339" y3="22.339"/>
- <curve x1="444.396" x2="444.396" x3="444.396" y1="22.339" y2="22.339" y3="22.339"/>
- <curve x1="442.449" x2="440.847" x3="440.847" y1="22.339" y2="20.737" y3="18.79"/>
- <line x="440.847" y="18.79"/>
- <curve x1="440.847" x2="442.449" x3="444.396" y1="16.843" y2="15.241" y3="15.241"/>
- <curve x1="444.396" x2="444.396" x3="444.396" y1="15.241" y2="15.241" y3="15.241"/>
- <curve x1="446.343" x2="447.945" x3="447.945" y1="15.241" y2="16.843" y3="18.79"/>
- <close/>
- <move x="447.945" y="47.476"/>
- <curve x1="447.945" x2="446.343" x3="444.396" y1="49.423" y2="51.025" y3="51.025"/>
- <curve x1="444.396" x2="444.396" x3="444.396" y1="51.025" y2="51.025" y3="51.025"/>
- <curve x1="442.449" x2="440.847" x3="440.847" y1="51.025" y2="49.423" y3="47.476"/>
- <curve x1="440.847" x2="442.449" x3="444.396" y1="45.529" y2="43.927" y3="43.927"/>
- <curve x1="444.396" x2="444.396" x3="444.396" y1="43.927" y2="43.927" y3="43.927"/>
- <curve x1="446.343" x2="447.945" x3="447.945" y1="43.927" y2="45.529" y3="47.476"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#909090"/>
- <fillcolor color="#dcdcdc"/>
- <path>
- <move x="529.332" y="53.964"/>
- <curve x1="529.332" x2="527.442" x3="525.147" y1="56.26" y2="58.149" y3="58.149"/>
- <line x="525.147" y="58.149"/>
- <curve x1="522.851" x2="520.961" x3="520.961" y1="58.149" y2="56.26" y3="53.964"/>
- <line x="520.961" y="53.964"/>
- <curve x1="520.961" x2="522.851" x3="525.147" y1="51.668" y2="49.779" y3="49.779"/>
- <line x="525.147" y="49.779"/>
- <curve x1="527.442" x2="529.332" x3="529.332" y1="49.779" y2="51.668" y3="53.964"/>
- <line x="529.332" y="53.964"/>
- <close/>
- <move x="575.035" y="53.997"/>
- <curve x1="575.035" x2="573.146" x3="570.85" y1="56.293" y2="58.183" y3="58.183"/>
- <line x="570.85" y="58.183"/>
- <curve x1="568.554" x2="566.664" x3="566.664" y1="58.183" y2="56.293" y3="53.997"/>
- <curve x1="566.664" x2="568.554" x3="570.85" y1="51.701" y2="49.812" y3="49.812"/>
- <line x="570.85" y="49.812"/>
- <curve x1="573.146" x2="575.035" x3="575.035" y1="49.812" y2="51.701" y3="53.997"/>
- <line x="575.035" y="53.997"/>
- <close/>
- <move x="574.968" y="8.729"/>
- <line x="574.968" y="8.729"/>
- <curve x1="574.968" x2="573.079" x3="570.783" y1="11.025" y2="12.915" y3="12.915"/>
- <line x="570.783" y="12.915"/>
- <curve x1="568.487" x2="566.598" x3="566.598" y1="12.915" y2="11.025" y3="8.729"/>
- <line x="566.598" y="8.729"/>
- <curve x1="566.598" x2="568.487" x3="570.783" y1="6.434" y2="4.544" y3="4.544"/>
- <line x="570.783" y="4.544"/>
- <curve x1="573.079" x2="574.968" x3="574.968" y1="4.544" y2="6.434" y3="8.729"/>
- <close/>
- <move x="529.399" y="8.763"/>
- <line x="529.399" y="8.763"/>
- <curve x1="529.399" x2="527.51" x3="525.214" y1="11.059" y2="12.948" y3="12.948"/>
- <line x="525.214" y="12.948"/>
- <curve x1="522.918" x2="521.028" x3="521.028" y1="12.948" y2="11.059" y3="8.763"/>
- <line x="521.028" y="8.763"/>
- <curve x1="521.028" x2="522.918" x3="525.214" y1="6.467" y2="4.578" y3="4.578"/>
- <line x="525.214" y="4.578"/>
- <curve x1="527.51" x2="529.399" x3="529.399" y1="4.578" y2="6.467" y3="8.763"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#5c5c5c"/>
- <linejoin join="miter"/>
- <rect h="34.018" w="258.482" x="87.501" y="2.435"/>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#3f3f3a"/>
- <fillcolor color="#4d823a"/>
- <strokewidth width="0.33"/>
- <path>
- <move x="191.952" y="40.396"/>
- <line x="195.889" y="40.396"/>
- <line x="195.889" y="42.53"/>
- <line x="191.952" y="42.53"/>
- <line x="191.952" y="40.396"/>
- <close/>
- <move x="272.981" y="40.396"/>
- <line x="276.918" y="40.396"/>
- <line x="276.918" y="42.53"/>
- <line x="272.981" y="42.53"/>
- <line x="272.981" y="40.396"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#c3c696"/>
- <path>
- <move x="176.627" y="40.396"/>
- <line x="180.564" y="40.396"/>
- <line x="180.564" y="42.53"/>
- <line x="176.627" y="42.53"/>
- <line x="176.627" y="40.396"/>
- <close/>
- <move x="257.656" y="40.396"/>
- <line x="261.593" y="40.396"/>
- <line x="261.593" y="42.53"/>
- <line x="257.656" y="42.53"/>
- <line x="257.656" y="40.396"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="262.406" y="39.306"/>
- <line x="262.406" y="43.676"/>
- <line x="258.113" y="43.676"/>
- <line x="258.113" y="54.604"/>
- <line x="276.272" y="54.604"/>
- <line x="276.272" y="43.676"/>
- <line x="271.979" y="43.676"/>
- <line x="271.979" y="39.306"/>
- <line x="262.406" y="39.306"/>
- <close/>
- <move x="181.377" y="39.306"/>
- <line x="181.377" y="43.676"/>
- <line x="177.084" y="43.676"/>
- <line x="177.084" y="54.604"/>
- <line x="195.243" y="54.604"/>
- <line x="195.243" y="43.676"/>
- <line x="190.95" y="43.676"/>
- <line x="190.95" y="39.306"/>
- <line x="181.377" y="39.306"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#8c8c8c"/>
- <strokewidth width="0.57"/>
- <linejoin join="miter"/>
- <path>
- <move x="88.944" y="10.813"/>
- <line x="179.109" y="10.813"/>
- <line x="179.109" y="28.878"/>
- <line x="88.944" y="28.878"/>
- <line x="88.944" y="10.813"/>
- <close/>
- <move x="205.359" y="10.789"/>
- <line x="345.95" y="10.789"/>
- <line x="345.95" y="28.903"/>
- <line x="205.359" y="28.903"/>
- <line x="205.359" y="10.789"/>
- <close/>
- </path>
- <stroke/>
- <strokecolor color="#323232"/>
- <fillcolor color="#595959"/>
- <path>
- <move x="626.253" y="9.624"/>
- <curve x1="626.253" x2="625.395" x3="624.339" y1="8.567" y2="7.71" y3="7.71"/>
- <line x="617.465" y="7.71"/>
- <curve x1="616.409" x2="615.551" x3="615.551" y1="7.71" y2="8.567" y3="9.624"/>
- <line x="615.551" y="52.081"/>
- <curve x1="615.551" x2="616.409" x3="617.465" y1="53.138" y2="53.995" y3="53.995"/>
- <line x="624.339" y="53.995"/>
- <curve x1="625.395" x2="626.253" x3="626.253" y1="53.995" y2="53.138" y3="52.081"/>
- <line x="626.253" y="9.624"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#5c5c5c"/>
- <strokewidth width="0.75"/>
- <linecap cap="butt"/>
- <path>
- <move x="494.096" y="62.921"/>
- <line x="494.096" y="0.039"/>
- </path>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#7a7a7a"/>
- <path>
- <move x="318.661" y="56.296"/>
- <line x="318.661" y="40.382"/>
- <line x="359.62" y="40.382"/>
- <line x="359.62" y="7.737"/>
- <line x="417.016" y="7.737"/>
- <line x="417.016" y="56.296"/>
- <line x="318.661" y="56.296"/>
- <close/>
- <move x="41.773" y="35.531"/>
- <line x="50.395" y="35.531"/>
- <line x="50.395" y="44.88"/>
- <line x="170.926" y="44.88"/>
- <line x="170.926" y="56.296"/>
- <line x="41.773" y="56.296"/>
- <line x="41.773" y="35.531"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#7c7d7d"/>
- <fillcolor color="#323232"/>
- <strokewidth width="0.85"/>
- <linejoin join="miter"/>
- <path>
- <move x="123.129" y="41.847"/>
- <line x="140.406" y="41.847"/>
- <curve x1="140.981" x2="141.444" x3="141.444" y1="41.847" y2="42.31" y3="42.885"/>
- <line x="141.444" y="49.749"/>
- <curve x1="141.444" x2="140.981" x3="140.406" y1="50.324" y2="50.787" y3="50.787"/>
- <line x="123.129" y="50.787"/>
- <curve x1="122.554" x2="122.091" x3="122.091" y1="50.787" y2="50.324" y3="49.749"/>
- <line x="122.091" y="42.885"/>
- <curve x1="122.091" x2="122.554" x3="123.129" y1="42.31" y2="41.847" y3="41.847"/>
- <close/>
- <move x="90.481" y="41.847"/>
- <line x="107.758" y="41.847"/>
- <curve x1="108.333" x2="108.796" x3="108.796" y1="41.847" y2="42.31" y3="42.885"/>
- <line x="108.796" y="49.749"/>
- <curve x1="108.796" x2="108.333" x3="107.758" y1="50.324" y2="50.787" y3="50.787"/>
- <line x="90.481" y="50.787"/>
- <curve x1="89.906" x2="89.443" x3="89.443" y1="50.787" y2="50.324" y3="49.749"/>
- <line x="89.443" y="42.885"/>
- <curve x1="89.443" x2="89.906" x3="90.481" y1="42.31" y2="41.847" y3="41.847"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#b5b5b5"/>
- <fillcolor color="#e6e6e6"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="224.002" y="17.247"/>
- <line x="327.243" y="17.247"/>
- <curve x1="328.727" x2="329.922" x3="329.922" y1="17.247" y2="18.442" y3="19.926"/>
- <curve x1="329.922" x2="328.727" x3="327.243" y1="21.411" y2="22.606" y3="22.606"/>
- <line x="224.002" y="22.606"/>
- <curve x1="222.517" x2="221.322" x3="221.322" y1="22.606" y2="21.411" y3="19.926"/>
- <curve x1="221.322" x2="222.517" x3="224.002" y1="18.442" y2="17.247" y3="17.247"/>
- <close/>
- <move x="109.05" y="17.057"/>
- <line x="158.974" y="17.057"/>
- <curve x1="160.564" x2="161.843" x3="161.843" y1="17.057" y2="18.337" y3="19.926"/>
- <curve x1="161.843" x2="160.564" x3="158.974" y1="21.516" y2="22.795" y3="22.795"/>
- <line x="109.05" y="22.795"/>
- <curve x1="107.461" x2="106.181" x3="106.181" y1="22.795" y2="21.516" y3="19.926"/>
- <curve x1="106.181" x2="107.461" x3="109.05" y1="18.337" y2="17.057" y3="17.057"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#3f3f3f"/>
- <fillcolor color="#64b064"/>
- <strokewidth width="2.27"/>
- <ellipse h="8.05" w="8.05" x="507.638" y="13.77"/>
- <fillstroke/>
- <strokecolor color="#2a2a2a"/>
- <strokewidth width="1.42"/>
- <ellipse h="6.06" w="6.06" x="295.454" y="44.862"/>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#1a1a1a"/>
- <path>
- <move x="102.205" y="19.858"/>
- <curve x1="102.205" x2="101.297" x3="100.193" y1="20.962" y2="21.871" y3="21.871"/>
- <curve x1="99.089" x2="98.18" x3="98.18" y1="21.871" y2="20.962" y3="19.858"/>
- <curve x1="98.18" x2="99.089" x3="100.193" y1="18.754" y2="17.846" y3="17.846"/>
- <curve x1="101.297" x2="102.205" x3="102.205" y1="17.846" y2="18.754" y3="19.858"/>
- <close/>
- <move x="169.695" y="19.858"/>
- <curve x1="169.695" x2="168.787" x3="167.683" y1="20.962" y2="21.871" y3="21.871"/>
- <curve x1="166.579" x2="165.67" x3="165.67" y1="21.871" y2="20.962" y3="19.858"/>
- <curve x1="165.67" x2="166.579" x3="167.683" y1="18.754" y2="17.846" y3="17.846"/>
- <curve x1="168.787" x2="169.695" x3="169.695" y1="17.846" y2="18.754" y3="19.858"/>
- <close/>
- <move x="217.188" y="19.858"/>
- <curve x1="217.188" x2="216.28" x3="215.176" y1="20.962" y2="21.871" y3="21.871"/>
- <curve x1="214.072" x2="213.163" x3="213.163" y1="21.871" y2="20.962" y3="19.858"/>
- <curve x1="213.163" x2="214.072" x3="215.176" y1="18.754" y2="17.846" y3="17.846"/>
- <curve x1="216.28" x2="217.188" x3="217.188" y1="17.846" y2="18.754" y3="19.858"/>
- <close/>
- <move x="338.031" y="19.858"/>
- <curve x1="338.031" x2="337.122" x3="336.018" y1="20.962" y2="21.871" y3="21.871"/>
- <curve x1="336.018" x2="336.018" x3="336.018" y1="21.871" y2="21.871" y3="21.871"/>
- <curve x1="334.914" x2="334.006" x3="334.006" y1="21.871" y2="20.962" y3="19.858"/>
- <curve x1="334.006" x2="334.914" x3="336.018" y1="18.754" y2="17.846" y3="17.846"/>
- <curve x1="336.018" x2="336.018" x3="336.018" y1="17.846" y2="17.846" y3="17.846"/>
- <curve x1="337.122" x2="338.031" x3="338.031" y1="17.846" y2="18.754" y3="19.858"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="62.927" name="Aruba ClearPass C3000 front" strokewidth="inherit" w="703.485">
- <connections/>
- <foreground>
- <save/>
- <strokecolor color="#949494"/>
- <fillcolor color="#d9d9d9"/>
- <strokewidth width="0.57"/>
- <rect h="62.875" w="703.485" x="0" y="0.018"/>
- <fillstroke/>
- <strokecolor color="#434343"/>
- <fillcolor color="#6d6d6d"/>
- <strokewidth width="0.77"/>
- <rect h="62.916" w="641.165" x="34.333" y="0.011"/>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#e6e6e6"/>
- <path>
- <move x="34.333" y="62.926"/>
- <line x="34.333" y="0.011"/>
- <line x="99.169" y="0"/>
- <line x="102.961" y="4.158"/>
- <line x="600.381" y="3.663"/>
- <line x="603.796" y="0.047"/>
- <line x="669.337" y="0.011"/>
- <line x="669.337" y="62.926"/>
- <line x="628.277" y="62.682"/>
- <line x="595.85" y="46.435"/>
- <line x="107.447" y="46.414"/>
- <line x="74.212" y="62.654"/>
- <line x="34.333" y="62.926"/>
- <close/>
- <move x="50.336" y="44.779"/>
- <curve x1="50.336" x2="51.541" x3="55.292" y1="47.609" y2="50.323" y3="50.323"/>
- <line x="71.363" y="50.323"/>
- <line x="91.251" y="40.025"/>
- <line x="91.251" y="23.35"/>
- <line x="71.095" y="13.708"/>
- <line x="55.091" y="13.708"/>
- <curve x1="52.138" x2="50.336" x3="50.336" y1="13.708" y2="15.988" y3="19.333"/>
- <line x="50.336" y="44.779"/>
- <close/>
- <move x="649.273" y="50.295"/>
- <curve x1="651.316" x2="652.586" x3="652.586" y1="50.295" y2="48.077" y3="46.087"/>
- <line x="652.586" y="18.058"/>
- <curve x1="652.586" x2="651.35" x3="648.697" y1="15.766" y2="13.702" y3="13.702"/>
- <line x="632.064" y="13.702"/>
- <line x="611.758" y="23.501"/>
- <line x="611.758" y="40.774"/>
- <line x="631.653" y="50.295"/>
- <line x="649.273" y="50.295"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#8c8c8c"/>
- <rect h="31.071" w="438.75" x="155.537" y="14.511"/>
- <fill/>
- <strokecolor color="#8c8c8c"/>
- <fillcolor color="#e6e6e6"/>
- <strokewidth width="0.85"/>
- <ellipse h="22.16" w="22.16" x="129.258" y="18.86"/>
- <fillstroke/>
- <strokecolor color="#bcbcbc"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="702.81" y="35.876"/>
- <curve x1="702.81" x2="701.685" x3="700.3" y1="34.491" y2="33.366" y3="33.366"/>
- <line x="679.859" y="33.366"/>
- <curve x1="678.474" x2="677.35" x3="677.35" y1="33.366" y2="34.491" y3="35.876"/>
- <line x="677.35" y="49.731"/>
- <curve x1="677.35" x2="678.474" x3="679.859" y1="51.116" y2="52.241" y3="52.241"/>
- <line x="700.3" y="52.241"/>
- <curve x1="701.685" x2="702.81" x3="702.81" y1="52.241" y2="51.116" y3="49.731"/>
- <line x="702.81" y="35.876"/>
- <close/>
- </path>
- <stroke/>
- <strokecolor color="#00a982"/>
- <strokewidth width="2.83"/>
- <linejoin join="miter"/>
- <rect h="7.114" w="20.178" x="677.047" y="16.033"/>
- <stroke/>
- <strokecolor color="#5d5d5d"/>
- <fillcolor color="#ececec"/>
- <strokewidth width="1.13"/>
- <rect h="25.062" w="47.651" x="160.205" y="17.242"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="63.326" name="Aruba ClearPass C3000 rear" strokewidth="inherit" w="688.843">
- <connections/>
- <foreground>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <save/>
- <strokecolor color="#8b8b8b"/>
- <fillcolor color="#e6e6e6"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="0" y="0.246"/>
- <line x="0" y="63.116"/>
- <line x="688.843" y="63.116"/>
- <line x="688.843" y="0.246"/>
- <line x="0" y="0.246"/>
- <close/>
- <move x="674.823" y="5.114"/>
- <line x="680.29" y="5.114"/>
- <curve x1="682.744" x2="684.721" x3="684.721" y1="5.114" y2="7.089" y3="9.544"/>
- <curve x1="684.721" x2="682.744" x3="680.29" y1="11.998" y2="13.975" y3="13.975"/>
- <line x="674.823" y="13.975"/>
- <curve x1="672.369" x2="670.394" x3="670.394" y1="13.975" y2="11.998" y3="9.544"/>
- <curve x1="670.394" x2="672.369" x3="674.823" y1="7.089" y2="5.114" y3="5.114"/>
- <close/>
- <move x="8.763" y="5.23"/>
- <line x="14.23" y="5.23"/>
- <curve x1="16.684" x2="18.661" x3="18.661" y1="5.23" y2="7.207" y3="9.661"/>
- <curve x1="18.661" x2="16.684" x3="14.23" y1="12.115" y2="14.091" y3="14.091"/>
- <line x="8.763" y="14.091"/>
- <curve x1="6.309" x2="4.333" x3="4.333" y1="14.091" y2="12.115" y3="9.661"/>
- <curve x1="4.333" x2="6.309" x3="8.763" y1="7.207" y2="5.23" y3="5.23"/>
- <close/>
- <move x="8.833" y="49.243"/>
- <line x="14.3" y="49.243"/>
- <curve x1="16.755" x2="18.731" x3="18.731" y1="49.243" y2="51.218" y3="53.672"/>
- <curve x1="18.731" x2="16.755" x3="14.3" y1="56.127" y2="58.103" y3="58.103"/>
- <line x="8.833" y="58.103"/>
- <curve x1="6.379" x2="4.402" x3="4.402" y1="58.103" y2="56.127" y3="53.672"/>
- <curve x1="4.402" x2="6.379" x3="8.833" y1="51.218" y2="49.243" y3="49.243"/>
- <close/>
- <move x="674.757" y="49.243"/>
- <line x="680.224" y="49.243"/>
- <curve x1="682.679" x2="684.654" x3="684.654" y1="49.243" y2="51.219" y3="53.674"/>
- <curve x1="684.654" x2="682.679" x3="680.224" y1="56.128" y2="58.103" y3="58.103"/>
- <line x="674.757" y="58.103"/>
- <curve x1="672.303" x2="670.326" x3="670.326" y1="58.103" y2="56.128" y3="53.674"/>
- <curve x1="670.326" x2="672.303" x3="674.757" y1="51.219" y2="49.243" y3="49.243"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#363636"/>
- <fillcolor color="#535353"/>
- <strokewidth width="0.85"/>
- <path>
- <move x="643.201" y="15.494"/>
- <curve x1="644.768" x2="646.041" x3="646.041" y1="15.494" y2="16.767" y3="18.334"/>
- <line x="646.041" y="56.73"/>
- <curve x1="646.041" x2="644.768" x3="643.201" y1="58.298" y2="59.57" y3="59.57"/>
- <line x="615.12" y="59.57"/>
- <curve x1="613.553" x2="612.28" x3="612.28" y1="59.57" y2="58.298" y3="56.73"/>
- <line x="612.28" y="18.334"/>
- <curve x1="612.28" x2="613.553" x3="615.12" y1="16.767" y2="15.494" y3="15.494"/>
- <line x="643.201" y="15.494"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="633.314" y="56.752"/>
- <line x="641.797" y="48.22"/>
- <line x="641.797" y="27.792"/>
- <line x="633.606" y="19.504"/>
- <line x="621.174" y="19.504"/>
- <curve x1="617.704" x2="616.104" x3="616.104" y1="19.504" y2="21.288" y3="24.818"/>
- <line x="616.104" y="50.901"/>
- <curve x1="616.104" x2="617.737" x3="621.272" y1="54.208" y2="56.752" y3="56.752"/>
- <line x="633.314" y="56.752"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#9a9a9a"/>
- <path>
- <move x="628.634" y="28.768"/>
- <line x="628.634" y="25.941"/>
- <line x="621.05" y="25.941"/>
- <line x="621.05" y="28.768"/>
- <line x="628.634" y="28.768"/>
- <close/>
- <move x="636.563" y="39.472"/>
- <line x="636.563" y="36.645"/>
- <line x="628.979" y="36.645"/>
- <line x="628.979" y="39.472"/>
- <line x="636.563" y="39.472"/>
- <close/>
- <move x="628.634" y="50.176"/>
- <line x="628.634" y="47.349"/>
- <line x="621.05" y="47.349"/>
- <line x="621.05" y="50.176"/>
- <line x="628.634" y="50.176"/>
- <close/>
- </path>
- <fill/>
- <fillcolor color="#262626"/>
- <ellipse h="56.518" w="56.518" x="552.038" y="3.143"/>
- <fill/>
- <fillcolor color="#8ebaea"/>
- <ellipse h="29.984" w="29.984" x="564.97" y="16.209"/>
- <fill/>
- <strokecolor color="#4d4d4d"/>
- <fillcolor color="#f2f2f2"/>
- <strokewidth width="0.57"/>
- <path>
- <move x="247.327" y="49.337"/>
- <curve x1="247.327" x2="245.959" x3="244.297" y1="51" y2="52.368" y3="52.368"/>
- <curve x1="242.634" x2="241.266" x3="241.266" y1="52.368" y2="51" y3="49.337"/>
- <curve x1="241.266" x2="242.634" x3="244.297" y1="47.675" y2="46.307" y3="46.307"/>
- <curve x1="245.959" x2="247.327" x3="247.327" y1="46.307" y2="47.675" y3="49.337"/>
- <close/>
- <move x="210.493" y="49.337"/>
- <curve x1="210.493" x2="209.125" x3="207.462" y1="51" y2="52.368" y3="52.368"/>
- <curve x1="205.8" x2="204.432" x3="204.432" y1="52.368" y2="51" y3="49.337"/>
- <curve x1="204.432" x2="205.8" x3="207.462" y1="47.675" y2="46.307" y3="46.307"/>
- <curve x1="209.125" x2="210.493" x3="210.493" y1="46.307" y2="47.675" y3="49.337"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#f2f2f2"/>
- <fillcolor color="#333"/>
- <strokewidth width="0.85"/>
- <linejoin join="miter"/>
- <linecap cap="butt"/>
- <path>
- <move x="217.733" y="54.325"/>
- <curve x1="216.527" x2="215.705" x3="215.365" y1="54.325" y2="53.182" y3="51.532"/>
- <line x="214.778" y="46.805"/>
- <curve x1="214.571" x2="216.007" x3="217.412" y1="45.404" y2="44.087" y3="44.087"/>
- <line x="234.692" y="44.053"/>
- <curve x1="236.563" x2="237.342" x3="237.194" y1="44.053" y2="45.404" y3="46.538"/>
- <line x="236.514" y="52.074"/>
- <curve x1="236.155" x2="235.677" x3="234.116" y1="53.219" y2="54.467" y3="54.467"/>
- <line x="217.733" y="54.325"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#878787"/>
- <strokewidth width="0.57"/>
- <linejoin join="miter"/>
- <rect h="18.114" w="140.592" x="56.022" y="8.429"/>
- <stroke/>
- <rect h="18.065" w="90.164" x="219.817" y="10.958"/>
- <stroke/>
- <strokecolor color="#000"/>
- <strokewidth width="0.75"/>
- <linecap cap="butt"/>
- <path>
- <move x="447.037" y="62.895"/>
- <line x="447.037" y="0.013"/>
- </path>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#888"/>
- <strokewidth width="0.57"/>
- <linejoin join="miter"/>
- <path>
- <move x="55.887" y="3.139"/>
- <curve x1="55.887" x2="55.422" x3="54.849" y1="2.566" y2="2.101" y3="2.101"/>
- <line x="36.72" y="2.101"/>
- <curve x1="36.147" x2="35.682" x3="35.682" y1="2.101" y2="2.566" y3="3.139"/>
- <line x="35.682" y="36.567"/>
- <curve x1="35.682" x2="36.147" x3="36.72" y1="37.14" y2="37.605" y3="37.605"/>
- <line x="54.849" y="37.605"/>
- <curve x1="55.422" x2="55.887" x3="55.887" y1="37.605" y2="37.14" y3="36.567"/>
- <line x="55.887" y="3.139"/>
- <close/>
- </path>
- <stroke/>
- <strokecolor color="#b5b5b5"/>
- <path>
- <move x="292.716" y="19.997"/>
- <curve x1="292.716" x2="291.431" x3="289.847" y1="18.413" y2="17.128" y3="17.128"/>
- <line x="239.923" y="17.128"/>
- <curve x1="238.34" x2="237.055" x3="237.055" y1="17.128" y2="18.413" y3="19.997"/>
- <curve x1="237.055" x2="238.34" x3="239.923" y1="21.58" y2="22.865" y3="22.865"/>
- <line x="289.847" y="22.865"/>
- <curve x1="291.431" x2="292.716" x3="292.716" y1="22.865" y2="21.58" y3="19.997"/>
- <close/>
- </path>
- <stroke/>
- <path>
- <move x="180.586" y="17.481"/>
- <curve x1="180.586" x2="179.385" x3="177.906" y1="16.002" y2="14.802" y3="14.802"/>
- <line x="74.665" y="14.802"/>
- <curve x1="73.186" x2="71.986" x3="71.986" y1="14.802" y2="16.002" y3="17.481"/>
- <curve x1="71.986" x2="73.186" x3="74.665" y1="18.96" y2="20.16" y3="20.16"/>
- <line x="177.906" y="20.16"/>
- <curve x1="179.385" x2="180.586" x3="180.586" y1="20.16" y2="18.96" y3="17.481"/>
- <close/>
- </path>
- <stroke/>
- <strokecolor color="#a4a4a4"/>
- <fillcolor color="#ddd"/>
- <ellipse h="11.08" w="11.08" x="424.541" y="6.081"/>
- <fillstroke/>
- <strokecolor color="#666"/>
- <fillcolor color="#8ac28a"/>
- <strokewidth width="1.98"/>
- <ellipse h="6.262" w="6.262" x="614.78" y="7.177"/>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#1a1a1a"/>
- <path>
- <move x="67.852" y="17.481"/>
- <curve x1="67.852" x2="66.943" x3="65.839" y1="18.585" y2="19.493" y3="19.493"/>
- <curve x1="64.735" x2="63.827" x3="63.827" y1="19.493" y2="18.585" y3="17.481"/>
- <curve x1="63.827" x2="64.735" x3="65.839" y1="16.377" y2="15.468" y3="15.468"/>
- <curve x1="66.943" x2="67.852" x3="67.852" y1="15.468" y2="16.377" y3="17.481"/>
- <close/>
- <move x="188.694" y="17.481"/>
- <curve x1="188.694" x2="187.786" x3="186.682" y1="18.585" y2="19.493" y3="19.493"/>
- <curve x1="185.578" x2="184.669" x3="184.669" y1="19.493" y2="18.585" y3="17.481"/>
- <curve x1="184.669" x2="185.578" x3="186.682" y1="16.377" y2="15.468" y3="15.468"/>
- <curve x1="187.786" x2="188.694" x3="188.694" y1="15.468" y2="16.377" y3="17.481"/>
- <close/>
- </path>
- <fill/>
- <path>
- <move x="233.078" y="19.997"/>
- <curve x1="233.078" x2="232.17" x3="231.066" y1="21.101" y2="22.009" y3="22.009"/>
- <curve x1="229.962" x2="229.053" x3="229.053" y1="22.009" y2="21.101" y3="19.997"/>
- <curve x1="229.053" x2="229.962" x3="231.066" y1="18.893" y2="17.984" y3="17.984"/>
- <curve x1="232.17" x2="233.078" x3="233.078" y1="17.984" y2="18.893" y3="19.997"/>
- <close/>
- <move x="300.568" y="19.997"/>
- <curve x1="300.568" x2="299.66" x3="298.556" y1="21.101" y2="22.009" y3="22.009"/>
- <curve x1="297.452" x2="296.544" x3="296.544" y1="22.009" y2="21.101" y3="19.997"/>
- <curve x1="296.544" x2="297.452" x3="298.556" y1="18.893" y2="17.984" y3="17.984"/>
- <curve x1="299.66" x2="300.568" x3="300.568" y1="17.984" y2="18.893" y3="19.997"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#5b5b5b"/>
- <fillcolor color="#e0e0e0"/>
- <strokewidth width="1.13"/>
- <path>
- <move x="608.186" y="54.31"/>
- <curve x1="608.186" x2="605.813" x3="602.929" y1="57.194" y2="59.567" y3="59.567"/>
- <curve x1="602.929" x2="602.929" x3="602.929" y1="59.567" y2="59.567" y3="59.567"/>
- <curve x1="600.045" x2="597.672" x3="597.672" y1="59.567" y2="57.194" y3="54.31"/>
- <curve x1="597.672" x2="600.045" x3="602.929" y1="51.427" y2="49.054" y3="49.054"/>
- <curve x1="602.929" x2="602.929" x3="602.929" y1="49.054" y2="49.054" y3="49.054"/>
- <curve x1="605.813" x2="608.186" x3="608.186" y1="49.054" y2="51.427" y3="54.31"/>
- <close/>
- <move x="608.097" y="8.897"/>
- <curve x1="608.097" x2="605.724" x3="602.84" y1="11.78" y2="14.153" y3="14.153"/>
- <line x="602.84" y="14.153"/>
- <curve x1="599.956" x2="597.583" x3="597.583" y1="14.153" y2="11.78" y3="8.897"/>
- <curve x1="597.583" x2="599.956" x3="602.84" y1="6.013" y2="3.64" y3="3.64"/>
- <line x="602.84" y="3.64"/>
- <curve x1="605.724" x2="608.097" x3="608.097" y1="3.64" y2="6.013" y3="8.897"/>
- <close/>
- <move x="562.459" y="54.087"/>
- <curve x1="562.459" x2="560.086" x3="557.203" y1="56.971" y2="59.344" y3="59.344"/>
- <curve x1="557.202" x2="557.202" x3="557.202" y1="59.344" y2="59.344" y3="59.344"/>
- <curve x1="554.319" x2="551.946" x3="551.946" y1="59.344" y2="56.971" y3="54.087"/>
- <curve x1="551.946" x2="554.319" x3="557.202" y1="51.204" y2="48.831" y3="48.831"/>
- <curve x1="557.202" x2="557.202" x3="557.203" y1="48.831" y2="48.831" y3="48.831"/>
- <curve x1="560.086" x2="562.459" x3="562.459" y1="48.831" y2="51.204" y3="54.087"/>
- <close/>
- <move x="562.448" y="8.766"/>
- <curve x1="562.448" x2="560.075" x3="557.191" y1="11.65" y2="14.023" y3="14.023"/>
- <curve x1="557.191" x2="557.191" x3="557.191" y1="14.023" y2="14.023" y3="14.023"/>
- <curve x1="554.307" x2="551.934" x3="551.934" y1="14.023" y2="11.65" y3="8.766"/>
- <curve x1="551.934" x2="554.307" x3="557.191" y1="5.883" y2="3.51" y3="3.51"/>
- <curve x1="557.191" x2="557.191" x3="557.191" y1="3.51" y2="3.51" y3="3.51"/>
- <curve x1="560.075" x2="562.448" x3="562.448" y1="3.51" y2="5.883" y3="8.766"/>
- <line x="562.448" y="8.766"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#4d514c"/>
- <fillcolor color="#528e4b"/>
- <strokewidth width="0.31"/>
- <path>
- <move x="143.861" y="41.021"/>
- <line x="147.574" y="41.021"/>
- <line x="147.574" y="43.033"/>
- <line x="143.861" y="43.033"/>
- <line x="143.861" y="41.021"/>
- <close/>
- <move x="129.408" y="41.021"/>
- <line x="133.121" y="41.021"/>
- <line x="133.121" y="43.033"/>
- <line x="129.408" y="43.033"/>
- <line x="129.408" y="41.021"/>
- <close/>
- <move x="123.245" y="41.021"/>
- <line x="126.958" y="41.021"/>
- <line x="126.958" y="43.033"/>
- <line x="123.245" y="43.033"/>
- <line x="123.245" y="41.021"/>
- <close/>
- <move x="108.792" y="41.021"/>
- <line x="112.505" y="41.021"/>
- <line x="112.505" y="43.033"/>
- <line x="108.792" y="43.033"/>
- <line x="108.792" y="41.021"/>
- <close/>
- <move x="102.629" y="41.021"/>
- <line x="106.342" y="41.021"/>
- <line x="106.342" y="43.033"/>
- <line x="102.629" y="43.033"/>
- <line x="102.629" y="41.021"/>
- <close/>
- <move x="88.176" y="41.021"/>
- <line x="91.889" y="41.021"/>
- <line x="91.889" y="43.033"/>
- <line x="88.176" y="43.033"/>
- <line x="88.176" y="41.021"/>
- <close/>
- <move x="82.013" y="41.021"/>
- <line x="85.726" y="41.021"/>
- <line x="85.726" y="43.033"/>
- <line x="82.013" y="43.033"/>
- <line x="82.013" y="41.021"/>
- <close/>
- <move x="67.56" y="41.021"/>
- <line x="71.273" y="41.021"/>
- <line x="71.273" y="43.033"/>
- <line x="67.56" y="43.033"/>
- <line x="67.56" y="41.021"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="133.887" y="39.992"/>
- <line x="133.887" y="44.114"/>
- <line x="129.838" y="44.114"/>
- <line x="129.838" y="54.42"/>
- <line x="146.965" y="54.42"/>
- <line x="146.965" y="44.114"/>
- <line x="142.916" y="44.114"/>
- <line x="142.916" y="39.992"/>
- <line x="133.887" y="39.992"/>
- <close/>
- <move x="113.271" y="39.992"/>
- <line x="113.271" y="44.114"/>
- <line x="109.222" y="44.114"/>
- <line x="109.222" y="54.42"/>
- <line x="126.349" y="54.42"/>
- <line x="126.349" y="44.114"/>
- <line x="122.3" y="44.114"/>
- <line x="122.3" y="39.992"/>
- <line x="113.271" y="39.992"/>
- <close/>
- <move x="92.656" y="39.992"/>
- <line x="92.656" y="44.114"/>
- <line x="88.607" y="44.114"/>
- <line x="88.607" y="54.42"/>
- <line x="105.733" y="54.42"/>
- <line x="105.733" y="44.114"/>
- <line x="101.684" y="44.114"/>
- <line x="101.684" y="39.992"/>
- <line x="92.656" y="39.992"/>
- <close/>
- <move x="72.04" y="39.992"/>
- <line x="72.04" y="44.114"/>
- <line x="67.991" y="44.114"/>
- <line x="67.991" y="54.42"/>
- <line x="85.117" y="54.42"/>
- <line x="85.117" y="44.114"/>
- <line x="81.068" y="44.114"/>
- <line x="81.068" y="39.992"/>
- <line x="72.04" y="39.992"/>
- <close/>
- </path>
- <fill/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#737373"/>
- <strokewidth width="0.57"/>
- <linejoin join="miter"/>
- <fillalpha alpha="0"/>
- <path>
- <move x="179.094" y="51.688"/>
- <line x="195.471" y="51.688"/>
- <curve x1="196.046" x2="196.509" x3="196.509" y1="51.688" y2="52.151" y3="52.726"/>
- <line x="196.509" y="58.264"/>
- <curve x1="196.509" x2="196.046" x3="195.471" y1="58.839" y2="59.302" y3="59.302"/>
- <line x="179.094" y="59.302"/>
- <curve x1="178.519" x2="178.056" x3="178.056" y1="59.302" y2="58.839" y3="58.264"/>
- <line x="178.056" y="52.726"/>
- <curve x1="178.056" x2="178.519" x3="179.094" y1="52.151" y2="51.688" y3="51.688"/>
- <close/>
- <move x="179.094" y="39.413"/>
- <line x="195.471" y="39.413"/>
- <curve x1="196.046" x2="196.509" x3="196.509" y1="39.413" y2="39.876" y3="40.451"/>
- <line x="196.509" y="45.989"/>
- <curve x1="196.509" x2="196.046" x3="195.471" y1="46.564" y2="47.027" y3="47.027"/>
- <line x="179.094" y="47.027"/>
- <curve x1="178.519" x2="178.056" x3="178.056" y1="47.027" y2="46.564" y3="45.989"/>
- <line x="178.056" y="40.451"/>
- <curve x1="178.056" x2="178.519" x3="179.094" y1="39.876" y2="39.413" y3="39.413"/>
- <close/>
- </path>
- <fillstroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#292929"/>
- <path>
- <move x="267.801" y="41.706"/>
- <line x="267.801" y="44.602"/>
- <line x="263.84" y="44.602"/>
- <line x="263.84" y="54.684"/>
- <line x="280.594" y="54.684"/>
- <line x="280.594" y="44.602"/>
- <line x="276.633" y="44.602"/>
- <line x="276.633" y="41.706"/>
- <line x="267.801" y="41.706"/>
- <close/>
- <move x="360.94" y="41.706"/>
- <line x="360.94" y="44.602"/>
- <line x="356.979" y="44.602"/>
- <line x="356.979" y="54.684"/>
- <line x="373.734" y="54.684"/>
- <line x="373.734" y="44.602"/>
- <line x="369.773" y="44.602"/>
- <line x="369.773" y="41.706"/>
- <line x="360.94" y="41.706"/>
- <close/>
- <move x="340.691" y="41.706"/>
- <line x="340.691" y="44.602"/>
- <line x="336.73" y="44.602"/>
- <line x="336.73" y="54.684"/>
- <line x="353.484" y="54.684"/>
- <line x="353.484" y="44.602"/>
- <line x="349.523" y="44.602"/>
- <line x="349.523" y="41.706"/>
- <line x="340.691" y="41.706"/>
- <close/>
- <move x="320.441" y="41.706"/>
- <line x="320.441" y="44.602"/>
- <line x="316.48" y="44.602"/>
- <line x="316.48" y="54.684"/>
- <line x="333.235" y="54.684"/>
- <line x="333.235" y="44.602"/>
- <line x="329.274" y="44.602"/>
- <line x="329.274" y="41.706"/>
- <line x="320.441" y="41.706"/>
- <close/>
- <move x="300.192" y="41.706"/>
- <line x="300.192" y="44.602"/>
- <line x="296.231" y="44.602"/>
- <line x="296.231" y="54.684"/>
- <line x="312.986" y="54.684"/>
- <line x="312.986" y="44.602"/>
- <line x="309.025" y="44.602"/>
- <line x="309.025" y="41.706"/>
- <line x="300.192" y="41.706"/>
- <close/>
- </path>
- <fill/>
- <strokecolor color="#333"/>
- <fillcolor color="#538f4b"/>
- <strokewidth width="0.3"/>
- <path>
- <move x="260.589" y="41.873"/>
- <line x="262.665" y="41.873"/>
- <line x="262.665" y="45.65"/>
- <line x="260.589" y="45.65"/>
- <line x="260.589" y="41.873"/>
- <close/>
- <move x="282.028" y="41.873"/>
- <line x="284.103" y="41.873"/>
- <line x="284.103" y="45.65"/>
- <line x="282.028" y="45.65"/>
- <line x="282.028" y="41.873"/>
- <close/>
- <move x="370.697" y="41.655"/>
- <line x="374.33" y="41.655"/>
- <line x="374.33" y="43.624"/>
- <line x="370.697" y="43.624"/>
- <line x="370.697" y="41.655"/>
- <close/>
- <move x="356.558" y="41.655"/>
- <line x="360.19" y="41.655"/>
- <line x="360.19" y="43.624"/>
- <line x="356.558" y="43.624"/>
- <line x="356.558" y="41.655"/>
- <close/>
- <move x="350.448" y="41.655"/>
- <line x="354.08" y="41.655"/>
- <line x="354.08" y="43.624"/>
- <line x="350.448" y="43.624"/>
- <line x="350.448" y="41.655"/>
- <close/>
- <move x="336.309" y="41.655"/>
- <line x="339.941" y="41.655"/>
- <line x="339.941" y="43.624"/>
- <line x="336.309" y="43.624"/>
- <line x="336.309" y="41.655"/>
- <close/>
- <move x="330.199" y="41.655"/>
- <line x="333.831" y="41.655"/>
- <line x="333.831" y="43.624"/>
- <line x="330.199" y="43.624"/>
- <line x="330.199" y="41.655"/>
- <close/>
- <move x="316.059" y="41.655"/>
- <line x="319.692" y="41.655"/>
- <line x="319.692" y="43.624"/>
- <line x="316.059" y="43.624"/>
- <line x="316.059" y="41.655"/>
- <close/>
- <move x="309.949" y="41.655"/>
- <line x="313.582" y="41.655"/>
- <line x="313.582" y="43.624"/>
- <line x="309.949" y="43.624"/>
- <line x="309.949" y="41.655"/>
- <close/>
- <move x="295.81" y="41.655"/>
- <line x="299.442" y="41.655"/>
- <line x="299.442" y="43.624"/>
- <line x="295.81" y="43.624"/>
- <line x="295.81" y="41.655"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#232323"/>
- <strokewidth width="0.57"/>
- <linejoin join="miter"/>
- <path>
- <move x="259.559" y="40.036"/>
- <line x="285.154" y="40.036"/>
- <line x="285.154" y="56.798"/>
- <line x="259.559" y="56.798"/>
- <line x="259.559" y="40.036"/>
- <close/>
- <move x="293.201" y="40.7"/>
- <line x="376.453" y="40.7"/>
- <line x="376.453" y="57.998"/>
- <line x="293.201" y="57.998"/>
- <line x="293.201" y="40.7"/>
- <close/>
- <move x="65.226" y="39.113"/>
- <line x="149.898" y="39.113"/>
- <line x="149.898" y="58.163"/>
- <line x="65.226" y="58.163"/>
- <line x="65.226" y="39.113"/>
- <close/>
- </path>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#4c4c4c"/>
- <fillcolor color="#ececec"/>
- <strokewidth width="0.28"/>
- <path>
- <move x="427.803" y="47.949"/>
- <curve x1="427.803" x2="426.435" x3="424.772" y1="49.611" y2="50.979" y3="50.979"/>
- <curve x1="424.772" x2="424.772" x3="424.772" y1="50.979" y2="50.979" y3="50.979"/>
- <curve x1="423.11" x2="421.742" x3="421.742" y1="50.979" y2="49.611" y3="47.949"/>
- <curve x1="421.742" x2="423.11" x3="424.772" y1="46.286" y2="44.918" y3="44.918"/>
- <curve x1="424.772" x2="424.772" x3="424.772" y1="44.918" y2="44.918" y3="44.918"/>
- <curve x1="426.435" x2="427.803" x3="427.803" y1="44.918" y2="46.286" y3="47.949"/>
- <close/>
- <move x="390.968" y="47.949"/>
- <curve x1="390.968" x2="389.6" x3="387.938" y1="49.611" y2="50.979" y3="50.979"/>
- <line x="387.938" y="50.979"/>
- <curve x1="386.275" x2="384.907" x3="384.907" y1="50.979" y2="49.611" y3="47.949"/>
- <curve x1="384.907" x2="386.275" x3="387.938" y1="46.286" y2="44.918" y3="44.918"/>
- <line x="387.938" y="44.918"/>
- <curve x1="389.6" x2="390.968" x3="390.968" y1="44.918" y2="46.286" y3="47.949"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#dbdddd"/>
- <fillcolor color="#5285c2"/>
- <strokewidth width="0.85"/>
- <linejoin join="miter"/>
- <linecap cap="butt"/>
- <path>
- <move x="398.208" y="52.937"/>
- <curve x1="397.003" x2="396.181" x3="395.841" y1="52.937" y2="51.794" y3="50.143"/>
- <line x="395.253" y="45.416"/>
- <curve x1="395.047" x2="396.483" x3="397.888" y1="44.016" y2="42.698" y3="42.698"/>
- <line x="415.168" y="42.665"/>
- <curve x1="417.038" x2="417.817" x3="417.67" y1="42.665" y2="44.015" y3="45.15"/>
- <line x="416.99" y="50.686"/>
- <curve x1="416.63" x2="416.153" x3="414.592" y1="51.831" y2="53.079" y3="53.079"/>
- <line x="398.208" y="52.937"/>
- <close/>
- </path>
- <fillstroke/>
- <strokecolor color="#000"/>
- <strokewidth width="0.75"/>
- <path>
- <move x="548.218" y="62.882"/>
- <line x="548.218" y="0"/>
- </path>
- <stroke/>
- <path>
- <move x="34.877" y="63.326"/>
- <line x="34.877" y="0.444"/>
- </path>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="#1a1a1a"/>
- <ellipse h="5.598" w="5.598" x="50.718" y="46.539"/>
- <fill/>
- <strokecolor color="#b5b5b5"/>
- <strokewidth width="0.57"/>
- <linejoin join="miter"/>
- <path>
- <move x="338.043" y="13.75"/>
- <line x="405.257" y="13.75"/>
- <curve x1="406.482" x2="407.468" x3="407.468" y1="13.75" y2="14.736" y3="15.961"/>
- <curve x1="407.468" x2="406.482" x3="405.257" y1="17.186" y2="18.171" y3="18.171"/>
- <line x="338.043" y="18.171"/>
- <curve x1="336.818" x2="335.832" x3="335.832" y1="18.171" y2="17.186" y3="15.961"/>
- <curve x1="335.832" x2="336.818" x3="338.043" y1="14.736" y2="13.75" y3="13.75"/>
- <close/>
- <move x="338.043" y="21.463"/>
- <line x="405.257" y="21.463"/>
- <curve x1="406.482" x2="407.468" x3="407.468" y1="21.463" y2="22.449" y3="23.674"/>
- <curve x1="407.468" x2="406.482" x3="405.257" y1="24.898" y2="25.884" y3="25.884"/>
- <line x="338.043" y="25.884"/>
- <curve x1="336.818" x2="335.832" x3="335.832" y1="25.884" y2="24.898" y3="23.674"/>
- <curve x1="335.832" x2="336.818" x3="338.043" y1="22.449" y2="21.463" y3="21.463"/>
- <close/>
- </path>
- <stroke/>
- <strokecolor color="#808080"/>
- <path>
- <move x="311.254" y="4.03"/>
- <line x="325.121" y="4.03"/>
- <curve x1="325.696" x2="326.159" x3="326.159" y1="4.03" y2="4.493" y3="5.068"/>
- <line x="326.159" y="28.931"/>
- <curve x1="326.159" x2="325.696" x3="325.121" y1="29.506" y2="29.969" y3="29.969"/>
- <line x="311.254" y="29.969"/>
- <curve x1="310.679" x2="310.216" x3="310.216" y1="29.969" y2="29.506" y3="28.931"/>
- <line x="310.216" y="5.068"/>
- <curve x1="310.216" x2="310.679" x3="311.254" y1="4.493" y2="4.03" y3="4.03"/>
- <close/>
- <move x="201.873" y="5.924"/>
- <line x="218.677" y="5.924"/>
- <curve x1="219.252" x2="219.715" x3="219.715" y1="5.924" y2="6.387" y3="6.962"/>
- <line x="219.715" y="36.412"/>
- <curve x1="219.715" x2="219.252" x3="218.677" y1="36.987" y2="37.45" y3="37.45"/>
- <line x="201.873" y="37.45"/>
- <curve x1="201.298" x2="200.835" x3="200.835" y1="37.45" y2="36.987" y3="36.412"/>
- <line x="200.835" y="6.962"/>
- <curve x1="200.835" x2="201.298" x3="201.873" y1="6.387" y2="5.924" y3="5.924"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="22.931" name="Direct QSFP" strokewidth="inherit" w="44.481">
- <connections/>
- <foreground>
- <save/>
- <strokecolor color="#b7b7b7"/>
- <fillcolor color="#f2f2f2"/>
- <strokewidth width="0.28"/>
- <path>
- <move x="44.467" y="0.78"/>
- <curve x1="44.467" x2="44.117" x3="43.686" y1="0.349" y2="0" y3="0"/>
- <line x="0.78" y="0"/>
- <curve x1="0.349" x2="0" x3="0" y1="0" y2="0.349" y3="0.78"/>
- <line x="0" y="20.102"/>
- <curve x1="0" x2="0.349" x3="0.78" y1="20.532" y2="20.882" y3="20.882"/>
- <line x="43.686" y="20.882"/>
- <curve x1="44.117" x2="44.467" x3="44.467" y1="20.882" y2="20.532" y3="20.102"/>
- <line x="44.467" y="0.78"/>
- <close/>
- </path>
- <fillstroke/>
- <linecap cap="butt"/>
- <path>
- <move x="0.003" y="12.067"/>
- <line x="44.481" y="12.067"/>
- </path>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <strokecolor color="#838383"/>
- <fillcolor color="#799ac2"/>
- <strokewidth width="0.28"/>
- <rect h="15.503" w="34.415" x="5.122" y="2.792"/>
- <fillstroke/>
- <strokecolor color="#74787d"/>
- <fillcolor color="#828282"/>
- <strokewidth width="0.57"/>
- <ellipse h="15.102" w="15.102" x="14.828" y="3.076"/>
- <fillstroke/>
- <strokecolor color="#505050"/>
- <fillcolor color="#787878"/>
- <strokewidth width="0.28"/>
- <linecap cap="butt"/>
- <path>
- <move x="20.185" y="6.381"/>
- <curve x1="21.94" x2="24.491" x3="25.741" y1="5.438" y2="6.42" y3="8.154"/>
- <curve x1="27.119" x2="26.623" x3="25.103" y1="10.516" y2="13.173" y3="14.372"/>
- <line x="11.955" y="22.135"/>
- <curve x1="10.563" x2="8.93" x3="7.402" y1="22.931" y2="21.499" y3="19.651"/>
- <curve x1="6.178" x2="5.962" x3="6.854" y1="17.902" y2="14.642" y3="14.066"/>
- <line x="20.185" y="6.381"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="6.755" y="14.128"/>
- <curve x1="8.512" x2="10.079" x3="11.692" y1="13.126" y2="14.362" y3="16.669"/>
- <curve x1="13.116" x2="13.183" x3="11.91" y1="18.728" y2="21.383" y3="22.157"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- </shapes>
|