Mercurial > pidgin.yaz
changeset 27870:003257c5dcfd
changed encoding for util.c to utf-8.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Wed, 20 Aug 2008 08:15:22 +0000 |
parents | e187fdccd743 |
children | 05fe17b2ee55 |
files | libpurple/util.c pidgin/pixmaps/icons/hicolor/16x16/apps/pidgin.png pidgin/pixmaps/icons/hicolor/16x16/apps/scalable/pidgin.svg pidgin/pixmaps/icons/hicolor/22x22/apps/pidgin.png pidgin/pixmaps/icons/hicolor/24x24/apps/pidgin.png pidgin/pixmaps/icons/hicolor/24x24/apps/scalable/pidgin.svg pidgin/pixmaps/icons/hicolor/32x32/apps/pidgin.png pidgin/pixmaps/icons/hicolor/32x32/apps/scalable/pidgin.svg pidgin/pixmaps/icons/hicolor/48x48/apps/pidgin.png pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg |
diffstat | 10 files changed, 24 insertions(+), 1933 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/util.c Wed Aug 20 07:01:05 2008 +0000 +++ b/libpurple/util.c Wed Aug 20 08:15:22 2008 +0000 @@ -4794,33 +4794,33 @@ switch(*(ucs+i)){ case 0x00: switch(*(ucs+i+1)){ - case 0xa2: // ¡ñ + case 0xa2: // ¢ *(ucs+i) = 0xff; *(ucs+i+1) = 0xe0; break; - case 0xa3: // ¡ò + case 0xa3: // £ *(ucs+i) = 0xff; *(ucs+i+1) = 0xe1; break; - case 0xac: // ¢Ì + case 0xac: // ¬ *(ucs+i) = 0xff; *(ucs+i+1) = 0xe2; break; } break; - case 0x20: // ¡Â + case 0x20: // ‖ if(*(ucs+i+1) == 0x16){ *(ucs+i) = 0x22; *(ucs+i+1) = 0x25; } break; - case 0x22: // ¡Ý + case 0x22: // − if(*(ucs+i+1) == 0x12){ *(ucs+i) = 0xff; *(ucs+i+1) = 0x0d; } break; - case 0x30: // ¡Á + case 0x30: // 〜 if(*(ucs+i+1) == 0x1c){ *(ucs+i) = 0xff; *(ucs+i+1) = 0x5e; @@ -4850,7 +4850,7 @@ switch(*(ucs+i)){ case 0x22: switch(*(ucs+i+1)){ - case 0x25: // ¡Â + case 0x25: // ‖ *(ucs+i) = 0x20; *(ucs+i+1) = 0x16; break; @@ -4858,23 +4858,23 @@ break; case 0xff: switch(*(ucs+i+1)){ - case 0x0d: // ¡Ý + case 0x0d: // − *(ucs+i) = 0x22; *(ucs+i+1) = 0x12; break; - case 0x5e: // ¡Á + case 0x5e: // 〜 *(ucs+i) = 0x30; *(ucs+i+1) = 0x1c; break; - case 0xe0: // ¡ñ + case 0xe0: // ¢ *(ucs+i) = 0x00; *(ucs+i+1) = 0xa2; break; - case 0xe1: // ¡ò + case 0xe1: // £ *(ucs+i) = 0x00; *(ucs+i+1) = 0xa3; break; - case 0xe2: // ¢Ì + case 0xe2: // ¬ *(ucs+i) = 0x00; *(ucs+i+1) = 0xac; break; @@ -4918,7 +4918,7 @@ switch(*(utf+i)){ case 0xe2: if(*(utf+i+1) == 0x88) { - if(*(utf+i+2) == 0xa5) { // ¡Â + if(*(utf+i+2) == 0xa5) { // ‖ *(utf+i) = 0xe2; *(utf+i+1) = 0x80; *(utf+i+2) = 0x96; @@ -4928,14 +4928,14 @@ case 0xef: switch(*(utf+i+1)){ case 0xbc: - if(*(utf+i+2) == 0x8d) { // ¡Ý + if(*(utf+i+2) == 0x8d) { // − *(utf+i) = 0xe2; *(utf+i+1) = 0x88; *(utf+i+2) = 0x92; } break; case 0xbd: - if(*(utf+i+2) == 0x9e) { // ¡Á + if(*(utf+i+2) == 0x9e) { // 〜 *(utf+i) = 0xe3; *(utf+i+1) = 0x80; *(utf+i+2) = 0x9c; @@ -4943,21 +4943,21 @@ break; case 0xbf: switch(*(utf+i+2)){ - case 0xa0: // ¡ñ + case 0xa0: // ¢ *(utf+i) = 0xc2; *(utf+i+1) = 0xa2; memmove(utf+i+2, utf+i+3, len-i-3); //shorten by 1byte bytes--; break; - case 0xa1: // ¡ò + case 0xa1: // £ *(utf+i) = 0xc2; *(utf+i+1) = 0xa3; memmove(utf+i+2, utf+i+3, len-i-3); //shorten by 1byte bytes--; break; - case 0xa2: // ¢Ì + case 0xa2: // ¬ *(utf+i) = 0xc2; *(utf+i+1) = 0xac; memmove(utf+i+2, utf+i+3, @@ -5010,21 +5010,21 @@ switch(*(utf+i)){ case 0xc2: switch(*(utf+i+1)){ - case 0xa2: // ¡ñ + case 0xa2: // ¢ *(utf+i) = 0xef; *(utf+i+1) = 0xbf; memmove(utf+i+3, utf+i+2, bytes-i-2); *(utf+i+2) = 0xa0; bytes++; break; - case 0xa3: // ¡ò + case 0xa3: // £ *(utf+i) = 0xef; *(utf+i+1) = 0xbf; memmove(utf+i+3, utf+i+2, bytes-i-2); *(utf+i+2) = 0xa1; bytes++; break; - case 0xac: // ¢Ì + case 0xac: // ¬ *(utf+i) = 0xef; *(utf+i+1) = 0xbf; memmove(utf+i+3, utf+i+2, bytes-i-2); @@ -5035,14 +5035,14 @@ break; case 0xe2: switch(*(utf+i+1)){ - case 0x80: // ¡Â + case 0x80: // ‖ if(*(utf+i+2) == 0x96){ *(utf+i) = 0xe2; *(utf+i+1) = 0x88; *(utf+i+2) = 0xa5; } break; - case 0x88: // ¡Ý + case 0x88: // − if(*(utf+i+1) == 0x92){ *(utf+i) = 0xef; *(utf+i+1) = 0xbc; @@ -5051,7 +5051,7 @@ break; } break; - case 0xe3: // ¡Á + case 0xe3: // 〜 if(*(utf+i+1) == 0x80){ if(*(utf+i+2) == 0x9c){ *(utf+i) = 0xef;
--- a/pidgin/pixmaps/icons/hicolor/16x16/apps/scalable/pidgin.svg Wed Aug 20 07:01:05 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,335 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="16" - height="16" - id="svg4345" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/icons/24/scalable" - sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/Bureaublad/pidgin16-4.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - version="1.0" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4347"> - <linearGradient - id="linearGradient8739" - inkscape:collect="always"> - <stop - id="stop8741" - offset="0" - style="stop-color:#602869;stop-opacity:1" /> - <stop - id="stop8743" - offset="1" - style="stop-color:#3b1941;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8760"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop8762" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop8764" /> - </linearGradient> - <linearGradient - id="linearGradient8989" - inkscape:collect="always"> - <stop - id="stop8991" - offset="0" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop8993" - offset="1" - style="stop-color:#eeeeec;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8776"> - <stop - style="stop-color:#ffffff;stop-opacity:0.82412058" - offset="0" - id="stop8778" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="1" - id="stop8780" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8720"> - <stop - style="stop-color:#fdc26a;stop-opacity:1" - offset="0" - id="stop8722" /> - <stop - style="stop-color:#f57900;stop-opacity:1" - offset="1" - id="stop8724" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3124"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop3126" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop3128" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3116"> - <stop - style="stop-color:#894599;stop-opacity:1" - offset="0" - id="stop3118" /> - <stop - style="stop-color:#82508e;stop-opacity:0" - offset="1" - id="stop3120" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8989" - id="linearGradient6512" - x1="15.242517" - y1="38.066795" - x2="15.242517" - y2="42.163002" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.474981,0,0,0.4591462,0.5705609,-3.9567446)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3124" - id="linearGradient3130" - x1="12.561858" - y1="39.998802" - x2="12.561858" - y2="42.352577" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5069392,0,0,0.4907885,-2.0817467e-2,-4.88025)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8720" - id="linearGradient8726" - x1="12.806054" - y1="16.65247" - x2="13.166923" - y2="16.608501" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.8035512,0,0,0.6654138,-0.6991237,0.3717176)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3116" - id="linearGradient8774" - x1="10.624538" - y1="19.264456" - x2="10.624538" - y2="23.165424" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7506322,0,0,0.7602819,0.3614067,-1.1609868)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8776" - id="radialGradient8782" - cx="11.539145" - cy="11.774944" - fx="11.539145" - fy="11.774944" - r="9.5" - gradientTransform="matrix(1.1492907,-3.5818508e-2,2.1662967e-2,0.7172256,-4.3193915,-6.011096e-2)" - gradientUnits="userSpaceOnUse" /> - <filter - inkscape:collect="always" - id="filter9040" - x="-0.095484518" - width="1.190969" - y="-0.32181817" - height="1.6436363"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.22627841" - id="feGaussianBlur9042" /> - </filter> - <filter - inkscape:collect="always" - id="filter8756" - x="-0.067594799" - width="1.1351896" - y="-0.12311285" - height="1.2462257"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.25007298" - id="feGaussianBlur8758" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8760" - id="linearGradient8766" - x1="10.025534" - y1="24.3125" - x2="12.26086" - y2="24.3125" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8739" - id="linearGradient8816" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2058295,0,0,3.3872105,-0.5868595,-0.5305442)" - x1="6.6287227" - y1="0.48644698" - x2="0.44665223" - y2="1.4697748" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8760" - id="linearGradient8735" - gradientUnits="userSpaceOnUse" - x1="9.778717" - y1="24.3125" - x2="12.178589" - y2="24.3125" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="32" - inkscape:cx="17.336548" - inkscape:cy="7.0248271" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - showguides="true" - inkscape:guide-bbox="true" - inkscape:grid-points="false" - width="24px" - height="24px" - inkscape:object-bbox="true" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10"> - <inkscape:grid - type="xygrid" - id="grid7936" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata4350"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - style="opacity:1;fill:none;fill-rule:evenodd;stroke:url(#linearGradient8816);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" - d="M 7.9293116,5.0795231 C 8.4000613,4.9623562 8.4835059,4.5003986 8.6165851,4.1601444 C 8.8703534,3.4900386 8.9850242,3.2527412 8.8138379,2.5709314 C 8.2219508,0.45209022 2.1611419,-0.88447008 1.4517269,2.9807965" - id="path8814" - sodipodi:nodetypes="cscc" /> - <path - style="opacity:1;fill:url(#linearGradient8774);fill-opacity:1;stroke:url(#linearGradient3130);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 7.5832705,1.5 C 4.2253041,1.5 1.5,4.2484155 1.5,7.6348558 C 1.5,10.409353 1.5368298,15.204777 2.3493298,16.119387 C 2.9513142,16.119387 14.14629,17.5 15.510463,17.5 C 16.582197,17.5 15.529722,16.489173 15.529722,16.489173 C 15.529722,15.082448 14.037305,14.095385 13.065033,13.123113 C 12.31715,12.330145 13.159601,10.088797 13.159601,10.088797 C 13.484704,9.3379883 13.534521,8.6063333 13.534521,7.735143 C 13.534521,4.348703 10.941237,1.5 7.5832705,1.5 z" - id="path5176" - sodipodi:nodetypes="cccccccsc" /> - <path - style="opacity:0.54299998999999999;fill:url(#radialGradient8782);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 7.6952762,2.4999998 C 4.8395496,2.4999998 2.5080065,4.8304336 2.5001711,7.7371358 C 2.5001581,7.7420387 2.4997927,7.7465938 2.5001711,7.7514849 C 2.5001711,11.097502 3.0181313,16.475208 3.0181313,16.475208 C 3.9379713,16.475208 10.734965,16.461527 13.502192,16.461527 C 14.056593,16.461527 15,16.692971 15,16.020522 C 15,15.91871 14.623872,16.133525 14.362514,15.895884 C 14.101157,15.658243 13.835251,15.059314 13.403964,14.806022 C 12.543199,14.263752 11.86054,13.312811 11.81661,11.873858 C 11.874694,10.425059 12.718766,9.4318208 12.620458,7.8321281 C 12.620458,4.918572 10.555818,2.4999998 7.6952762,2.4999998 z" - id="path5241" - sodipodi:nodetypes="cscccsscccc" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 7.9998599,7.6813275 C 7.9998599,9.061316 6.8055234,10 5.9999296,10 C 4.8959685,10 4,8.880011 4,7.5000225 C 4,6.3007912 4.6142095,4.9911617 5.7181378,5.0000449 C 8.059493,5.018459 7.9998599,6.5910879 7.9998599,7.6813275 z" - id="path5157" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient8766);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5162" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.8057553,0,0,0.7927385,-2.1942434,-11.247142)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.63276428" - inkscape:original="M 10.5 14 C 10.223 14 10 14.223 10 14.5 C 10 14.777 10.223 15 10.5 15 L 11.5 15 C 11.777 15 12 14.777 12 14.5 C 12 14.223 11.777 14 11.5 14 L 10.5 14 z M 13.5 14 C 13.223 14 13 14.223 13 14.5 C 13 14.777 13.223 15 13.5 15 L 14.5 15 C 14.777 15 15 14.777 15 14.5 C 15 14.223 14.777 14 14.5 14 L 13.5 14 z " - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9040)" - id="path8998" - d="M 10.5,13.375 C 9.8833937,13.375 9.375,13.883394 9.375,14.5 C 9.375,15.116606 9.8833937,15.625 10.5,15.625 L 11.5,15.625 C 11.997417,15.625 12.351557,15.26606 12.5,14.8125 C 12.648443,15.26606 13.002583,15.625 13.5,15.625 L 14.5,15.625 C 15.116606,15.625 15.625,15.116606 15.625,14.5 C 15.625,13.883394 15.116606,13.375 14.5,13.375 L 13.5,13.375 C 13.002583,13.375 12.648443,13.73394 12.5,14.1875 C 12.351557,13.73394 11.997417,13.375 11.5,13.375 L 10.5,13.375 z" - transform="matrix(0.7360213,0,0,0.7376927,0.4333759,-1.1147722)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.58151811" - inkscape:original="M 8.5 9 C 7.5744947 9 8.0888797 12.372263 4 10.3125 C 5.6494162 12.565197 8.197109 13 8.96875 13 C 9.7318012 13 11.759773 11.940619 12.03125 9.96875 C 9.8826905 12.168839 9.3373684 9 8.5 9 z " - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8756)" - id="path7960" - d="M 8.5,8.40625 C 8.2077387,8.40625 7.9340555,8.5866498 7.78125,8.75 C 7.6284445,8.9133502 7.5498385,9.0608344 7.46875,9.21875 C 7.3065731,9.5345811 7.172643,9.8595724 7,10.0625 C 6.827357,10.265428 6.671609,10.387141 6.28125,10.40625 C 5.890891,10.425359 5.2196564,10.269712 4.25,9.78125 C 4.0077291,9.6621096 3.7153231,9.7253647 3.5439557,9.9339859 C 3.3725882,10.142607 3.3673262,10.44173 3.53125,10.65625 C 4.4297328,11.883357 5.5774976,12.609102 6.59375,13.03125 C 7.6100024,13.453398 8.4737052,13.59375 8.96875,13.59375 C 9.6193922,13.59375 10.340813,13.267437 11.0625,12.6875 C 11.784187,12.107563 12.433247,11.228313 12.59375,10.0625 C 12.622923,9.8212663 12.499043,9.5873227 12.283116,9.4758765 C 12.067189,9.3644302 11.804734,9.3989754 11.625,9.5625 C 11.145204,10.053803 10.811541,10.151032 10.65625,10.15625 C 10.500959,10.161468 10.384244,10.105939 10.1875,9.90625 C 9.9907556,9.7065608 9.7866869,9.3846583 9.5625,9.09375 C 9.4504065,8.9482959 9.3464815,8.8194169 9.1875,8.6875 C 9.0285185,8.5555831 8.7880568,8.40625 8.5,8.40625 z" - transform="translate(0.9337088,2.2097087e-2)" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.665364,5.6592388 C 12.000973,4.6508398 10.81971,4.941345 10.39549,5.5852216 C 9.8141493,6.4675705 9.881553,8.00209 10.545944,9.0104902 C 11.123309,9.8868033 12.156638,10.433807 12.737979,9.551461 C 13.319319,8.6691115 13.190256,6.4559104 12.665364,5.6592388 z" - id="path3134" - sodipodi:nodetypes="csssc" /> - <path - style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 8,9 C 8,9 8,10 8,10 L 8.8944098,10 C 9.0595775,10 9.1925465,9.7769994 9.1925465,9.4999995 C 9.1925465,9.2229999 9.0595775,9 8.8944098,9 L 8,9 z M 10.086956,9 C 9.9217887,9 9.7888198,9.2229999 9.7888198,9.4999995 C 9.7888198,9.7769994 9.9217887,10 10.086956,10 L 11,10 C 11,10 11,9.1680139 11,9 L 10.086956,9 z" - id="rect3140" - sodipodi:nodetypes="cccscccscccc" /> - <path - style="fill:url(#linearGradient8726);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" - d="M 4.9337087,10.066933 C 8.8819634,12.626696 8.4961475,9.022097 9.4216528,9.022097 C 10.259021,9.022097 10.807246,12.196312 12.955806,9.9962228 C 12.684329,11.968092 10.658384,13.022097 9.8953332,13.022097 C 9.1236918,13.022097 6.5674999,12.88213 4.9337087,10.066933 z" - id="path3142" - sodipodi:nodetypes="czczc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient8735);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path8733" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.8057555,0,0,0.7724141,2.8057548,-10.779318)" /> - </g> -</svg>
--- a/pidgin/pixmaps/icons/hicolor/24x24/apps/scalable/pidgin.svg Wed Aug 20 07:01:05 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,347 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4345" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/Pidgin/2.1.0/icons/24/scalable" - sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/Bureaublad/pidgin.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - version="1.0" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4347"> - <linearGradient - id="linearGradient8989" - inkscape:collect="always"> - <stop - id="stop8991" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.81407034" /> - <stop - id="stop8993" - offset="1" - style="stop-color:#eeeeec;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8838"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop8840" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop8842" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8830"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop8832" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop8834" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8776"> - <stop - style="stop-color:#ffffff;stop-opacity:0.82412058" - offset="0" - id="stop8778" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="1" - id="stop8780" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8720"> - <stop - style="stop-color:#fdc26a;stop-opacity:1" - offset="0" - id="stop8722" /> - <stop - style="stop-color:#f57900;stop-opacity:1" - offset="1" - id="stop8724" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3124"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop3126" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop3128" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3116"> - <stop - style="stop-color:#82508e;stop-opacity:1;" - offset="0" - id="stop3118" /> - <stop - style="stop-color:#82508e;stop-opacity:0" - offset="1" - id="stop3120" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8989" - id="linearGradient6512" - x1="15.712908" - y1="41.672424" - x2="15.712908" - y2="43.283482" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.657666,0,0,0.625853,0.8007403,-4.3010586)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3124" - id="linearGradient3130" - x1="12.561858" - y1="39.538197" - x2="12.561858" - y2="43.858727" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.6753496,0,0,0.6455349,0.4630688,-4.891953)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8720" - id="linearGradient8726" - x1="12.806054" - y1="16.65247" - x2="13.166923" - y2="16.608501" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.9722718,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3116" - id="linearGradient8774" - x1="10.624538" - y1="19.763729" - x2="10.624538" - y2="23.347383" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.9722718,0)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient8776" - id="radialGradient8782" - cx="11.763939" - cy="12.831866" - fx="11.763939" - fy="12.831866" - r="9.5000002" - gradientTransform="matrix(1.5913256,-4.8823489e-2,2.9994878e-2,0.9776358,-5.9699631,1.0103644)" - gradientUnits="userSpaceOnUse" /> - <filter - inkscape:collect="always" - id="filter8810" - x="-0.066766478" - width="1.133533" - y="-0.10563155" - height="1.2112631"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.30534121" - id="feGaussianBlur8812" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8830" - id="linearGradient8836" - x1="6.3341951" - y1="3.1008458" - x2="0.83419508" - y2="3.1008458" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.9722718,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8838" - id="linearGradient8844" - x1="9.5704832" - y1="3.0778286" - x2="3.0625" - y2="-0.047171354" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.9722718,0)" /> - <filter - inkscape:collect="always" - id="filter9040" - x="-0.095484515" - width="1.190969" - y="-0.32181818" - height="1.6436364"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.22627841" - id="feGaussianBlur9042" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.627417" - inkscape:cx="21.62498" - inkscape:cy="11.838987" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1440" - inkscape:window-height="847" - inkscape:window-x="0" - inkscape:window-y="0" - showguides="true" - inkscape:guide-bbox="true" - inkscape:grid-points="false" - width="24px" - height="24px" - inkscape:object-bbox="true" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10"> - <inkscape:grid - type="xygrid" - id="grid7936" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata4350"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - style="fill:url(#linearGradient8844);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 6.9177548,1.9731142 C 8.1897168,-0.34713734 10.972272,1.9093507 10.972272,4.2806574 L 9.9267968,4.1947658 C 9.9267968,2.9993751 8.9228106,1.7171212 6.9177548,1.9731142 z" - id="rect5189" - sodipodi:nodetypes="cccc" /> - <path - style="fill:url(#linearGradient8836);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 4.3071856,3.782206 C 4.2486113,1.1368282 7.7866188,1.6997265 8.9722718,3.7533385 L 8.0239178,4.2016918 C 7.4262233,3.1664528 5.9156185,2.5579816 4.3071856,3.782206 z" - id="path8784" - sodipodi:nodetypes="cccc" - inkscape:transform-center-x="1.7235728" - inkscape:transform-center-y="-0.24306796" /> - <path - style="opacity:1;fill:url(#linearGradient8774);fill-opacity:1;stroke:url(#linearGradient3130);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 10.593313,3.5 C 6.1197955,3.5 2.4891175,7.1149956 2.4891175,11.569186 C 2.4891175,15.218486 3.4986749,23.427658 -1.7892089,23.427658 C -0.98723886,23.427658 18.806305,24.544826 20.623671,24.544826 C 22.051445,24.544826 21.939905,23.215283 21.939905,23.215283 C 21.939905,22.576692 21.741015,22.10882 20.830589,21.409004 C 19.67644,20.521846 19.025096,20.449608 18.028757,19.406617 C 17.032418,18.363626 18.022158,14.796859 18.022158,14.796859 C 18.455264,13.809319 18.521629,12.846972 18.521629,11.701094 C 18.521629,7.2469039 15.066831,3.5 10.593313,3.5 z" - id="path5176" - sodipodi:nodetypes="ccccsszcsc" /> - <path - style="opacity:0.5;fill:url(#radialGradient8782);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 10.665731,4.5 C 6.7116478,4.5 3.4833573,7.6765676 3.4725083,11.638635 C 3.4724903,11.645318 3.4719843,11.651527 3.4725083,11.658194 C 3.4725083,11.658194 4.335542,22.578523 0.47920826,23.611825 C 1.7528328,23.611825 14.992315,23.530678 18.82386,23.530678 C 19.591493,23.530678 20.897748,23.846154 20.897748,22.929553 C 20.897748,22.790774 20.766378,22.529834 20.404498,22.20591 C 20.042618,21.881986 19.501364,21.534156 18.904198,21.188899 C 17.106601,20.449743 16.43302,19.238726 16.372193,17.277317 C 16.452619,15.30249 17.621333,13.948626 17.485214,11.768117 C 17.485214,7.7967072 14.626482,4.5 10.665731,4.5 z" - id="path5241" - sodipodi:nodetypes="cscccsscccc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.97252291" - inkscape:original="M 7.15625 8 C 5.7694225 8 4.9999998 9.5395554 5 10.96875 C 5 12.613363 6.1444228 13.96875 7.53125 13.96875 C 8.5432599 13.96875 10.03125 12.832113 10.03125 11.1875 C 10.03125 9.8881973 8.5430781 8 7.15625 8 z " - style="opacity:1;fill:#9757a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8816" - d="M 7.15625,7.03125 C 6.1029614,7.03125 5.2431984,7.6462575 4.75,8.40625 C 4.2568016,9.1662425 4.0312499,10.07963 4.03125,10.96875 C 4.03125,13.064524 5.5107726,14.9375 7.53125,14.9375 C 8.4013507,14.9375 9.1895212,14.517728 9.84375,13.875 C 10.497979,13.232272 11,12.303108 11,11.1875 C 11,10.166552 10.509035,9.2426793 9.84375,8.46875 C 9.1784648,7.6948207 8.2910346,7.03125 7.15625,7.03125 z" - transform="matrix(1.0039789,0,0,1,-4.3768242e-2,6.25e-2)" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 9.9722718,11.217568 C 9.9722718,12.873569 8.4886302,14 7.4878967,14 C 6.1165222,14 5.0035223,12.656001 5.0035223,11 C 5.0035223,9.5609094 5.7664715,8 7.1378462,8 C 8.5092214,8 9.9722718,9.9092687 9.9722718,11.217568 z" - id="path5157" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5162" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(1.1960429,0,0,1.158621,-4.7066825,-16.575223)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0018603" - inkscape:original="M 15.375 8 C 14.972613 8.0219165 14.616322 8.2670758 14.40625 8.59375 C 13.830495 9.4890789 13.873243 11.039266 14.53125 12.0625 C 15.103067 12.951704 16.049246 13.426577 16.625 12.53125 C 17.200756 11.635921 17.051098 9.4958908 16.53125 8.6875 C 16.202247 8.1758836 15.777387 7.9780835 15.375 8 z " - style="fill:#9757a4;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8820" - d="M 15.3125,7 C 14.537055,7.0422356 13.927975,7.4941649 13.5625,8.0625 C 12.689986,9.4193046 12.791183,11.199932 13.6875,12.59375 C 14.065497,13.181554 14.559478,13.713455 15.28125,13.9375 C 16.003022,14.161545 17.002245,13.787939 17.46875,13.0625 C 17.974403,12.276184 18.035404,11.401604 18,10.53125 C 17.964596,9.6608958 17.828805,8.8619408 17.375,8.15625 C 16.897304,7.4134085 16.079992,6.9581976 15.3125,7 z" - transform="translate(0.9722718,0)" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 17.512585,8.6790592 C 16.854579,7.6558262 15.784106,7.9284344 15.363962,8.5817827 C 14.788207,9.4771112 14.854963,11.034204 15.51297,12.057438 C 16.084787,12.946642 17.025322,13.413012 17.601076,12.517685 C 18.176831,11.622356 18.032433,9.48745 17.512585,8.6790592 z" - id="path3134" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3136" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.8057553,0,0,1.158621,7.7780286,-16.668973)" /> - <path - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8810)" - d="M 13.566022,12.4375 C 13.194663,12.4375 12.924994,12.697732 12.784772,12.90625 C 12.64455,13.114768 12.563861,13.333559 12.472272,13.5625 C 12.289094,14.020382 12.105216,14.51781 11.847272,14.875 C 11.589328,15.23219 11.326777,15.452654 10.816022,15.46875 C 10.305267,15.484846 9.472703,15.240041 8.2535218,14.4375 C 8.0308701,14.276718 7.7244458,14.30128 7.530249,14.495477 C 7.3360522,14.689674 7.3114894,14.996098 7.4722718,15.21875 C 8.177906,16.27546 9.2361909,17.5841 10.612897,18.40625 C 11.30125,18.817325 12.405251,19.087337 12.987897,19.34375 C 13.570543,19.600163 13.914091,19.5625 14.378522,19.5625 C 14.899377,19.5625 15.235127,19.263825 15.597272,18.9375 C 15.959417,18.611175 16.339029,18.201439 16.691022,17.75 C 17.395008,16.847123 18.035855,15.803499 18.409772,15.1875 C 18.520635,14.941092 18.439589,14.65066 18.217158,14.49726 C 17.994726,14.343859 17.694451,14.37131 17.503522,14.5625 C 16.887662,15.324047 16.510081,15.447586 16.316022,15.4375 C 16.121963,15.427414 15.873341,15.263025 15.597272,14.875 C 15.321203,14.486975 15.048543,13.963561 14.784772,13.5 C 14.652887,13.26822 14.51805,13.036007 14.347272,12.84375 C 14.176494,12.651493 13.932762,12.4375 13.566022,12.4375 z" - id="path8770" - sodipodi:nodetypes="csssscscssssscscssssc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.63276428" - inkscape:original="M 10.5 14 C 10.223 14 10 14.223 10 14.5 C 10 14.777 10.223 15 10.5 15 L 11.5 15 C 11.777 15 12 14.777 12 14.5 C 12 14.223 11.777 14 11.5 14 L 10.5 14 z M 13.5 14 C 13.223 14 13 14.223 13 14.5 C 13 14.777 13.223 15 13.5 15 L 14.5 15 C 14.777 15 15 14.777 15 14.5 C 15 14.223 14.777 14 14.5 14 L 13.5 14 z " - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9040)" - id="path8998" - d="M 10.5,13.375 C 9.8833937,13.375 9.375,13.883394 9.375,14.5 C 9.375,15.116606 9.8833937,15.625 10.5,15.625 L 11.5,15.625 C 11.997417,15.625 12.351557,15.26606 12.5,14.8125 C 12.648443,15.26606 13.002583,15.625 13.5,15.625 L 14.5,15.625 C 15.116606,15.625 15.625,15.116606 15.625,14.5 C 15.625,13.883394 15.116606,13.375 14.5,13.375 L 13.5,13.375 C 13.002583,13.375 12.648443,13.73394 12.5,14.1875 C 12.351557,13.73394 11.997417,13.375 11.5,13.375 L 10.5,13.375 z" - transform="translate(0.9722718,0)" /> - <path - style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 11,14 C 11,14 11,15 11,15 L 12.491733,15 C 12.767207,15 12.988978,14.777 12.988978,14.5 C 12.988978,14.223 12.767207,14 12.491733,14 L 11,14 z M 14.480711,14 C 14.205238,14 13.983467,14.223 13.983467,14.5 C 13.983467,14.777 14.205238,15 14.480711,15 L 16.003522,15 C 16.003522,15 16.003522,14.168014 16.003522,14 L 14.480711,14 z" - id="rect3140" - sodipodi:nodetypes="cccscccscccc" /> - <path - style="fill:url(#linearGradient8726);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" - d="M 7.982195,14.992875 C 13.070707,18.088335 12.577918,13 13.567333,13 C 14.578647,13 15.264171,18.201991 17.938001,14.895644 C 17.517658,16.431071 15.326409,19.011297 14.376811,19.011297 C 13.416522,19.011297 10.034853,18.378283 7.982195,14.992875 z" - id="path3142" - sodipodi:nodetypes="czczc" /> - </g> -</svg>
--- a/pidgin/pixmaps/icons/hicolor/32x32/apps/scalable/pidgin.svg Wed Aug 20 07:01:05 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,617 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="32" - height="32" - id="svg4345" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/32/scalable" - sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/Bureaublad/pidgin-32.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - version="1.0" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4347"> - <linearGradient - inkscape:collect="always" - id="linearGradient2816"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop2818" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2820" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2826"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop2828" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop2830" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2834"> - <stop - style="stop-color:#82508e;stop-opacity:1;" - offset="0" - id="stop2836" /> - <stop - style="stop-color:#82508e;stop-opacity:0;" - offset="1" - id="stop2838" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6537"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop6539" /> - <stop - style="stop-color:white;stop-opacity:0;" - offset="1" - id="stop6541" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6506"> - <stop - style="stop-color:#eeeeec;stop-opacity:1;" - offset="0" - id="stop6508" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop6510" /> - </linearGradient> - <linearGradient - y2="30.188351" - x2="18.143806" - y1="29.72571" - x1="18.097515" - gradientUnits="userSpaceOnUse" - id="linearGradient8818" - xlink:href="#linearGradient8808" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="30.431053" - x2="18.031723" - y1="29.72571" - x1="18.097515" - id="linearGradient8814" - xlink:href="#linearGradient8820" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8686" - inkscape:collect="always"> - <stop - id="stop8688" - offset="0" - style="stop-color:#fdb751;stop-opacity:1" /> - <stop - id="stop8690" - offset="1" - style="stop-color:#ce5c00;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient8808" - inkscape:collect="always"> - <stop - id="stop8810" - offset="0" - style="stop-color:#6e3100;stop-opacity:1;" /> - <stop - id="stop8812" - offset="1" - style="stop-color:#6e3100;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8820"> - <stop - style="stop-color:#522400;stop-opacity:1" - offset="0" - id="stop8822" /> - <stop - style="stop-color:#6e3100;stop-opacity:0;" - offset="1" - id="stop8824" /> - </linearGradient> - <linearGradient - id="linearGradient8848" - inkscape:collect="always"> - <stop - id="stop8850" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop8852" - offset="1" - style="stop-color:#ffffff;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient8860" - inkscape:collect="always"> - <stop - id="stop8862" - offset="0" - style="stop-color:#3b1941;stop-opacity:1;" /> - <stop - id="stop8864" - offset="1" - style="stop-color:#a949b9;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient8868" - inkscape:collect="always"> - <stop - id="stop8870" - offset="0" - style="stop-color:#3b1941;stop-opacity:1;" /> - <stop - id="stop8872" - offset="1" - style="stop-color:#a646b7;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient8876" - inkscape:collect="always"> - <stop - id="stop8878" - offset="0" - style="stop-color:#9a5ba8;stop-opacity:1;" /> - <stop - id="stop8880" - offset="1" - style="stop-color:#744380;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient8884" - inkscape:collect="always"> - <stop - id="stop8886" - offset="0" - style="stop-color:#9a5ba8;stop-opacity:1;" /> - <stop - id="stop8888" - offset="1" - style="stop-color:#6b3e75;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient8904" - inkscape:collect="always"> - <stop - id="stop8906" - offset="0" - style="stop-color:#729fcf;stop-opacity:1;" /> - <stop - id="stop8908" - offset="1" - style="stop-color:#25486d;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient8732" - inkscape:collect="always"> - <stop - id="stop8734" - offset="0" - style="stop-color:#6b3678;stop-opacity:1;" /> - <stop - id="stop8736" - offset="1" - style="stop-color:#6b3678;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8744"> - <stop - style="stop-color:#7a1d90;stop-opacity:1" - offset="0" - id="stop8746" /> - <stop - style="stop-color:#6b3678;stop-opacity:0;" - offset="1" - id="stop8748" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8732" - id="linearGradient8239" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.6883673,0,0,0.6819755,24.954518,-0.5239125)" - x1="4.0852318" - y1="40.416641" - x2="4.0852318" - y2="43.352409" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8744" - id="linearGradient8242" - gradientUnits="userSpaceOnUse" - x1="4.0852318" - y1="39.097038" - x2="4.0852318" - y2="44.321774" - gradientTransform="matrix(0.6883673,0,0,0.6819755,-0.5307196,-0.5239125)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8686" - id="linearGradient8248" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7692307,0,0,0.8858131,-1.2307696,-7.0311428)" - x1="18.5" - y1="29.911009" - x2="19.985121" - y2="29.853554" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2816" - id="radialGradient8261" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7193306,0,0,0.7337558,-19.889272,-7.8067639)" - cx="46.861629" - cy="38.01083" - fx="46.861629" - fy="38.01083" - r="16.390338" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6506" - id="linearGradient8263" - gradientUnits="userSpaceOnUse" - x1="15.645709" - y1="40.956318" - x2="15.645709" - y2="44.694569" - gradientTransform="matrix(0.6894969,0,0,0.6764991,-0.2876444,-0.2797398)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2834" - id="linearGradient8266" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7068603,0,0,0.6774341,-33.464679,-11.987365)" - x1="58.611423" - y1="56.489136" - x2="58.611423" - y2="61.328545" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2826" - id="linearGradient8268" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7068603,0,0,0.6774341,-33.464679,-11.987365)" - x1="60.8349" - y1="56.601696" - x2="60.8349" - y2="61.321751" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8868" - id="linearGradient8271" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9347751,0,0,0.4640431,-5.8911763,1.552034)" - x1="12.409452" - y1="10.602999" - x2="16.140554" - y2="13.895189" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8860" - id="linearGradient8274" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0342512,0,0,0.6819755,-6.0896085,-1.7917997)" - x1="13.061977" - y1="10.027351" - x2="16.545418" - y2="12.891665" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6537" - id="linearGradient8277" - gradientUnits="userSpaceOnUse" - x1="30.5" - y1="1.7319652" - x2="30.5" - y2="22.781603" - gradientTransform="matrix(0.6666666,0,0,0.6587574,0.1666662,-0.1468935)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8904" - id="linearGradient8280" - gradientUnits="userSpaceOnUse" - x1="29.466667" - y1="6.8962817" - x2="42.829762" - y2="37.801281" - gradientTransform="matrix(0.6875001,0,0,0.6767003,-0.4687499,-0.5159997)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8876" - id="linearGradient8284" - gradientUnits="userSpaceOnUse" - x1="10.46875" - y1="25.3125" - x2="9.53125" - y2="19.6875" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8848" - id="linearGradient8286" - gradientUnits="userSpaceOnUse" - x1="10.48653" - y1="25.21174" - x2="9.7512932" - y2="23.675837" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8884" - id="linearGradient8288" - gradientUnits="userSpaceOnUse" - x1="23.881994" - y1="24.343237" - x2="24.973602" - y2="19.216713" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8848" - id="linearGradient8290" - gradientUnits="userSpaceOnUse" - x1="10.498732" - y1="24.936121" - x2="9.6415968" - y2="23.675837" /> - <filter - inkscape:collect="always" - id="filter9078"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.29164334" - id="feGaussianBlur9080" /> - </filter> - <filter - inkscape:collect="always" - id="filter9122" - x="-0.06288049" - width="1.125761" - y="-0.22385455" - height="1.4477091"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.14573864" - id="feGaussianBlur9124" /> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="17.236022" - inkscape:cx="25.766946" - inkscape:cy="17.060038" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1432" - inkscape:window-height="840" - inkscape:window-x="0" - inkscape:window-y="0" - showguides="true" - inkscape:guide-bbox="true" - inkscape:grid-points="false" - width="32px" - height="32px" - inkscape:object-bbox="true" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10"> - <inkscape:grid - type="xygrid" - id="grid8236" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata4350"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8280);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 13.646486,0.49905075 C 11.351227,0.49905075 9.5000004,2.6044244 9.5000004,5.2148058 L 9.5000004,13.377503 C 9.5000004,15.987885 11.351227,18.470375 13.646486,18.470375 L 23.588406,18.470375 C 23.588406,18.470375 23.18568,20.245193 22.16985,21.5 C 25.739035,21.5 26.597376,19.058605 26.597376,18.460569 L 28.062501,18.470375 C 30.821257,18.470375 31.500001,15.984112 31.500001,13.377503 L 31.500001,5.2148058 C 31.500001,2.6044246 29.648775,0.49905075 27.353517,0.49905075 L 13.646486,0.49905075 z" - id="path8201" - sodipodi:nodetypes="cccccccccccc" /> - <path - style="fill:url(#linearGradient8277);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 13.854166,1.5 C 12.0438,1.5 10.5,3.1982064 10.5,5.4319585 L 10.5,13.37822 C 10.5,15.611972 12.0438,17.310178 13.854166,17.310178 L 23.854707,17.310178 C 24.222455,17.311225 24.520314,17.605549 24.521373,17.968936 C 24.521373,17.968936 24.644478,19.146784 24.232611,19.890811 C 25.286204,19.513694 25.854166,17.433696 25.854166,17.433696 C 25.969506,17.352067 26.108135,17.30881 26.249999,17.310178 L 27.833332,17.310178 C 28.997823,17.310178 29.543634,16.936466 29.9375,16.280871 C 30.331365,15.625274 30.5,14.590529 30.5,13.37822 L 30.5,5.4319585 C 30.5,3.1982066 28.956198,1.5 27.145833,1.5 L 13.854166,1.5 z" - id="path8203" - sodipodi:nodetypes="ccccccccccscccc" /> - <rect - style="fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect8734" - width="4.8185711" - height="1.2686747" - x="10.237393" - y="17.486546" - rx="0.5602473" - ry="0.63433737" /> - <path - style="fill:url(#linearGradient8274);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 6,4.9064736 C 7.9672058,3.6750483 11.311019,5.8704952 11.667854,7 L 8.951995,7 C 8.9089721,5.4016199 6,4.9064736 6,4.9064736 z" - id="path8205" - sodipodi:nodetypes="cccc" /> - <path - style="fill:url(#linearGradient8271);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 5,6.7464464 C 6.2268113,5.1783371 10,6.3940033 10,7.5343215 L 7.134176,8 C 8.0531299,6.6379921 5,6.7464464 5,6.7464464 z" - id="path8207" - sodipodi:nodetypes="cccc" /> - <path - style="fill:url(#linearGradient8266);fill-opacity:1;stroke:url(#linearGradient8268);stroke-width:0.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 11.067522,6.4999996 C 6.385278,6.4999996 2.2201068,10.234965 2.6293774,14.884611 C 3.5249724,25.059298 0.81309749,23.680419 0.50183135,28.323515 C 0.50183135,29.735371 1.1983857,30.406973 2.6874788,30.406973 C 3.5268674,30.406973 21.218061,30.505972 23.120221,30.505972 C 24.614613,30.505972 24.497868,29.110729 24.497868,29.110729 C 24.497868,27.305087 19.972479,25.789981 18.711123,24.464564 C 17.418686,23.109004 18.842985,18.271782 18.842985,18.271782 C 19.296299,17.235443 19.549846,16.087114 19.549846,14.884611 C 19.549846,10.210316 15.749766,6.4999996 11.067522,6.4999996 z" - id="path8209" - sodipodi:nodetypes="cscccszcsc" /> - <path - style="opacity:0.55;fill:url(#radialGradient8261);fill-opacity:1;stroke:url(#linearGradient8263);stroke-width:0.99999982;stroke-miterlimit:4;stroke-opacity:1" - d="M 10.916681,7.4999998 C 6.7712212,7.4999998 3.1789143,10.957612 3.5045886,15.167484 C 3.8937578,20.198131 3.7235067,21.924032 2.4866618,25.116843 C 0.50096208,28.326958 1.8660136,29.846841 3.4810518,29.846841 C 4.8163187,29.846841 17.103621,29.826924 21.120612,29.826924 C 21.925398,29.826924 23.294875,30.163902 23.294875,29.184825 C 23.294875,29.036588 23.157148,28.757863 22.777754,28.411859 C 22.398357,28.065856 21.830907,27.694319 21.204838,27.325529 C 20.578767,26.956739 19.909935,26.583672 19.308721,26.218308 C 18.707508,25.852945 18.174778,25.511888 17.800447,25.027522 C 17.379851,24.483292 17.186833,23.843536 17.14928,23.147336 C 17.111728,22.451136 17.206769,21.704215 17.28733,20.995566 C 17.448452,19.578267 17.800447,18.342413 17.800447,18.342413 C 17.810782,18.299429 17.825209,18.257467 17.84354,18.217067 C 18.248606,17.280213 18.468397,16.236634 18.468397,15.146094 C 18.468397,10.903994 15.069132,7.4999998 10.916681,7.4999998 z" - id="path8211" - sodipodi:nodetypes="cscccssssssscssc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0174263" - inkscape:original="M 9.96875 19 C 8.022221 19 6.9374998 21.081214 6.9375 23 C 6.9375 25.208 8.5222219 27 10.46875 27 C 11.889191 27 14 25.489251 14 23.28125 C 14 21.536852 11.915281 19 9.96875 19 z " - style="fill:url(#linearGradient8284);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8838" - d="M 9.96875,17.96875 C 8.6328774,17.96875 7.5286409,18.753017 6.875,19.71875 C 6.2213591,20.684483 5.9062499,21.848884 5.90625,23 C 5.90625,25.694817 7.8977844,28.03125 10.46875,28.03125 C 11.539674,28.03125 12.596335,27.527372 13.46875,26.71875 C 14.341165,25.910128 15.03125,24.709464 15.03125,23.28125 C 15.03125,22.003744 14.362496,20.808851 13.46875,19.8125 C 12.575004,18.816149 11.384009,17.96875 9.96875,17.96875 z" - transform="matrix(0.8767124,0,0,0.795031,-1.1780825,-4.2857136)" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 11,14.217567 C 11,15.873567 9.2097808,17 8.0022573,17 C 6.3475044,17 5.0045159,15.655999 5.0045159,14 C 5.0045159,12.56091 5.9251197,11 7.5798726,11 C 9.2346277,11 11,12.909268 11,14.217567 z" - id="path8214" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path8216" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(1.2086331,0,0,1.1586209,-4.7913664,-13.66897)" /> - <path - sodipodi:type="arc" - style="fill:url(#linearGradient8286);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5164" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.4028777,0,0,0.3862069,3.4028779,5.1103446)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0250763" - inkscape:original="M 24.71875 19 C 23.921039 19.030682 23.197708 19.355158 22.78125 19.8125 C 21.639847 21.065961 21.758036 23.254972 23.0625 24.6875 C 24.196099 25.932389 26.077347 26.565958 27.21875 25.3125 C 28.360153 24.05904 28.061824 21.069247 27.03125 19.9375 C 26.379019 19.221236 25.516461 18.969318 24.71875 19 z " - style="fill:url(#linearGradient8288);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8846" - d="M 24.6875,17.96875 C 23.636213,18.009185 22.683031,18.409233 22.03125,19.125 C 20.466122,20.843786 20.678782,23.580894 22.3125,25.375 C 23.011072,26.142154 23.917332,26.724837 24.9375,26.9375 C 25.957668,27.150163 27.151401,26.89759 27.96875,26 C 28.842555,25.04041 29.039766,23.753975 28.96875,22.53125 C 28.897734,21.308525 28.565932,20.111716 27.78125,19.25 C 26.906665,18.289553 25.728905,17.928695 24.6875,17.96875 z" - transform="matrix(0.7484239,0,0,0.7741119,-1.6908405,-3.9075188)" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 18.387083,11.67906 C 17.509743,10.655828 16.082447,10.928433 15.522253,11.58178 C 14.754581,12.477109 14.843587,14.034201 15.720929,15.057435 C 16.483351,15.94664 17.737401,16.413013 18.505073,15.517687 C 19.272745,14.622358 19.080214,12.487451 18.387083,11.67906 z" - id="path8220" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path8222" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.8057552,0,0,1.1586207,7.8057579,-13.668966)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.45127434" - inkscape:original="M 13.4375 16 C 12.661218 16 12.51015 20.901969 8 18.0625 C 9.44341 21.526853 12.98614 22.15225 14.4375 23 C 15.186206 22.224914 17.79624 20.07567 18 17.6875 C 14.33672 20.56768 14.203099 16 13.4375 16 z " - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter9078)" - id="path8294" - d="M 13.4375,15.5625 C 13.102994,15.5625 12.900231,15.762242 12.78125,15.9375 C 12.662269,16.112758 12.598408,16.320422 12.5,16.53125 C 12.303184,16.952907 12.081096,17.438832 11.78125,17.8125 C 11.481404,18.186168 11.117515,18.452218 10.59375,18.5 C 10.069985,18.547782 9.3270345,18.365572 8.25,17.6875 C 8.0823108,17.580065 7.8640254,17.595242 7.7128173,17.724849 C 7.5616092,17.854456 7.5132259,18.067852 7.59375,18.25 C 9.1305666,21.93854 12.960094,22.63981 14.21875,23.375 C 14.390432,23.472658 14.605671,23.447336 14.75,23.3125 C 15.08711,22.963512 15.981008,22.217382 16.78125,21.25 C 17.581492,20.282618 18.32272,19.06403 18.4375,17.71875 C 18.441912,17.546498 18.34786,17.386764 18.195094,17.30706 C 18.042327,17.227356 17.857509,17.241591 17.71875,17.34375 C 16.849538,18.02715 16.256503,18.203898 15.875,18.1875 C 15.493497,18.171102 15.246785,17.984965 15,17.65625 C 14.753215,17.327535 14.557786,16.863539 14.375,16.46875 C 14.283607,16.271356 14.181058,16.105684 14.0625,15.9375 C 13.943942,15.769316 13.757564,15.5625 13.4375,15.5625 z" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.28790623" - inkscape:original="M 11.5 17 C 11.223 17 11 17.223 11 17.5 C 11 17.777 11.223 18 11.5 18 L 15.5 18 C 15.777 18 16 17.777 16 17.5 C 16 17.223 15.777 17 15.5 17 L 11.5 17 z " - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter9122)" - id="path9084" - d="M 11.5,16.71875 C 11.06848,16.71875 10.71875,17.06848 10.71875,17.5 C 10.71875,17.93152 11.06848,18.28125 11.5,18.28125 L 15.5,18.28125 C 15.93152,18.28125 16.28125,17.93152 16.28125,17.5 C 16.28125,17.06848 15.93152,16.71875 15.5,16.71875 L 11.5,16.71875 z" /> - <rect - style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect8226" - width="5" - height="1" - x="11" - y="17" - rx="0.5" - ry="0.5" /> - <path - style="fill:url(#linearGradient8248);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" - d="M 8,18.051818 C 12.51015,20.891288 12.65519,16 13.431472,16 C 14.197071,16 14.33672,20.582306 18,17.702126 C 17.79624,20.090296 15.178764,22.224914 14.430058,23 C 12.978698,22.15225 9.44341,21.516171 8,18.051818 z" - id="rect5187" - sodipodi:nodetypes="czccc" /> - <path - sodipodi:type="arc" - style="opacity:0.61111108999999997;fill:url(#linearGradient8814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path8806" - sodipodi:cx="18.097515" - sodipodi:cy="29.72571" - sodipodi:rx="0.28726214" - sodipodi:ry="0.6408155" - d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" - transform="matrix(-1.0945739,0.462613,0.6067759,0.7520251,16.272223,-11.226626)" /> - <path - sodipodi:type="arc" - style="opacity:0.61111108999999997;fill:url(#linearGradient8818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path8816" - sodipodi:cx="18.097515" - sodipodi:cy="29.72571" - sodipodi:rx="0.28726214" - sodipodi:ry="0.6408155" - d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" - transform="matrix(1.0945739,0.462613,-0.606776,0.7520251,10.727779,-11.226626)" /> - <path - sodipodi:type="arc" - style="fill:url(#linearGradient8290);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path8856" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.4028777,0,0,0.3862069,11.402878,5.110345)" /> - <path - style="opacity:0.61111109;fill:url(#linearGradient8242);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 1.79252,30.122362 C 0.67392318,29.866621 0.24369361,27.479706 2.3518185,23.856712 C 3.1851311,27.272027 7.0413207,29.73875 7.0413207,29.73875 L 1.79252,30.122362 z" - id="rect7959" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:0.61111109;fill:url(#linearGradient8239);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 22.631278,30.122362 C 23.749876,29.866621 24.782427,28.50267 19.275488,25.774768 C 19.517749,28.593354 17.382477,29.73875 17.382477,29.73875 L 22.631278,30.122362 z" - id="path8740" - sodipodi:nodetypes="cccc" /> - </g> -</svg>
--- a/pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg Wed Aug 20 07:01:05 2008 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,610 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="48px" - height="48px" - id="svg4345" - sodipodi:version="0.32" - inkscape:version="0.46" - sodipodi:docbase="/home/hbons/Desktop/2.0.2/pidgin/pixmaps/icons/48/scalable" - sodipodi:docname="pidgin.svg" - inkscape:export-filename="/home/hbons/Desktop/pidgin48.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> - <defs - id="defs4347"> - <linearGradient - id="linearGradient8744" - inkscape:collect="always"> - <stop - id="stop8746" - offset="0" - style="stop-color:#7a1d90;stop-opacity:1" /> - <stop - id="stop8748" - offset="1" - style="stop-color:#6b3678;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8732"> - <stop - style="stop-color:#6b3678;stop-opacity:1;" - offset="0" - id="stop8734" /> - <stop - style="stop-color:#6b3678;stop-opacity:0;" - offset="1" - id="stop8736" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8904"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop8906" /> - <stop - style="stop-color:#25486d;stop-opacity:1" - offset="1" - id="stop8908" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8884"> - <stop - style="stop-color:#9a5ba8;stop-opacity:1;" - offset="0" - id="stop8886" /> - <stop - style="stop-color:#6b3e75;stop-opacity:1" - offset="1" - id="stop8888" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8876"> - <stop - style="stop-color:#9a5ba8;stop-opacity:1;" - offset="0" - id="stop8878" /> - <stop - style="stop-color:#744380;stop-opacity:1" - offset="1" - id="stop8880" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8868"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop8870" /> - <stop - style="stop-color:#a646b7;stop-opacity:1" - offset="1" - id="stop8872" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8860"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop8862" /> - <stop - style="stop-color:#a949b9;stop-opacity:1" - offset="1" - id="stop8864" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8848"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop8850" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="1" - id="stop8852" /> - </linearGradient> - <linearGradient - id="linearGradient8820" - inkscape:collect="always"> - <stop - id="stop8822" - offset="0" - style="stop-color:#522400;stop-opacity:1" /> - <stop - id="stop8824" - offset="1" - style="stop-color:#6e3100;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8808"> - <stop - style="stop-color:#6e3100;stop-opacity:1;" - offset="0" - id="stop8810" /> - <stop - style="stop-color:#6e3100;stop-opacity:0;" - offset="1" - id="stop8812" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient8686"> - <stop - style="stop-color:#fdb751;stop-opacity:1" - offset="0" - id="stop8688" /> - <stop - style="stop-color:#ce5c00;stop-opacity:1" - offset="1" - id="stop8690" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2834"> - <stop - style="stop-color:#7e408d;stop-opacity:1" - offset="0" - id="stop2836" /> - <stop - style="stop-color:#82508e;stop-opacity:0;" - offset="1" - id="stop2838" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2826"> - <stop - style="stop-color:#3b1941;stop-opacity:1;" - offset="0" - id="stop2828" /> - <stop - style="stop-color:#3b1941;stop-opacity:0;" - offset="1" - id="stop2830" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient2816"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop2818" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop2820" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6537"> - <stop - style="stop-color:white;stop-opacity:1;" - offset="0" - id="stop6539" /> - <stop - style="stop-color:#d3e1f1;stop-opacity:1" - offset="1" - id="stop6541" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient6506"> - <stop - style="stop-color:#ffffff;stop-opacity:0.95477384" - offset="0" - id="stop6508" /> - <stop - style="stop-color:#eeeeec;stop-opacity:0;" - offset="1" - id="stop6510" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6506" - id="linearGradient6512" - x1="15.645709" - y1="40.668503" - x2="15.645709" - y2="47.022106" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2816" - id="radialGradient2824" - cx="14.930223" - cy="25.801632" - fx="14.930223" - fy="25.801632" - r="16.390338" - gradientTransform="matrix(1.3364897,0,0,1.3894845,-0.759152,-10.711989)" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2826" - id="linearGradient2832" - x1="13.191773" - y1="41.606163" - x2="13.191773" - y2="49.067719" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2834" - id="linearGradient2840" - x1="11.373499" - y1="43.444576" - x2="11.373499" - y2="47.757988" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8686" - id="linearGradient8692" - x1="18.5" - y1="29.911009" - x2="19.985121" - y2="29.853554" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)" /> - <filter - inkscape:collect="always" - id="filter8730"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.27197245" - id="feGaussianBlur8732" /> - </filter> - <filter - inkscape:collect="always" - id="filter8792" - x="-0.095301818" - width="1.1906036" - y="-0.27704017" - height="1.5540803"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.31022727" - id="feGaussianBlur8794" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8820" - id="linearGradient8814" - x1="18.339697" - y1="29.338558" - x2="18.031723" - y2="30.431053" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8808" - id="linearGradient8818" - gradientUnits="userSpaceOnUse" - x1="17.969458" - y1="29.494703" - x2="18.143806" - y2="30.188351" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8848" - id="linearGradient8854" - x1="10.48653" - y1="25.21174" - x2="9.7512932" - y2="23.675837" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8848" - id="linearGradient8858" - gradientUnits="userSpaceOnUse" - x1="10.498732" - y1="24.936121" - x2="9.6415968" - y2="23.675837" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8860" - id="linearGradient8866" - x1="13.061977" - y1="10.027351" - x2="16.545418" - y2="12.891665" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.50247,0,0,1,-6.5946403,-2.139701)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8868" - id="linearGradient8874" - x1="12.409452" - y1="10.602999" - x2="16.140554" - y2="13.895189" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.236264,0,0,0.549587,-5.4828863,3.775206)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8876" - id="linearGradient8882" - x1="10.46875" - y1="25.3125" - x2="9.53125" - y2="19.6875" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8884" - id="linearGradient8890" - x1="23.881994" - y1="24.343237" - x2="24.973602" - y2="19.216713" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8904" - id="linearGradient8910" - x1="26.125" - y1="1.8037834" - x2="41.875" - y2="33.678783" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8744" - id="linearGradient8738" - x1="4.0852318" - y1="39.097038" - x2="4.0852318" - y2="44.321774" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient8732" - id="linearGradient8742" - gradientUnits="userSpaceOnUse" - x1="4.0852318" - y1="40.416641" - x2="4.0852318" - y2="43.352409" - gradientTransform="matrix(-1,0,0,1,37.022732,0)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient6537" - id="linearGradient7977" - gradientUnits="userSpaceOnUse" - x1="30.5" - y1="4.8871226" - x2="30.5" - y2="22.781603" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.828427" - inkscape:cx="63.722923" - inkscape:cy="33.120105" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:grid-bbox="true" - inkscape:document-units="px" - inkscape:window-width="1434" - inkscape:window-height="840" - inkscape:window-x="-2" - inkscape:window-y="0" - showguides="true" - inkscape:guide-bbox="true" - inkscape:grid-points="true" - inkscape:snap-bbox="true" - inkscape:snap-nodes="false" - objecttolerance="10" - gridtolerance="10"> - <inkscape:grid - type="xygrid" - id="grid7914" - visible="true" - enabled="true" /> - </sodipodi:namedview> - <metadata - id="metadata4350"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - inkscape:label="Layer 1" - inkscape:groupmode="layer"> - <path - style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8910);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 20.53125,1.5 C 17.192693,1.5 14.5,4.611235 14.5,8.46875 L 14.5,20.53125 C 14.5,24.388765 17.192693,27.5 20.53125,27.5 L 34.530203,27.5 C 34.530203,27.5 34.406442,30.680041 32.92887,32.534344 C 38.120414,32.534344 39.353553,27.485509 39.353553,27.485509 L 41.5,27.5 C 45.512737,27.5 46.5,24.38319 46.5,20.53125 L 46.5,8.46875 C 46.5,4.6112353 43.807307,1.5 40.46875,1.5 L 20.53125,1.5 z" - id="rect5498" - sodipodi:nodetypes="cccccccccccc" /> - <path - style="fill:url(#linearGradient7977);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 20.53125,2.5 C 17.815701,2.5 15.5,5.0778932 15.5,8.46875 L 15.5,20.53125 C 15.5,23.922107 17.815701,26.5 20.53125,26.5 L 34.53125,26.5 C 35.082875,26.501589 35.529661,26.948375 35.53125,27.5 C 35.53125,27.5 35.367799,30.212738 34.75,31.34218 C 36.852551,31.34218 38.53125,26.6875 38.53125,26.6875 C 38.704261,26.563588 38.912203,26.497922 39.125,26.5 L 41.5,26.5 C 43.246736,26.5 44.065452,25.932701 44.65625,24.9375 C 45.247048,23.942299 45.5,22.371547 45.5,20.53125 L 45.5,8.46875 C 45.5,5.0778935 43.184299,2.5 40.46875,2.5 L 20.53125,2.5 z" - id="path6535" - sodipodi:nodetypes="ccccccccccscccc" /> - <rect - style="opacity:1;fill:#eeeeec;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect8734" - width="7" - height="1.8602936" - x="15.642976" - y="26.409245" - rx="0.81387848" - ry="0.93014681" /> - <path - style="fill:url(#linearGradient8866);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 10.968089,7.6821669 C 13.825874,5.8764931 18.683474,9.095739 19.201853,10.751964 L 15.25649,10.751964 C 15.19399,8.408214 10.968089,7.6821669 10.968089,7.6821669 z" - id="rect5189" - sodipodi:nodetypes="cccc" /> - <path - style="fill:url(#linearGradient8874);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 8.9209727,9.9271812 C 10.543462,8.0699992 15.5336,9.5097671 15.5336,10.860297 L 11.743475,11.411821 C 12.958815,9.7987339 8.9209727,9.9271812 8.9209727,9.9271812 z" - id="path5192" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:1;fill:url(#linearGradient2840);fill-opacity:1;stroke:url(#linearGradient2832);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 16.447354,10.481822 C 9.8233516,10.481822 3.9308558,15.93012 4.5098537,22.712688 C 5.7768579,37.554787 1.9403503,35.543378 1.5,42.316391 C 1.5,44.375904 2.4854201,45.355587 4.5920502,45.355587 C 5.7795388,45.355587 30.807389,45.5 33.498388,45.5 C 35.612515,45.5 35.447354,43.46472 35.447354,43.46472 C 35.447354,40.830782 29.045256,38.620654 27.260807,36.687231 C 25.432389,34.709838 27.447354,27.653648 27.447354,27.653648 C 28.08866,26.141912 28.447354,24.466812 28.447354,22.712688 C 28.447354,15.894164 23.071356,10.481822 16.447354,10.481822 z" - id="path5176" - sodipodi:nodetypes="cscccszcsc" /> - <path - style="opacity:0.55000000000000004;fill:url(#radialGradient2824);fill-opacity:1;stroke:url(#linearGradient6512);stroke-width:0.99999994000000003;stroke-miterlimit:4;stroke-opacity:1" - d="M 16.25,11.5 C 10.237704,11.5 5.0276636,16.611038 5.4999997,22.834065 C 6.0644244,30.27036 5.8175038,32.821583 4.0236672,37.541192 C 1.1437418,42.286379 3.1235207,44.533069 5.4658637,44.533069 C 7.4024447,44.533069 25.520621,44.503627 31.346594,44.503627 C 32.513801,44.503627 34.5,45.001748 34.5,43.554478 C 34.5,43.335354 34.300249,42.923343 33.75,42.411881 C 33.199751,41.90042 32.37676,41.351214 31.46875,40.806069 C 30.56074,40.260924 29.59071,39.709456 28.71875,39.169376 C 27.84679,38.629297 27.074154,38.125147 26.53125,37.409159 C 25.921245,36.604678 25.641306,35.658991 25.586842,34.629869 C 25.532378,33.600747 25.670221,32.49665 25.787061,31.449126 C 26.020741,29.354077 26.53125,27.527239 26.53125,27.527239 C 26.54624,27.4637 26.567163,27.401673 26.59375,27.341953 C 27.181231,25.957097 27.5,24.414481 27.5,22.802446 C 27.5,16.531779 22.272436,11.5 16.25,11.5 z" - id="path5241" - sodipodi:nodetypes="cscccssssssscssc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0174263" - inkscape:original="M 9.96875 19 C 8.022221 19 6.9374998 21.081214 6.9375 23 C 6.9375 25.208 8.5222219 27 10.46875 27 C 11.889191 27 14 25.489251 14 23.28125 C 14 21.536852 11.915281 19 9.96875 19 z " - style="opacity:1;fill:url(#linearGradient8882);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8838" - d="M 9.96875,17.96875 C 8.6328774,17.96875 7.5286409,18.753017 6.875,19.71875 C 6.2213591,20.684483 5.9062499,21.848884 5.90625,23 C 5.90625,25.694817 7.8977844,28.03125 10.46875,28.03125 C 11.539674,28.03125 12.596335,27.527372 13.46875,26.71875 C 14.341165,25.910128 15.03125,24.709464 15.03125,23.28125 C 15.03125,22.003744 14.362496,20.808851 13.46875,19.8125 C 12.575004,18.816149 11.384009,17.96875 9.96875,17.96875 z" - transform="translate(1.09375,-0.96875)" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 15.09375,22.321339 C 15.09375,24.52934 12.987869,26.03125 11.567428,26.03125 C 9.6208995,26.03125 8.0411075,24.239249 8.0411075,22.031249 C 8.0411075,20.112462 9.1240375,18.03125 11.070566,18.03125 C 13.017097,18.03125 15.09375,20.576941 15.09375,22.321339 z" - id="path5157" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5162" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(1.237779,0,0,1.544828,-1.0301916,-15.38768)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient8854);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5164" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.4028775,0,0,0.772414,7.4966298,3.2519345)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0250763" - inkscape:original="M 24.71875 19 C 23.921039 19.030682 23.197708 19.355158 22.78125 19.8125 C 21.639847 21.065961 21.758036 23.254972 23.0625 24.6875 C 24.196099 25.932389 26.077347 26.565958 27.21875 25.3125 C 28.360153 24.05904 28.061824 21.069247 27.03125 19.9375 C 26.379019 19.221236 25.516461 18.969318 24.71875 19 z " - style="opacity:1;fill:url(#linearGradient8890);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - id="path8846" - d="M 24.6875,17.96875 C 23.636213,18.009185 22.683031,18.409233 22.03125,19.125 C 20.466122,20.843786 20.678782,23.580894 22.3125,25.375 C 23.011072,26.142154 23.917332,26.724837 24.9375,26.9375 C 25.957668,27.150163 27.151401,26.89759 27.96875,26 C 28.842555,25.04041 29.039766,23.753975 28.96875,22.53125 C 28.897734,21.308525 28.565932,20.111716 27.78125,19.25 C 26.906665,18.289553 25.728905,17.928695 24.6875,17.96875 z" - transform="translate(1.0348213,-0.9657729)" /> - <path - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" - d="M 28.07086,18.984912 C 26.766398,17.552385 24.644242,17.934034 23.811326,18.848719 C 22.669923,20.102179 22.802261,22.282108 24.106725,23.714636 C 25.240323,24.959524 27.104889,25.612445 28.246292,24.358987 C 29.387696,23.105527 29.101434,20.116659 28.07086,18.984912 z" - id="path5169" - sodipodi:nodetypes="csssc" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:#6b1a80;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path5171" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(1.208632,0,0,1.598777,13.243467,-16.766194)" /> - <path - transform="matrix(0.9902622,0,0,1.0468412,0.6803699,-1.6322179)" - style="fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1;filter:url(#filter8730)" - d="M 19.0625,25.21875 C 18.601377,25.21875 18.273569,25.504007 18.09375,25.71875 C 17.913931,25.933493 17.816385,26.151947 17.6875,26.375 C 17.42973,26.821106 17.161718,27.281061 16.8125,27.625 C 16.463282,27.968939 15.753081,28.431077 15.090677,28.457564 C 13.768981,28.152971 12.567412,27.574567 11.44337,27.388802 C 11.190855,27.626888 11.124903,28.002654 11.28125,28.3125 C 12.447615,30.480389 13.704893,31.652553 16.158709,32.98462 C 17.36658,33.640319 19.551532,34.28873 20.662703,34.736506 C 22.03071,33.835346 25.543472,30.338576 25.75,28.125 C 25.844084,27.808258 25.729503,27.466527 25.463497,27.270522 C 24.478872,27.816677 23.360045,28.165794 22.250307,28.426314 C 21.786763,28.408951 21.509989,27.99255 21.21875,27.65625 C 20.927511,27.31995 20.680079,26.828945 20.4375,26.375 C 20.31621,26.148027 20.208768,25.937142 20.03125,25.71875 C 19.853732,25.500358 19.525474,25.21875 19.0625,25.21875 z" - id="path8696" - sodipodi:nodetypes="cssscccsccccsssc" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="0.36336106" - inkscape:original="M 15.8125 27 C 15.361611 27 15 27.422198 15 27.9375 C 15 28.452801 15.361612 28.874999 15.8125 28.875 L 21.1875 28.875 C 21.638389 28.875 22 28.452801 22 27.9375 C 22 27.422199 21.638389 27 21.1875 27 L 15.8125 27 z " - style="opacity:1;fill:#5c3566;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter8792)" - id="path8738" - d="M 15.8125,26.625 C 15.134785,26.625 14.625,27.252207 14.625,27.9375 C 14.625,28.622793 15.134785,29.249998 15.8125,29.25 L 21.1875,29.25 C 21.865216,29.25 22.375,28.622793 22.375,27.9375 C 22.375,27.252207 21.865216,26.625 21.1875,26.625 L 15.8125,26.625 z" - transform="translate(1.0492259,-0.5907729)" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect5215" - width="7" - height="1.8602936" - x="16.017977" - y="26.173933" - rx="0.81387848" - ry="0.93014681" /> - <path - style="fill:url(#linearGradient8692);fill-opacity:1;stroke:none;stroke-width:1.0283047;stroke-miterlimit:4;stroke-opacity:1" - d="M 12.017976,27.284466 C 18.332186,30.947891 18.535242,25.034227 19.622035,25.034227 C 20.693875,25.034227 20.889384,30.946219 26.017976,27.230273 C 25.73271,30.311439 22.068246,33.065477 21.020058,34.065477 C 18.988153,32.971727 14.03875,31.7541 12.017976,27.284466 z" - id="rect5187" - sodipodi:nodetypes="czccc" /> - <path - sodipodi:type="arc" - style="opacity:0.61111109;fill:url(#linearGradient8814);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path8806" - sodipodi:cx="18.097515" - sodipodi:cy="29.72571" - sodipodi:rx="0.28726214" - sodipodi:ry="0.6408155" - d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" - transform="matrix(-1.0945752,0.9356227,0.6067766,1.5209514,23.290203,-33.120817)" /> - <path - sodipodi:type="arc" - style="opacity:0.61111109;fill:url(#linearGradient8818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="path8816" - sodipodi:cx="18.097515" - sodipodi:cy="29.72571" - sodipodi:rx="0.28726214" - sodipodi:ry="0.6408155" - d="M 18.384777,29.72571 A 0.28726214,0.6408155 0 1 1 17.810253,29.72571 A 0.28726214,0.6408155 0 1 1 18.384777,29.72571 z" - transform="matrix(1.0945741,0.9356227,-0.606776,1.5209514,16.745752,-33.098342)" /> - <path - sodipodi:type="arc" - style="opacity:1;fill:url(#linearGradient8858);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path8856" - sodipodi:cx="10.169642" - sodipodi:cy="24.3125" - sodipodi:rx="1.2410715" - sodipodi:ry="1.2946428" - d="M 11.410714,24.3125 A 1.2410715,1.2946428 0 1 1 8.928571,24.3125 A 1.2410715,1.2946428 0 1 1 11.410714,24.3125 z" - transform="matrix(0.4028775,0,0,0.772414,21.437701,3.254912)" /> - <path - style="opacity:0.61111108999999997;fill:url(#linearGradient8738);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 3.375,44.9375 C 1.75,44.5625 1.125,41.0625 4.1875,35.75 C 5.3980639,40.757973 11,44.375 11,44.375 L 3.375,44.9375 z" - id="rect7959" - sodipodi:nodetypes="cccc" /> - <path - style="opacity:0.61111108999999997;fill:url(#linearGradient8742);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - d="M 33.647731,44.9375 C 35.272732,44.5625 36.772732,42.5625 28.772731,38.5625 C 29.124668,42.695473 26.022731,44.375 26.022731,44.375 L 33.647731,44.9375 z" - id="path8740" - sodipodi:nodetypes="cccc" /> - </g> -</svg>