123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484 |
- <shapes name="mxGraph.ios7.icons">
- <shape aspect="variable" h="100" name="Add" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="50" y="20"/>
- <line x="50" y="80"/>
- <move x="20" y="50"/>
- <line x="80" y="50"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="101.07" name="Alarm Clock" strokewidth="inherit" w="90">
- <connections/>
- <foreground>
- <ellipse h="90" w="90" x="0" y="11.07"/>
- <fillstroke/>
- <path>
- <move x="45" y="21.07"/>
- <line x="45" y="56.07"/>
- <line x="25" y="56.07"/>
- </path>
- <stroke/>
- <path>
- <move x="0" y="101.07"/>
- <line x="13" y="88.07"/>
- <move x="90" y="101.07"/>
- <line x="77" y="88.07"/>
- <move x="35" y="6.07"/>
- <line x="5" y="21.07"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="35" x-axis-rotation="0" y="6.07"/>
- <close/>
- <move x="55" y="6.07"/>
- <line x="85" y="21.07"/>
- <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="0" x="55" x-axis-rotation="0" y="6.07"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Back" strokewidth="inherit" w="100.1">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="30"/>
- <line x="40" y="0"/>
- <line x="40" y="20"/>
- <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="100" x-axis-rotation="0" y="85"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="40" x-axis-rotation="0" y="45"/>
- <line x="40" y="65"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="56" name="Backward" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="50" y="0"/>
- <line x="0" y="28"/>
- <line x="50" y="56"/>
- <close/>
- <move x="100" y="0"/>
- <line x="50" y="28"/>
- <line x="100" y="56"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="70" name="Bag" strokewidth="inherit" w="70">
- <connections/>
- <foreground>
- <rect h="70" w="70" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="13" y="15"/>
- <line x="17" y="15"/>
- <move x="53" y="15"/>
- <line x="57" y="15"/>
- <move x="15" y="15"/>
- <line x="15" y="35"/>
- <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="0" x="55" x-axis-rotation="0" y="35"/>
- <line x="55" y="15"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Basketball" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="0" y="50"/>
- <line x="100" y="50"/>
- <move x="20" y="10"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="20" x-axis-rotation="0" y="90"/>
- <move x="80" y="10"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="80" x-axis-rotation="0" y="90"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="40" name="Basket Cancel" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="100" y="0"/>
- <line x="95" y="10"/>
- <line x="91" y="10"/>
- <line x="81" y="40"/>
- <line x="19" y="40"/>
- <line x="9" y="10"/>
- <line x="5" y="10"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="9" y="10"/>
- <line x="91" y="10"/>
- <move x="40" y="15"/>
- <line x="60" y="35"/>
- <move x="60" y="15"/>
- <line x="40" y="35"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="40" name="Battery" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <save/>
- <strokecolor color="none"/>
- <path>
- <move x="0" y="0"/>
- <line x="95" y="0"/>
- <line x="95" y="15"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="25"/>
- <line x="95" y="40"/>
- <line x="0" y="40"/>
- <close/>
- <close/>
- </path>
- <fill/>
- <restore/>
- <rect/>
- <stroke/>
- <fillcolor color="none"/>
- <path>
- <move x="0" y="0"/>
- <line x="45" y="0"/>
- <line x="45" y="40"/>
- <line x="0" y="40"/>
- <close/>
- <move x="50" y="0"/>
- <line x="95" y="0"/>
- <line x="95" y="40"/>
- <line x="50" y="40"/>
- <move x="95" y="15"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="25"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="77.34" name="Bell" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="73"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="10" x-axis-rotation="0" y="63"/>
- <line x="10" y="33"/>
- <arc large-arc-flag="1" rx="30" ry="30" sweep-flag="1" x="70" x-axis-rotation="0" y="33"/>
- <line x="70" y="63"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="73"/>
- <close/>
- <move x="35" y="75"/>
- <line x="45" y="75"/>
- <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="35" x-axis-rotation="0" y="75"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="none"/>
- <path>
- <move x="37" y="3"/>
- <arc large-arc-flag="1" rx="3" ry="3" sweep-flag="1" x="43" x-axis-rotation="0" y="3"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="96" name="Bluetooth" strokewidth="inherit" w="50">
- <connections/>
- <foreground>
- <fillcolor color="none"/>
- <path>
- <move x="0" y="73"/>
- <line x="50" y="23"/>
- <line x="25" y="0"/>
- <line x="25" y="96"/>
- <line x="50" y="73"/>
- <line x="0" y="23"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Book" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="5" y="80"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="75"/>
- <line x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="45" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50" x-axis-rotation="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="55" x-axis-rotation="0" y="0"/>
- <line x="95" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
- <line x="100" y="75"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="80"/>
- <close/>
- <move x="50" y="5"/>
- <line x="50" y="85"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="80" name="Bookmark" strokewidth="inherit" w="60">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="60" y="0"/>
- <line x="60" y="80"/>
- <line x="30" y="55"/>
- <line x="0" y="80"/>
- <close/>
- <move x="10" y="20"/>
- <line x="50" y="20"/>
- <move x="10" y="35"/>
- <line x="50" y="35"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="90" name="Box" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="100" y="0"/>
- <line x="100" y="15"/>
- <line x="95" y="15"/>
- <line x="95" y="90"/>
- <line x="5" y="90"/>
- <line x="5" y="15"/>
- <line x="0" y="15"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="5" y="15"/>
- <line x="95" y="15"/>
- <move x="75" y="25"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="75" x-axis-rotation="0" y="35"/>
- <line x="25" y="35"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="25" x-axis-rotation="0" y="25"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="67" name="Briefcase" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <rect h="60" w="100" x="0" y="7"/>
- <fillstroke/>
- <rect h="10" w="20" x="40" y="32"/>
- <stroke/>
- <path>
- <move x="0" y="37"/>
- <line x="40" y="37"/>
- <move x="60" y="37"/>
- <line x="100" y="37"/>
- <move x="40" y="7"/>
- <line x="40" y="0"/>
- <line x="60" y="0"/>
- <line x="60" y="7"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Calculator" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <roundrect arcsize="6.25" h="100" w="80" x="0" y="0"/>
- <fillstroke/>
- <rect h="15" w="70" x="5" y="5"/>
- <stroke/>
- <path>
- <move x="5" y="75"/>
- <line x="5" y="95"/>
- <line x="25" y="95"/>
- <move x="5" y="50"/>
- <line x="5" y="70"/>
- <line x="25" y="70"/>
- <move x="5" y="25"/>
- <line x="5" y="45"/>
- <line x="25" y="45"/>
- <move x="30" y="25"/>
- <line x="30" y="45"/>
- <line x="50" y="45"/>
- <move x="55" y="25"/>
- <line x="55" y="45"/>
- <line x="75" y="45"/>
- <move x="30" y="50"/>
- <line x="30" y="70"/>
- <line x="50" y="70"/>
- <move x="30" y="75"/>
- <line x="30" y="95"/>
- <line x="50" y="95"/>
- <move x="55" y="50"/>
- <line x="55" y="95"/>
- <line x="75" y="95"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Calendar" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <save/>
- <rect h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="0" y="20"/>
- <line x="100" y="20"/>
- </path>
- <stroke/>
- <ellipse h="4" w="4" x="28" y="8"/>
- <stroke/>
- <ellipse h="4" w="4" x="68" y="8"/>
- <stroke/>
- <restore/>
- <rect/>
- <stroke/>
- <fontsize size="20"/>
- <fontcolor color="#0080F0"/>
- <text str="15" align="center" valign="middle" x="50" y="50"/>
- </foreground>
- </shape>
- <shape aspect="variable" h="58" name="Camera" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="5" y="58"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="53"/>
- <line x="0" y="13"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="8"/>
- <line x="30" y="8"/>
- <line x="40" y="0"/>
- <line x="60" y="0"/>
- <line x="70" y="8"/>
- <line x="95" y="8"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="13"/>
- <line x="100" y="53"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="58"/>
- <close/>
- </path>
- <fillstroke/>
- <ellipse h="44" w="44" x="28" y="8"/>
- <stroke/>
- <ellipse h="36" w="36" x="32" y="12"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="60" name="Chat" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="55" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="65" x-axis-rotation="0" y="10"/>
- <line x="65" y="30"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="55" x-axis-rotation="0" y="40"/>
- <line x="25" y="40"/>
- <line x="15" y="50"/>
- <line x="15" y="40"/>
- <line x="10" y="40"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="30"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="90" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="100" x-axis-rotation="0" y="20"/>
- <line x="100" y="40"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="90" x-axis-rotation="0" y="50"/>
- <line x="85" y="50"/>
- <line x="85" y="60"/>
- <line x="75" y="50"/>
- <line x="45" y="50"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="35" x-axis-rotation="0" y="40"/>
- <line x="35" y="20"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45" x-axis-rotation="0" y="10"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Clock" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="50" y="5"/>
- <line x="50" y="50"/>
- <line x="25" y="50"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="48.51" name="Cloud" strokewidth="inherit" w="92.1">
- <connections/>
- <foreground>
- <path>
- <move x="80.28" y="48.51"/>
- <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="77.28" x-axis-rotation="0" y="23.51"/>
- <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="35.28" x-axis-rotation="0" y="14.51"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="14.28" x-axis-rotation="0" y="21.51"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="13.28" x-axis-rotation="0" y="48.51"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="97" name="Compose" strokewidth="inherit" w="97">
- <connections/>
- <foreground>
- <rect h="80" w="80" x="0" y="17"/>
- <fillstroke/>
- <path>
- <move x="97" y="5"/>
- <line x="33" y="70"/>
- <line x="25" y="72"/>
- <line x="27" y="64"/>
- <line x="92" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="80" name="Controls" strokewidth="inherit" w="90">
- <connections/>
- <foreground>
- <save/>
- <path>
- <move x="75" y="0"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="75" x-axis-rotation="0" y="30"/>
- <line x="15" y="30"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="15" x-axis-rotation="0" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#0080F0"/>
- <path>
- <move x="75" y="50"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="75" x-axis-rotation="0" y="80"/>
- <line x="15" y="80"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="15" x-axis-rotation="0" y="50"/>
- <close/>
- </path>
- <fillstroke/>
- <ellipse h="24" w="24" x="3" y="3"/>
- <fill/>
- <restore/>
- <rect/>
- <stroke/>
- <ellipse h="24" w="24" x="63" y="53"/>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="50" name="Credit Card" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <roundrect arcsize="10" h="50" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="0" y="10"/>
- <line x="100" y="10"/>
- <move x="0" y="20"/>
- <line x="100" y="20"/>
- <move x="5" y="30"/>
- <line x="30" y="30"/>
- <move x="5" y="40"/>
- <line x="60" y="40"/>
- <move x="85" y="40"/>
- <line x="95" y="40"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Crop" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <rect h="80" w="80" x="10" y="10"/>
- <fillstroke/>
- <path>
- <move x="10" y="0"/>
- <line x="10" y="10"/>
- <line x="0" y="10"/>
- <move x="100" y="90"/>
- <line x="90" y="90"/>
- <line x="90" y="100"/>
- <move x="10" y="90"/>
- <line x="100" y="0"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Cube" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="20"/>
- <line x="50" y="0"/>
- <line x="100" y="20"/>
- <line x="100" y="80"/>
- <line x="50" y="100"/>
- <line x="0" y="80"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="20"/>
- <line x="50" y="40"/>
- <line x="100" y="20"/>
- <move x="50" y="40"/>
- <line x="50" y="100"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Cup" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="25"/>
- <line x="70" y="25"/>
- <line x="70" y="50"/>
- <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="85"/>
- <line x="70" y="85"/>
- <move x="35" y="0"/>
- <line x="35" y="20"/>
- <move x="20" y="10"/>
- <line x="20" y="20"/>
- <move x="50" y="10"/>
- <line x="50" y="20"/>
- </path>
- <fillstroke/>
- <path>
- <move x="70" y="25"/>
- <line x="80" y="25"/>
- <line x="80" y="45"/>
- <line x="70" y="45"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="96.67" name="Data" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="13.33"/>
- <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="1" x="80" x-axis-rotation="0" y="13.33"/>
- <line x="80" y="83.33"/>
- <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="83.33"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="13.33"/>
- <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="13.33"/>
- <move x="0" y="35.33"/>
- <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="35.33"/>
- <move x="0" y="60.33"/>
- <arc large-arc-flag="1" rx="30" ry="10" sweep-flag="0" x="80" x-axis-rotation="0" y="60.33"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Delete" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="20" y="50"/>
- <line x="80" y="50"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Document" strokewidth="inherit" w="70">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="50" y="0"/>
- <line x="70" y="20"/>
- <line x="70" y="100"/>
- <line x="0" y="100"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="50" y="0"/>
- <line x="50" y="20"/>
- <line x="70" y="20"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Documents" strokewidth="inherit" w="75">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="10"/>
- <line x="15" y="10"/>
- <line x="15" y="0"/>
- <line x="60" y="0"/>
- <line x="75" y="15"/>
- <line x="75" y="90"/>
- <line x="60" y="90"/>
- <line x="60" y="100"/>
- <line x="0" y="100"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="60" y="0"/>
- <line x="60" y="15"/>
- <line x="75" y="15"/>
- <move x="45" y="10"/>
- <line x="45" y="25"/>
- <line x="60" y="25"/>
- <move x="15" y="10"/>
- <line x="45" y="10"/>
- <line x="60" y="25"/>
- <line x="60" y="90"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Down" strokewidth="inherit" w="70">
- <connections/>
- <foreground>
- <path>
- <move x="45" y="15"/>
- <line x="70" y="15"/>
- <line x="70" y="85"/>
- <line x="0" y="85"/>
- <line x="0" y="15"/>
- <line x="25" y="15"/>
- </path>
- <fillstroke/>
- <path>
- <move x="15" y="40"/>
- <line x="35" y="60"/>
- <line x="55" y="40"/>
- <move x="35" y="0"/>
- <line x="35" y="60"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="98.38" name="Edit" strokewidth="inherit" w="98.38">
- <connections/>
- <foreground>
- <rect h="90" w="90" x="0" y="8.38"/>
- <fillstroke/>
- <path>
- <move x="92" y="1.38"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="97" x-axis-rotation="0" y="6.38"/>
- <line x="35" y="68.38"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="30" x-axis-rotation="0" y="63.38"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Envelope (Empty)" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="100"/>
- <line x="0" y="45"/>
- <line x="50" y="0"/>
- <line x="100" y="45"/>
- <line x="100" y="100"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="100"/>
- <line x="50" y="55"/>
- <line x="100" y="100"/>
- <move x="0" y="45"/>
- <line x="30.5" y="72.5"/>
- <move x="100" y="45"/>
- <line x="69.5" y="72.5"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Envelope (Message)" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="100"/>
- <line x="0" y="45"/>
- <line x="50" y="0"/>
- <line x="100" y="45"/>
- <line x="100" y="100"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="25" y="67.5"/>
- <line x="25" y="15"/>
- <line x="66.5" y="15"/>
- <line x="75" y="22.5"/>
- <line x="75" y="67.5"/>
- <line x="50" y="90"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="100"/>
- <line x="50" y="55"/>
- <line x="100" y="100"/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="45"/>
- <line x="30.5" y="72.5"/>
- <move x="100" y="45"/>
- <line x="69.5" y="72.5"/>
- <move x="35" y="25"/>
- <line x="65" y="25"/>
- <move x="35" y="37"/>
- <line x="50" y="37"/>
- <move x="35" y="49"/>
- <line x="65" y="49"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="46.93" name="Eye" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="23.47"/>
- <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="100" x-axis-rotation="0" y="23.47"/>
- <arc large-arc-flag="0" rx="65" ry="65" sweep-flag="1" x="0" x-axis-rotation="0" y="23.47"/>
- <close/>
- </path>
- <fillstroke/>
- <ellipse h="36" w="36" x="32" y="5.47"/>
- <fillstroke/>
- <ellipse h="24" w="24" x="38" y="11.47"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100.72" name="Flag" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="5.72"/>
- <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="1" x="50" x-axis-rotation="0" y="5.72"/>
- <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="100" x-axis-rotation="0" y="5.72"/>
- <line x="100" y="50.72"/>
- <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="1" x="50" x-axis-rotation="0" y="50.72"/>
- <arc large-arc-flag="0" rx="75" ry="75" sweep-flag="0" x="0" x-axis-rotation="0" y="50.72"/>
- <line x="0" y="100.72"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Flash" strokewidth="inherit" w="60">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="50"/>
- <line x="35" y="0"/>
- <line x="35" y="50"/>
- <line x="60" y="50"/>
- <line x="25" y="100"/>
- <line x="25" y="50"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Flashlight" strokewidth="inherit" w="50">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="50" y="0"/>
- <line x="50" y="10"/>
- <line x="35" y="35"/>
- <line x="35" y="100"/>
- <line x="15" y="100"/>
- <line x="15" y="35"/>
- <line x="0" y="10"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="10"/>
- <line x="50" y="10"/>
- <move x="15" y="95"/>
- <line x="35" y="95"/>
- </path>
- <stroke/>
- <ellipse h="6" w="4" x="23" y="42"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="65" name="Folder" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="15" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="20" x-axis-rotation="0" y="5"/>
- <line x="95" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
- <line x="100" y="60"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="65"/>
- <line x="5" y="65"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="60"/>
- <close/>
- <move x="0" y="10"/>
- <line x="100" y="10"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Folders" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <rect h="75" w="100" x="0" y="10"/>
- <fillstroke/>
- <path>
- <move x="5" y="5"/>
- <line x="95" y="5"/>
- <move x="10" y="0"/>
- <line x="90" y="0"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="75" name="Folders 2" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="90" y="0"/>
- <line x="90" y="10"/>
- <line x="100" y="10"/>
- <line x="100" y="75"/>
- <line x="10" y="75"/>
- <line x="10" y="65"/>
- <line x="0" y="65"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="10" y="65"/>
- <line x="10" y="10"/>
- <line x="90" y="10"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="56" name="Forward" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="50" y="28"/>
- <line x="0" y="56"/>
- <close/>
- <move x="50" y="0"/>
- <line x="100" y="28"/>
- <line x="50" y="56"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="105.49" name="Gauge" strokewidth="inherit" w="108.56">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="4.48" y="0.15"/>
- <fill/>
- <path>
- <move x="54.48" y="10.15"/>
- <line x="54.48" y="0.15"/>
- <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="19.28" x-axis-rotation="0" y="14.95"/>
- </path>
- <stroke/>
- <linejoin join="round"/>
- <path>
- <move x="24.48" y="20.15"/>
- <line x="55.48" y="49.15"/>
- <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="53.48" x-axis-rotation="0" y="51.15"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="40" name="Glasses" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="40" w="40" x="5" y="0"/>
- <fillstroke/>
- <ellipse h="40" w="40" x="55" y="0"/>
- <fillstroke/>
- <path>
- <move x="0" y="20"/>
- <line x="5" y="20"/>
- <move x="95" y="20"/>
- <line x="100" y="20"/>
- <move x="45" y="19"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="55" x-axis-rotation="0" y="19"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Globe" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- </path>
- <fillstroke/>
- <path>
- <move x="50" y="0"/>
- <line x="50" y="100"/>
- <move x="100" y="50"/>
- <line x="0" y="50"/>
- <move x="50" y="0"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="50" x-axis-rotation="0" y="100"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="50" x-axis-rotation="0" y="0"/>
- <close/>
- <move x="15" y="85"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="1" x="85" x-axis-rotation="0" y="85"/>
- <move x="15" y="15"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="85" x-axis-rotation="0" y="15"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="91.05" name="Heart" strokewidth="inherit" w="102.09">
- <connections/>
- <foreground>
- <path>
- <move x="11.05" y="51.05"/>
- <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="51.05" x-axis-rotation="0" y="11.05"/>
- <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="91.05" x-axis-rotation="0" y="51.05"/>
- <line x="51.05" y="91.05"/>
- <close/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Help" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <ellipse h="3" w="3" x="48.5" y="73.5"/>
- <fillstroke/>
- <path>
- <move x="35" y="35"/>
- <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="65" x-axis-rotation="0" y="35"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="57" x-axis-rotation="0" y="51"/>
- <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="50" x-axis-rotation="0" y="70"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Home" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <path>
- <move x="5" y="85"/>
- <line x="5" y="35"/>
- <line x="40" y="5"/>
- <line x="75" y="35"/>
- <line x="75" y="85"/>
- <line x="50" y="85"/>
- <line x="50" y="60"/>
- <line x="30" y="60"/>
- <line x="30" y="85"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="14" y="23"/>
- <line x="14" y="10"/>
- <line x="20" y="10"/>
- <line x="20" y="18"/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="35"/>
- <line x="40" y="0"/>
- <line x="80" y="35"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Info" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="42" y="35"/>
- <line x="55" y="35"/>
- <line x="55" y="80"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="58" x-axis-rotation="0" y="83"/>
- <line x="42" y="83"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="45" x-axis-rotation="0" y="80"/>
- <line x="45" y="38"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42" x-axis-rotation="0" y="35"/>
- </path>
- <stroke/>
- <ellipse h="10" w="10" x="45" y="20"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Keypad" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="28" w="28" x="0" y="0"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="36" y="0"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="72" y="0"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="0" y="36"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="36" y="36"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="72" y="36"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="0" y="72"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="36" y="72"/>
- <fillstroke/>
- <ellipse h="28" w="28" x="72" y="72"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="98.72" name="Lightbulb" strokewidth="inherit" w="75.95">
- <connections/>
- <foreground>
- <path>
- <move x="27.97" y="98.72"/>
- <line x="27.97" y="83.72"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="17.97" x-axis-rotation="0" y="63.72"/>
- <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="57.97" x-axis-rotation="0" y="63.72"/>
- <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="47.97" x-axis-rotation="0" y="83.72"/>
- <line x="47.97" y="98.72"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="37.97" y="41.72"/>
- <line x="37.97" y="88.72"/>
- <move x="27.97" y="88.72"/>
- <line x="47.97" y="88.72"/>
- </path>
- <fillstroke/>
- <ellipse h="6" w="6" x="34.97" y="35.72"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100.68" name="Link" strokewidth="inherit" w="100.42">
- <connections/>
- <foreground>
- <path>
- <move x="54.25" y="71.17"/>
- <line x="28.25" y="97.17"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="13.25" x-axis-rotation="0" y="97.17"/>
- <line x="3.25" y="87.17"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="3.25" x-axis-rotation="0" y="72.67"/>
- <line x="38.25" y="37.57"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="52.75" x-axis-rotation="0" y="37.67"/>
- <line x="63.45" y="48.67"/>
- <move x="50.25" y="64.67"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="63.85" x-axis-rotation="0" y="61.37"/>
- <line x="96.75" y="28.17"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="95.25" x-axis-rotation="0" y="12.17"/>
- <line x="86.25" y="3.17"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="71.25" x-axis-rotation="0" y="4.37"/>
- <line x="47.25" y="28.17"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100.87" name="Location" strokewidth="inherit" w="79.94">
- <connections/>
- <foreground>
- <path>
- <move x="39.97" y="100.87"/>
- <line x="9.97" y="58.87"/>
- <arc large-arc-flag="1" rx="36" ry="36" sweep-flag="1" x="69.97" x-axis-rotation="0" y="58.87"/>
- <close/>
- </path>
- <fillstroke/>
- <ellipse h="16" w="16" x="31.97" y="30.87"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Location 2" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <fillcolor color="#0080F0"/>
- <path>
- <move x="15" y="55"/>
- <line x="75" y="25"/>
- <line x="45" y="85"/>
- <line x="45" y="55"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Locked" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <rect h="50" w="80" x="0" y="50"/>
- <fillstroke/>
- <path>
- <move x="10" y="50"/>
- <line x="10" y="30"/>
- <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="30"/>
- <line x="70" y="50"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Looking Glass" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="80" w="80" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="68" y="68"/>
- <line x="100" y="100"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="108.5" name="Loud" strokewidth="inherit" w="102.32">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="4.25"/>
- <fill/>
- <path>
- <move x="37.5" y="44.25"/>
- <line x="54" y="44.25"/>
- <line x="62" y="34.25"/>
- <line x="62" y="74.25"/>
- <line x="54" y="64.25"/>
- <line x="37.5" y="64.25"/>
- <close/>
- <move x="76" y="39.25"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="76" x-axis-rotation="0" y="69.25"/>
- <move x="84" y="33.25"/>
- <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="84" x-axis-rotation="0" y="75.25"/>
- <move x="93" y="28.75"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="93" x-axis-rotation="0" y="79.75"/>
- <move x="91" y="25.25"/>
- <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="0" x="91" x-axis-rotation="0" y="83.25"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Magnet" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <path>
- <move x="15" y="0"/>
- <line x="15" y="60"/>
- <arc large-arc-flag="1" rx="25" ry="25" sweep-flag="0" x="65" x-axis-rotation="0" y="60"/>
- <line x="65" y="0"/>
- <line x="80" y="0"/>
- <line x="80" y="60"/>
- <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="0" x-axis-rotation="0" y="60"/>
- <line x="0" y="0"/>
- <close/>
- <move x="0" y="10"/>
- <line x="15" y="10"/>
- <move x="65" y="10"/>
- <line x="80" y="10"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="55" name="Mail" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <rect h="55" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="0" y="0"/>
- <line x="50" y="45"/>
- <line x="100" y="0"/>
- <move x="0" y="55"/>
- <line x="31" y="27.5"/>
- <move x="100" y="55"/>
- <line x="69" y="27.5"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Map" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="15"/>
- <line x="25" y="0"/>
- <line x="50" y="15"/>
- <line x="75" y="0"/>
- <line x="100" y="15"/>
- <line x="100" y="100"/>
- <line x="75" y="85"/>
- <line x="50" y="100"/>
- <line x="25" y="85"/>
- <line x="0" y="100"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="50" y="15"/>
- <line x="50" y="100"/>
- <move x="25" y="0"/>
- <line x="25" y="85"/>
- <move x="75" y="0"/>
- <line x="75" y="85"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="65" name="Message" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="95" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
- <line x="100" y="50"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="55"/>
- <line x="90" y="55"/>
- <line x="90" y="65"/>
- <line x="80" y="55"/>
- <line x="5" y="55"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Messages" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="75" y="0"/>
- <line x="75" y="20"/>
- <line x="100" y="20"/>
- <line x="100" y="75"/>
- <line x="90" y="75"/>
- <line x="90" y="85"/>
- <line x="80" y="75"/>
- <line x="25" y="75"/>
- <line x="25" y="55"/>
- <line x="0" y="55"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="75" y="20"/>
- <line x="25" y="20"/>
- <line x="25" y="55"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Microphone" strokewidth="inherit" w="40">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="50"/>
- <line x="0" y="60"/>
- <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="0" x="40" x-axis-rotation="0" y="60"/>
- <line x="40" y="50"/>
- <move x="20" y="80"/>
- <line x="20" y="100"/>
- <move x="5" y="100"/>
- <line x="35" y="100"/>
- </path>
- <stroke/>
- <path>
- <move x="5" y="15"/>
- <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="35" x-axis-rotation="0" y="15"/>
- <line x="35" y="60"/>
- <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="1" x="5" x-axis-rotation="0" y="60"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="65" name="Monitor" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <rect h="55" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="50" y="55"/>
- <line x="50" y="65"/>
- <move x="40" y="65"/>
- <line x="60" y="65"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="97.67" name="Moon" strokewidth="inherit" w="97.67">
- <connections/>
- <foreground>
- <path>
- <move x="27.67" y="0"/>
- <arc large-arc-flag="0" rx="51" ry="51" sweep-flag="0" x="97.67" x-axis-rotation="0" y="70"/>
- <arc large-arc-flag="1" rx="51" ry="51" sweep-flag="1" x="27.67" x-axis-rotation="0" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="76" name="Most Viewed" strokewidth="inherit" w="94">
- <connections/>
- <foreground>
- <path>
- <move x="24" y="8"/>
- <line x="94" y="8"/>
- <move x="24" y="38"/>
- <line x="94" y="38"/>
- <move x="24" y="68"/>
- <line x="94" y="68"/>
- </path>
- <stroke/>
- <path>
- <move x="9" y="30"/>
- <line x="15" y="46"/>
- <line x="0" y="36"/>
- <line x="18" y="36"/>
- <line x="3" y="46"/>
- <close/>
- <move x="9" y="0"/>
- <line x="15" y="16"/>
- <line x="0" y="6"/>
- <line x="18" y="6"/>
- <line x="3" y="16"/>
- <close/>
- <move x="9" y="60"/>
- <line x="15" y="76"/>
- <line x="0" y="66"/>
- <line x="18" y="66"/>
- <line x="3" y="76"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="75" name="Move to Folder" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="100" y="0"/>
- <line x="100" y="50"/>
- <line x="57.3" y="50"/>
- <line x="80" y="75"/>
- <line x="20" y="75"/>
- <line x="42.7" y="50"/>
- <line x="0" y="50"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="42.7" y="50"/>
- <line x="50" y="42"/>
- <line x="57.3" y="50"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99.25" name="Note" strokewidth="inherit" w="99.4">
- <connections/>
- <foreground>
- <path>
- <move x="74.4" y="15"/>
- <line x="99.4" y="20"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="74.4" x-axis-rotation="0" y="0"/>
- <line x="74.4" y="90"/>
- <arc large-arc-flag="1" rx="15" ry="10" sweep-flag="1" x="74.4" x-axis-rotation="0" y="88"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="19.6"/>
- <line x="50" y="19.6"/>
- <move x="0" y="44.6"/>
- <line x="50" y="44.6"/>
- <move x="0" y="69.6"/>
- <line x="50" y="69.6"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="50" name="Options" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="100" y="0"/>
- <line x="100" y="10"/>
- <line x="0" y="10"/>
- <close/>
- <move x="0" y="20"/>
- <line x="100" y="20"/>
- <line x="100" y="30"/>
- <line x="0" y="30"/>
- <close/>
- <move x="0" y="40"/>
- <line x="100" y="40"/>
- <line x="100" y="50"/>
- <line x="0" y="50"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="70" name="Orientation Lock" strokewidth="inherit" w="77">
- <connections/>
- <foreground>
- <path>
- <move x="35" y="70"/>
- <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="70" x-axis-rotation="0" y="35"/>
- <move x="25" y="30"/>
- <line x="25" y="25"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="45" x-axis-rotation="0" y="25"/>
- <line x="45" y="30"/>
- </path>
- <stroke/>
- <path>
- <move x="63" y="35"/>
- <line x="70" y="45"/>
- <line x="77" y="35"/>
- <close/>
- </path>
- <fill/>
- <rect h="20" w="30" x="20" y="30"/>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="16" name="Page Navigation" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="16" w="16" x="0" y="0"/>
- <fillstroke/>
- <ellipse h="16" w="16" x="42" y="0"/>
- <fillstroke/>
- <ellipse h="16" w="16" x="84" y="0"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Paint" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <roundrect arcsize="16.67" h="30" w="90" x="5" y="0"/>
- <fillstroke/>
- <rect h="25" w="8" x="46" y="60"/>
- <fillstroke/>
- <path>
- <move x="50" y="60"/>
- <line x="50" y="40"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="45" x-axis-rotation="0" y="35"/>
- <line x="5" y="35"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="30"/>
- <line x="0" y="20"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="15"/>
- <move x="95" y="15"/>
- <line x="100" y="15"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="80" name="Pause" strokewidth="inherit" w="50">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="15" y="0"/>
- <line x="15" y="80"/>
- <line x="0" y="80"/>
- <close/>
- <move x="35" y="0"/>
- <line x="50" y="0"/>
- <line x="50" y="80"/>
- <line x="35" y="80"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="99" name="Pen" strokewidth="inherit" w="98">
- <connections/>
- <foreground>
- <path>
- <move x="16" y="75"/>
- <line x="90" y="1"/>
- <line x="98" y="9"/>
- <line x="24" y="83"/>
- <close/>
- <move x="7" y="81"/>
- <arc large-arc-flag="1" rx="8" ry="8" sweep-flag="1" x="18" x-axis-rotation="0" y="92"/>
- <line x="0" y="99"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="88" y="3"/>
- <line x="85" y="0"/>
- <line x="64" y="21"/>
- <move x="72" y="19"/>
- <line x="80" y="27"/>
- <move x="0" y="99"/>
- <line x="10" y="89"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="101.04" name="Phone" strokewidth="inherit" w="74.83">
- <connections/>
- <foreground>
- <path>
- <move x="21.83" y="0.56"/>
- <curve x1="21.83" x2="0" x3="0.29" y1="0.56" y2="0.84" y3="20.26"/>
- <curve x1="0.57" x2="4.54" x3="11.06" y1="39.68" y2="56.85" y3="66.42"/>
- <curve x1="17.58" x2="34.3" x3="53.3" y1="75.99" y2="101.04" y3="98.51"/>
- <curve x1="53.3" x2="62.66" x3="69.74" y1="98.51" y2="96.54" y3="92.03"/>
- <line x="46.78" y="74.3"/>
- <curve x1="46.78" x2="39.98" x3="35.72" y1="74.3" y2="78.52" y3="72.89"/>
- <curve x1="31.47" x2="18.14" x3="18.14" y1="67.26" y2="41.09" y3="41.09"/>
- <curve x1="18.14" x2="14.45" x3="22.68" y1="41.09" y2="32.65" y3="28.99"/>
- <line x="21.83" y="0.56"/>
- <close/>
- <move x="24.39" y="0.56"/>
- <curve x1="24.39" x2="26.09" x3="29.21" y1="0.56" y2="0" y3="1.69"/>
- <curve x1="32.33" x2="32.33" x3="32.33" y1="3.38" y2="4.78" y3="4.78"/>
- <line x="32.61" y="24.2"/>
- <curve x1="32.61" x2="31.76" x3="30.63" y1="24.2" y2="25.33" y3="26.45"/>
- <curve x1="29.5" x2="25.81" x3="25.24" y1="27.58" y2="29.27" y3="28.14"/>
- <curve x1="24.67" x2="24.39" x3="24.39" y1="27.02" y2="0.56" y3="0.56"/>
- <close/>
- <move x="48.69" y="72.23"/>
- <line x="55" y="68.96"/>
- <curve x1="55" x2="56.42" x3="58.68" y1="68.96" y2="68.68" y3="70.09"/>
- <curve x1="60.95" x2="72.85" x3="72.85" y1="71.5" y2="80.79" y3="80.79"/>
- <curve x1="72.85" x2="74.83" x3="74.27" y1="80.79" y2="82.48" y3="84.45"/>
- <curve x1="73.7" x2="72.29" x3="72.29" y1="86.42" y2="90.64" y3="90.64"/>
- <line x="48.69" y="72.23"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Pie Chart" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="50" y="0"/>
- <line x="50" y="50"/>
- <line x="70" y="96"/>
- <move x="50" y="50"/>
- <line x="97" y="33"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="80" name="Play" strokewidth="inherit" w="70">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="70" y="40"/>
- <line x="0" y="80"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Pointer" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="100" y="0"/>
- <line x="45" y="100"/>
- <line x="30" y="70"/>
- <line x="0" y="55"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="100" y="0"/>
- <line x="30" y="70"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="80" name="Preferences" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="0"/>
- <line x="15" y="0"/>
- <line x="15" y="15"/>
- <line x="0" y="15"/>
- <close/>
- <move x="0" y="32.5"/>
- <line x="15" y="32.5"/>
- <line x="15" y="47.5"/>
- <line x="0" y="47.5"/>
- <close/>
- <move x="0" y="65"/>
- <line x="15" y="65"/>
- <line x="15" y="80"/>
- <line x="0" y="80"/>
- <close/>
- <move x="30" y="0"/>
- <line x="100" y="0"/>
- <line x="100" y="15"/>
- <line x="30" y="15"/>
- <close/>
- <move x="30" y="32.5"/>
- <line x="100" y="32.5"/>
- <line x="100" y="47.5"/>
- <line x="30" y="47.5"/>
- <close/>
- <move x="30" y="65"/>
- <line x="100" y="65"/>
- <line x="100" y="80"/>
- <line x="30" y="80"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Printer" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="65"/>
- <line x="0" y="10"/>
- <line x="25" y="10"/>
- <line x="25" y="0"/>
- <line x="75" y="0"/>
- <line x="75" y="10"/>
- <line x="100" y="10"/>
- <line x="100" y="65"/>
- <line x="75" y="65"/>
- <line x="75" y="85"/>
- <line x="25" y="85"/>
- <line x="25" y="65"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="25" y="65"/>
- <line x="25" y="45"/>
- <line x="75" y="45"/>
- <line x="75" y="65"/>
- <move x="25" y="10"/>
- <line x="75" y="10"/>
- </path>
- <stroke/>
- <ellipse h="6" w="6" x="12" y="27"/>
- <stroke/>
- <ellipse h="6" w="6" x="27" y="27"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="94.56" name="Privacy" strokewidth="inherit" w="56">
- <connections/>
- <foreground>
- <path>
- <move x="46" y="90"/>
- <arc large-arc-flag="0" rx="28" ry="15" sweep-flag="1" x="0" x-axis-rotation="0" y="79"/>
- <line x="0" y="4"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="8" x-axis-rotation="0" y="4"/>
- <line x="8" y="49"/>
- <line x="12" y="49"/>
- <line x="12" y="4"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="20" x-axis-rotation="0" y="4"/>
- <line x="20" y="49"/>
- <line x="24" y="49"/>
- <line x="24" y="4"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="32" x-axis-rotation="0" y="4"/>
- <line x="32" y="49"/>
- <line x="36" y="49"/>
- <line x="36" y="4"/>
- <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="44" x-axis-rotation="0" y="4"/>
- <line x="44" y="57"/>
- <line x="44" y="64"/>
- <line x="48" y="64"/>
- <line x="48" y="47"/>
- <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="56" x-axis-rotation="0" y="47"/>
- <line x="56" y="74"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="46" x-axis-rotation="0" y="90"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="75" name="Radio" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <rect h="60" w="100" x="0" y="15"/>
- <fillstroke/>
- <ellipse h="6" w="6" x="87" y="22"/>
- <stroke/>
- <ellipse h="6" w="6" x="87" y="32"/>
- <stroke/>
- <path>
- <move x="10" y="0"/>
- <line x="100" y="15"/>
- </path>
- <stroke/>
- <ellipse h="4" w="4" x="28" y="43"/>
- <stroke/>
- <ellipse h="4" w="4" x="28" y="18"/>
- <stroke/>
- <ellipse h="4" w="4" x="53" y="43"/>
- <stroke/>
- <ellipse h="4" w="4" x="28" y="68"/>
- <stroke/>
- <ellipse h="4" w="4" x="3" y="43"/>
- <stroke/>
- <ellipse h="4" w="4" x="28" y="30.5"/>
- <stroke/>
- <ellipse h="4" w="4" x="36.8" y="34.2"/>
- <stroke/>
- <ellipse h="4" w="4" x="36.8" y="51.8"/>
- <stroke/>
- <ellipse h="4" w="4" x="40.5" y="43"/>
- <stroke/>
- <ellipse h="4" w="4" x="28" y="55.5"/>
- <stroke/>
- <ellipse h="4" w="4" x="19.2" y="51.8"/>
- <stroke/>
- <ellipse h="4" w="4" x="19.2" y="34.2"/>
- <stroke/>
- <ellipse h="4" w="4" x="6" y="31.3"/>
- <stroke/>
- <ellipse h="4" w="4" x="16.3" y="21"/>
- <stroke/>
- <ellipse h="4" w="4" x="39.8" y="21"/>
- <stroke/>
- <ellipse h="4" w="4" x="50" y="31.3"/>
- <stroke/>
- <ellipse h="4" w="4" x="50" y="54.8"/>
- <stroke/>
- <ellipse h="4" w="4" x="39.8" y="65"/>
- <stroke/>
- <ellipse h="4" w="4" x="16.3" y="65"/>
- <stroke/>
- <ellipse h="4" w="4" x="6" y="54.8"/>
- <stroke/>
- <ellipse h="4" w="4" x="15.5" y="43"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="90" name="Reload" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <path>
- <move x="80" y="50"/>
- <arc large-arc-flag="1" rx="40" ry="40" sweep-flag="1" x="40" x-axis-rotation="0" y="10"/>
- </path>
- <stroke/>
- <path>
- <move x="40" y="0"/>
- <line x="55" y="10"/>
- <line x="40" y="20"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="80" name="Repeat" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="40"/>
- <line x="0" y="20"/>
- <line x="100" y="20"/>
- <move x="100" y="40"/>
- <line x="100" y="60"/>
- <line x="0" y="60"/>
- <move x="20" y="40"/>
- <line x="0" y="60"/>
- <line x="20" y="80"/>
- <move x="80" y="0"/>
- <line x="100" y="20"/>
- <line x="80" y="40"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="48.51" name="Retry" strokewidth="inherit" w="92.1">
- <connections/>
- <foreground>
- <path>
- <move x="80.28" y="48.51"/>
- <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="77.28" x-axis-rotation="0" y="23.51"/>
- <arc large-arc-flag="0" rx="22" ry="22" sweep-flag="0" x="35.28" x-axis-rotation="0" y="14.51"/>
- <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="0" x="14.28" x-axis-rotation="0" y="21.51"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="0" x="13.28" x-axis-rotation="0" y="48.51"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="57.28" y="33.51"/>
- <arc large-arc-flag="1" rx="13" ry="13" sweep-flag="1" x="47.28" x-axis-rotation="0" y="18.51"/>
- <move x="44.28" y="17.01"/>
- <line x="47.28" y="18.51"/>
- <line x="44.28" y="19.51"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Select" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="20" y="55"/>
- <line x="30" y="70"/>
- <line x="85" y="25"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Settings" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="44" y="0"/>
- <line x="56" y="0"/>
- <line x="56" y="9.5"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="74.5" x-axis-rotation="0" y="17"/>
- <line x="81" y="10.5"/>
- <line x="89.5" y="18.9"/>
- <line x="82.9" y="25.4"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="90.5" x-axis-rotation="0" y="44"/>
- <line x="100" y="44"/>
- <line x="100" y="56"/>
- <line x="90.5" y="56"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="82.9" x-axis-rotation="0" y="74.4"/>
- <line x="89.5" y="81"/>
- <line x="81" y="89.5"/>
- <line x="74.5" y="83"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="56" x-axis-rotation="0" y="90.5"/>
- <line x="56" y="100"/>
- <line x="44" y="100"/>
- <line x="44" y="90.5"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="25.5" x-axis-rotation="0" y="83"/>
- <line x="19" y="89.5"/>
- <line x="10.5" y="81.2"/>
- <line x="17" y="74.4"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="9.5" x-axis-rotation="0" y="56"/>
- <line x="0" y="56"/>
- <line x="0" y="44"/>
- <line x="9.5" y="44"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="17" x-axis-rotation="0" y="25.4"/>
- <line x="10.5" y="18.9"/>
- <line x="19" y="10.5"/>
- <line x="25.5" y="17"/>
- <arc large-arc-flag="0" rx="41" ry="41" sweep-flag="1" x="44" x-axis-rotation="0" y="9.5"/>
- <close/>
- <move x="50" y="35"/>
- <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="65"/>
- <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="35"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="95" name="Share" strokewidth="inherit" w="70">
- <connections/>
- <foreground>
- <path>
- <move x="45" y="25"/>
- <line x="70" y="25"/>
- <line x="70" y="95"/>
- <line x="0" y="95"/>
- <line x="0" y="25"/>
- <line x="25" y="25"/>
- </path>
- <fillstroke/>
- <path>
- <move x="15" y="20"/>
- <line x="35" y="0"/>
- <line x="55" y="20"/>
- <move x="35" y="60"/>
- <line x="35" y="0"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Shopping Cart" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="14.2" y="20"/>
- <line x="100" y="20"/>
- <line x="75" y="65"/>
- <line x="23" y="65"/>
- <close/>
- </path>
- <fillstroke/>
- <ellipse h="10" w="10" x="20" y="75"/>
- <fillstroke/>
- <ellipse h="10" w="10" x="65" y="75"/>
- <fillstroke/>
- <path>
- <move x="0" y="0"/>
- <line x="10.5" y="0"/>
- <line x="25" y="75"/>
- <line x="70" y="75"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="70" name="Shuffle" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <fillcolor color="none"/>
- <path>
- <move x="85" y="0"/>
- <line x="100" y="15"/>
- <line x="85" y="30"/>
- <move x="85" y="40"/>
- <line x="100" y="55"/>
- <line x="85" y="70"/>
- <move x="0" y="15"/>
- <line x="25" y="15"/>
- <line x="75" y="55"/>
- <line x="100" y="55"/>
- <move x="0" y="55"/>
- <line x="25" y="55"/>
- <line x="48.5" y="36.2"/>
- <move x="51.5" y="33.8"/>
- <line x="75" y="15"/>
- <line x="100" y="15"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Silent" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="37.5" y="40"/>
- <line x="54" y="40"/>
- <line x="62" y="30"/>
- <line x="62" y="70"/>
- <line x="54" y="60"/>
- <line x="37.5" y="60"/>
- <close/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Smartphone" strokewidth="inherit" w="60">
- <connections/>
- <foreground>
- <rect h="100" w="60" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="0" y="8"/>
- <line x="60" y="8"/>
- <move x="0" y="85"/>
- <line x="60" y="85"/>
- <move x="27" y="92.5"/>
- <line x="33" y="92.5"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="90" name="Star" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="50" y="0"/>
- <line x="63.7" y="35"/>
- <line x="100" y="35"/>
- <line x="71.1" y="53.9"/>
- <line x="85" y="90"/>
- <line x="50" y="67.4"/>
- <line x="15" y="90"/>
- <line x="28.9" y="53.9"/>
- <line x="0" y="35"/>
- <line x="36.4" y="35"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="94" name="Stopwatch" strokewidth="inherit" w="90">
- <connections/>
- <foreground>
- <ellipse h="90" w="90" x="0" y="4"/>
- <fillstroke/>
- <path>
- <move x="45" y="14"/>
- <line x="45" y="49"/>
- <move x="45" y="0"/>
- <line x="45" y="4"/>
- <move x="77" y="12"/>
- <line x="74" y="15"/>
- <move x="75" y="10"/>
- <line x="79" y="14"/>
- </path>
- <fillstroke/>
- <ellipse h="2" w="2" x="44" y="40"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="35" name="Storage" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="15" y="0"/>
- <line x="85" y="0"/>
- <line x="100" y="15"/>
- <line x="100" y="35"/>
- <line x="0" y="35"/>
- <line x="0" y="15"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="0" y="15"/>
- <line x="40" y="15"/>
- <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="60" x-axis-rotation="0" y="15"/>
- <line x="100" y="15"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Sun" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="40" w="40" x="30" y="30"/>
- <fillstroke/>
- <path>
- <move x="50" y="0"/>
- <line x="50" y="25"/>
- <move x="50" y="75"/>
- <line x="50" y="100"/>
- <move x="75" y="50"/>
- <line x="100" y="50"/>
- <move x="25" y="50"/>
- <line x="0" y="50"/>
- <move x="14.5" y="14.5"/>
- <line x="32.5" y="32.5"/>
- <move x="32.5" y="67.5"/>
- <line x="14.5" y="85.5"/>
- <move x="85.5" y="14.5"/>
- <line x="67.5" y="32.5"/>
- <move x="67.5" y="67.5"/>
- <line x="85.5" y="85.5"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="40" name="Tape" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="20" y="40"/>
- <line x="80" y="40"/>
- </path>
- <fillstroke/>
- <ellipse h="40" w="40" x="0" y="0"/>
- <fillstroke/>
- <ellipse h="40" w="40" x="60" y="0"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="98.75" name="Tools" strokewidth="inherit" w="98.75">
- <connections/>
- <foreground>
- <path>
- <move x="82" y="70"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="85" x-axis-rotation="0" y="78"/>
- <line x="95" y="88"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="88" x-axis-rotation="0" y="95"/>
- <line x="77" y="84"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="70" x-axis-rotation="0" y="82"/>
- <close/>
- <move x="10" y="85"/>
- <line x="3" y="92"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="19" x-axis-rotation="0" y="75"/>
- <line x="75" y="19"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="92" x-axis-rotation="0" y="3"/>
- <line x="85" y="10"/>
- <line x="90" y="15"/>
- <line x="97" y="8"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="81" x-axis-rotation="0" y="25"/>
- <line x="25" y="81"/>
- <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="8" x-axis-rotation="0" y="97"/>
- <line x="15" y="90"/>
- <close/>
- <move x="5" y="0"/>
- <line x="15" y="10"/>
- <line x="15" y="15"/>
- <line x="10" y="15"/>
- <line x="0" y="5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="15" y="15"/>
- <line x="76" y="76"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Trashcan" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="5"/>
- <line x="80" y="5"/>
- <line x="75" y="5"/>
- <line x="70" y="95"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="100"/>
- <line x="15" y="100"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="10" x-axis-rotation="0" y="95"/>
- <line x="5" y="5"/>
- <line x="0" y="5"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="30" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="35" x-axis-rotation="0" y="0"/>
- <line x="45" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="50" x-axis-rotation="0" y="5"/>
- <move x="40" y="10"/>
- <line x="40" y="95"/>
- <move x="57.5" y="10"/>
- <line x="55" y="95"/>
- <move x="22.5" y="10"/>
- <line x="25" y="95"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Trophy" strokewidth="inherit" w="94.69">
- <connections/>
- <foreground>
- <path>
- <move x="82.34" y="0"/>
- <line x="82.34" y="30"/>
- <arc large-arc-flag="1" rx="35" ry="35" sweep-flag="1" x="12.34" x-axis-rotation="0" y="30"/>
- <line x="12.34" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="82.34" y="0"/>
- <line x="88.84" y="0"/>
- <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="1" x="92.84" x-axis-rotation="0" y="10.5"/>
- <line x="82.34" y="25"/>
- <move x="12.34" y="0"/>
- <line x="5.84" y="0"/>
- <arc large-arc-flag="0" rx="6.5" ry="6.5" sweep-flag="0" x="1.84" x-axis-rotation="0" y="10.5"/>
- <line x="12.34" y="25"/>
- <move x="47.34" y="65"/>
- <line x="47.34" y="100"/>
- <move x="27.34" y="100"/>
- <line x="67.34" y="100"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="70" name="Typing" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="90" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
- <line x="100" y="45"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="90" x-axis-rotation="0" y="55"/>
- <line x="70" y="55"/>
- <line x="70" y="70"/>
- <line x="60" y="55"/>
- <line x="10" y="55"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="45"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <close/>
- </path>
- <fillstroke/>
- <fillcolor color="#0080F0"/>
- <ellipse h="10" w="10" x="20" y="22.5"/>
- <fill/>
- <ellipse h="10" w="10" x="45" y="22.5"/>
- <fill/>
- <ellipse h="10" w="10" x="70" y="22.5"/>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Umbrella" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="55"/>
- <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="1" x="100" x-axis-rotation="0" y="55"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="75" x-axis-rotation="0" y="55"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="50" x-axis-rotation="0" y="55"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="25" x-axis-rotation="0" y="55"/>
- <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="0" x-axis-rotation="0" y="55"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="50" y="55"/>
- <line x="50" y="90"/>
- <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="70" x-axis-rotation="0" y="90"/>
- <move x="50" y="0"/>
- <line x="50" y="5"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Unlocked" strokewidth="inherit" w="80">
- <connections/>
- <foreground>
- <rect h="50" w="80" x="0" y="50"/>
- <fillstroke/>
- <path>
- <move x="10" y="50"/>
- <line x="10" y="30"/>
- <arc large-arc-flag="1" rx="20" ry="20" sweep-flag="1" x="70" x-axis-rotation="0" y="30"/>
- <line x="70" y="35"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="85" name="Up" strokewidth="inherit" w="70">
- <connections/>
- <foreground>
- <path>
- <move x="45" y="70"/>
- <line x="70" y="70"/>
- <line x="70" y="0"/>
- <line x="0" y="0"/>
- <line x="0" y="70"/>
- <line x="25" y="70"/>
- </path>
- <fillstroke/>
- <path>
- <move x="15" y="45"/>
- <line x="35" y="25"/>
- <line x="55" y="45"/>
- <move x="35" y="85"/>
- <line x="35" y="25"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="User" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <ellipse h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="10" y="80"/>
- <arc large-arc-flag="0" rx="30" ry="15" sweep-flag="1" x="38" x-axis-rotation="0" y="68"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="41.5" x-axis-rotation="0" y="65"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="35" x-axis-rotation="0" y="48"/>
- <arc large-arc-flag="0" rx="2" ry="5" sweep-flag="1" x="35" x-axis-rotation="0" y="37"/>
- <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="50" x-axis-rotation="0" y="19"/>
- <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="1" x="65" x-axis-rotation="0" y="37"/>
- <arc large-arc-flag="0" rx="2" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="48"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="58.5" x-axis-rotation="0" y="65"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="62" x-axis-rotation="0" y="68"/>
- <arc large-arc-flag="0" rx="30" ry="15" sweep-flag="1" x="90" x-axis-rotation="0" y="80"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="50" name="Video Conversation" strokewidth="inherit" w="100.26">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="65" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="70" x-axis-rotation="0" y="5"/>
- <line x="70" y="20"/>
- <line x="96" y="6.5"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
- <line x="100" y="40"/>
- <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="96" x-axis-rotation="0" y="43.5"/>
- <line x="70" y="30"/>
- <line x="70" y="45"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="50"/>
- <line x="5" y="50"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="45"/>
- <close/>
- <move x="70" y="15"/>
- <line x="70" y="35"/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Volume" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="7" y="0"/>
- <line x="7" y="100"/>
- <move x="93" y="0"/>
- <line x="93" y="100"/>
- <move x="50" y="0"/>
- <line x="50" y="100"/>
- </path>
- <fillstroke/>
- <ellipse h="14" w="14" x="0" y="86"/>
- <fillstroke/>
- <ellipse h="14" w="14" x="86" y="0"/>
- <fillstroke/>
- <ellipse h="14" w="14" x="43" y="43"/>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="94.4" name="Volume 2" strokewidth="inherit" w="101.21">
- <connections/>
- <foreground>
- <path>
- <move x="40" y="17.2"/>
- <line x="40" y="77.2"/>
- <line x="20" y="62.2"/>
- <line x="0" y="62.2"/>
- <line x="0" y="32.2"/>
- <line x="20" y="32.2"/>
- <close/>
- </path>
- <fillstroke/>
- <path>
- <move x="76.8" y="0"/>
- <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="76.8" x-axis-rotation="0" y="94.4"/>
- <move x="61.8" y="13.2"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="61.8" x-axis-rotation="0" y="81.2"/>
- <move x="47.2" y="27"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="47.2" x-axis-rotation="0" y="67.4"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="80" name="Wallet" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <path>
- <move x="0" y="80"/>
- <line x="0" y="5"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
- <line x="60" y="0"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="65" x-axis-rotation="0" y="5"/>
- <line x="65" y="10"/>
- <line x="100" y="10"/>
- <line x="100" y="80"/>
- <close/>
- <move x="0" y="10"/>
- <line x="65" y="10"/>
- </path>
- <fillstroke/>
- <ellipse h="10" w="10" x="80" y="40"/>
- <stroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="70.01" name="WiFi" strokewidth="inherit" w="99">
- <connections/>
- <foreground>
- <path>
- <move x="49.5" y="70.01"/>
- <line x="42.5" y="63.01"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="56.5" x-axis-rotation="0" y="63.01"/>
- <close/>
- <move x="63.7" y="56.01"/>
- <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="35.3" x-axis-rotation="0" y="56.01"/>
- <line x="28.3" y="48.81"/>
- <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="70.7" x-axis-rotation="0" y="48.81"/>
- <close/>
- <move x="77.9" y="41.81"/>
- <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="21.1" x-axis-rotation="0" y="41.81"/>
- <line x="14.3" y="34.51"/>
- <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="84.7" x-axis-rotation="0" y="34.51"/>
- <close/>
- <move x="91.9" y="27.51"/>
- <arc large-arc-flag="0" rx="60" ry="60" sweep-flag="0" x="7.1" x-axis-rotation="0" y="27.51"/>
- <line x="0" y="20.51"/>
- <arc large-arc-flag="0" rx="70" ry="70" sweep-flag="1" x="99" x-axis-rotation="0" y="20.51"/>
- <close/>
- </path>
- <fillstroke/>
- </foreground>
- </shape>
- <shape aspect="variable" h="100" name="Window" strokewidth="inherit" w="100">
- <connections/>
- <foreground>
- <rect h="100" w="100" x="0" y="0"/>
- <fillstroke/>
- <path>
- <move x="0" y="12"/>
- <line x="100" y="12"/>
- <move x="4" y="6"/>
- <line x="6" y="6"/>
- <move x="9" y="6"/>
- <line x="11" y="6"/>
- <move x="14" y="6"/>
- <line x="96" y="6"/>
- </path>
- <stroke/>
- </foreground>
- </shape>
- </shapes>
|