gmdl.xml 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952
  1. <shapes name="mxgraph.gmdl">
  2. <shape aspect="variable" h="100" name="attachment" strokewidth="inherit" w="30">
  3. <connections/>
  4. <foreground>
  5. <fillcolor color="none"/>
  6. <path>
  7. <move x="10" y="10"/>
  8. <line x="10" y="75"/>
  9. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="0" x="20" x-axis-rotation="0" y="75"/>
  10. <line x="20" y="10"/>
  11. <arc large-arc-flag="1" rx="10" ry="10" sweep-flag="0" x="0" x-axis-rotation="0" y="10"/>
  12. <line x="0" y="85"/>
  13. <arc large-arc-flag="1" rx="15" ry="15" sweep-flag="0" x="30" x-axis-rotation="0" y="85"/>
  14. <line x="30" y="10"/>
  15. </path>
  16. <stroke/>
  17. </foreground>
  18. </shape>
  19. <shape aspect="variable" h="55.4" name="attractions" strokewidth="inherit" w="100">
  20. <connections/>
  21. <foreground>
  22. <path>
  23. <move x="5" y="55"/>
  24. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="50"/>
  25. <line x="0" y="35"/>
  26. <arc large-arc-flag="1" rx="5" ry="5" sweep-flag="0" x="0" x-axis-rotation="0" y="20"/>
  27. <line x="0" y="5"/>
  28. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  29. <line x="95" y="0"/>
  30. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  31. <line x="100" y="20"/>
  32. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="100" x-axis-rotation="0" y="35"/>
  33. <line x="100" y="50"/>
  34. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="55"/>
  35. <curve x1="89.4" x2="9" x3="9" y1="54.8" y2="55.4" y3="55.4"/>
  36. <close/>
  37. <move x="50.2" y="16.8"/>
  38. <line x="47.2" y="24.8"/>
  39. <line x="38.7" y="24.8"/>
  40. <line x="45.6" y="29.6"/>
  41. <line x="42.7" y="37.8"/>
  42. <line x="50.2" y="32.8"/>
  43. <line x="57.7" y="37.8"/>
  44. <line x="54.9" y="29.6"/>
  45. <line x="61.7" y="24.8"/>
  46. <line x="53.2" y="24.8"/>
  47. <close/>
  48. </path>
  49. <fillstroke/>
  50. </foreground>
  51. </shape>
  52. <shape aspect="variable" h="24" name="back" strokewidth="inherit" w="16">
  53. <connections/>
  54. <foreground>
  55. <path>
  56. <move x="0" y="12"/>
  57. <line x="16" y="0"/>
  58. <line x="16" y="24"/>
  59. <close/>
  60. </path>
  61. <fillstroke/>
  62. </foreground>
  63. </shape>
  64. <shape aspect="variable" h="60" name="backspace" strokewidth="inherit" w="100">
  65. <connections/>
  66. <foreground>
  67. <path>
  68. <move x="0" y="30"/>
  69. <line x="25" y="0"/>
  70. <line x="95" y="0"/>
  71. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  72. <line x="100" y="55"/>
  73. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="60"/>
  74. <line x="25" y="60"/>
  75. <close/>
  76. <move x="41.5" y="40.5"/>
  77. <line x="44.4" y="43.4"/>
  78. <line x="55" y="32.8"/>
  79. <line x="65.7" y="43.4"/>
  80. <line x="68.6" y="40.5"/>
  81. <line x="57.8" y="30"/>
  82. <line x="68.6" y="19.5"/>
  83. <line x="65.7" y="16.6"/>
  84. <line x="55" y="27.2"/>
  85. <line x="44.4" y="16.6"/>
  86. <line x="41.5" y="19.5"/>
  87. <line x="52.2" y="30"/>
  88. <close/>
  89. </path>
  90. <fillstroke/>
  91. </foreground>
  92. </shape>
  93. <shape aspect="variable" h="94" name="birthday" strokewidth="inherit" w="94.98">
  94. <connections/>
  95. <foreground>
  96. <path>
  97. <move x="8.56" y="94"/>
  98. <line x="8.56" y="65"/>
  99. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="0.56" x-axis-rotation="0" y="51"/>
  100. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="15.56" x-axis-rotation="0" y="34"/>
  101. <line x="41.56" y="34"/>
  102. <line x="41.56" y="21"/>
  103. <line x="53.56" y="21"/>
  104. <line x="53.56" y="34"/>
  105. <line x="78.56" y="34"/>
  106. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="94.56" x-axis-rotation="0" y="52"/>
  107. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="86.56" x-axis-rotation="0" y="65"/>
  108. <line x="86.56" y="94"/>
  109. <close/>
  110. <move x="13.56" y="40"/>
  111. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="0" x="6.56" x-axis-rotation="0" y="53"/>
  112. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="34.06" x-axis-rotation="0" y="53"/>
  113. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="61.86" x-axis-rotation="0" y="53"/>
  114. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="89.56" x-axis-rotation="0" y="53"/>
  115. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="0" x="81.56" x-axis-rotation="0" y="40"/>
  116. <close/>
  117. </path>
  118. <fillstroke/>
  119. <path>
  120. <move x="41.56" y="10"/>
  121. <arc large-arc-flag="1" rx="6" ry="6" sweep-flag="0" x="53.56" x-axis-rotation="0" y="10"/>
  122. <line x="47.56" y="0"/>
  123. <close/>
  124. </path>
  125. <fillstroke/>
  126. </foreground>
  127. </shape>
  128. <shape aspect="variable" h="100" name="bluetooth" strokewidth="inherit" w="55">
  129. <connections/>
  130. <foreground>
  131. <fillcolor color="none"/>
  132. <path>
  133. <move x="0" y="80"/>
  134. <line x="55" y="25"/>
  135. <line x="30" y="0"/>
  136. <line x="30" y="100"/>
  137. <line x="55" y="75"/>
  138. <line x="0" y="20"/>
  139. </path>
  140. <stroke/>
  141. </foreground>
  142. </shape>
  143. <shape aspect="variable" h="23.8" name="book" strokewidth="inherit" w="18.9">
  144. <connections/>
  145. <foreground>
  146. <path>
  147. <move x="2" y="23.8"/>
  148. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="0" x-axis-rotation="0" y="21.8"/>
  149. <line x="0" y="2"/>
  150. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="2" x-axis-rotation="0" y="0"/>
  151. <line x="16.9" y="0"/>
  152. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="18.9" x-axis-rotation="0" y="2"/>
  153. <line x="18.9" y="21.8"/>
  154. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="16.9" x-axis-rotation="0" y="23.8"/>
  155. <close/>
  156. <move x="2.5" y="11.5"/>
  157. <line x="5.5" y="9.6"/>
  158. <line x="8.5" y="11.5"/>
  159. <line x="8.5" y="2.5"/>
  160. <line x="2.5" y="2.5"/>
  161. <close/>
  162. </path>
  163. <fillstroke/>
  164. </foreground>
  165. </shape>
  166. <shape aspect="variable" h="24" name="bookmark" strokewidth="inherit" w="14">
  167. <connections/>
  168. <foreground>
  169. <path>
  170. <move x="0" y="24"/>
  171. <line x="0" y="2"/>
  172. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="2" x-axis-rotation="0" y="0"/>
  173. <line x="12" y="0"/>
  174. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="14" x-axis-rotation="0" y="2"/>
  175. <line x="14" y="24"/>
  176. <line x="7" y="20"/>
  177. <close/>
  178. </path>
  179. <fillstroke/>
  180. </foreground>
  181. </shape>
  182. <shape aspect="variable" h="100" name="calendar" strokewidth="inherit" w="100">
  183. <connections/>
  184. <foreground>
  185. <path>
  186. <move x="5" y="100"/>
  187. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="95"/>
  188. <line x="0" y="15"/>
  189. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="10"/>
  190. <line x="20" y="10"/>
  191. <line x="20" y="0"/>
  192. <line x="30" y="0"/>
  193. <line x="30" y="10"/>
  194. <line x="70" y="10"/>
  195. <line x="70" y="0"/>
  196. <line x="80" y="0"/>
  197. <line x="80" y="10"/>
  198. <line x="95" y="10"/>
  199. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="15"/>
  200. <line x="100" y="95"/>
  201. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="100"/>
  202. <close/>
  203. <move x="10" y="90"/>
  204. <line x="90" y="90"/>
  205. <line x="90" y="30"/>
  206. <line x="10" y="30"/>
  207. <close/>
  208. <move x="40" y="80"/>
  209. <line x="40" y="50"/>
  210. <line x="80" y="50"/>
  211. <line x="80" y="80"/>
  212. <close/>
  213. <move x="55" y="70"/>
  214. <line x="65" y="70"/>
  215. <line x="65" y="60"/>
  216. <line x="55" y="60"/>
  217. <close/>
  218. </path>
  219. <fillstroke/>
  220. </foreground>
  221. </shape>
  222. <shape aspect="variable" h="17" name="camera" strokewidth="inherit" w="24">
  223. <connections/>
  224. <foreground>
  225. <path>
  226. <move x="0" y="4"/>
  227. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="1"/>
  228. <line x="8" y="1"/>
  229. <line x="9" y="0"/>
  230. <line x="15" y="0"/>
  231. <line x="16" y="1"/>
  232. <line x="21" y="1"/>
  233. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="24" x-axis-rotation="0" y="4"/>
  234. <line x="24" y="14"/>
  235. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="17"/>
  236. <line x="3" y="17"/>
  237. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="14"/>
  238. <close/>
  239. </path>
  240. <fillstroke/>
  241. <fillcolor color="none"/>
  242. <ellipse h="9" w="9" x="7.5" y="4.5"/>
  243. <stroke/>
  244. </foreground>
  245. </shape>
  246. <shape aspect="variable" h="24" name="chat" strokewidth="inherit" w="24">
  247. <connections/>
  248. <foreground>
  249. <path>
  250. <move x="0" y="3"/>
  251. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="0"/>
  252. <line x="21" y="0"/>
  253. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="24" x-axis-rotation="0" y="3"/>
  254. <line x="24" y="18"/>
  255. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="21"/>
  256. <line x="14" y="21"/>
  257. <line x="12" y="24"/>
  258. <line x="10" y="21"/>
  259. <line x="3" y="21"/>
  260. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="18"/>
  261. <close/>
  262. <close/>
  263. <move x="12" y="10"/>
  264. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="16" x-axis-rotation="0" y="6"/>
  265. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="12" x-axis-rotation="0" y="2"/>
  266. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="8" x-axis-rotation="0" y="7"/>
  267. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="12" x-axis-rotation="0" y="10"/>
  268. <close/>
  269. <move x="10" y="11"/>
  270. <arc large-arc-flag="0" rx="10" ry="5" sweep-flag="0" x="4" x-axis-rotation="0" y="14"/>
  271. <line x="4" y="18"/>
  272. <line x="20" y="18"/>
  273. <line x="20" y="14"/>
  274. <arc large-arc-flag="0" rx="10" ry="5" sweep-flag="0" x="15" x-axis-rotation="0" y="11"/>
  275. <close/>
  276. </path>
  277. <fillstroke/>
  278. </foreground>
  279. </shape>
  280. <shape aspect="variable" h="80" name="chat2" strokewidth="inherit" w="100">
  281. <connections/>
  282. <foreground>
  283. <path>
  284. <move x="0" y="80"/>
  285. <line x="0" y="5"/>
  286. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  287. <line x="95" y="0"/>
  288. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  289. <line x="100" y="60"/>
  290. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="65"/>
  291. <line x="15" y="65"/>
  292. <close/>
  293. </path>
  294. <fillstroke/>
  295. </foreground>
  296. </shape>
  297. <shape aspect="variable" h="75" name="check" strokewidth="inherit" w="100">
  298. <connections/>
  299. <foreground>
  300. <fillcolor color="none"/>
  301. <path>
  302. <move x="0" y="50"/>
  303. <line x="30" y="75"/>
  304. <line x="100" y="0"/>
  305. </path>
  306. <stroke/>
  307. </foreground>
  308. </shape>
  309. <shape aspect="variable" h="100" name="checkbox" strokewidth="inherit" w="100">
  310. <connections/>
  311. <foreground>
  312. <save/>
  313. <fillcolor color="none"/>
  314. <roundrect arcsize="10" h="100" w="100" x="0" y="0"/>
  315. <stroke/>
  316. <restore/>
  317. <rect/>
  318. <stroke/>
  319. <strokecolor color="none"/>
  320. <path>
  321. <move x="0" y="10"/>
  322. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  323. <line x="90" y="0"/>
  324. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="100" x-axis-rotation="0" y="10"/>
  325. <line x="100" y="90"/>
  326. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="90" x-axis-rotation="0" y="100"/>
  327. <line x="10" y="100"/>
  328. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="90"/>
  329. <close/>
  330. <move x="10.4" y="63.4"/>
  331. <line x="36.4" y="87"/>
  332. <line x="90.2" y="25"/>
  333. <line x="81.5" y="17.3"/>
  334. <line x="35.4" y="70.8"/>
  335. <line x="18.1" y="54.9"/>
  336. <close/>
  337. </path>
  338. <fill/>
  339. </foreground>
  340. </shape>
  341. <shape aspect="variable" h="100" name="clock" strokewidth="inherit" w="100">
  342. <connections/>
  343. <foreground>
  344. <ellipse h="100" w="100" x="0" y="0"/>
  345. <fillstroke/>
  346. <fillcolor color="none"/>
  347. <path>
  348. <move x="50" y="20"/>
  349. <line x="50" y="50"/>
  350. <line x="76" y="76"/>
  351. </path>
  352. <stroke/>
  353. </foreground>
  354. </shape>
  355. <shape aspect="variable" h="14" name="cloud" strokewidth="inherit" w="22">
  356. <connections/>
  357. <foreground>
  358. <path>
  359. <move x="5" y="14"/>
  360. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="4"/>
  361. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="18" x-axis-rotation="0" y="6"/>
  362. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="18" x-axis-rotation="0" y="14"/>
  363. <close/>
  364. </path>
  365. <fillstroke/>
  366. </foreground>
  367. </shape>
  368. <shape aspect="variable" h="101.18" name="command" strokewidth="inherit" w="101.18">
  369. <connections/>
  370. <foreground>
  371. <fillcolor color="none"/>
  372. <path>
  373. <move x="60.59" y="60.59"/>
  374. <arc large-arc-flag="0" rx="35" ry="15" sweep-flag="1" x="95.59" x-axis-rotation="0" y="70.59"/>
  375. <arc large-arc-flag="0" rx="17.8" ry="17.8" sweep-flag="1" x="70.59" x-axis-rotation="0" y="95.59"/>
  376. <arc large-arc-flag="0" rx="15" ry="35" sweep-flag="1" x="60.59" x-axis-rotation="0" y="60.59"/>
  377. <line x="60.59" y="40.59"/>
  378. <arc large-arc-flag="0" rx="15" ry="35" sweep-flag="1" x="70.59" x-axis-rotation="0" y="5.59"/>
  379. <arc large-arc-flag="0" rx="17.8" ry="17.8" sweep-flag="1" x="95.59" x-axis-rotation="0" y="30.59"/>
  380. <arc large-arc-flag="0" rx="35" ry="15" sweep-flag="1" x="60.59" x-axis-rotation="0" y="40.59"/>
  381. <line x="40.59" y="40.59"/>
  382. <arc large-arc-flag="0" rx="35" ry="15" sweep-flag="1" x="5.59" x-axis-rotation="0" y="30.59"/>
  383. <arc large-arc-flag="0" rx="17.8" ry="17.8" sweep-flag="1" x="30.59" x-axis-rotation="0" y="5.59"/>
  384. <arc large-arc-flag="0" rx="15" ry="35" sweep-flag="1" x="40.59" x-axis-rotation="0" y="40.59"/>
  385. <line x="40.59" y="60.59"/>
  386. <arc large-arc-flag="0" rx="15" ry="35" sweep-flag="1" x="30.59" x-axis-rotation="0" y="95.59"/>
  387. <arc large-arc-flag="0" rx="17.8" ry="17.8" sweep-flag="1" x="5.59" x-axis-rotation="0" y="70.59"/>
  388. <arc large-arc-flag="0" rx="35" ry="15" sweep-flag="1" x="40.59" x-axis-rotation="0" y="60.59"/>
  389. <close/>
  390. </path>
  391. <stroke/>
  392. </foreground>
  393. </shape>
  394. <shape aspect="variable" h="24" name="copy" strokewidth="inherit" w="16.5">
  395. <connections/>
  396. <foreground>
  397. <rect h="20.5" w="13" x="3.5" y="3.5"/>
  398. <fillstroke/>
  399. <fillcolor color="none"/>
  400. <path>
  401. <move x="0" y="20"/>
  402. <line x="0" y="0"/>
  403. <line x="13" y="0"/>
  404. </path>
  405. <stroke/>
  406. </foreground>
  407. </shape>
  408. <shape aspect="variable" h="104.89" name="data usage" strokewidth="inherit" w="104.59">
  409. <connections/>
  410. <foreground>
  411. <fillcolor color="none"/>
  412. <path>
  413. <move x="51.31" y="0.22"/>
  414. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="98.21" x-axis-rotation="0" y="69.22"/>
  415. </path>
  416. <stroke/>
  417. <path>
  418. <move x="46.81" y="0.42"/>
  419. <arc large-arc-flag="1" rx="50" ry="50" sweep-flag="0" x="96.11" x-axis-rotation="0" y="73.72"/>
  420. </path>
  421. <stroke/>
  422. </foreground>
  423. </shape>
  424. <shape aspect="variable" h="102.9" name="dining" strokewidth="inherit" w="62.24">
  425. <connections/>
  426. <foreground>
  427. <path>
  428. <move x="0" y="102.9"/>
  429. <line x="0" y="2.9"/>
  430. <arc large-arc-flag="0" rx="16" ry="21" sweep-flag="1" x="8" x-axis-rotation="0" y="47.9"/>
  431. <line x="8" y="102.9"/>
  432. <close/>
  433. <move x="14" y="102.9"/>
  434. <line x="14" y="52.9"/>
  435. <line x="22" y="52.9"/>
  436. <line x="22" y="102.9"/>
  437. <close/>
  438. <move x="28" y="102.9"/>
  439. <line x="28" y="52.9"/>
  440. <line x="36" y="52.9"/>
  441. <line x="36" y="102.9"/>
  442. <close/>
  443. <move x="42" y="102.9"/>
  444. <line x="42" y="47.9"/>
  445. <arc large-arc-flag="0" rx="16" ry="23" sweep-flag="1" x="46" x-axis-rotation="0" y="2.9"/>
  446. <arc large-arc-flag="0" rx="16" ry="23" sweep-flag="1" x="50" x-axis-rotation="0" y="47.9"/>
  447. <line x="50" y="102.9"/>
  448. <close/>
  449. </path>
  450. <fillstroke/>
  451. </foreground>
  452. </shape>
  453. <shape aspect="variable" h="24" name="doc" strokewidth="inherit" w="24">
  454. <connections/>
  455. <foreground>
  456. <save/>
  457. <strokecolor color="none"/>
  458. <path>
  459. <move x="0" y="3"/>
  460. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="0"/>
  461. <line x="21" y="0"/>
  462. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="24" x-axis-rotation="0" y="3"/>
  463. <line x="24" y="21"/>
  464. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="24"/>
  465. <line x="3" y="24"/>
  466. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="21"/>
  467. <close/>
  468. </path>
  469. <fill/>
  470. <restore/>
  471. <rect/>
  472. <stroke/>
  473. <fillcolor color="none"/>
  474. <path>
  475. <move x="4" y="6"/>
  476. <line x="20" y="6"/>
  477. </path>
  478. <stroke/>
  479. <path>
  480. <move x="4" y="12"/>
  481. <line x="20" y="12"/>
  482. </path>
  483. <stroke/>
  484. <path>
  485. <move x="4" y="18"/>
  486. <line x="15" y="18"/>
  487. </path>
  488. <stroke/>
  489. </foreground>
  490. </shape>
  491. <shape aspect="variable" h="100" name="docs" strokewidth="inherit" w="71.5">
  492. <connections/>
  493. <foreground>
  494. <save/>
  495. <fillcolor color="#498af4"/>
  496. <path>
  497. <move x="6" y="100"/>
  498. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="0" x-axis-rotation="0" y="94"/>
  499. <line x="0" y="6"/>
  500. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
  501. <line x="44" y="0"/>
  502. <line x="71.5" y="28"/>
  503. <line x="71.5" y="94"/>
  504. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="65.5" x-axis-rotation="0" y="100"/>
  505. <close/>
  506. </path>
  507. <fillstroke/>
  508. <strokecolor color="none"/>
  509. <fillcolor color="#ffffff"/>
  510. <rect h="4" w="36" x="18" y="49.5"/>
  511. <fill/>
  512. <rect h="4" w="36" x="18" y="58.5"/>
  513. <fill/>
  514. <rect h="4" w="36" x="18" y="67.5"/>
  515. <fill/>
  516. <rect h="4" w="27" x="18" y="76.5"/>
  517. <fill/>
  518. <restore/>
  519. <rect/>
  520. <stroke/>
  521. <fillcolor color="#ffffff"/>
  522. <linejoin join="round"/>
  523. <alpha alpha="0.5"/>
  524. <path>
  525. <move x="50" y="28"/>
  526. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="44" x-axis-rotation="0" y="22"/>
  527. <line x="44" y="0"/>
  528. <line x="71.5" y="28"/>
  529. <close/>
  530. </path>
  531. <fillstroke/>
  532. </foreground>
  533. </shape>
  534. <shape aspect="variable" h="100" name="download" strokewidth="inherit" w="82">
  535. <connections/>
  536. <foreground>
  537. <path>
  538. <move x="41" y="75"/>
  539. <line x="0" y="36"/>
  540. <line x="24" y="36"/>
  541. <line x="24" y="0"/>
  542. <line x="58" y="0"/>
  543. <line x="58" y="36"/>
  544. <line x="82" y="36"/>
  545. <close/>
  546. <close/>
  547. <move x="82" y="89"/>
  548. <line x="82" y="100"/>
  549. <line x="0" y="100"/>
  550. <line x="0" y="89"/>
  551. <close/>
  552. </path>
  553. <fillstroke/>
  554. </foreground>
  555. </shape>
  556. <shape aspect="variable" h="24" name="edit" strokewidth="inherit" w="24">
  557. <connections/>
  558. <foreground>
  559. <path>
  560. <move x="16.5" y="3.5"/>
  561. <line x="20.5" y="7.5"/>
  562. <line x="5.5" y="22.5"/>
  563. <line x="0" y="24"/>
  564. <line x="1.5" y="18.5"/>
  565. <close/>
  566. </path>
  567. <fillstroke/>
  568. <path>
  569. <move x="17" y="3"/>
  570. <line x="20" y="0"/>
  571. <line x="24" y="4"/>
  572. <line x="21" y="7"/>
  573. <close/>
  574. </path>
  575. <fillstroke/>
  576. </foreground>
  577. </shape>
  578. <shape aspect="variable" h="60" name="education" strokewidth="inherit" w="100">
  579. <connections/>
  580. <foreground>
  581. <path>
  582. <move x="0" y="20"/>
  583. <line x="50" y="0"/>
  584. <line x="100" y="20"/>
  585. <line x="100" y="45"/>
  586. <line x="90" y="45"/>
  587. <line x="90" y="24"/>
  588. <line x="50" y="40"/>
  589. <close/>
  590. <move x="10" y="29"/>
  591. <line x="50" y="45"/>
  592. <line x="85" y="31"/>
  593. <line x="85" y="46"/>
  594. <line x="50" y="60"/>
  595. <line x="10" y="45"/>
  596. <close/>
  597. </path>
  598. <fillstroke/>
  599. </foreground>
  600. </shape>
  601. <shape aspect="variable" h="100" name="facebook" strokewidth="inherit" w="100">
  602. <connections/>
  603. <foreground>
  604. <path>
  605. <move x="0" y="5"/>
  606. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  607. <line x="95" y="0"/>
  608. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  609. <line x="100" y="95"/>
  610. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95.12" x-axis-rotation="0" y="100"/>
  611. <line x="5" y="100"/>
  612. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="95"/>
  613. <close/>
  614. </path>
  615. <fillstroke/>
  616. <fillcolor color="#ffffff"/>
  617. <path>
  618. <move x="53.4" y="95"/>
  619. <line x="53.4" y="61.2"/>
  620. <line x="40.2" y="61.2"/>
  621. <line x="40.2" y="46.1"/>
  622. <line x="53.4" y="46.1"/>
  623. <line x="53.4" y="33"/>
  624. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="65" x-axis-rotation="0" y="16.3"/>
  625. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="84.5" x-axis-rotation="0" y="15.7"/>
  626. <line x="84.5" y="29.2"/>
  627. <line x="75" y="29.2"/>
  628. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="0" x="69.3" x-axis-rotation="0" y="33.7"/>
  629. <line x="69.1" y="46.1"/>
  630. <line x="83.9" y="46.1"/>
  631. <line x="82.1" y="61.2"/>
  632. <line x="69" y="61.2"/>
  633. <line x="69" y="95"/>
  634. <close/>
  635. </path>
  636. <fillstroke/>
  637. </foreground>
  638. </shape>
  639. <shape aspect="variable" h="91" name="family" strokewidth="inherit" w="100">
  640. <connections/>
  641. <foreground>
  642. <path>
  643. <move x="8" y="91"/>
  644. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="8" x-axis-rotation="0" y="75"/>
  645. <line x="44" y="75"/>
  646. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="44" x-axis-rotation="0" y="91"/>
  647. <line x="7.2" y="91"/>
  648. <close/>
  649. <move x="21" y="40"/>
  650. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="44" x-axis-rotation="0" y="28"/>
  651. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="65" x-axis-rotation="0" y="28.5"/>
  652. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="74" x-axis-rotation="0" y="36"/>
  653. <line x="89" y="81"/>
  654. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="82.5" x-axis-rotation="0" y="89.8"/>
  655. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="73.6" x-axis-rotation="0" y="85"/>
  656. <line x="64.6" y="61"/>
  657. <line x="42.8" y="62.4"/>
  658. <close/>
  659. <move x="72" y="14"/>
  660. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="86" x-axis-rotation="0" y="0"/>
  661. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="100" x-axis-rotation="0" y="14"/>
  662. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="86" x-axis-rotation="0" y="28"/>
  663. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="72" x-axis-rotation="0" y="14"/>
  664. <close/>
  665. </path>
  666. <fillstroke/>
  667. </foreground>
  668. </shape>
  669. <shape aspect="variable" h="16" name="folder" strokewidth="inherit" w="24">
  670. <connections/>
  671. <foreground>
  672. <path>
  673. <move x="0" y="3"/>
  674. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="0"/>
  675. <line x="9" y="0"/>
  676. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="12" x-axis-rotation="0" y="3"/>
  677. <line x="21" y="3"/>
  678. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="24" x-axis-rotation="0" y="6"/>
  679. <line x="24" y="13"/>
  680. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="16"/>
  681. <line x="3" y="16"/>
  682. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="13"/>
  683. <close/>
  684. </path>
  685. <fillstroke/>
  686. </foreground>
  687. </shape>
  688. <shape aspect="variable" h="21.5" name="gallery" strokewidth="inherit" w="24">
  689. <connections/>
  690. <foreground>
  691. <path>
  692. <move x="0" y="2.5"/>
  693. <line x="3" y="2.5"/>
  694. <line x="3" y="0"/>
  695. <line x="9" y="0"/>
  696. <line x="9" y="2.5"/>
  697. <line x="12" y="2.5"/>
  698. <line x="12" y="4.5"/>
  699. <line x="24" y="4.5"/>
  700. <line x="24" y="19.5"/>
  701. <line x="12" y="19.5"/>
  702. <line x="12" y="21.5"/>
  703. <line x="0" y="21.5"/>
  704. <close/>
  705. <move x="10" y="6.5"/>
  706. <line x="10" y="8.5"/>
  707. <line x="12" y="8.5"/>
  708. <line x="12" y="6.5"/>
  709. <close/>
  710. <move x="15" y="8.5"/>
  711. <line x="17" y="8.5"/>
  712. <line x="17" y="6.5"/>
  713. <line x="15" y="6.5"/>
  714. <close/>
  715. <move x="20" y="8.5"/>
  716. <line x="22" y="8.5"/>
  717. <line x="22" y="6.5"/>
  718. <line x="20" y="6.5"/>
  719. <close/>
  720. <move x="10" y="17.5"/>
  721. <line x="12" y="17.5"/>
  722. <line x="12" y="15.5"/>
  723. <line x="10" y="15.5"/>
  724. <close/>
  725. <move x="15" y="17.5"/>
  726. <line x="17" y="17.5"/>
  727. <line x="17" y="15.5"/>
  728. <line x="15" y="15.5"/>
  729. <close/>
  730. <move x="20" y="17.5"/>
  731. <line x="22" y="17.5"/>
  732. <line x="22" y="15.5"/>
  733. <line x="20" y="15.5"/>
  734. <close/>
  735. </path>
  736. <fillstroke/>
  737. </foreground>
  738. </shape>
  739. <shape aspect="variable" h="33" name="gmail" strokewidth="inherit" w="48">
  740. <connections/>
  741. <foreground>
  742. <strokecolor color="none"/>
  743. <fillcolor color="#eeeeee"/>
  744. <path>
  745. <move x="0" y="4"/>
  746. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="4" x-axis-rotation="0" y="0"/>
  747. <line x="44" y="0"/>
  748. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="48" x-axis-rotation="0" y="4"/>
  749. <line x="48" y="29"/>
  750. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="44" x-axis-rotation="0" y="33"/>
  751. <line x="4" y="33"/>
  752. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="29"/>
  753. <close/>
  754. </path>
  755. <fill/>
  756. <fillcolor color="#db4539"/>
  757. <path>
  758. <move x="4" y="33"/>
  759. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="29"/>
  760. <line x="0" y="4"/>
  761. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="4" x-axis-rotation="0" y="0"/>
  762. <line x="24" y="15"/>
  763. <line x="44" y="0"/>
  764. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="48" x-axis-rotation="0" y="4"/>
  765. <line x="48" y="29"/>
  766. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="44" x-axis-rotation="0" y="33"/>
  767. <line x="44" y="5"/>
  768. <line x="24" y="19.5"/>
  769. <line x="4" y="5"/>
  770. <close/>
  771. </path>
  772. <fill/>
  773. <fillcolor color="#000000"/>
  774. <alpha alpha="0.1"/>
  775. <path>
  776. <move x="0.5" y="2.5"/>
  777. <line x="24" y="19.5"/>
  778. <line x="47.5" y="2.5"/>
  779. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="48" x-axis-rotation="0" y="4"/>
  780. <line x="48" y="29"/>
  781. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="44" x-axis-rotation="0" y="33"/>
  782. <line x="30" y="33"/>
  783. <close/>
  784. </path>
  785. <fill/>
  786. <path>
  787. <move x="4" y="33"/>
  788. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="29"/>
  789. <line x="0" y="4"/>
  790. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0.5" x-axis-rotation="0" y="2.3"/>
  791. <line x="24" y="19.5"/>
  792. <line x="47.6" y="2.3"/>
  793. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="48" x-axis-rotation="0" y="4"/>
  794. <line x="48" y="5"/>
  795. <line x="24" y="22.5"/>
  796. <close/>
  797. <close/>
  798. </path>
  799. <fill/>
  800. </foreground>
  801. </shape>
  802. <shape aspect="variable" h="68.1" name="google" strokewidth="inherit" w="44.2">
  803. <connections/>
  804. <foreground>
  805. <path>
  806. <move x="33.7" y="3.2"/>
  807. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="39.8" x-axis-rotation="0" y="16.8"/>
  808. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="31.2" x-axis-rotation="0" y="28.2"/>
  809. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="31.7" x-axis-rotation="0" y="35.2"/>
  810. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="41.4" x-axis-rotation="0" y="44.2"/>
  811. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="40" x-axis-rotation="0" y="58.6"/>
  812. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="27" x-axis-rotation="0" y="66.4"/>
  813. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="7.2" x-axis-rotation="0" y="64.7"/>
  814. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="0" x-axis-rotation="0" y="54"/>
  815. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="8.4" x-axis-rotation="0" y="42.8"/>
  816. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="24" x-axis-rotation="0" y="39.4"/>
  817. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="21.4" x-axis-rotation="0" y="34"/>
  818. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="22.6" x-axis-rotation="0" y="30.2"/>
  819. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="10.6" x-axis-rotation="0" y="28.2"/>
  820. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="4.7" x-axis-rotation="0" y="14.8"/>
  821. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="9.7" x-axis-rotation="0" y="4.4"/>
  822. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="20.2" x-axis-rotation="0" y="0"/>
  823. <line x="44.2" y="0"/>
  824. <line x="38.8" y="3.2"/>
  825. <close/>
  826. <move x="18.8" y="3.2"/>
  827. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="13.4" x-axis-rotation="0" y="7.2"/>
  828. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="0" x="13" x-axis-rotation="0" y="16.4"/>
  829. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="18.4" x-axis-rotation="0" y="26"/>
  830. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="24.2" x-axis-rotation="0" y="27.8"/>
  831. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="31.2" x-axis-rotation="0" y="23"/>
  832. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="31.4" x-axis-rotation="0" y="15.8"/>
  833. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="26.6" x-axis-rotation="0" y="6"/>
  834. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="18.8" x-axis-rotation="0" y="3.2"/>
  835. <close/>
  836. <move x="26.6" y="42.4"/>
  837. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="17.4" x-axis-rotation="0" y="43.1"/>
  838. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="10.2" x-axis-rotation="0" y="47"/>
  839. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="9" x-axis-rotation="0" y="56.2"/>
  840. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="16.2" x-axis-rotation="0" y="62"/>
  841. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="31.8" x-axis-rotation="0" y="61.4"/>
  842. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="36.6" x-axis-rotation="0" y="55.2"/>
  843. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="33.8" x-axis-rotation="0" y="47.6"/>
  844. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="26.6" x-axis-rotation="0" y="42.4"/>
  845. <close/>
  846. </path>
  847. <fillstroke/>
  848. </foreground>
  849. </shape>
  850. <shape aspect="variable" h="100" name="google plus" strokewidth="inherit" w="100">
  851. <connections/>
  852. <foreground>
  853. <fillcolor color="#dc4b3f"/>
  854. <path>
  855. <move x="0" y="5"/>
  856. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  857. <line x="95" y="0"/>
  858. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  859. <line x="100" y="95"/>
  860. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="100"/>
  861. <line x="5" y="100"/>
  862. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="95"/>
  863. <close/>
  864. </path>
  865. <fillstroke/>
  866. <fillcolor color="#ffffff"/>
  867. <path>
  868. <move x="51.5" y="19"/>
  869. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="57.6" x-axis-rotation="0" y="32.6"/>
  870. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="49" x-axis-rotation="0" y="44"/>
  871. <arc large-arc-flag="0" rx="4.5" ry="4.5" sweep-flag="0" x="49.5" x-axis-rotation="0" y="51"/>
  872. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="59.2" x-axis-rotation="0" y="60"/>
  873. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="57.8" x-axis-rotation="0" y="74.4"/>
  874. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="44.8" x-axis-rotation="0" y="82.2"/>
  875. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="25" x-axis-rotation="0" y="80.5"/>
  876. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="17.8" x-axis-rotation="0" y="69.8"/>
  877. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="1" x="26.2" x-axis-rotation="0" y="58.6"/>
  878. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="41.8" x-axis-rotation="0" y="55.2"/>
  879. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="39.2" x-axis-rotation="0" y="49.8"/>
  880. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="40.4" x-axis-rotation="0" y="46"/>
  881. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="28.4" x-axis-rotation="0" y="44"/>
  882. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="22.5" x-axis-rotation="0" y="30.6"/>
  883. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="27.5" x-axis-rotation="0" y="20.2"/>
  884. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="38" x-axis-rotation="0" y="15.8"/>
  885. <line x="62" y="15.8"/>
  886. <line x="56.6" y="19"/>
  887. <close/>
  888. <close/>
  889. </path>
  890. <fillstroke/>
  891. <fillcolor color="#dc4b3f"/>
  892. <path>
  893. <move x="36.6" y="19"/>
  894. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="44.4" x-axis-rotation="0" y="21.8"/>
  895. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="49.2" x-axis-rotation="0" y="31.6"/>
  896. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="49" x-axis-rotation="0" y="38.8"/>
  897. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="42" x-axis-rotation="0" y="43.6"/>
  898. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="36.2" x-axis-rotation="0" y="41.8"/>
  899. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="30.8" x-axis-rotation="0" y="32.2"/>
  900. <arc large-arc-flag="0" rx="17" ry="17" sweep-flag="1" x="31.2" x-axis-rotation="0" y="23"/>
  901. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="36.6" x-axis-rotation="0" y="19"/>
  902. <close/>
  903. </path>
  904. <fillstroke/>
  905. <path>
  906. <move x="44.4" y="58.2"/>
  907. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="51.6" x-axis-rotation="0" y="63.4"/>
  908. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="54.4" x-axis-rotation="0" y="71"/>
  909. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="49.6" x-axis-rotation="0" y="77.2"/>
  910. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="34" x-axis-rotation="0" y="77.8"/>
  911. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="26.8" x-axis-rotation="0" y="72"/>
  912. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="28" x-axis-rotation="0" y="62.8"/>
  913. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="35.2" x-axis-rotation="0" y="58.9"/>
  914. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="44.4" x-axis-rotation="0" y="58.2"/>
  915. <close/>
  916. </path>
  917. <fillstroke/>
  918. <fillcolor color="#ffffff"/>
  919. <path>
  920. <move x="76" y="36.5"/>
  921. <line x="76" y="45"/>
  922. <line x="84.5" y="45"/>
  923. <line x="84.5" y="50"/>
  924. <line x="76" y="50"/>
  925. <line x="76" y="58.5"/>
  926. <line x="71" y="58.5"/>
  927. <line x="71" y="50"/>
  928. <line x="62.5" y="50"/>
  929. <line x="62.5" y="45"/>
  930. <line x="71" y="45"/>
  931. <line x="71" y="36.5"/>
  932. <close/>
  933. </path>
  934. <fillstroke/>
  935. </foreground>
  936. </shape>
  937. <shape aspect="variable" h="24" name="gps" strokewidth="inherit" w="24">
  938. <connections/>
  939. <foreground>
  940. <save/>
  941. <fillcolor color="none"/>
  942. <ellipse h="18" w="18" x="3" y="3"/>
  943. <stroke/>
  944. <path>
  945. <move x="12" y="0"/>
  946. <line x="12" y="3"/>
  947. </path>
  948. <stroke/>
  949. <path>
  950. <move x="0" y="12"/>
  951. <line x="3" y="12"/>
  952. </path>
  953. <stroke/>
  954. <path>
  955. <move x="12" y="21"/>
  956. <line x="12" y="24"/>
  957. </path>
  958. <stroke/>
  959. <path>
  960. <move x="21" y="12"/>
  961. <line x="24" y="12"/>
  962. </path>
  963. <stroke/>
  964. <restore/>
  965. <rect/>
  966. <stroke/>
  967. <strokecolor color="none"/>
  968. <ellipse h="12" w="12" x="6" y="6"/>
  969. <fill/>
  970. </foreground>
  971. </shape>
  972. <shape aspect="variable" h="100" name="handle" strokewidth="inherit" w="100">
  973. <connections/>
  974. <foreground>
  975. <save/>
  976. <strokecolor color="none"/>
  977. <alpha alpha="0.5"/>
  978. <ellipse h="100" w="100" x="0" y="0"/>
  979. <fill/>
  980. <restore/>
  981. <rect/>
  982. <stroke/>
  983. <ellipse h="40" w="40" x="30" y="30"/>
  984. <fillstroke/>
  985. </foreground>
  986. </shape>
  987. <shape aspect="variable" h="100.01" name="handle2" strokewidth="inherit" w="85.94">
  988. <connections/>
  989. <foreground>
  990. <path>
  991. <move x="42.97" y="100.01"/>
  992. <line x="12.97" y="66.51"/>
  993. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="42.97" x-axis-rotation="0" y="0.01"/>
  994. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="72.97" x-axis-rotation="0" y="66.51"/>
  995. <close/>
  996. </path>
  997. <fillstroke/>
  998. </foreground>
  999. </shape>
  1000. <shape aspect="variable" h="22.7" name="hangout" strokewidth="inherit" w="19.87">
  1001. <connections/>
  1002. <foreground>
  1003. <path>
  1004. <move x="10.03" y="19.5"/>
  1005. <arc large-arc-flag="0" rx="9.5" ry="9.5" sweep-flag="1" x="0.23" x-axis-rotation="0" y="9.2"/>
  1006. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10.03" x-axis-rotation="0" y="0"/>
  1007. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="19.53" x-axis-rotation="0" y="11.2"/>
  1008. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="10.03" x-axis-rotation="0" y="22.7"/>
  1009. <close/>
  1010. <move x="12.03" y="14.2"/>
  1011. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="0" x="15.03" x-axis-rotation="0" y="11.2"/>
  1012. <line x="15.03" y="6.7"/>
  1013. <line x="10.53" y="6.7"/>
  1014. <line x="10.53" y="11.2"/>
  1015. <line x="13.53" y="11.2"/>
  1016. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="12.03" x-axis-rotation="0" y="12.7"/>
  1017. <close/>
  1018. <move x="6.03" y="14.2"/>
  1019. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="9.03" x-axis-rotation="0" y="11.2"/>
  1020. <line x="9.03" y="6.7"/>
  1021. <line x="4.53" y="6.7"/>
  1022. <line x="4.53" y="11.2"/>
  1023. <line x="7.53" y="11.2"/>
  1024. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="6.03" x-axis-rotation="0" y="12.7"/>
  1025. <close/>
  1026. </path>
  1027. <fillstroke/>
  1028. </foreground>
  1029. </shape>
  1030. <shape aspect="variable" h="90.29" name="health" strokewidth="inherit" w="102.79">
  1031. <connections/>
  1032. <foreground>
  1033. <path>
  1034. <move x="7.4" y="42.29"/>
  1035. <arc large-arc-flag="1" rx="26" ry="26" sweep-flag="1" x="51.4" x-axis-rotation="0" y="15.29"/>
  1036. <arc large-arc-flag="1" rx="26" ry="26" sweep-flag="1" x="95.4" x-axis-rotation="0" y="42.29"/>
  1037. <line x="51.4" y="90.29"/>
  1038. <close/>
  1039. <move x="33.4" y="44.29"/>
  1040. <line x="45.4" y="54.29"/>
  1041. <line x="76.4" y="30.29"/>
  1042. <line x="72.4" y="26.29"/>
  1043. <line x="45.4" y="47.29"/>
  1044. <line x="37.4" y="40.29"/>
  1045. <close/>
  1046. </path>
  1047. <fillstroke/>
  1048. </foreground>
  1049. </shape>
  1050. <shape aspect="variable" h="20.36" name="heart" strokewidth="inherit" w="24.44">
  1051. <connections/>
  1052. <foreground>
  1053. <path>
  1054. <move x="2.22" y="10.36"/>
  1055. <arc large-arc-flag="1" rx="6" ry="6" sweep-flag="1" x="12.22" x-axis-rotation="0" y="4.36"/>
  1056. <arc large-arc-flag="1" rx="6" ry="6" sweep-flag="1" x="22.22" x-axis-rotation="0" y="10.36"/>
  1057. <line x="12.22" y="20.36"/>
  1058. <close/>
  1059. </path>
  1060. <fillstroke/>
  1061. </foreground>
  1062. </shape>
  1063. <shape aspect="variable" h="100" name="image" strokewidth="inherit" w="100">
  1064. <connections/>
  1065. <foreground>
  1066. <rect h="100" w="100" x="0" y="0"/>
  1067. <fillstroke/>
  1068. <fillcolor color="none"/>
  1069. <path>
  1070. <move x="0" y="100"/>
  1071. <line x="100" y="0"/>
  1072. </path>
  1073. <stroke/>
  1074. <path>
  1075. <move x="100" y="100"/>
  1076. <line x="0" y="0"/>
  1077. </path>
  1078. <stroke/>
  1079. </foreground>
  1080. </shape>
  1081. <shape aspect="variable" h="93.07" name="inbox" strokewidth="inherit" w="100.02">
  1082. <connections/>
  1083. <foreground>
  1084. <strokecolor color="none"/>
  1085. <fillcolor color="#3358bf"/>
  1086. <path>
  1087. <move x="4" y="93.07"/>
  1088. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="89.07"/>
  1089. <line x="0" y="38.57"/>
  1090. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="3.5" x-axis-rotation="0" y="33.57"/>
  1091. <line x="47" y="1.07"/>
  1092. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="53" x-axis-rotation="0" y="1.07"/>
  1093. <line x="96.5" y="33.57"/>
  1094. <arc large-arc-flag="0" rx="9" ry="9" sweep-flag="1" x="100" x-axis-rotation="0" y="38.57"/>
  1095. <line x="100" y="89.07"/>
  1096. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="96.5" x-axis-rotation="0" y="93.07"/>
  1097. <close/>
  1098. </path>
  1099. <fill/>
  1100. <fillcolor color="#467be2"/>
  1101. <rect h="40" w="100" x="0" y="38.57"/>
  1102. <fill/>
  1103. <fillcolor color="#11aef5"/>
  1104. <path>
  1105. <move x="4" y="93.07"/>
  1106. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="0" x-axis-rotation="0" y="89.07"/>
  1107. <line x="0" y="38.57"/>
  1108. <line x="96" y="93.07"/>
  1109. <close/>
  1110. </path>
  1111. <fill/>
  1112. <fillcolor color="#53c4f7"/>
  1113. <path>
  1114. <move x="100" y="89.07"/>
  1115. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="96" x-axis-rotation="0" y="93.07"/>
  1116. <line x="4" y="93.07"/>
  1117. <line x="100" y="38.57"/>
  1118. <close/>
  1119. </path>
  1120. <fill/>
  1121. <fillcolor color="#e3e3e2"/>
  1122. <path>
  1123. <move x="50" y="50.57"/>
  1124. <line x="30.5" y="31.07"/>
  1125. <line x="37.5" y="24.57"/>
  1126. <line x="50" y="37.07"/>
  1127. <line x="80" y="7.57"/>
  1128. <line x="86.5" y="13.57"/>
  1129. <close/>
  1130. </path>
  1131. <fill/>
  1132. </foreground>
  1133. </shape>
  1134. <shape aspect="variable" h="100" name="info" strokewidth="inherit" w="100">
  1135. <connections/>
  1136. <foreground>
  1137. <save/>
  1138. <strokewidth width="2"/>
  1139. <ellipse h="100" w="100" x="0" y="0"/>
  1140. <fillstroke/>
  1141. <restore/>
  1142. <rect/>
  1143. <stroke/>
  1144. <strokecolor color="none"/>
  1145. <fillcolor color="#CFCECE"/>
  1146. <path>
  1147. <move x="42" y="35"/>
  1148. <line x="55" y="35"/>
  1149. <line x="55" y="80"/>
  1150. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="58" x-axis-rotation="0" y="83"/>
  1151. <line x="42" y="83"/>
  1152. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="45" x-axis-rotation="0" y="80"/>
  1153. <line x="45" y="38"/>
  1154. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="0" x="42" x-axis-rotation="0" y="35"/>
  1155. </path>
  1156. <fill/>
  1157. <ellipse h="10" w="10" x="45" y="20"/>
  1158. <fill/>
  1159. </foreground>
  1160. </shape>
  1161. <shape aspect="variable" h="99.6" name="keep" strokewidth="inherit" w="99.8">
  1162. <connections/>
  1163. <foreground>
  1164. <path>
  1165. <move x="6" y="99.6"/>
  1166. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="0" x-axis-rotation="0" y="93.6"/>
  1167. <line x="0" y="6"/>
  1168. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
  1169. <line x="93.8" y="0"/>
  1170. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="99.8" x-axis-rotation="0" y="6"/>
  1171. <line x="99.8" y="71.3"/>
  1172. <line x="71.5" y="99.6"/>
  1173. <close/>
  1174. <move x="42.5" y="83.8"/>
  1175. <line x="57.5" y="83.8"/>
  1176. <line x="57.5" y="78.8"/>
  1177. <line x="63" y="78.8"/>
  1178. <line x="63" y="58.8"/>
  1179. <arc large-arc-flag="1" rx="23.5" ry="23.5" sweep-flag="0" x="37" x-axis-rotation="0" y="58.8"/>
  1180. <line x="37" y="78.8"/>
  1181. <line x="42.5" y="78.8"/>
  1182. <close/>
  1183. <move x="43.5" y="72.8"/>
  1184. <line x="43.5" y="68.3"/>
  1185. <line x="56.5" y="68.3"/>
  1186. <line x="56.5" y="72.8"/>
  1187. <close/>
  1188. <move x="43.5" y="56.3"/>
  1189. <arc large-arc-flag="1" rx="18.5" ry="18.5" sweep-flag="1" x="56.5" x-axis-rotation="0" y="56.3"/>
  1190. <line x="56.5" y="62.3"/>
  1191. <line x="43.5" y="62.3"/>
  1192. <close/>
  1193. </path>
  1194. <fillstroke/>
  1195. <fillcolor color="#ffffff"/>
  1196. <linejoin join="round"/>
  1197. <alpha alpha="0.5"/>
  1198. <path>
  1199. <move x="71.5" y="99.6"/>
  1200. <line x="71.5" y="77.3"/>
  1201. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="77.5" x-axis-rotation="0" y="71.3"/>
  1202. <line x="99.8" y="71.3"/>
  1203. <close/>
  1204. </path>
  1205. <fillstroke/>
  1206. </foreground>
  1207. </shape>
  1208. <shape aspect="variable" h="24" name="left" strokewidth="inherit" w="24">
  1209. <connections/>
  1210. <foreground>
  1211. <path>
  1212. <move x="24" y="12"/>
  1213. <line x="0" y="12"/>
  1214. </path>
  1215. <fillstroke/>
  1216. <fillcolor color="none"/>
  1217. <path>
  1218. <move x="12" y="24"/>
  1219. <line x="0" y="12"/>
  1220. <line x="12" y="0"/>
  1221. </path>
  1222. <stroke/>
  1223. </foreground>
  1224. </shape>
  1225. <shape aspect="variable" h="50" name="link" strokewidth="inherit" w="100">
  1226. <connections/>
  1227. <foreground>
  1228. <path>
  1229. <move x="25" y="50"/>
  1230. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="0" x-axis-rotation="0" y="25"/>
  1231. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="25" x-axis-rotation="0" y="0"/>
  1232. <line x="44.5" y="0"/>
  1233. <line x="44.5" y="9"/>
  1234. <line x="25" y="9"/>
  1235. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="9" x-axis-rotation="0" y="25"/>
  1236. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="25" x-axis-rotation="0" y="41"/>
  1237. <line x="44.5" y="41"/>
  1238. <line x="44.5" y="50"/>
  1239. <close/>
  1240. <move x="75" y="41"/>
  1241. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="91" x-axis-rotation="0" y="25"/>
  1242. <arc large-arc-flag="0" rx="16" ry="16" sweep-flag="0" x="75" x-axis-rotation="0" y="9"/>
  1243. <line x="55.5" y="9"/>
  1244. <line x="55.5" y="0"/>
  1245. <line x="75" y="0"/>
  1246. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="100" x-axis-rotation="0" y="25"/>
  1247. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="75" x-axis-rotation="0" y="50"/>
  1248. <line x="55.5" y="50"/>
  1249. <line x="55.5" y="41"/>
  1250. <close/>
  1251. <move x="69" y="29.5"/>
  1252. <line x="31" y="29.5"/>
  1253. <line x="31" y="20.5"/>
  1254. <line x="69" y="20.5"/>
  1255. <close/>
  1256. </path>
  1257. <fillstroke/>
  1258. </foreground>
  1259. </shape>
  1260. <shape aspect="variable" h="100" name="location" strokewidth="inherit" w="60">
  1261. <connections/>
  1262. <foreground>
  1263. <path>
  1264. <move x="0" y="30"/>
  1265. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="60" x-axis-rotation="0" y="30"/>
  1266. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="30" x-axis-rotation="0" y="100"/>
  1267. <arc large-arc-flag="0" rx="100" ry="100" sweep-flag="1" x="0" x-axis-rotation="0" y="30"/>
  1268. <close/>
  1269. <move x="15" y="30"/>
  1270. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="30" x-axis-rotation="0" y="45"/>
  1271. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="45" x-axis-rotation="0" y="30"/>
  1272. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="30" x-axis-rotation="0" y="15"/>
  1273. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="0" x="15" x-axis-rotation="0" y="30"/>
  1274. <close/>
  1275. </path>
  1276. <fillstroke/>
  1277. </foreground>
  1278. </shape>
  1279. <shape aspect="variable" h="60" name="mail" strokewidth="inherit" w="100">
  1280. <connections/>
  1281. <foreground>
  1282. <save/>
  1283. <strokecolor color="none"/>
  1284. <path>
  1285. <move x="0" y="3"/>
  1286. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="0"/>
  1287. <line x="97" y="0"/>
  1288. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="100" x-axis-rotation="0" y="3"/>
  1289. <line x="100" y="57"/>
  1290. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="97" x-axis-rotation="0" y="60"/>
  1291. <line x="3" y="60"/>
  1292. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="57"/>
  1293. <close/>
  1294. </path>
  1295. <fill/>
  1296. <restore/>
  1297. <rect/>
  1298. <stroke/>
  1299. <fillcolor color="none"/>
  1300. <linecap cap="round"/>
  1301. <path>
  1302. <move x="5" y="6"/>
  1303. <line x="50" y="32"/>
  1304. <line x="95" y="6"/>
  1305. </path>
  1306. <stroke/>
  1307. </foreground>
  1308. </shape>
  1309. <shape aspect="variable" h="78" name="menu" strokewidth="inherit" w="100">
  1310. <connections/>
  1311. <foreground>
  1312. <rect h="24" w="24" x="0" y="0"/>
  1313. <fillstroke/>
  1314. <rect h="24" w="24" x="0" y="27"/>
  1315. <fillstroke/>
  1316. <rect h="24" w="24" x="0" y="54"/>
  1317. <fillstroke/>
  1318. <rect h="24" w="73" x="27" y="0"/>
  1319. <fillstroke/>
  1320. <rect h="24" w="73" x="27" y="27"/>
  1321. <fillstroke/>
  1322. <rect h="24" w="73" x="27" y="54"/>
  1323. <fillstroke/>
  1324. </foreground>
  1325. </shape>
  1326. <shape aspect="variable" h="43" name="message" strokewidth="inherit" w="48">
  1327. <connections/>
  1328. <foreground>
  1329. <save/>
  1330. <strokecolor color="none"/>
  1331. <path>
  1332. <move x="0" y="43"/>
  1333. <line x="0" y="5"/>
  1334. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  1335. <line x="43" y="0"/>
  1336. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="48" x-axis-rotation="0" y="5"/>
  1337. <line x="48" y="30"/>
  1338. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="43" x-axis-rotation="0" y="35"/>
  1339. <line x="8" y="35"/>
  1340. <close/>
  1341. </path>
  1342. <fill/>
  1343. <restore/>
  1344. <rect/>
  1345. <stroke/>
  1346. <fillcolor color="none"/>
  1347. <path>
  1348. <move x="10" y="26"/>
  1349. <line x="38" y="26"/>
  1350. </path>
  1351. <stroke/>
  1352. <path>
  1353. <move x="10" y="17.5"/>
  1354. <line x="38" y="17.5"/>
  1355. </path>
  1356. <stroke/>
  1357. <path>
  1358. <move x="10" y="9"/>
  1359. <line x="38" y="9"/>
  1360. </path>
  1361. <stroke/>
  1362. </foreground>
  1363. </shape>
  1364. <shape aspect="variable" h="91.3" name="messenger" strokewidth="inherit" w="99.3">
  1365. <connections/>
  1366. <foreground>
  1367. <strokecolor color="none"/>
  1368. <fillcolor color="#e1e1e1"/>
  1369. <path>
  1370. <move x="23.5" y="6"/>
  1371. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="29.5" x-axis-rotation="0" y="0"/>
  1372. <line x="99.3" y="0"/>
  1373. <line x="88" y="17.8"/>
  1374. <line x="88" y="61.3"/>
  1375. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="82" x-axis-rotation="0" y="67.3"/>
  1376. <line x="23.5" y="67.3"/>
  1377. <close/>
  1378. </path>
  1379. <fill/>
  1380. <fillcolor color="#0bacf4"/>
  1381. <path>
  1382. <move x="14.5" y="91.3"/>
  1383. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="10.5" x-axis-rotation="0" y="86.3"/>
  1384. <line x="10.5" y="44.8"/>
  1385. <line x="0" y="26.3"/>
  1386. <line x="71.5" y="25.8"/>
  1387. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="76.5" x-axis-rotation="0" y="30.8"/>
  1388. <line x="76.5" y="86.3"/>
  1389. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="71.5" x-axis-rotation="0" y="91.3"/>
  1390. <close/>
  1391. <close/>
  1392. </path>
  1393. <fill/>
  1394. <fillcolor color="#a7a7a7"/>
  1395. <rect h="7" w="40" x="36.5" y="12.8"/>
  1396. <fill/>
  1397. <fillcolor color="#ffffff"/>
  1398. <rect h="7" w="40" x="23.5" y="40.8"/>
  1399. <fill/>
  1400. <rect h="7" w="40" x="23.5" y="53.8"/>
  1401. <fill/>
  1402. <rect h="7" w="26.12" x="23.5" y="67.3"/>
  1403. <fill/>
  1404. </foreground>
  1405. </shape>
  1406. <shape aspect="variable" h="5" name="more" strokewidth="inherit" w="16">
  1407. <connections/>
  1408. <foreground>
  1409. <ellipse h="4" w="4" x="0" y="0.5"/>
  1410. <fillstroke/>
  1411. <ellipse h="4" w="4" x="6" y="0.5"/>
  1412. <fillstroke/>
  1413. <ellipse h="4" w="4" x="12" y="0.5"/>
  1414. <fillstroke/>
  1415. </foreground>
  1416. </shape>
  1417. <shape aspect="variable" h="136" name="more2" strokewidth="inherit" w="100">
  1418. <connections/>
  1419. <foreground>
  1420. <ellipse h="28" w="28" x="0" y="0"/>
  1421. <fillstroke/>
  1422. <ellipse h="28" w="28" x="36" y="0"/>
  1423. <fillstroke/>
  1424. <ellipse h="28" w="28" x="72" y="0"/>
  1425. <fillstroke/>
  1426. <ellipse h="28" w="28" x="0" y="36"/>
  1427. <fillstroke/>
  1428. <ellipse h="28" w="28" x="36" y="36"/>
  1429. <fillstroke/>
  1430. <ellipse h="28" w="28" x="72" y="36"/>
  1431. <fillstroke/>
  1432. <ellipse h="28" w="28" x="0" y="72"/>
  1433. <fillstroke/>
  1434. <ellipse h="28" w="28" x="36" y="72"/>
  1435. <fillstroke/>
  1436. <ellipse h="28" w="28" x="72" y="71"/>
  1437. <fillstroke/>
  1438. <ellipse h="28" w="28" x="36" y="108"/>
  1439. <fillstroke/>
  1440. </foreground>
  1441. </shape>
  1442. <shape aspect="variable" h="75.41" name="mostly cloudy" strokewidth="inherit" w="84.31">
  1443. <connections/>
  1444. <foreground>
  1445. <save/>
  1446. <strokecolor color="none"/>
  1447. <fillcolor color="#efefef"/>
  1448. <strokewidth width="0.3"/>
  1449. <path>
  1450. <move x="29.31" y="62.41"/>
  1451. <arc large-arc-flag="1" rx="30" ry="30" sweep-flag="1" x="59.31" x-axis-rotation="0" y="22.41"/>
  1452. <line x="64.31" y="22.41"/>
  1453. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="64.31" x-axis-rotation="0" y="62.41"/>
  1454. <close/>
  1455. </path>
  1456. <fill/>
  1457. <restore/>
  1458. <rect/>
  1459. <stroke/>
  1460. <strokecolor color="none"/>
  1461. <fillcolor color="#05aaf4"/>
  1462. <rect h="10" w="10" x="29.31" y="49.41"/>
  1463. <fill/>
  1464. <rect h="10" w="10" x="45.31" y="49.41"/>
  1465. <fill/>
  1466. <rect h="10" w="10" x="29.31" y="65.41"/>
  1467. <fill/>
  1468. </foreground>
  1469. </shape>
  1470. <shape aspect="variable" h="90" name="mostly sunny" strokewidth="inherit" w="100">
  1471. <connections/>
  1472. <foreground>
  1473. <strokecolor color="none"/>
  1474. <fillcolor color="#ffd759"/>
  1475. <ellipse h="90" w="90" x="0" y="0"/>
  1476. <fill/>
  1477. <strokecolor color="#dddddd"/>
  1478. <fillcolor color="#ffffff"/>
  1479. <strokewidth width="0.3"/>
  1480. <path>
  1481. <move x="45" y="75"/>
  1482. <arc large-arc-flag="1" rx="30" ry="30" sweep-flag="1" x="75" x-axis-rotation="0" y="35"/>
  1483. <line x="80" y="35"/>
  1484. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="80" x-axis-rotation="0" y="75"/>
  1485. <close/>
  1486. <close/>
  1487. </path>
  1488. <fillstroke/>
  1489. </foreground>
  1490. </shape>
  1491. <shape aspect="variable" h="24.31" name="music" strokewidth="inherit" w="16.33">
  1492. <connections/>
  1493. <foreground>
  1494. <path>
  1495. <move x="10.83" y="20"/>
  1496. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5.33" x-axis-rotation="0" y="24"/>
  1497. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0.33" x-axis-rotation="0" y="19"/>
  1498. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="8.03" x-axis-rotation="0" y="14"/>
  1499. <line x="8.03" y="0"/>
  1500. <line x="16.33" y="0"/>
  1501. <line x="16.33" y="5.3"/>
  1502. <line x="10.83" y="5.3"/>
  1503. <close/>
  1504. </path>
  1505. <fillstroke/>
  1506. </foreground>
  1507. </shape>
  1508. <shape aspect="variable" h="24" name="navigate" strokewidth="inherit" w="24">
  1509. <connections/>
  1510. <foreground>
  1511. <path>
  1512. <move x="12" y="0"/>
  1513. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="24" x-axis-rotation="0" y="12"/>
  1514. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="12" x-axis-rotation="0" y="24"/>
  1515. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="0" x-axis-rotation="0" y="12"/>
  1516. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="12" x-axis-rotation="0" y="0"/>
  1517. <close/>
  1518. <move x="19" y="5"/>
  1519. <line x="9.5" y="9.5"/>
  1520. <line x="5" y="19"/>
  1521. <line x="14.5" y="14.5"/>
  1522. <line x="19" y="5"/>
  1523. <close/>
  1524. <move x="12" y="10.5"/>
  1525. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="13.5" x-axis-rotation="0" y="12"/>
  1526. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="12" x-axis-rotation="0" y="13.5"/>
  1527. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="10.5" x-axis-rotation="0" y="12"/>
  1528. <arc large-arc-flag="0" rx="1.5" ry="1.5" sweep-flag="1" x="12" x-axis-rotation="0" y="10.5"/>
  1529. <close/>
  1530. </path>
  1531. <fillstroke/>
  1532. </foreground>
  1533. </shape>
  1534. <shape aspect="variable" h="24" name="nearby" strokewidth="inherit" w="24">
  1535. <connections/>
  1536. <foreground>
  1537. <path>
  1538. <move x="0" y="12"/>
  1539. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="12" x-axis-rotation="0" y="0"/>
  1540. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="24" x-axis-rotation="0" y="12"/>
  1541. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="12" x-axis-rotation="0" y="24"/>
  1542. <arc large-arc-flag="0" rx="12" ry="12" sweep-flag="1" x="0" x-axis-rotation="0" y="12"/>
  1543. <close/>
  1544. <move x="12" y="22"/>
  1545. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="22" x-axis-rotation="0" y="12"/>
  1546. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="12" x-axis-rotation="0" y="2"/>
  1547. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="2" x-axis-rotation="0" y="12"/>
  1548. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="0" x="12" x-axis-rotation="0" y="22"/>
  1549. <close/>
  1550. <move x="12" y="19"/>
  1551. <line x="7.5" y="12"/>
  1552. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="12" x-axis-rotation="0" y="5"/>
  1553. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="16.5" x-axis-rotation="0" y="12"/>
  1554. <close/>
  1555. <move x="12" y="11"/>
  1556. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="13" x-axis-rotation="0" y="10"/>
  1557. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="12" x-axis-rotation="0" y="9"/>
  1558. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="11" x-axis-rotation="0" y="10"/>
  1559. <arc large-arc-flag="0" rx="1" ry="1" sweep-flag="0" x="12" x-axis-rotation="0" y="11"/>
  1560. <close/>
  1561. </path>
  1562. <fillstroke/>
  1563. </foreground>
  1564. </shape>
  1565. <shape aspect="variable" h="96.52" name="office" strokewidth="inherit" w="84.48">
  1566. <connections/>
  1567. <foreground>
  1568. <path>
  1569. <move x="30.41" y="68"/>
  1570. <arc large-arc-flag="0" rx="16.3" ry="16.3" sweep-flag="1" x="4.41" x-axis-rotation="0" y="88"/>
  1571. <arc large-arc-flag="0" rx="16.3" ry="16.3" sweep-flag="1" x="21.91" x-axis-rotation="0" y="62.5"/>
  1572. <line x="76.41" y="0"/>
  1573. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="77.41" x-axis-rotation="0" y="20"/>
  1574. <line x="55.41" y="46"/>
  1575. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="55.91" x-axis-rotation="0" y="53.5"/>
  1576. <line x="64.41" y="65"/>
  1577. <arc large-arc-flag="0" rx="14.5" ry="14.5" sweep-flag="1" x="76.41" x-axis-rotation="0" y="91"/>
  1578. <arc large-arc-flag="0" rx="14.5" ry="14.5" sweep-flag="1" x="57.41" x-axis-rotation="0" y="70"/>
  1579. <line x="49.41" y="60"/>
  1580. <arc large-arc-flag="0" rx="11" ry="11" sweep-flag="1" x="38.41" x-axis-rotation="0" y="59"/>
  1581. <line x="30.41" y="68"/>
  1582. <close/>
  1583. <move x="27.41" y="43"/>
  1584. <line x="10.41" y="23"/>
  1585. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="10.41" x-axis-rotation="0" y="2"/>
  1586. <line x="37.41" y="31"/>
  1587. <close/>
  1588. <move x="44.41" y="55"/>
  1589. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="48.41" x-axis-rotation="0" y="51"/>
  1590. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="44.41" x-axis-rotation="0" y="47"/>
  1591. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="40.41" x-axis-rotation="0" y="51"/>
  1592. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="0" x="44.41" x-axis-rotation="0" y="55"/>
  1593. <close/>
  1594. <move x="68.91" y="86.5"/>
  1595. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="76.91" x-axis-rotation="0" y="78.5"/>
  1596. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="68.91" x-axis-rotation="0" y="70.5"/>
  1597. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="60.91" x-axis-rotation="0" y="78.5"/>
  1598. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="68.91" x-axis-rotation="0" y="86.5"/>
  1599. <close/>
  1600. <move x="17.41" y="86"/>
  1601. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="25.41" x-axis-rotation="0" y="78"/>
  1602. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="17.41" x-axis-rotation="0" y="70"/>
  1603. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="9.41" x-axis-rotation="0" y="78"/>
  1604. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="0" x="17.41" x-axis-rotation="0" y="86"/>
  1605. <close/>
  1606. </path>
  1607. <fillstroke/>
  1608. </foreground>
  1609. </shape>
  1610. <shape aspect="variable" h="100" name="opt" strokewidth="inherit" w="100">
  1611. <connections/>
  1612. <foreground>
  1613. <fillcolor color="none"/>
  1614. <path>
  1615. <move x="0" y="0"/>
  1616. <line x="20" y="0"/>
  1617. <line x="80" y="100"/>
  1618. <line x="100" y="100"/>
  1619. </path>
  1620. <stroke/>
  1621. <path>
  1622. <move x="80" y="0"/>
  1623. <line x="100" y="0"/>
  1624. </path>
  1625. <stroke/>
  1626. </foreground>
  1627. </shape>
  1628. <shape aspect="variable" h="99" name="photos" strokewidth="inherit" w="99">
  1629. <connections/>
  1630. <foreground>
  1631. <strokecolor color="none"/>
  1632. <fillcolor color="#ffc61b"/>
  1633. <path>
  1634. <move x="49.5" y="37.5"/>
  1635. <arc large-arc-flag="0" rx="2.5" ry="10" sweep-flag="1" x="47.5" x-axis-rotation="0" y="47.5"/>
  1636. <arc large-arc-flag="0" rx="10" ry="2.5" sweep-flag="1" x="37.5" x-axis-rotation="0" y="49.5"/>
  1637. <line x="0" y="49.5"/>
  1638. <line x="24" y="24"/>
  1639. <line x="49.5" y="24"/>
  1640. <close/>
  1641. </path>
  1642. <fill/>
  1643. <fillcolor color="#ffa014"/>
  1644. <path>
  1645. <move x="49.5" y="40.5"/>
  1646. <arc large-arc-flag="0" rx="2.5" ry="10" sweep-flag="1" x="47.5" x-axis-rotation="0" y="47.5"/>
  1647. <line x="24" y="24"/>
  1648. <line x="49.5" y="24"/>
  1649. <close/>
  1650. </path>
  1651. <fill/>
  1652. <fillcolor color="#4688f4"/>
  1653. <path>
  1654. <move x="49.5" y="61.5"/>
  1655. <arc large-arc-flag="0" rx="2.5" ry="10" sweep-flag="1" x="51.5" x-axis-rotation="0" y="51.5"/>
  1656. <arc large-arc-flag="0" rx="10" ry="2.5" sweep-flag="1" x="61.5" x-axis-rotation="0" y="49.5"/>
  1657. <line x="99" y="49.5"/>
  1658. <line x="75" y="75"/>
  1659. <line x="49.5" y="75"/>
  1660. <close/>
  1661. </path>
  1662. <fill/>
  1663. <fillcolor color="#396cd7"/>
  1664. <path>
  1665. <move x="49.5" y="58.5"/>
  1666. <arc large-arc-flag="0" rx="2.5" ry="10" sweep-flag="1" x="51.5" x-axis-rotation="0" y="51.5"/>
  1667. <line x="75" y="75"/>
  1668. <line x="49.5" y="75"/>
  1669. <close/>
  1670. </path>
  1671. <fill/>
  1672. <fillcolor color="#dd4f43"/>
  1673. <path>
  1674. <move x="61.5" y="49.5"/>
  1675. <arc large-arc-flag="0" rx="10" ry="2.5" sweep-flag="1" x="51.5" x-axis-rotation="0" y="47.5"/>
  1676. <arc large-arc-flag="0" rx="2.5" ry="10" sweep-flag="1" x="49.5" x-axis-rotation="0" y="37.5"/>
  1677. <line x="49.5" y="0"/>
  1678. <line x="75" y="24"/>
  1679. <line x="75" y="49.5"/>
  1680. <close/>
  1681. </path>
  1682. <fill/>
  1683. <fillcolor color="#b01d5e"/>
  1684. <path>
  1685. <move x="58.5" y="49.5"/>
  1686. <arc large-arc-flag="0" rx="10" ry="2.5" sweep-flag="1" x="51.5" x-axis-rotation="0" y="47.5"/>
  1687. <line x="75" y="24"/>
  1688. <line x="75" y="49.5"/>
  1689. <close/>
  1690. </path>
  1691. <fill/>
  1692. <fillcolor color="#8ec54f"/>
  1693. <path>
  1694. <move x="37.5" y="49.5"/>
  1695. <arc large-arc-flag="0" rx="10" ry="2.5" sweep-flag="1" x="47.5" x-axis-rotation="0" y="51.5"/>
  1696. <arc large-arc-flag="0" rx="2.5" ry="10" sweep-flag="1" x="49.5" x-axis-rotation="0" y="61.5"/>
  1697. <line x="49.5" y="99"/>
  1698. <line x="24" y="75"/>
  1699. <line x="24" y="49.5"/>
  1700. <close/>
  1701. </path>
  1702. <fill/>
  1703. <fillcolor color="#1ca261"/>
  1704. <path>
  1705. <move x="40.5" y="49.5"/>
  1706. <arc large-arc-flag="0" rx="10" ry="2.5" sweep-flag="1" x="47.5" x-axis-rotation="0" y="51.5"/>
  1707. <line x="24" y="74.9"/>
  1708. <line x="24" y="49.5"/>
  1709. <close/>
  1710. </path>
  1711. <fill/>
  1712. </foreground>
  1713. </shape>
  1714. <shape aspect="variable" h="24" name="plus" strokewidth="inherit" w="24">
  1715. <connections/>
  1716. <foreground>
  1717. <fillcolor color="none"/>
  1718. <path>
  1719. <move x="0" y="12"/>
  1720. <line x="24" y="12"/>
  1721. </path>
  1722. <stroke/>
  1723. <path>
  1724. <move x="12" y="0"/>
  1725. <line x="12" y="24"/>
  1726. </path>
  1727. <stroke/>
  1728. </foreground>
  1729. </shape>
  1730. <shape aspect="variable" h="16" name="preferences" strokewidth="inherit" w="24">
  1731. <connections/>
  1732. <foreground>
  1733. <strokecolor color="none"/>
  1734. <rect h="3" w="24" x="0" y="0"/>
  1735. <fill/>
  1736. <rect h="3" w="24" x="0" y="6.5"/>
  1737. <fill/>
  1738. <rect h="3" w="24" x="0" y="13"/>
  1739. <fill/>
  1740. </foreground>
  1741. </shape>
  1742. <shape aspect="variable" h="67.21" name="preview" strokewidth="inherit" w="100">
  1743. <connections/>
  1744. <foreground>
  1745. <path>
  1746. <move x="0" y="33.6"/>
  1747. <arc large-arc-flag="0" rx="54" ry="54" sweep-flag="1" x="100" x-axis-rotation="0" y="33.6"/>
  1748. <arc large-arc-flag="0" rx="54" ry="54" sweep-flag="1" x="0" x-axis-rotation="0" y="33.6"/>
  1749. <close/>
  1750. <move x="50" y="57.6"/>
  1751. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="74" x-axis-rotation="0" y="33.6"/>
  1752. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="50" x-axis-rotation="0" y="9.6"/>
  1753. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="26" x-axis-rotation="0" y="33.6"/>
  1754. <arc large-arc-flag="0" rx="24" ry="24" sweep-flag="0" x="50" x-axis-rotation="0" y="57.6"/>
  1755. <close/>
  1756. <move x="50" y="46.6"/>
  1757. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="37" x-axis-rotation="0" y="33.6"/>
  1758. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="50" x-axis-rotation="0" y="20.6"/>
  1759. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="63" x-axis-rotation="0" y="33.6"/>
  1760. <arc large-arc-flag="0" rx="13" ry="13" sweep-flag="1" x="50" x-axis-rotation="0" y="46.6"/>
  1761. <close/>
  1762. </path>
  1763. <fillstroke/>
  1764. </foreground>
  1765. </shape>
  1766. <shape aspect="variable" h="21" name="print" strokewidth="inherit" w="24">
  1767. <connections/>
  1768. <foreground>
  1769. <save/>
  1770. <path>
  1771. <move x="0" y="17"/>
  1772. <line x="0" y="9.5"/>
  1773. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="3.5" x-axis-rotation="0" y="6"/>
  1774. <line x="20.5" y="6"/>
  1775. <arc large-arc-flag="0" rx="3.5" ry="3.5" sweep-flag="1" x="24" x-axis-rotation="0" y="9.5"/>
  1776. <line x="24" y="17"/>
  1777. <close/>
  1778. </path>
  1779. <fillstroke/>
  1780. <fillcolor color="#ffffff"/>
  1781. <rect h="9" w="12" x="6" y="12"/>
  1782. <fillstroke/>
  1783. <restore/>
  1784. <rect/>
  1785. <stroke/>
  1786. <rect h="3" w="12" x="6" y="0"/>
  1787. <fillstroke/>
  1788. <strokecolor color="none"/>
  1789. <fillcolor color="#ffffff"/>
  1790. <ellipse h="2" w="2" x="20" y="10.5"/>
  1791. <fill/>
  1792. </foreground>
  1793. </shape>
  1794. <shape aspect="variable" h="99" name="promotions" strokewidth="inherit" w="99">
  1795. <connections/>
  1796. <foreground>
  1797. <path>
  1798. <move x="0" y="45"/>
  1799. <line x="0" y="0"/>
  1800. <line x="45" y="0"/>
  1801. <line x="97" y="51"/>
  1802. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="97" x-axis-rotation="0" y="59"/>
  1803. <line x="59" y="97"/>
  1804. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="51" x-axis-rotation="0" y="97"/>
  1805. <close/>
  1806. <move x="20" y="27"/>
  1807. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="27" x-axis-rotation="0" y="20"/>
  1808. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="20" x-axis-rotation="0" y="13"/>
  1809. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="13" x-axis-rotation="0" y="20"/>
  1810. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="20" x-axis-rotation="0" y="27"/>
  1811. <close/>
  1812. </path>
  1813. <fillstroke/>
  1814. </foreground>
  1815. </shape>
  1816. <shape aspect="variable" h="88" name="radio" strokewidth="inherit" w="100">
  1817. <connections/>
  1818. <foreground>
  1819. <path>
  1820. <move x="5" y="88"/>
  1821. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="83"/>
  1822. <line x="0" y="33"/>
  1823. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="28"/>
  1824. <line x="45" y="0"/>
  1825. <line x="48" y="5"/>
  1826. <line x="15" y="28"/>
  1827. <line x="95" y="28"/>
  1828. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="33"/>
  1829. <line x="100" y="83"/>
  1830. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="88"/>
  1831. <close/>
  1832. <move x="20" y="82"/>
  1833. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="34" x-axis-rotation="0" y="68"/>
  1834. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="20" x-axis-rotation="0" y="54"/>
  1835. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="6" x-axis-rotation="0" y="68"/>
  1836. <arc large-arc-flag="0" rx="14" ry="14" sweep-flag="0" x="20" x-axis-rotation="0" y="82"/>
  1837. <close/>
  1838. <move x="93" y="48"/>
  1839. <line x="93" y="35"/>
  1840. <line x="7" y="35"/>
  1841. <line x="7" y="48"/>
  1842. <close/>
  1843. </path>
  1844. <fillstroke/>
  1845. </foreground>
  1846. </shape>
  1847. <shape aspect="variable" h="100" name="radiobutton" strokewidth="inherit" w="100">
  1848. <connections/>
  1849. <foreground>
  1850. <save/>
  1851. <fillcolor color="none"/>
  1852. <ellipse h="100" w="100" x="0" y="0"/>
  1853. <stroke/>
  1854. <restore/>
  1855. <rect/>
  1856. <stroke/>
  1857. <strokecolor color="none"/>
  1858. <ellipse h="74" w="74" x="13" y="13"/>
  1859. <fill/>
  1860. </foreground>
  1861. </shape>
  1862. <shape aspect="variable" h="28.21" name="recents" strokewidth="inherit" w="28.21">
  1863. <connections/>
  1864. <foreground>
  1865. <path>
  1866. <move x="3" y="13.78"/>
  1867. <line x="5" y="13.78"/>
  1868. <line x="2" y="16.78"/>
  1869. <line x="0" y="13.78"/>
  1870. <line x="1" y="13.78"/>
  1871. <arc large-arc-flag="1" rx="13" ry="13" sweep-flag="1" x="2.5" x-axis-rotation="0" y="19.78"/>
  1872. <line x="4.2" y="18.78"/>
  1873. <arc large-arc-flag="1" rx="11" ry="11" sweep-flag="0" x="3" x-axis-rotation="0" y="13.78"/>
  1874. <close/>
  1875. <move x="13" y="8.78"/>
  1876. <line x="15" y="8.78"/>
  1877. <line x="15" y="13.48"/>
  1878. <line x="20.6" y="18.48"/>
  1879. <line x="19.4" y="19.88"/>
  1880. <line x="13" y="14.28"/>
  1881. <close/>
  1882. </path>
  1883. <fillstroke/>
  1884. </foreground>
  1885. </shape>
  1886. <shape aspect="variable" h="92.63" name="recipes" strokewidth="inherit" w="90.21">
  1887. <connections/>
  1888. <foreground>
  1889. <path>
  1890. <move x="45.15" y="87.07"/>
  1891. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="23.15" x-axis-rotation="0" y="86.07"/>
  1892. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="1" x="3.15" x-axis-rotation="0" y="63.07"/>
  1893. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="2.15" x-axis-rotation="0" y="36.07"/>
  1894. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="29.15" x-axis-rotation="0" y="19.07"/>
  1895. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="21.15" x-axis-rotation="0" y="1.07"/>
  1896. <arc large-arc-flag="0" rx="18" ry="18" sweep-flag="1" x="37.15" x-axis-rotation="0" y="6.07"/>
  1897. <arc large-arc-flag="0" rx="28" ry="28" sweep-flag="1" x="45.15" x-axis-rotation="0" y="19.07"/>
  1898. <line x="45.15" y="0.07"/>
  1899. <line x="54.15" y="0.07"/>
  1900. <line x="53.15" y="21.07"/>
  1901. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="78.15" x-axis-rotation="0" y="22.07"/>
  1902. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="1" x="90.15" x-axis-rotation="0" y="46.07"/>
  1903. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="86.15" x-axis-rotation="0" y="66.07"/>
  1904. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="70.15" x-axis-rotation="0" y="86.07"/>
  1905. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="1" x="45.15" x-axis-rotation="0" y="87.07"/>
  1906. <close/>
  1907. <move x="46.15" y="82.07"/>
  1908. <arc large-arc-flag="0" rx="300" ry="300" sweep-flag="0" x="46.15" x-axis-rotation="0" y="36.07"/>
  1909. <arc large-arc-flag="0" rx="20" ry="10" sweep-flag="0" x="28.15" x-axis-rotation="0" y="26.07"/>
  1910. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="9.15" x-axis-rotation="0" y="39.07"/>
  1911. <arc large-arc-flag="0" rx="35" ry="35" sweep-flag="0" x="11.15" x-axis-rotation="0" y="64.07"/>
  1912. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="24.15" x-axis-rotation="0" y="80.07"/>
  1913. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="41.15" x-axis-rotation="0" y="85.07"/>
  1914. <arc large-arc-flag="0" rx="8" ry="4" sweep-flag="0" x="46.15" x-axis-rotation="0" y="82.07"/>
  1915. <close/>
  1916. <move x="33.15" y="64.07"/>
  1917. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="28.15" x-axis-rotation="0" y="59.07"/>
  1918. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="28.15" x-axis-rotation="0" y="52.07"/>
  1919. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="33.65" x-axis-rotation="0" y="45.07"/>
  1920. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="39.15" x-axis-rotation="0" y="51.07"/>
  1921. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="38.15" x-axis-rotation="0" y="60.07"/>
  1922. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="33.15" x-axis-rotation="0" y="64.07"/>
  1923. <close/>
  1924. </path>
  1925. <fillstroke/>
  1926. </foreground>
  1927. </shape>
  1928. <shape aspect="variable" h="24" name="rects" strokewidth="inherit" w="24">
  1929. <connections/>
  1930. <foreground>
  1931. <rect h="11" w="11" x="0" y="0"/>
  1932. <fillstroke/>
  1933. <rect h="11" w="11" x="13" y="0"/>
  1934. <fillstroke/>
  1935. <rect h="11" w="11" x="0" y="13"/>
  1936. <fillstroke/>
  1937. <rect h="11" w="11" x="13" y="13"/>
  1938. <fillstroke/>
  1939. </foreground>
  1940. </shape>
  1941. <shape aspect="variable" h="112.62" name="refresh" strokewidth="inherit" w="98.96">
  1942. <connections/>
  1943. <foreground>
  1944. <path>
  1945. <move x="88.96" y="87.18"/>
  1946. <arc large-arc-flag="1" rx="48" ry="48" sweep-flag="1" x="88.36" x-axis-rotation="0" y="25.08"/>
  1947. <line x="79.86" y="33.48"/>
  1948. <line x="98.96" y="33.48"/>
  1949. <line x="98.96" y="14.28"/>
  1950. <line x="91.26" y="21.98"/>
  1951. <arc large-arc-flag="1" rx="52" ry="52" sweep-flag="0" x="91.96" x-axis-rotation="0" y="89.88"/>
  1952. <close/>
  1953. </path>
  1954. <fillstroke/>
  1955. </foreground>
  1956. </shape>
  1957. <shape aspect="variable" h="100" name="remove" strokewidth="inherit" w="78">
  1958. <connections/>
  1959. <foreground>
  1960. <path>
  1961. <move x="71" y="90"/>
  1962. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="61" x-axis-rotation="0" y="100"/>
  1963. <line x="16" y="100"/>
  1964. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="6" x-axis-rotation="0" y="90"/>
  1965. <line x="6" y="23"/>
  1966. <line x="71" y="23"/>
  1967. <close/>
  1968. <move x="0" y="16"/>
  1969. <line x="0" y="6.5"/>
  1970. <line x="20.5" y="6.5"/>
  1971. <line x="26.5" y="0"/>
  1972. <line x="51.5" y="0"/>
  1973. <line x="57.5" y="6.5"/>
  1974. <line x="78" y="6.5"/>
  1975. <line x="78" y="16"/>
  1976. <close/>
  1977. </path>
  1978. <fillstroke/>
  1979. </foreground>
  1980. </shape>
  1981. <shape aspect="variable" h="22" name="reply" strokewidth="inherit" w="24">
  1982. <connections/>
  1983. <foreground>
  1984. <path>
  1985. <move x="0" y="22"/>
  1986. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="14" x-axis-rotation="0" y="14"/>
  1987. <line x="14" y="20"/>
  1988. <line x="24" y="10"/>
  1989. <line x="14" y="0"/>
  1990. <line x="14" y="6"/>
  1991. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="0" x-axis-rotation="0" y="22"/>
  1992. <close/>
  1993. </path>
  1994. <fillstroke/>
  1995. </foreground>
  1996. </shape>
  1997. <shape aspect="variable" h="15" name="scale" strokewidth="inherit" w="100">
  1998. <connections/>
  1999. <foreground>
  2000. <fillcolor color="none"/>
  2001. <path>
  2002. <move x="0" y="0"/>
  2003. <line x="100" y="0"/>
  2004. </path>
  2005. <stroke/>
  2006. <strokewidth width="1"/>
  2007. <path>
  2008. <move x="0" y="5"/>
  2009. <line x="0" y="10"/>
  2010. </path>
  2011. <stroke/>
  2012. <path>
  2013. <move x="10" y="5"/>
  2014. <line x="10" y="15"/>
  2015. </path>
  2016. <stroke/>
  2017. <path>
  2018. <move x="20" y="5"/>
  2019. <line x="20" y="10"/>
  2020. </path>
  2021. <stroke/>
  2022. <path>
  2023. <move x="30" y="5"/>
  2024. <line x="30" y="15"/>
  2025. </path>
  2026. <stroke/>
  2027. <path>
  2028. <move x="40" y="5"/>
  2029. <line x="40" y="10"/>
  2030. </path>
  2031. <stroke/>
  2032. <path>
  2033. <move x="50" y="5"/>
  2034. <line x="50" y="15"/>
  2035. </path>
  2036. <stroke/>
  2037. <path>
  2038. <move x="60" y="5"/>
  2039. <line x="60" y="10"/>
  2040. </path>
  2041. <stroke/>
  2042. <path>
  2043. <move x="70" y="5"/>
  2044. <line x="70" y="15"/>
  2045. </path>
  2046. <stroke/>
  2047. <path>
  2048. <move x="80" y="5"/>
  2049. <line x="80" y="10"/>
  2050. </path>
  2051. <stroke/>
  2052. <path>
  2053. <move x="90" y="5"/>
  2054. <line x="90" y="15"/>
  2055. </path>
  2056. <stroke/>
  2057. <path>
  2058. <move x="100" y="5"/>
  2059. <line x="100" y="10"/>
  2060. </path>
  2061. <stroke/>
  2062. </foreground>
  2063. </shape>
  2064. <shape aspect="variable" h="24" name="search" strokewidth="inherit" w="24">
  2065. <connections/>
  2066. <foreground>
  2067. <save/>
  2068. <fillcolor color="none"/>
  2069. <ellipse h="16" w="16" x="0" y="0"/>
  2070. <stroke/>
  2071. <restore/>
  2072. <rect/>
  2073. <stroke/>
  2074. <path>
  2075. <move x="13.5" y="13.5"/>
  2076. <line x="24" y="24"/>
  2077. </path>
  2078. <fillstroke/>
  2079. </foreground>
  2080. </shape>
  2081. <shape aspect="variable" h="100" name="send" strokewidth="inherit" w="100">
  2082. <connections/>
  2083. <foreground>
  2084. <path>
  2085. <move x="0" y="43"/>
  2086. <line x="0" y="0"/>
  2087. <line x="100" y="50"/>
  2088. <line x="0" y="100"/>
  2089. <line x="0" y="57"/>
  2090. <line x="80" y="50"/>
  2091. <close/>
  2092. </path>
  2093. <fillstroke/>
  2094. </foreground>
  2095. </shape>
  2096. <shape aspect="variable" h="16" name="settings" strokewidth="inherit" w="5">
  2097. <connections/>
  2098. <foreground>
  2099. <ellipse h="4" w="4" x="0.5" y="0"/>
  2100. <fillstroke/>
  2101. <ellipse h="4" w="4" x="0.5" y="6"/>
  2102. <fillstroke/>
  2103. <ellipse h="4" w="4" x="0.5" y="12"/>
  2104. <fillstroke/>
  2105. </foreground>
  2106. </shape>
  2107. <shape aspect="variable" h="24" name="share" strokewidth="inherit" w="21">
  2108. <connections/>
  2109. <foreground>
  2110. <path>
  2111. <move x="18" y="3"/>
  2112. <line x="3" y="12"/>
  2113. </path>
  2114. <fillstroke/>
  2115. <path>
  2116. <move x="18" y="21"/>
  2117. <line x="3" y="12"/>
  2118. </path>
  2119. <fillstroke/>
  2120. <ellipse h="6" w="6" x="15" y="18"/>
  2121. <fillstroke/>
  2122. <ellipse h="6" w="6" x="0" y="9"/>
  2123. <fillstroke/>
  2124. <ellipse h="6" w="6" x="15" y="0"/>
  2125. <fillstroke/>
  2126. </foreground>
  2127. </shape>
  2128. <shape aspect="variable" h="24" name="share2" strokewidth="inherit" w="24">
  2129. <connections/>
  2130. <foreground>
  2131. <strokewidth width="0.5"/>
  2132. <path>
  2133. <move x="12" y="0"/>
  2134. <line x="24" y="12"/>
  2135. <line x="12" y="24"/>
  2136. <line x="0" y="12"/>
  2137. <close/>
  2138. <close/>
  2139. <move x="10" y="16"/>
  2140. <line x="10" y="12"/>
  2141. <line x="15" y="12"/>
  2142. <line x="15" y="14"/>
  2143. <line x="18" y="11"/>
  2144. <line x="15" y="8"/>
  2145. <line x="15" y="10"/>
  2146. <line x="8" y="10"/>
  2147. <line x="8" y="16"/>
  2148. <close/>
  2149. </path>
  2150. <fillstroke/>
  2151. </foreground>
  2152. </shape>
  2153. <shape aspect="variable" h="73.4" name="share3" strokewidth="inherit" w="100">
  2154. <connections/>
  2155. <foreground>
  2156. <path>
  2157. <move x="28" y="73.4"/>
  2158. <line x="28" y="61.5"/>
  2159. <arc large-arc-flag="0" rx="30" ry="20" sweep-flag="1" x="40" x-axis-rotation="0" y="51.5"/>
  2160. <arc large-arc-flag="0" rx="40" ry="20" sweep-flag="1" x="64" x-axis-rotation="0" y="47"/>
  2161. <arc large-arc-flag="0" rx="40" ry="20" sweep-flag="1" x="87" x-axis-rotation="0" y="51.5"/>
  2162. <arc large-arc-flag="0" rx="30" ry="20" sweep-flag="1" x="100" x-axis-rotation="0" y="61.5"/>
  2163. <line x="100" y="73.4"/>
  2164. <close/>
  2165. <move x="63.5" y="37"/>
  2166. <arc large-arc-flag="0" rx="18.5" ry="18.5" sweep-flag="1" x="45" x-axis-rotation="0" y="18.5"/>
  2167. <arc large-arc-flag="0" rx="18.5" ry="18.5" sweep-flag="1" x="63.5" x-axis-rotation="0" y="0"/>
  2168. <arc large-arc-flag="0" rx="18.5" ry="18.5" sweep-flag="1" x="82" x-axis-rotation="0" y="18.5"/>
  2169. <arc large-arc-flag="0" rx="18.5" ry="18.5" sweep-flag="1" x="64" x-axis-rotation="0" y="37"/>
  2170. <close/>
  2171. <move x="35.5" y="36"/>
  2172. <line x="22" y="36"/>
  2173. <line x="22" y="50"/>
  2174. <line x="14.5" y="50"/>
  2175. <line x="14.5" y="36"/>
  2176. <line x="0" y="36"/>
  2177. <line x="0" y="28.5"/>
  2178. <line x="14.5" y="28.5"/>
  2179. <line x="14.5" y="15"/>
  2180. <line x="22" y="15"/>
  2181. <line x="22" y="28.5"/>
  2182. <line x="35.5" y="28.5"/>
  2183. <close/>
  2184. </path>
  2185. <fillstroke/>
  2186. </foreground>
  2187. </shape>
  2188. <shape aspect="variable" h="24" name="sheet" strokewidth="inherit" w="24">
  2189. <connections/>
  2190. <foreground>
  2191. <path>
  2192. <move x="0" y="3"/>
  2193. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="0"/>
  2194. <line x="21" y="0"/>
  2195. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="24" x-axis-rotation="0" y="3"/>
  2196. <line x="24" y="21"/>
  2197. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="24"/>
  2198. <line x="3" y="24"/>
  2199. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="21"/>
  2200. <close/>
  2201. <move x="3" y="6"/>
  2202. <line x="3" y="18"/>
  2203. <line x="21" y="18"/>
  2204. <line x="21" y="6"/>
  2205. <close/>
  2206. </path>
  2207. <fillstroke/>
  2208. </foreground>
  2209. </shape>
  2210. <shape aspect="variable" h="100" name="sheets" strokewidth="inherit" w="71.5">
  2211. <connections/>
  2212. <foreground>
  2213. <save/>
  2214. <save/>
  2215. <path>
  2216. <move x="6" y="100"/>
  2217. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="0" x-axis-rotation="0" y="94"/>
  2218. <line x="0" y="6"/>
  2219. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
  2220. <line x="44" y="0"/>
  2221. <line x="71.5" y="28"/>
  2222. <line x="71.5" y="94"/>
  2223. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="65.5" x-axis-rotation="0" y="100"/>
  2224. <close/>
  2225. </path>
  2226. <fillstroke/>
  2227. <strokecolor color="none"/>
  2228. <fillcolor color="#ffffff"/>
  2229. <rect h="32.5" w="36" x="18" y="48.5"/>
  2230. <fill/>
  2231. <restore/>
  2232. <rect/>
  2233. <stroke/>
  2234. <strokecolor color="none"/>
  2235. <rect h="4" w="10.5" x="23" y="53.5"/>
  2236. <fill/>
  2237. <rect h="4" w="10.5" x="23" y="62.5"/>
  2238. <fill/>
  2239. <rect h="4" w="10.5" x="23" y="71.5"/>
  2240. <fill/>
  2241. <rect h="4" w="10.5" x="38.5" y="53.5"/>
  2242. <fill/>
  2243. <rect h="4" w="10.5" x="38.5" y="62.5"/>
  2244. <fill/>
  2245. <rect h="4" w="10.5" x="38.5" y="71.5"/>
  2246. <fill/>
  2247. <restore/>
  2248. <rect/>
  2249. <stroke/>
  2250. <fillcolor color="#ffffff"/>
  2251. <linejoin join="round"/>
  2252. <alpha alpha="0.5"/>
  2253. <path>
  2254. <move x="50" y="28"/>
  2255. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="44" x-axis-rotation="0" y="22"/>
  2256. <line x="44" y="0"/>
  2257. <line x="71.5" y="28"/>
  2258. <close/>
  2259. </path>
  2260. <fillstroke/>
  2261. </foreground>
  2262. </shape>
  2263. <shape aspect="variable" h="86" name="shift" strokewidth="inherit" w="100">
  2264. <connections/>
  2265. <foreground>
  2266. <path>
  2267. <move x="25" y="50"/>
  2268. <line x="0" y="50"/>
  2269. <line x="50" y="0"/>
  2270. <line x="100" y="50"/>
  2271. <line x="75" y="50"/>
  2272. <line x="75" y="70"/>
  2273. <line x="25" y="70"/>
  2274. <close/>
  2275. <move x="85" y="80"/>
  2276. <line x="85" y="86"/>
  2277. <line x="15" y="86"/>
  2278. <line x="15" y="80"/>
  2279. <close/>
  2280. </path>
  2281. <fillstroke/>
  2282. </foreground>
  2283. </shape>
  2284. <shape aspect="variable" h="100" name="slides" strokewidth="inherit" w="71.5">
  2285. <connections/>
  2286. <foreground>
  2287. <save/>
  2288. <save/>
  2289. <path>
  2290. <move x="6" y="100"/>
  2291. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="0" x-axis-rotation="0" y="94"/>
  2292. <line x="0" y="6"/>
  2293. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="6" x-axis-rotation="0" y="0"/>
  2294. <line x="44" y="0"/>
  2295. <line x="71.5" y="28"/>
  2296. <line x="71.5" y="94"/>
  2297. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="65.5" x-axis-rotation="0" y="100"/>
  2298. <close/>
  2299. </path>
  2300. <fillstroke/>
  2301. <fillcolor color="#ffffff"/>
  2302. <linejoin join="round"/>
  2303. <alpha alpha="0.5"/>
  2304. <path>
  2305. <move x="50" y="28"/>
  2306. <arc large-arc-flag="0" rx="6" ry="6" sweep-flag="1" x="44" x-axis-rotation="0" y="22"/>
  2307. <line x="44" y="0"/>
  2308. <line x="71.5" y="28"/>
  2309. <close/>
  2310. </path>
  2311. <fillstroke/>
  2312. <restore/>
  2313. <rect/>
  2314. <stroke/>
  2315. <strokecolor color="none"/>
  2316. <fillcolor color="#ffffff"/>
  2317. <path>
  2318. <move x="22.5" y="80"/>
  2319. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="18.5" x-axis-rotation="0" y="76"/>
  2320. <line x="18.5" y="49.5"/>
  2321. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="22.5" x-axis-rotation="0" y="45.5"/>
  2322. <line x="49.5" y="45.5"/>
  2323. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="53.5" x-axis-rotation="0" y="49.5"/>
  2324. <line x="53.5" y="76"/>
  2325. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="49.5" x-axis-rotation="0" y="80"/>
  2326. <close/>
  2327. </path>
  2328. <fill/>
  2329. <restore/>
  2330. <rect/>
  2331. <stroke/>
  2332. <strokecolor color="none"/>
  2333. <rect h="15.5" w="26.5" x="22.5" y="55.5"/>
  2334. <fill/>
  2335. </foreground>
  2336. </shape>
  2337. <shape aspect="variable" h="106.57" name="sports" strokewidth="inherit" w="99.98">
  2338. <connections/>
  2339. <foreground>
  2340. <path>
  2341. <move x="14.89" y="88.93"/>
  2342. <arc large-arc-flag="0" rx="47" ry="47" sweep-flag="0" x="14.89" x-axis-rotation="0" y="17.73"/>
  2343. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="0" x="14.89" x-axis-rotation="0" y="88.93"/>
  2344. <close/>
  2345. <move x="20.99" y="92.33"/>
  2346. <arc large-arc-flag="0" rx="53" ry="53" sweep-flag="0" x="19.99" x-axis-rotation="0" y="13.23"/>
  2347. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="79.79" x-axis-rotation="0" y="13.23"/>
  2348. <arc large-arc-flag="0" rx="53" ry="53" sweep-flag="0" x="79.79" x-axis-rotation="0" y="93.43"/>
  2349. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="20.19" x-axis-rotation="0" y="93.43"/>
  2350. <close/>
  2351. <move x="85.09" y="17.73"/>
  2352. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="85.09" x-axis-rotation="0" y="88.93"/>
  2353. <arc large-arc-flag="0" rx="47" ry="47" sweep-flag="1" x="85.09" x-axis-rotation="0" y="17.73"/>
  2354. <close/>
  2355. </path>
  2356. <fillstroke/>
  2357. </foreground>
  2358. </shape>
  2359. <shape aspect="variable" h="24" name="spreadsheet" strokewidth="inherit" w="24">
  2360. <connections/>
  2361. <foreground>
  2362. <save/>
  2363. <strokecolor color="none"/>
  2364. <path>
  2365. <move x="0" y="3"/>
  2366. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="0"/>
  2367. <line x="21" y="0"/>
  2368. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="24" x-axis-rotation="0" y="3"/>
  2369. <line x="24" y="21"/>
  2370. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="24"/>
  2371. <line x="3" y="24"/>
  2372. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="21"/>
  2373. <close/>
  2374. </path>
  2375. <fill/>
  2376. <restore/>
  2377. <rect/>
  2378. <stroke/>
  2379. <fillcolor color="none"/>
  2380. <path>
  2381. <move x="4" y="9"/>
  2382. <line x="20" y="9"/>
  2383. </path>
  2384. <stroke/>
  2385. <path>
  2386. <move x="9" y="4"/>
  2387. <line x="9" y="20"/>
  2388. </path>
  2389. <stroke/>
  2390. </foreground>
  2391. </shape>
  2392. <shape aspect="variable" h="21" name="star" strokewidth="inherit" w="23">
  2393. <connections/>
  2394. <foreground>
  2395. <path>
  2396. <move x="11.5" y="0"/>
  2397. <line x="14.5" y="8"/>
  2398. <line x="23" y="8"/>
  2399. <line x="16.2" y="12.8"/>
  2400. <line x="19" y="21"/>
  2401. <line x="11.5" y="16"/>
  2402. <line x="4" y="21"/>
  2403. <line x="6.9" y="12.8"/>
  2404. <line x="0" y="8"/>
  2405. <line x="8.5" y="8"/>
  2406. <close/>
  2407. </path>
  2408. <fillstroke/>
  2409. </foreground>
  2410. </shape>
  2411. <shape aspect="variable" h="101.04" name="telephone" strokewidth="inherit" w="74.83">
  2412. <connections/>
  2413. <foreground>
  2414. <path>
  2415. <move x="21.83" y="0.56"/>
  2416. <curve x1="21.83" x2="0" x3="0.29" y1="0.56" y2="0.84" y3="20.26"/>
  2417. <curve x1="0.57" x2="4.54" x3="11.06" y1="39.68" y2="56.85" y3="66.42"/>
  2418. <curve x1="17.58" x2="34.3" x3="53.3" y1="75.99" y2="101.04" y3="98.51"/>
  2419. <curve x1="53.3" x2="62.66" x3="69.74" y1="98.51" y2="96.54" y3="92.03"/>
  2420. <line x="46.78" y="74.3"/>
  2421. <curve x1="46.78" x2="39.98" x3="35.72" y1="74.3" y2="78.52" y3="72.89"/>
  2422. <curve x1="31.47" x2="18.14" x3="18.14" y1="67.26" y2="41.09" y3="41.09"/>
  2423. <curve x1="18.14" x2="14.45" x3="22.68" y1="41.09" y2="32.65" y3="28.99"/>
  2424. <line x="21.83" y="0.56"/>
  2425. <close/>
  2426. <move x="24.39" y="0.56"/>
  2427. <curve x1="24.39" x2="26.09" x3="29.21" y1="0.56" y2="0" y3="1.69"/>
  2428. <curve x1="32.33" x2="32.33" x3="32.33" y1="3.38" y2="4.78" y3="4.78"/>
  2429. <line x="32.61" y="24.2"/>
  2430. <curve x1="32.61" x2="31.76" x3="30.63" y1="24.2" y2="25.33" y3="26.45"/>
  2431. <curve x1="29.5" x2="25.81" x3="25.24" y1="27.58" y2="29.27" y3="28.14"/>
  2432. <curve x1="24.67" x2="24.39" x3="24.39" y1="27.02" y2="0.56" y3="0.56"/>
  2433. <close/>
  2434. <move x="48.69" y="72.23"/>
  2435. <line x="55" y="68.96"/>
  2436. <curve x1="55" x2="56.42" x3="58.68" y1="68.96" y2="68.68" y3="70.09"/>
  2437. <curve x1="60.95" x2="72.85" x3="72.85" y1="71.5" y2="80.79" y3="80.79"/>
  2438. <curve x1="72.85" x2="74.83" x3="74.27" y1="80.79" y2="82.48" y3="84.45"/>
  2439. <curve x1="73.7" x2="72.29" x3="72.29" y1="86.42" y2="90.64" y3="90.64"/>
  2440. <line x="48.69" y="72.23"/>
  2441. <close/>
  2442. </path>
  2443. <fillstroke/>
  2444. </foreground>
  2445. </shape>
  2446. <shape aspect="variable" h="40" name="time picker" strokewidth="inherit" w="148">
  2447. <connections/>
  2448. <foreground>
  2449. <save/>
  2450. <strokecolor color="none"/>
  2451. <ellipse h="40" w="40" x="108" y="0"/>
  2452. <fill/>
  2453. <ellipse h="6" w="6" x="0" y="17"/>
  2454. <fill/>
  2455. <restore/>
  2456. <rect/>
  2457. <stroke/>
  2458. <fillcolor color="none"/>
  2459. <path>
  2460. <move x="5" y="20"/>
  2461. <line x="109" y="20"/>
  2462. </path>
  2463. <stroke/>
  2464. </foreground>
  2465. </shape>
  2466. <shape aspect="variable" h="12.08" name="top bar" strokewidth="inherit" w="37">
  2467. <connections/>
  2468. <foreground>
  2469. <save/>
  2470. <save/>
  2471. <save/>
  2472. <strokecolor color="none"/>
  2473. <fillcolor color="#ffffff"/>
  2474. <alpha alpha="0.5"/>
  2475. <path>
  2476. <move x="30" y="12.08"/>
  2477. <line x="30" y="1.08"/>
  2478. <line x="32" y="1.08"/>
  2479. <line x="32" y="0.08"/>
  2480. <line x="35" y="0.08"/>
  2481. <line x="35" y="1.08"/>
  2482. <line x="37" y="1.08"/>
  2483. <line x="37" y="12.08"/>
  2484. <close/>
  2485. </path>
  2486. <fill/>
  2487. <restore/>
  2488. <rect/>
  2489. <stroke/>
  2490. <strokecolor color="none"/>
  2491. <fillcolor color="#ffffff"/>
  2492. <rect h="8" w="7" x="30" y="4.08"/>
  2493. <fill/>
  2494. <alpha alpha="0.5"/>
  2495. <path>
  2496. <move x="26" y="0.08"/>
  2497. <line x="26" y="12.08"/>
  2498. <line x="14" y="12.08"/>
  2499. <close/>
  2500. </path>
  2501. <fill/>
  2502. <restore/>
  2503. <rect/>
  2504. <stroke/>
  2505. <strokecolor color="none"/>
  2506. <fillcolor color="#ffffff"/>
  2507. <path>
  2508. <move x="14" y="12.08"/>
  2509. <line x="23" y="3.08"/>
  2510. <line x="23" y="12.08"/>
  2511. <close/>
  2512. </path>
  2513. <fill/>
  2514. <alpha alpha="0.5"/>
  2515. <path>
  2516. <move x="0" y="3.08"/>
  2517. <arc large-arc-flag="0" rx="9.5" ry="9.5" sweep-flag="1" x="14" x-axis-rotation="0" y="3.08"/>
  2518. <line x="7" y="12.08"/>
  2519. <close/>
  2520. <close/>
  2521. </path>
  2522. <fill/>
  2523. <restore/>
  2524. <rect/>
  2525. <stroke/>
  2526. <strokecolor color="none"/>
  2527. <fillcolor color="#ffffff"/>
  2528. <path>
  2529. <move x="1.2" y="4.58"/>
  2530. <arc large-arc-flag="0" rx="8" ry="8" sweep-flag="1" x="12.8" x-axis-rotation="0" y="4.58"/>
  2531. <line x="7" y="12.08"/>
  2532. <close/>
  2533. <close/>
  2534. </path>
  2535. <fill/>
  2536. </foreground>
  2537. </shape>
  2538. <shape aspect="variable" h="98.87" name="travel" strokewidth="inherit" w="97.96">
  2539. <connections/>
  2540. <foreground>
  2541. <path>
  2542. <move x="50.91" y="0.87"/>
  2543. <curve x1="50.43" x2="49.72" x3="48.98" y1="0.32" y2="0" y3="0"/>
  2544. <curve x1="48.24" x2="47.53" x3="47.04" y1="0" y2="0.32" y3="0.88"/>
  2545. <curve x1="44.34" x2="42.85" x3="42.85" y1="3.99" y2="7.95" y3="12.05"/>
  2546. <line x="42.85" y="34.3"/>
  2547. <line x="0" y="67.59"/>
  2548. <line x="0" y="77.68"/>
  2549. <line x="42.86" y="61.54"/>
  2550. <line x="42.86" y="76.67"/>
  2551. <curve x1="42.86" x2="43.21" x3="43.88" y1="78.08" y2="79.46" y3="80.71"/>
  2552. <line x="28.57" y="90.8"/>
  2553. <line x="28.57" y="98.87"/>
  2554. <line x="48.98" y="90.8"/>
  2555. <line x="69.38" y="98.87"/>
  2556. <line x="69.38" y="90.8"/>
  2557. <line x="54.08" y="80.71"/>
  2558. <curve x1="54.75" x2="55.1" x3="55.1" y1="79.47" y2="78.08" y3="76.67"/>
  2559. <line x="55.1" y="61.54"/>
  2560. <line x="97.96" y="77.68"/>
  2561. <line x="97.96" y="67.59"/>
  2562. <line x="55.1" y="34.3"/>
  2563. <line x="55.1" y="12.05"/>
  2564. <curve x1="55.1" x2="53.61" x3="50.91" y1="7.95" y2="3.98" y3="0.87"/>
  2565. </path>
  2566. <fillstroke/>
  2567. </foreground>
  2568. </shape>
  2569. <shape aspect="variable" h="5" name="triangle" strokewidth="inherit" w="10">
  2570. <connections/>
  2571. <foreground>
  2572. <path>
  2573. <move x="0" y="0"/>
  2574. <line x="10" y="0"/>
  2575. <line x="5" y="5"/>
  2576. <close/>
  2577. </path>
  2578. <fillstroke/>
  2579. </foreground>
  2580. </shape>
  2581. <shape aspect="variable" h="100" name="twitter" strokewidth="inherit" w="100">
  2582. <connections/>
  2583. <foreground>
  2584. <path>
  2585. <move x="0" y="5"/>
  2586. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="0"/>
  2587. <line x="95" y="0"/>
  2588. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="100" x-axis-rotation="0" y="5"/>
  2589. <line x="100" y="95"/>
  2590. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="95" x-axis-rotation="0" y="100"/>
  2591. <line x="5" y="100"/>
  2592. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="0" x-axis-rotation="0" y="95"/>
  2593. <close/>
  2594. </path>
  2595. <fillstroke/>
  2596. <fillcolor color="#ffffff"/>
  2597. <path>
  2598. <move x="78.7" y="34.8"/>
  2599. <arc large-arc-flag="0" rx="45" ry="45" sweep-flag="1" x="62.8" x-axis-rotation="0" y="70.2"/>
  2600. <arc large-arc-flag="0" rx="43" ry="43" sweep-flag="1" x="13.5" x-axis-rotation="0" y="72.4"/>
  2601. <arc large-arc-flag="0" rx="30" ry="30" sweep-flag="0" x="35.2" x-axis-rotation="0" y="66.3"/>
  2602. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="21.5" x-axis-rotation="0" y="55.8"/>
  2603. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="28.3" x-axis-rotation="0" y="55.8"/>
  2604. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="16.4" x-axis-rotation="0" y="40.9"/>
  2605. <arc large-arc-flag="0" rx="20" ry="20" sweep-flag="0" x="22.8" x-axis-rotation="0" y="42.7"/>
  2606. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="18.8" x-axis-rotation="0" y="23.1"/>
  2607. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="49" x-axis-rotation="0" y="38.5"/>
  2608. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="74.6" x-axis-rotation="0" y="24.9"/>
  2609. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="84.2" x-axis-rotation="0" y="21.2"/>
  2610. <arc large-arc-flag="0" rx="15" ry="15" sweep-flag="1" x="77.4" x-axis-rotation="0" y="29.4"/>
  2611. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="86.1" x-axis-rotation="0" y="27"/>
  2612. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="78.7" x-axis-rotation="0" y="34.8"/>
  2613. <close/>
  2614. </path>
  2615. <fillstroke/>
  2616. </foreground>
  2617. </shape>
  2618. <shape aspect="variable" h="50" name="up" strokewidth="inherit" w="100">
  2619. <connections/>
  2620. <foreground>
  2621. <fillcolor color="none"/>
  2622. <path>
  2623. <move x="0" y="50"/>
  2624. <line x="50" y="0"/>
  2625. <line x="100" y="50"/>
  2626. </path>
  2627. <stroke/>
  2628. </foreground>
  2629. </shape>
  2630. <shape aspect="variable" h="14" name="upload" strokewidth="inherit" w="22">
  2631. <connections/>
  2632. <foreground>
  2633. <path>
  2634. <move x="5" y="14"/>
  2635. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="5" x-axis-rotation="0" y="4"/>
  2636. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="1" x="18" x-axis-rotation="0" y="6"/>
  2637. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="18" x-axis-rotation="0" y="14"/>
  2638. <close/>
  2639. </path>
  2640. <fillstroke/>
  2641. <strokecolor color="none"/>
  2642. <fillcolor color="#ffffff"/>
  2643. <strokewidth width="0.5"/>
  2644. <path>
  2645. <move x="9.5" y="11"/>
  2646. <line x="9.5" y="7"/>
  2647. <line x="8" y="7"/>
  2648. <line x="11" y="4"/>
  2649. <line x="14" y="7"/>
  2650. <line x="12.5" y="7"/>
  2651. <line x="12.5" y="11"/>
  2652. <close/>
  2653. </path>
  2654. <fill/>
  2655. </foreground>
  2656. </shape>
  2657. <shape aspect="variable" h="103.94" name="user" strokewidth="inherit" w="100">
  2658. <connections/>
  2659. <foreground>
  2660. <save/>
  2661. <fillcolor color="#ffffff"/>
  2662. <ellipse h="100" w="100" x="0" y="0"/>
  2663. <fillstroke/>
  2664. <restore/>
  2665. <rect/>
  2666. <stroke/>
  2667. <ellipse h="30" w="30" x="35" y="22.5"/>
  2668. <fillstroke/>
  2669. <path>
  2670. <move x="18" y="88.5"/>
  2671. <line x="18" y="80"/>
  2672. <arc large-arc-flag="0" rx="80" ry="23" sweep-flag="1" x="41" x-axis-rotation="0" y="63"/>
  2673. <line x="59" y="63"/>
  2674. <arc large-arc-flag="0" rx="80" ry="23" sweep-flag="1" x="82" x-axis-rotation="0" y="80"/>
  2675. <line x="82" y="88.5"/>
  2676. <arc large-arc-flag="0" rx="50" ry="50" sweep-flag="1" x="18" x-axis-rotation="0" y="88.5"/>
  2677. <close/>
  2678. </path>
  2679. <fillstroke/>
  2680. <alpha alpha="0.25"/>
  2681. <ellipse h="100" w="100" x="0" y="0"/>
  2682. <fillstroke/>
  2683. </foreground>
  2684. </shape>
  2685. <shape aspect="variable" h="16" name="users" strokewidth="inherit" w="24">
  2686. <connections/>
  2687. <foreground>
  2688. <path>
  2689. <move x="8" y="16"/>
  2690. <line x="8" y="12"/>
  2691. <arc large-arc-flag="0" rx="10" ry="5" sweep-flag="1" x="14" x-axis-rotation="0" y="9"/>
  2692. <line x="18" y="9"/>
  2693. <arc large-arc-flag="0" rx="10" ry="5" sweep-flag="1" x="24" x-axis-rotation="0" y="12"/>
  2694. <line x="24" y="16"/>
  2695. <close/>
  2696. </path>
  2697. <fillstroke/>
  2698. <ellipse h="8" w="8" x="12" y="0"/>
  2699. <fillstroke/>
  2700. <path>
  2701. <move x="0" y="16"/>
  2702. <line x="0" y="12"/>
  2703. <arc large-arc-flag="0" rx="10" ry="5" sweep-flag="1" x="6" x-axis-rotation="0" y="9"/>
  2704. <line x="10" y="9"/>
  2705. <arc large-arc-flag="0" rx="10" ry="5" sweep-flag="1" x="16" x-axis-rotation="0" y="12"/>
  2706. <line x="16" y="16"/>
  2707. <close/>
  2708. </path>
  2709. <fillstroke/>
  2710. <ellipse h="8" w="8" x="4" y="0"/>
  2711. <fillstroke/>
  2712. </foreground>
  2713. </shape>
  2714. <shape aspect="variable" h="16" name="video" strokewidth="inherit" w="24">
  2715. <connections/>
  2716. <foreground>
  2717. <path>
  2718. <move x="24" y="0"/>
  2719. <line x="24" y="13"/>
  2720. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="21" x-axis-rotation="0" y="16"/>
  2721. <line x="3" y="16"/>
  2722. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="0" x-axis-rotation="0" y="13"/>
  2723. <line x="0" y="3"/>
  2724. <arc large-arc-flag="0" rx="3" ry="3" sweep-flag="1" x="3" x-axis-rotation="0" y="0"/>
  2725. <line x="4" y="0"/>
  2726. <line x="6" y="4"/>
  2727. <line x="9" y="4"/>
  2728. <line x="7" y="0"/>
  2729. <line x="10" y="0"/>
  2730. <line x="12" y="4"/>
  2731. <line x="15" y="4"/>
  2732. <line x="13" y="0"/>
  2733. <line x="16" y="0"/>
  2734. <line x="18" y="4"/>
  2735. <line x="21" y="4"/>
  2736. <line x="19" y="0"/>
  2737. <close/>
  2738. </path>
  2739. <fillstroke/>
  2740. </foreground>
  2741. </shape>
  2742. <shape aspect="variable" h="19.4" name="video 2" strokewidth="inherit" w="24">
  2743. <connections/>
  2744. <foreground>
  2745. <path>
  2746. <move x="7.5" y="19.4"/>
  2747. <line x="7.5" y="17.2"/>
  2748. <line x="2" y="17.2"/>
  2749. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="0" x-axis-rotation="0" y="15.2"/>
  2750. <line x="0" y="2"/>
  2751. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="2" x-axis-rotation="0" y="0"/>
  2752. <line x="22" y="0"/>
  2753. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="24" x-axis-rotation="0" y="2"/>
  2754. <line x="24" y="15.2"/>
  2755. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="22" x-axis-rotation="0" y="17.2"/>
  2756. <line x="16.5" y="17.2"/>
  2757. <line x="16.5" y="19.4"/>
  2758. <close/>
  2759. <move x="2" y="15.2"/>
  2760. <line x="22" y="15.2"/>
  2761. <line x="22" y="2"/>
  2762. <line x="2" y="2"/>
  2763. <close/>
  2764. <move x="9" y="4.7"/>
  2765. <line x="16.5" y="8.7"/>
  2766. <line x="9" y="12.7"/>
  2767. <close/>
  2768. </path>
  2769. <fillstroke/>
  2770. </foreground>
  2771. </shape>
  2772. <shape aspect="variable" h="24" name="voice" strokewidth="inherit" w="14">
  2773. <connections/>
  2774. <foreground>
  2775. <save/>
  2776. <strokecolor color="none"/>
  2777. <path>
  2778. <move x="3" y="4"/>
  2779. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="11" x-axis-rotation="0" y="4"/>
  2780. <line x="11" y="13"/>
  2781. <arc large-arc-flag="0" rx="4" ry="4" sweep-flag="1" x="3" x-axis-rotation="0" y="13"/>
  2782. <close/>
  2783. </path>
  2784. <fill/>
  2785. <restore/>
  2786. <rect/>
  2787. <stroke/>
  2788. <fillcolor color="none"/>
  2789. <path>
  2790. <move x="0" y="13"/>
  2791. <arc large-arc-flag="0" rx="7" ry="7" sweep-flag="0" x="14" x-axis-rotation="0" y="13"/>
  2792. </path>
  2793. <stroke/>
  2794. <path>
  2795. <move x="7" y="20"/>
  2796. <line x="7" y="24"/>
  2797. </path>
  2798. <stroke/>
  2799. </foreground>
  2800. </shape>
  2801. <shape aspect="variable" h="96" name="volume" strokewidth="inherit" w="99.41">
  2802. <connections/>
  2803. <foreground>
  2804. <path>
  2805. <move x="0" y="64"/>
  2806. <line x="0" y="32"/>
  2807. <line x="23" y="32"/>
  2808. <line x="49.5" y="5"/>
  2809. <line x="49.5" y="92.5"/>
  2810. <line x="23" y="64"/>
  2811. <close/>
  2812. <move x="62" y="27"/>
  2813. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="1" x="62" x-axis-rotation="0" y="69"/>
  2814. <close/>
  2815. <move x="62" y="0"/>
  2816. <arc large-arc-flag="0" rx="49.5" ry="49.5" sweep-flag="1" x="62" x-axis-rotation="0" y="96"/>
  2817. <line x="62" y="86"/>
  2818. <arc large-arc-flag="0" rx="40" ry="40" sweep-flag="0" x="62" x-axis-rotation="0" y="10"/>
  2819. <close/>
  2820. </path>
  2821. <fillstroke/>
  2822. </foreground>
  2823. </shape>
  2824. <shape aspect="variable" h="22.4" name="webpage" strokewidth="inherit" w="24">
  2825. <connections/>
  2826. <foreground>
  2827. <path>
  2828. <move x="0" y="0"/>
  2829. <line x="1.9" y="0"/>
  2830. <line x="1.9" y="1.5"/>
  2831. <line x="3.8" y="1.5"/>
  2832. <line x="3.8" y="0"/>
  2833. <line x="5.7" y="0"/>
  2834. <line x="5.7" y="1.5"/>
  2835. <line x="7.6" y="1.5"/>
  2836. <line x="7.6" y="0"/>
  2837. <line x="9.5" y="0"/>
  2838. <line x="9.5" y="1.5"/>
  2839. <line x="11.4" y="1.5"/>
  2840. <line x="11.4" y="0"/>
  2841. <line x="13.3" y="0"/>
  2842. <line x="13.3" y="1.5"/>
  2843. <line x="15.2" y="1.5"/>
  2844. <line x="15.2" y="0"/>
  2845. <line x="17.1" y="0"/>
  2846. <line x="17.1" y="1.5"/>
  2847. <line x="19" y="1.5"/>
  2848. <line x="19" y="0"/>
  2849. <line x="20.9" y="0"/>
  2850. <line x="20.9" y="1.5"/>
  2851. <line x="22.8" y="1.5"/>
  2852. <line x="22.8" y="0"/>
  2853. <line x="24" y="0"/>
  2854. <line x="24" y="20.4"/>
  2855. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="22" x-axis-rotation="0" y="22.4"/>
  2856. <line x="2" y="22.4"/>
  2857. <arc large-arc-flag="0" rx="2" ry="2" sweep-flag="1" x="0" x-axis-rotation="0" y="20.4"/>
  2858. <close/>
  2859. <move x="2.5" y="20"/>
  2860. <line x="12.5" y="20"/>
  2861. <line x="12.5" y="11"/>
  2862. <line x="2.5" y="11"/>
  2863. <close/>
  2864. <move x="14" y="20"/>
  2865. <line x="22" y="20"/>
  2866. <line x="22" y="19"/>
  2867. <line x="14" y="19"/>
  2868. <close/>
  2869. <move x="22" y="17"/>
  2870. <line x="22" y="16"/>
  2871. <line x="14" y="16"/>
  2872. <line x="14" y="17"/>
  2873. <close/>
  2874. <move x="22" y="14.5"/>
  2875. <line x="22" y="13.5"/>
  2876. <line x="14" y="13.5"/>
  2877. <line x="14" y="14.5"/>
  2878. <close/>
  2879. <move x="22" y="12"/>
  2880. <line x="22" y="11"/>
  2881. <line x="14" y="11"/>
  2882. <line x="14" y="12"/>
  2883. <close/>
  2884. <move x="22" y="9.5"/>
  2885. <line x="22" y="6.5"/>
  2886. <line x="2.5" y="6.5"/>
  2887. <line x="2.5" y="9.5"/>
  2888. <close/>
  2889. </path>
  2890. <fillstroke/>
  2891. </foreground>
  2892. </shape>
  2893. <shape aspect="variable" h="98.4" name="wifi" strokewidth="inherit" w="100">
  2894. <connections/>
  2895. <foreground>
  2896. <path>
  2897. <move x="50" y="98.4"/>
  2898. <line x="0" y="23.4"/>
  2899. <arc large-arc-flag="0" rx="80" ry="80" sweep-flag="1" x="100" x-axis-rotation="0" y="23.4"/>
  2900. <close/>
  2901. <close/>
  2902. <move x="16" y="36.4"/>
  2903. <arc large-arc-flag="0" rx="61" ry="61" sweep-flag="1" x="84" x-axis-rotation="0" y="36.4"/>
  2904. <line x="92.3" y="24.9"/>
  2905. <arc large-arc-flag="0" rx="74" ry="74" sweep-flag="0" x="7.7" x-axis-rotation="0" y="24.9"/>
  2906. <close/>
  2907. </path>
  2908. <fillstroke/>
  2909. </foreground>
  2910. </shape>
  2911. <shape aspect="variable" h="65" name="wind" strokewidth="inherit" w="100.24">
  2912. <connections/>
  2913. <foreground>
  2914. <fillcolor color="none"/>
  2915. <path>
  2916. <move x="0" y="35"/>
  2917. <line x="70" y="35"/>
  2918. <arc large-arc-flag="0" rx="7.5" ry="7.5" sweep-flag="0" x="70" x-axis-rotation="0" y="20"/>
  2919. </path>
  2920. <stroke/>
  2921. <path>
  2922. <move x="0" y="45"/>
  2923. <line x="70" y="45"/>
  2924. <arc large-arc-flag="0" rx="30" ry="25" sweep-flag="0" x="100" x-axis-rotation="0" y="25"/>
  2925. <arc large-arc-flag="0" rx="25" ry="25" sweep-flag="0" x="80" x-axis-rotation="0" y="0"/>
  2926. </path>
  2927. <stroke/>
  2928. <path>
  2929. <move x="0" y="55"/>
  2930. <line x="70" y="55"/>
  2931. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="1" x="70" x-axis-rotation="0" y="65"/>
  2932. </path>
  2933. <stroke/>
  2934. </foreground>
  2935. </shape>
  2936. <shape aspect="variable" h="24" name="x" strokewidth="inherit" w="24">
  2937. <connections/>
  2938. <foreground>
  2939. <fillcolor color="none"/>
  2940. <path>
  2941. <move x="0" y="0"/>
  2942. <line x="24" y="24"/>
  2943. </path>
  2944. <stroke/>
  2945. <path>
  2946. <move x="24" y="0"/>
  2947. <line x="0" y="24"/>
  2948. </path>
  2949. <stroke/>
  2950. </foreground>
  2951. </shape>
  2952. </shapes>