Mercurial > pidgin
changeset 24037:bedb72eb2ef7
Add new artwork directory structure side by side with pidgin/pixmaps/ for smooth transition.
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/art-tools/clean-svg-definitions.sh Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,7 @@ +#!/bin/bash + +for f in `ls *.svg` +do + echo "Processing $f file..." + inkscape --vacuum-defs $f +done
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/art-tools/render-pidgin-emotes.rb Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,48 @@ +#!/usr/bin/env ruby + +require "rexml/document" +require "ftools" +include REXML +INKSCAPE = '/usr/bin/inkscape' +SRC = "./svg" + +def renderit(file) + svg = Document.new(File.new("#{SRC}/#{file}", 'r')) + svg.root.each_element("//g[contains(@inkscape:label,'plate')]") do |icon| + filename = icon.attributes["label"] + filename = `echo -n #{filename} | sed -e 's/plate\-//g'` + puts "#{file} #{filename}.png" + icon.each_element("rect") do |box| + if box.attributes['inkscape:label'] == '22x22' + dir = "#{box.attributes['width']}x#{box.attributes['height']}/" + cmd = "#{INKSCAPE} -i #{box.attributes['id']} -e #{dir}/#{filename}.png #{SRC}/#{file} > /dev/null 2>&1" + File.makedirs(dir) unless File.exists?(dir) + system(cmd) + print "." + elsif box.attributes['inkscape:label'] == '24x24' + dir = "#{box.attributes['width']}x#{box.attributes['height']}/" + cmd = "#{INKSCAPE} -i #{box.attributes['id']} -e #{dir}/#{filename}.png #{SRC}/#{file} > /dev/null 2>&1" + File.makedirs(dir) unless File.exists?(dir) + system(cmd) + print "." + end + end + puts '' + end +end + +if (ARGV[0].nil?) #render all SVGs + puts "Rendering from SVGs in #{SRC}" + Dir.foreach(SRC) do |file| + renderit(file) if file.match(/svg$/) + end + puts "\nrendered all SVGs" +else #only render the SVG passed + file = "#{ARGV[0]}.svg" + if (File.exists?("#{SRC}/#{file}")) + renderit(file) + puts "\nrendered #{file}" + else + puts "[E] No such file (#{file})" + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/Makefile.am Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,209 @@ +SMILEYS = act-up.png \ + airplane.png \ + alien.png \ + angel.png \ + angry.png \ + arrogant.png \ + at-wits-end.png \ + bad.png \ + bashful.png \ + beat-up.png \ + beauty.png \ + beer.png \ + blowkiss.png \ + bomb.png \ + bowl.png \ + boy.png \ + brb.png \ + bulgy-eyes.png \ + bunny.png \ + bye.png \ + cake.png \ + call-me.png \ + camera.png \ + can.png \ + car.png \ + cat.png \ + chicken.png \ + cigarette.png \ + clap.png \ + clock.png \ + cloudy.png \ + clover.png \ + clown.png \ + coffee.png \ + coins.png \ + computer.png \ + confused.png \ + console.png \ + cowboy.png \ + cow.png \ + crying.png \ + curl-lip.png \ + curse.png \ + cute.png \ + cyclops.png \ + dance.png \ + dazed.png \ + desire.png \ + devil.png \ + disappointed.png \ + disdain.png \ + doctor.png \ + dog.png \ + doh.png \ + dont-know.png \ + drink.png \ + drool.png \ + eat.png \ + embarrassed.png \ + excruciating.png \ + eyeroll.png \ + female-fighter.png \ + film.png \ + fingers-crossed.png \ + flag.png \ + foot-in-mouth.png \ + freaked-out.png \ + ghost.png \ + giggle.png \ + girl.png \ + glasses-cool.png \ + glasses-nerdy.png \ + goat.png \ + go-away.png \ + good.png \ + hammer.png \ + handcuffs.png \ + handshake.png \ + highfive.png \ + hug-left.png \ + hug-right.png \ + hypnotized.png \ + in-love.png \ + island.png \ + jump.png \ + kissed.png \ + kissing.png \ + kiss.png \ + knife.png \ + lamp.png \ + lashes.png \ + laugh.png \ + liquor.png \ + loser.png \ + love-over.png \ + love.png \ + lying.png \ + mad-tongue.png \ + mail.png \ + male-fighter1.png \ + male-fighter2.png \ + mean.png \ + meeting.png \ + messed.png \ + mobile.png \ + mohawk.png \ + moneymouth.png \ + monkey.png \ + moon.png \ + msn-away.png \ + msn-busy.png \ + msn_online.png \ + msn.png \ + musical-note.png \ + music.png \ + nailbiting.png \ + neutral.png \ + on-the-phone.png \ + party.png \ + peace.png \ + phone.png \ + pig.png \ + pill.png \ + pirate.png \ + pissed-off.png \ + pizza.png \ + plate.png \ + poop.png \ + pray.png \ + present.png \ + pumpkin.png \ + qq.png \ + question.png \ + quiet.png \ + rainbow.png \ + rain.png \ + rose-dead.png \ + rose.png \ + rotfl.png \ + sad.png \ + sarcastic.png \ + search.png \ + secret.png \ + shame.png \ + sheep.png \ + shock.png \ + shout.png \ + shut-mouth.png \ + sick.png \ + sidefrown.png \ + silly.png \ + sinister.png \ + skeleton.png \ + skywalker.png \ + sleepy.png \ + smile-big.png \ + smile.png \ + smirk.png \ + snail.png \ + snicker.png \ + snowman.png \ + soccerball.png \ + soldier.png \ + star.png \ + starving.png \ + stop.png \ + struggle.png \ + sun.png \ + sweat.png \ + talktohand.png \ + teeth.png \ + terror.png \ + thinking.png \ + thunder.png \ + time-out.png \ + tongue.png \ + tremble.png \ + turtle.png \ + tv.png \ + umbrella.png \ + vampire.png \ + victory.png \ + waiting.png \ + watermelon.png \ + waving.png \ + weep.png \ + wilt.png \ + wink.png \ + worship.png \ + yawn.png \ + yin-yang.png + + +pidginsmileypix_in_files = default.theme.in + +if INSTALL_PIXMAPS +pidginsmileypixdir = $(datadir)/pixmaps/pidgin/emotes/default +pidginsmileypix_DATA = \ + $(SMILEYS) \ + theme + +theme: default.theme.in + sed -e 's/^_Name=/Name=/' \ + -e 's/^_Description=/Description=/' \ + -e 's/^_Author=/Author=/' \ + $< > $@ +endif + +EXTRA_DIST = $(SMILEYS) $(pidginsmileypix_in_files) theme
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/Makefile.mingw Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,27 @@ +# +# Makefile.mingw +# +# Description: Makefile for win32 (mingw) version of Pidgin pixmaps +# + +PIDGIN_TREE_TOP := ../../../../.. +include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak + +datadir = $(PIDGIN_INSTALL_DIR) +-include ./Makefile.am.mingw + +.PHONY: install clean + +install: ./Makefile.am.mingw theme + if test '$(pidginsmileypix_DATA)'; then \ + mkdir -p $(pidginsmileypixdir); \ + cp $(pidginsmileypix_DATA) $(pidginsmileypixdir); \ + fi; + +clean: + rm -f theme + +./Makefile.am.mingw: ./Makefile.am + sed -e 's/^if\ INSTALL_PIXMAPS/ifeq (\$$(INSTALL_PIXMAPS), 1)/' ./Makefile.am > $@ + include $@ +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/default.theme.in Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,394 @@ +_Name=Default +_Description=Pidgin smileys +Icon=wink.png +Author=Hylke Bons + + +# Default smileys +[default] +smile.png :) :-) +smile-big.png :-D :-d :D :d +sad.png :-( :( +wink.png ;-) ;) +tongue.png :P :-P :-p :p +shock.png =-O =-o +kiss.png :-* +glasses-cool.png 8-) +embarrassed.png :-[ +crying.png :'( +thinking.png :-/ :-\\ +angel.png O:-) o:-) +shut-mouth.png :-X +moneymouth.png :-$ +foot-in-mouth.png :-! +shout.png >:o >:O +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) 8-|) +! cyclops.png O-) o-) + + +# Following AIM 6.1 +[AIM] +smile.png :-) :) +wink.png ;-) ;) +sad.png :-( :( +tongue.png :-P :P :-p :p +shock.png =-O +kiss.png :-* +shout.png >:o +smile-big.png :-D :D +moneymouth.png :-$ +foot-in-mouth.png :-! +embarrassed.png :-[ +angel.png O:-) +thinking.png :-\\ :-/ +crying.png :'( +shut-mouth.png :-X +glasses-cool.png 8-) +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + + +# Following Windows Live Messenger 8.1 +[MSN] +smile.png :) :-) +smile-big.png :D :d :-D :-d +wink.png ;) ;-) +shock.png :-O :-o :O :o +tongue.png :P :p :-P :-p +glasses-cool.png (H) (h) +angry.png :@ :-@ +embarrassed.png :$ :-$ +confused.png :S :s :-S :-s +sad.png :( :-( +crying.png :'( +neutral.png :| :-| +devil.png (6) +angel.png (A) (a) +love.png (L) (l) +love-over.png (U) (u) +msn.png (M) (m) +cat.png (@) +dog.png (&) +moon.png (S) +star.png (*) +film.png (~) +musical-note.png (8) +mail.png (E) (e) +rose.png (F) (f) +rose-dead.png (W) (w) +clock.png (O) (o) +kiss.png (K) (k) +present.png (G) (g) +cake.png (^) +camera.png (P) (p) +lamp.png (I) (i) +coffee.png (C) (c) +phone.png (T) (t) +hug-left.png ({) +hug-right.png (}) +beer.png (B) (b) +drink.png (D) (d) +boy.png (Z) (z) +girl.png (X) (x) +good.png (Y) (y) +bad.png (N) (n) +vampire.png :[ :-[ +goat.png (nah) +sun.png (#) +rainbow.png (R) (r) +quiet.png :-# +teeth.png 8o| +glasses-nerdy.png 8-| +sarcastic.png ^o) +secret.png :-* +sick.png +o( +snail.png (sn) +turtle.png (tu) +plate.png (pl) +bowl.png (||) +pizza.png (pi) +soccerball.png (so) +car.png (au) +airplane.png (ap) +umbrella.png (um) +island.png (ip) +computer.png (co) +mobile.png (mp) +brb.png (brb) +rain.png (st) +highfive.png (h5) +coins.png (mo) +sheep.png (bah) +dont-know.png :^) +thinking.png *-) +thunder.png (li) +party.png <:o) +eyeroll.png 8-) +yawn.png |-) +bunny.png ('.') +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + +# Hidden MSN emotes +cigarette.png (ci) (CI) +handcuffs.png (%) +console.png (xx) (XX) +fingers-crossed.png (yn) (YN) + + +# Following QQ 2006 +[QQ] +shock.png /:O /jy /surprised +curl-lip.png /:~ /pz /curl_lip +desire.png /:* /se /desire +dazed.png /:| /dazed +party.png /8-) /dy /revel +crying.png /:< /ll /cry +bashful.png /:$ /hx /bashful +shut-mouth.png /:X /bz /shut_mouth +sleepy.png /:Z /shui /sleep +weep.png /:'( /dk /weep +embarrassed.png /:-| /gg /embarassed +pissed-off.png /:@ /fn /pissed_off +act-up.png /:P /tp /act_up +smile-big.png /:D /cy /toothy_smile +smile.png /:) /wx /small_smile +sad.png /:( /ng /sad +glasses-cool.png /:+ /kuk /cool +doctor.png /:# /feid /SARS +silly.png /:Q /zk /crazy +sick.png /:T /tu /vomit +snicker.png /;p /tx /titter +cute.png /;-D /ka /cute +disdain.png /;d /by /disdain +arrogant.png /;o /am /arrogant +starving.png /:g /jie /starving +yawn.png /|-) /kun /sleepy +terror.png /:! /jk /terror +sweat.png /:L /sweat +smirk.png /:> /hanx /smirk +soldier.png /:; /db /soldier +struggle.png /;f /fendou /struggle +curse.png /:-S /zhm /curse +question.png /? /yiw /question +quiet.png /;x /xu /shh +hypnotized.png /;@ /yun /dizzy +excruciating.png /:8 /zhem /excrutiating +freaked-out.png /;! /shuai /freaked_out +skeleton.png /!!! /kl /skeleton +hammer.png /xx /qiao /hammer +bye.png /bye /zj /bye +go-away.png /go /shan /go +tremble.png /shake /fad /shake +in-love.png /love /aiq /love +jump.png /jump /tiao /jump +search.png /find /zhao /search +lashes.png /& /mm /beautiful_eyebrows +pig.png /pig /zt /pig +cat.png /cat /mm /cat +dog.png /dog /xg /dog +hug-left.png /hug /yb /hug +coins.png /$ /qianc /money +lamp.png /! /dp /lightbulb +bowl.png /cup /bei /cup +cake.png /cake /dg /cake +thunder.png /li /shd /lightning +bomb.png /bome /zhd /bomb +knife.png /kn /dao /knife +soccerball.png /footb /zq /soccer +musical-note.png /music /yy /music +poop.png /shit /bb /shit +coffee.png /coffee /kf /coffee +eat.png /eat /fan /eat +pill.png /pill /yw /pill +rose.png /rose /mg /rose +wilt.png /fade /dx /wilt +kiss.png /kiss /wen /kiss +love.png /heart /xin /heart +love-over.png /break /xs /broken_heart +meeting.png /meeting /hy /meeting +present.png /gift /lw /gift +phone.png /phone /dh /phone +clock.png /time /sj /time +mail.png /email /yj /email +tv.png /TV /ds /TV +sun.png /sun /ty /sun +moon.png /moon /yl /moon +good.png /strong /qiang /thumbs_up +bad.png /weak /ruo /thumbs_down +handshake.png /share /ws /handshake +victory.png /v /shl /victory +beauty.png /<J> /mn /beauty +qq.png /<QQ> /qz /qq +blowkiss.png /<L> /fw /blow_kiss +angry.png /<O> /oh /angry +liquor.png /<B> /bj /baijiu +can.png /<U> /qsh /soda +watermelon.png /<W> /xigua /watermelon +rain.png /<!!> /xy /rain +cloudy.png /<~> /duoy /cloudy +snowman.png /<Z> /xr /snowman +star.png /<*> /xixing /star +girl.png /<00> /nv /woman +boy.png /<11> /nan /man +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + + +# Following ICQ 6.0 +[ICQ] +smile.png :-) :) +neutral.png :-$ +sad.png :-( :( +shock.png =-O +wink.png ;-) ;) +tongue.png :-P :P :-p :p +music.png [:-} +laugh.png *JOKINGLY* +sleepy.png *TIRED* +crying.png :'( :'-( +sick.png :-! +kissed.png *KISSED* +stop.png *STOP* +kiss.png :-{} :-* +kissing.png *KISSING* +victory.png *YAHOO* +silly.png %) +embarrassed.png :-[ +devil.png ]:-> +angel.png O:-) +rose.png @}->-- +shut-mouth.png :-X :X :-x :x +bomb.png @= +thinking.png :-\\ :-/ +good.png *THUMBS\ UP* +shout.png >:o >:O :-@ +beer.png *DRINK* +smile-big.png :-D :D +glasses-cool.png 8-) +in-love.png *IN\ LOVE* +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + + +# Following Yahoo! Messenger 8.1 +[Yahoo] +smile.png :) :-) +question.png :-/ :-\\ +shock.png :-O :O :-o :o +devil.png >:) +angel.png O:-) o:-) 0:-) +sick.png :-& +yawn.png (:| +hypnotized.png @-) +on-the-phone.png :)] +sad.png :( :-( +in-love.png :x :-x :X :-X +angry.png X-( x-( X( x( +crying.png :(( +glasses-nerdy.png :-B :-b +quiet.png :-$ +drool.png =P~ =p~ +lying.png :^O :^o +call-me.png :-c +wink.png ;) ;-) +embarrassed.png :"> +mean.png :-> :> +laugh.png :)) :-)) +bye.png =; +arrogant.png [-( +thinking.png :-? +waiting.png :-w :-W +at-wits-end.png ~x( ~X( +smile-big.png :D :-D :d :-d +tongue.png :-P :P :-p :p +glasses-cool.png B-) b-) +neutral.png :| :-| +sleepy.png I-) i-) |-) +clown.png :o) :O) +doh.png #-o #-O +weep.png :-< +go-away.png :-h +lashes.png ;;) +kiss.png :-* :* +confused.png :-S :-s +sarcastic.png /:) +eyeroll.png 8-| +silly.png 8-} +clap.png =D> =d> +mad-tongue.png >:P >:p +time-out.png :-t :-T +hug-left.png >:D< >:d< +love-over.png =(( +sweat.png #:-S #:-s +rotfl.png =)) :-j :-J +loser.png L-) l-) +party.png <:-P <:-p +nailbiting.png :-SS :-Ss :-sS :-ss +cowboy.png <):) +desire.png 8-> +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + +# Hidden Yahoo emotes +alien.png =:) >-) +beat-up.png b-( B-( +chicken.png ~:> +coffee.png ~o) ~O) +cow.png 3:-O 3:-o +dance.png \\:D/ \\:d/ +rose.png @};- +dont-know.png :-L :-l +skeleton.png 8-X 8-x +lamp.png *-:) +monkey.png :(|) +coins.png $-) +peace.png :)>- +pig.png :@) +pray.png [-o< [-O< +pumpkin.png (~~) +shame.png [-X [-x +flag.png **== +clover.png %%- +musical-note.png :-" +giggle.png ;)) +worship.png ^:)^ +star.png (*) +waving.png >:/ +talktohand.png :-@ + +# Only available after activating the Yahoo! Fighter IMVironment +male-fighter1.png o-> O-> +male-fighter2.png o=> O=> +female-fighter.png o-+ O-+ +yin-yang.png (%) + + +# Following MySpaceIM Beta 1.0.697.0 +[MySpaceIM] +smile-big.png :D :-D +devil.png }:) +confused.png :Z +glasses-nerdy.png B) +bulgy-eyes.png %) +freaked-out.png :E +smile.png :) :-) +in-love.png :X +laugh.png :)) +mohawk.png -: +mad-tongue.png X( +messed.png X) +glasses-nerdy.png Q) +doh.png :G +pirate.png P) +shock.png :O +sidefrown.png :{ +sinister.png :B +smirk.png :, +neutral.png :| +tongue.png :P :p +pissed-off.png B| +wink.png ;-) ;) +sad.png :[ +kiss.png :x
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/none/Makefile.am Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,17 @@ +pidginsmileypix_in_files = none.theme.in + +if INSTALL_PIXMAPS +pidginsmileypixdir = $(datadir)/pixmaps/pidgin/emotes/none +pidginsmileypix_DATA = theme + +theme: none.theme.in + sed -e 's/^_Name=/Name=/' \ + -e 's/^_Description=/Description=/' \ + -e 's/^_Author=/Author=/' \ + $< > $@ +endif + +EXTRA_DIST = \ + $(pidginsmileypix_in_files) \ + Makefile.mingw \ + theme
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/none/Makefile.mingw Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,27 @@ +# +# Makefile.mingw +# +# Description: Makefile for win32 (mingw) version of Pidgin pixmaps +# + +PIDGIN_TREE_TOP := ../../../.. +include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak + +datadir = $(PIDGIN_INSTALL_DIR) +-include ./Makefile.am.mingw + +.PHONY: install clean + +install: ./Makefile.am.mingw theme + if test '$(pidginsmileypix_DATA)'; then \ + mkdir -p $(pidginsmileypixdir); \ + cp $(pidginsmileypix_DATA) $(pidginsmileypixdir); \ + fi; + +clean: + rm -f theme + +./Makefile.am.mingw: ./Makefile.am + sed -e 's/^if\ INSTALL_PIXMAPS/ifeq (\$$(INSTALL_PIXMAPS), 1)/' ./Makefile.am > $@ + include $@ +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/none/none.theme.in Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,3 @@ +_Name=None +_Description=Selecting this disables graphical emoticons. +_Author=Penguin Pimps
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/none/theme Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,3 @@ +Name=None +Description=Selecting this disables graphical emoticons. +Author=Penguin Pimps
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/24x24/emotes/theme Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,394 @@ +Name=Default +Description=Pidgin smileys +Icon=wink.png +Author=Hylke Bons + + +# Default smileys +[default] +smile.png :) :-) +smile-big.png :-D :-d :D :d +sad.png :-( :( +wink.png ;-) ;) +tongue.png :P :-P :-p :p +shock.png =-O =-o +kiss.png :-* +glasses-cool.png 8-) +embarrassed.png :-[ +crying.png :'( +thinking.png :-/ :-\\ +angel.png O:-) o:-) +shut-mouth.png :-X +moneymouth.png :-$ +foot-in-mouth.png :-! +shout.png >:o >:O +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) 8-|) +! cyclops.png O-) o-) + + +# Following AIM 6.1 +[AIM] +smile.png :-) :) +wink.png ;-) ;) +sad.png :-( :( +tongue.png :-P :P :-p :p +shock.png =-O +kiss.png :-* +shout.png >:o +smile-big.png :-D :D +moneymouth.png :-$ +foot-in-mouth.png :-! +embarrassed.png :-[ +angel.png O:-) +thinking.png :-\\ :-/ +crying.png :'( +shut-mouth.png :-X +glasses-cool.png 8-) +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + + +# Following Windows Live Messenger 8.1 +[MSN] +smile.png :) :-) +smile-big.png :D :d :-D :-d +wink.png ;) ;-) +shock.png :-O :-o :O :o +tongue.png :P :p :-P :-p +glasses-cool.png (H) (h) +angry.png :@ :-@ +embarrassed.png :$ :-$ +confused.png :S :s :-S :-s +sad.png :( :-( +crying.png :'( +neutral.png :| :-| +devil.png (6) +angel.png (A) (a) +love.png (L) (l) +love-over.png (U) (u) +msn.png (M) (m) +cat.png (@) +dog.png (&) +moon.png (S) +star.png (*) +film.png (~) +musical-note.png (8) +mail.png (E) (e) +rose.png (F) (f) +rose-dead.png (W) (w) +clock.png (O) (o) +kiss.png (K) (k) +present.png (G) (g) +cake.png (^) +camera.png (P) (p) +lamp.png (I) (i) +coffee.png (C) (c) +phone.png (T) (t) +hug-left.png ({) +hug-right.png (}) +beer.png (B) (b) +drink.png (D) (d) +boy.png (Z) (z) +girl.png (X) (x) +good.png (Y) (y) +bad.png (N) (n) +vampire.png :[ :-[ +goat.png (nah) +sun.png (#) +rainbow.png (R) (r) +quiet.png :-# +teeth.png 8o| +glasses-nerdy.png 8-| +sarcastic.png ^o) +secret.png :-* +sick.png +o( +snail.png (sn) +turtle.png (tu) +plate.png (pl) +bowl.png (||) +pizza.png (pi) +soccerball.png (so) +car.png (au) +airplane.png (ap) +umbrella.png (um) +island.png (ip) +computer.png (co) +mobile.png (mp) +brb.png (brb) +rain.png (st) +highfive.png (h5) +coins.png (mo) +sheep.png (bah) +dont-know.png :^) +thinking.png *-) +thunder.png (li) +party.png <:o) +eyeroll.png 8-) +yawn.png |-) +bunny.png ('.') +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + +# Hidden MSN emotes +cigarette.png (ci) (CI) +handcuffs.png (%) +console.png (xx) (XX) +fingers-crossed.png (yn) (YN) + + +# Following QQ 2006 +[QQ] +shock.png /:O /jy /surprised +curl-lip.png /:~ /pz /curl_lip +desire.png /:* /se /desire +dazed.png /:| /dazed +party.png /8-) /dy /revel +crying.png /:< /ll /cry +bashful.png /:$ /hx /bashful +shut-mouth.png /:X /bz /shut_mouth +sleepy.png /:Z /shui /sleep +weep.png /:'( /dk /weep +embarrassed.png /:-| /gg /embarassed +pissed-off.png /:@ /fn /pissed_off +act-up.png /:P /tp /act_up +smile-big.png /:D /cy /toothy_smile +smile.png /:) /wx /small_smile +sad.png /:( /ng /sad +glasses-cool.png /:+ /kuk /cool +doctor.png /:# /feid /SARS +silly.png /:Q /zk /crazy +sick.png /:T /tu /vomit +snicker.png /;p /tx /titter +cute.png /;-D /ka /cute +disdain.png /;d /by /disdain +arrogant.png /;o /am /arrogant +starving.png /:g /jie /starving +yawn.png /|-) /kun /sleepy +terror.png /:! /jk /terror +sweat.png /:L /sweat +smirk.png /:> /hanx /smirk +soldier.png /:; /db /soldier +struggle.png /;f /fendou /struggle +curse.png /:-S /zhm /curse +question.png /? /yiw /question +quiet.png /;x /xu /shh +hypnotized.png /;@ /yun /dizzy +excruciating.png /:8 /zhem /excrutiating +freaked-out.png /;! /shuai /freaked_out +skeleton.png /!!! /kl /skeleton +hammer.png /xx /qiao /hammer +bye.png /bye /zj /bye +go-away.png /go /shan /go +tremble.png /shake /fad /shake +in-love.png /love /aiq /love +jump.png /jump /tiao /jump +search.png /find /zhao /search +lashes.png /& /mm /beautiful_eyebrows +pig.png /pig /zt /pig +cat.png /cat /mm /cat +dog.png /dog /xg /dog +hug-left.png /hug /yb /hug +coins.png /$ /qianc /money +lamp.png /! /dp /lightbulb +bowl.png /cup /bei /cup +cake.png /cake /dg /cake +thunder.png /li /shd /lightning +bomb.png /bome /zhd /bomb +knife.png /kn /dao /knife +soccerball.png /footb /zq /soccer +musical-note.png /music /yy /music +poop.png /shit /bb /shit +coffee.png /coffee /kf /coffee +eat.png /eat /fan /eat +pill.png /pill /yw /pill +rose.png /rose /mg /rose +wilt.png /fade /dx /wilt +kiss.png /kiss /wen /kiss +love.png /heart /xin /heart +love-over.png /break /xs /broken_heart +meeting.png /meeting /hy /meeting +present.png /gift /lw /gift +phone.png /phone /dh /phone +clock.png /time /sj /time +mail.png /email /yj /email +tv.png /TV /ds /TV +sun.png /sun /ty /sun +moon.png /moon /yl /moon +good.png /strong /qiang /thumbs_up +bad.png /weak /ruo /thumbs_down +handshake.png /share /ws /handshake +victory.png /v /shl /victory +beauty.png /<J> /mn /beauty +qq.png /<QQ> /qz /qq +blowkiss.png /<L> /fw /blow_kiss +angry.png /<O> /oh /angry +liquor.png /<B> /bj /baijiu +can.png /<U> /qsh /soda +watermelon.png /<W> /xigua /watermelon +rain.png /<!!> /xy /rain +cloudy.png /<~> /duoy /cloudy +snowman.png /<Z> /xr /snowman +star.png /<*> /xixing /star +girl.png /<00> /nv /woman +boy.png /<11> /nan /man +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + + +# Following ICQ 6.0 +[ICQ] +smile.png :-) :) +neutral.png :-$ +sad.png :-( :( +shock.png =-O +wink.png ;-) ;) +tongue.png :-P :P :-p :p +music.png [:-} +laugh.png *JOKINGLY* +sleepy.png *TIRED* +crying.png :'( :'-( +sick.png :-! +kissed.png *KISSED* +stop.png *STOP* +kiss.png :-{} :-* +kissing.png *KISSING* +victory.png *YAHOO* +silly.png %) +embarrassed.png :-[ +devil.png ]:-> +angel.png O:-) +rose.png @}->-- +shut-mouth.png :-X :X :-x :x +bomb.png @= +thinking.png :-\\ :-/ +good.png *THUMBS\ UP* +shout.png >:o >:O :-@ +beer.png *DRINK* +smile-big.png :-D :D +glasses-cool.png 8-) +in-love.png *IN\ LOVE* +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + + +# Following Yahoo! Messenger 8.1 +[Yahoo] +smile.png :) :-) +question.png :-/ :-\\ +shock.png :-O :O :-o :o +devil.png >:) +angel.png O:-) o:-) 0:-) +sick.png :-& +yawn.png (:| +hypnotized.png @-) +on-the-phone.png :)] +sad.png :( :-( +in-love.png :x :-x :X :-X +angry.png X-( x-( X( x( +crying.png :(( +glasses-nerdy.png :-B :-b +quiet.png :-$ +drool.png =P~ =p~ +lying.png :^O :^o +call-me.png :-c +wink.png ;) ;-) +embarrassed.png :"> +mean.png :-> :> +laugh.png :)) :-)) +bye.png =; +arrogant.png [-( +thinking.png :-? +waiting.png :-w :-W +at-wits-end.png ~x( ~X( +smile-big.png :D :-D :d :-d +tongue.png :-P :P :-p :p +glasses-cool.png B-) b-) +neutral.png :| :-| +sleepy.png I-) i-) |-) +clown.png :o) :O) +doh.png #-o #-O +weep.png :-< +go-away.png :-h +lashes.png ;;) +kiss.png :-* :* +confused.png :-S :-s +sarcastic.png /:) +eyeroll.png 8-| +silly.png 8-} +clap.png =D> =d> +mad-tongue.png >:P >:p +time-out.png :-t :-T +hug-left.png >:D< >:d< +love-over.png =(( +sweat.png #:-S #:-s +rotfl.png =)) :-j :-J +loser.png L-) l-) +party.png <:-P <:-p +nailbiting.png :-SS :-Ss :-sS :-ss +cowboy.png <):) +desire.png 8-> +! skywalker.png C:-) c:-) C:) c:) +! monkey.png :-(|) :(|) + +# Hidden Yahoo emotes +alien.png =:) >-) +beat-up.png b-( B-( +chicken.png ~:> +coffee.png ~o) ~O) +cow.png 3:-O 3:-o +dance.png \\:D/ \\:d/ +rose.png @};- +dont-know.png :-L :-l +skeleton.png 8-X 8-x +lamp.png *-:) +monkey.png :(|) +coins.png $-) +peace.png :)>- +pig.png :@) +pray.png [-o< [-O< +pumpkin.png (~~) +shame.png [-X [-x +flag.png **== +clover.png %%- +musical-note.png :-" +giggle.png ;)) +worship.png ^:)^ +star.png (*) +waving.png >:/ +talktohand.png :-@ + +# Only available after activating the Yahoo! Fighter IMVironment +male-fighter1.png o-> O-> +male-fighter2.png o=> O=> +female-fighter.png o-+ O-+ +yin-yang.png (%) + + +# Following MySpaceIM Beta 1.0.697.0 +[MySpaceIM] +smile-big.png :D :-D +devil.png }:) +confused.png :Z +glasses-nerdy.png B) +bulgy-eyes.png %) +freaked-out.png :E +smile.png :) :-) +in-love.png :X +laugh.png :)) +mohawk.png -: +mad-tongue.png X( +messed.png X) +glasses-nerdy.png Q) +doh.png :G +pirate.png P) +shock.png :O +sidefrown.png :{ +sinister.png :B +smirk.png :, +neutral.png :| +tongue.png :P :p +pissed-off.png B| +wink.png ;-) ;) +sad.png :[ +kiss.png :x
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/apps/pidgin.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,610 @@ +<?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>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-auth.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,850 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="auth.svg" + inkscape:export-filename="/home/hbons/Bureaublad/Projecten/Pidgin/pidgin-mtn/pidgin/pixmaps/dialogs/64/auth.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient9188"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop9190" /> + <stop + style="stop-color:#6f726d;stop-opacity:1" + offset="1" + id="stop9192" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9166"> + <stop + style="stop-color:#3b73bb;stop-opacity:1;" + offset="0" + id="stop9168" /> + <stop + style="stop-color:#3b73bb;stop-opacity:0;" + offset="1" + id="stop9170" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9158"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9160" /> + <stop + style="stop-color:#bcd2e9;stop-opacity:1" + offset="1" + id="stop9162" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9056"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9058" /> + <stop + style="stop-color:#729fcf;stop-opacity:0;" + offset="1" + id="stop9060" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9040"> + <stop + style="stop-color:#729fcf;stop-opacity:1" + offset="0" + id="stop9042" /> + <stop + style="stop-color:#3465a4;stop-opacity:1" + offset="1" + id="stop9044" /> + </linearGradient> + <linearGradient + id="linearGradient11669" + inkscape:collect="always"> + <stop + id="stop11671" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop11673" + offset="1" + style="stop-color:#2e3436;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11653"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop11655" /> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="1" + id="stop11657" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11669" + id="radialGradient11659" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" + gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11653" + id="radialGradient11667" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient8720" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient8722" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient8985" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient8993" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8995" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8997" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient9005" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-34.999933,2.0000002)" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient9018" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)" + x1="22.919643" + y1="33.491837" + x2="23.746914" + y2="36.579254" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient9036" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9040" + id="linearGradient9046" + x1="24" + y1="37" + x2="44.533825" + y2="40.875" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9056" + id="linearGradient9062" + x1="34.5" + y1="61.35038" + x2="34.5" + y2="33.72963" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9158" + id="linearGradient9164" + x1="29" + y1="35.649048" + x2="29" + y2="32.334484" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9172" + x1="29.125" + y1="36.5625" + x2="25" + y2="31.9375" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9188" + id="linearGradient9194" + x1="37.5" + y1="42.295494" + x2="37.5" + y2="40.792892" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9246" + gradientUnits="userSpaceOnUse" + x1="29.78125" + y1="37.09375" + x2="23.984375" + y2="30.40625" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="274.07651" + inkscape:cy="97.498181" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z" + id="path11288" + sodipodi:nodetypes="cscscscsccc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z" + style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + style="opacity:0.80000000000000004;fill:url(#radialGradient11659);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.1875,18.537724 C 22.1875,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22.53125,14.293548 22.1875,18.537724 z" + id="path11647" + sodipodi:nodetypes="csssc" /> + <rect + style="opacity:1;fill:#2e3436;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="rect11649" + width="5.1303458" + height="1.0018942" + x="6.2930641" + y="14.833013" + rx="0.51303452" + ry="0.50094712" + transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" /> + <rect + style="opacity:1;fill:#2e3436;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="rect11651" + width="5.1303449" + height="1.0018942" + x="31.000992" + y="25.932768" + rx="0.51303446" + ry="0.50094712" + transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" /> + <path + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.99999994000000003;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 14.5,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z" + id="path11661" /> + <path + style="opacity:0.80000000000000004;fill:url(#radialGradient11667);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 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 21.849813,22.809207 21.78125,18.600224 C 21.711014,14.288526 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z" + id="path11663" + sodipodi:nodetypes="csssc" /> + <path + transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8714" + style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8716" + style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8718" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <rect + style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9046);stroke-width:0.99999994000000003;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="rect9038" + width="21.999998" + height="15" + x="23.499998" + y="29.5" + rx="1.331211" + ry="1.2101918" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="-1.0060635" + inkscape:original="M 25.71875 29.5 C 25.048304 29.5 24.5 30.048304 24.5 30.71875 L 24.5 43.28125 C 24.5 43.951696 25.048304 44.5 25.71875 44.5 L 43.28125 44.5 C 43.951696 44.5 44.5 43.951698 44.5 43.28125 L 44.5 30.71875 C 44.5 30.048304 43.951698 29.5 43.28125 29.5 L 25.71875 29.5 z " + style="opacity:1;fill:url(#linearGradient9062);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.94868326000000003;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="path9052" + d="M 25.71875,30.5 C 25.596823,30.5 25.5,30.596823 25.5,30.71875 L 25.5,43.28125 C 25.5,43.403177 25.596823,43.5 25.71875,43.5 L 43.28125,43.5 C 43.403179,43.5 43.5,43.403181 43.5,43.28125 L 43.5,30.71875 C 43.5,30.596821 43.403181,30.5 43.28125,30.5 L 25.71875,30.5 z" + transform="matrix(1.1111112,0,0,1,-3.833336,0)" /> + <rect + style="opacity:1;fill:url(#linearGradient9164);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9246);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="rect9064" + width="5" + height="6" + x="25.5" + y="31.5" + rx="0.53033006" + ry="0.53033006" /> + <path + style="fill:#3465a4;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 28 34 C 27.448 34 27 34.447999 27 35 C 27 35.552 27.448001 35.999999 28 36 C 28.552 36 29 35.551999 29 35 C 29 34.448 28.552001 33.999999 28 34 z M 28 36 C 27.448 36 27 36.448 27 37 C 27 37 29 37 29 37 C 29 36.448 28.552001 36 28 36 z " + id="path9242" /> + <path + style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed" + d="M 33.000002,33.459106 L 33.308145,33.459106 L 33.308145,33.96439 L 33.761924,33.96439 L 33.761924,33.459106 L 34.069179,33.459106 L 34.069179,34.784921 L 33.761924,34.784921 L 33.761924,34.222804 L 33.308145,34.222804 L 33.308145,34.784921 L 33.000002,34.784921 L 33.000002,33.459106 M 34.237014,33.790338 L 34.523845,33.790338 L 34.764499,34.465233 L 34.968743,33.790338 L 35.254686,33.790338 L 34.878165,34.879051 C 34.840276,34.989757 34.796171,35.067015 34.74585,35.110824 C 34.695529,35.155225 34.629223,35.177425 34.546934,35.177426 L 34.380874,35.177426 L 34.380874,34.968741 L 34.470564,34.968741 C 34.519109,34.968741 34.554333,34.960157 34.576238,34.942988 C 34.598734,34.92582 34.616199,34.895035 34.628631,34.850634 L 34.636624,34.823106 L 34.237014,33.790338 M 35.420746,33.403161 L 35.706688,33.403161 L 35.706688,34.784921 L 35.420746,34.784921 L 35.420746,33.403161 M 35.985527,33.403161 L 36.271469,33.403161 L 36.271469,34.155314 L 36.600925,33.790338 L 36.933045,33.790338 L 36.496139,34.24678 L 36.967677,34.784921 L 36.620461,34.784921 L 36.271469,34.370215 L 36.271469,34.784921 L 35.985527,34.784921 L 35.985527,33.403161 M 37.919635,34.284965 L 37.919635,34.375543 L 37.250956,34.375543 C 37.257468,34.450137 37.281444,34.506083 37.322886,34.543379 C 37.364918,34.580676 37.423231,34.599325 37.497826,34.599324 C 37.55821,34.599325 37.61978,34.589556 37.682534,34.57002 C 37.745878,34.549891 37.810704,34.519699 37.87701,34.479442 L 37.87701,34.724535 C 37.80952,34.752952 37.741734,34.774265 37.673654,34.788473 C 37.606163,34.803273 37.538674,34.810673 37.471185,34.810673 C 37.308973,34.810673 37.182874,34.765088 37.092888,34.673918 C 37.003494,34.582156 36.958797,34.453689 36.958797,34.288517 C 36.958797,34.126306 37.002902,33.998727 37.091112,33.90578 C 37.179322,33.812835 37.300685,33.766362 37.455201,33.766361 C 37.596099,33.766362 37.708582,33.813427 37.792648,33.907556 C 37.877305,34.001687 37.919634,34.12749 37.919635,34.284965 M 37.625701,34.179291 C 37.6257,34.118906 37.609715,34.070361 37.577747,34.033655 C 37.54637,33.996359 37.504929,33.977711 37.453425,33.97771 C 37.398367,33.977711 37.353374,33.995175 37.318445,34.030103 C 37.284108,34.064441 37.2625,34.11417 37.25362,34.179291 L 37.625701,34.179291 M 39.193057,33.972382 C 39.241601,33.972383 39.278306,33.960542 39.303171,33.936861 C 39.328627,33.913182 39.341355,33.878253 39.341356,33.832075 C 39.341355,33.786491 39.328627,33.751858 39.303171,33.728176 C 39.278306,33.703905 39.241601,33.691769 39.193057,33.691767 L 39.023445,33.691767 L 39.023445,33.972382 L 39.193057,33.972382 M 39.203713,34.552259 C 39.265874,34.55226 39.312347,34.537755 39.343132,34.508746 C 39.374508,34.479738 39.390196,34.435929 39.390197,34.377319 C 39.390196,34.319894 39.374508,34.276974 39.343132,34.248556 C 39.312347,34.219548 39.265874,34.205044 39.203713,34.205043 L 39.023445,34.205043 L 39.023445,34.552259 L 39.203713,34.552259 M 39.489655,34.075392 C 39.55596,34.096706 39.607169,34.136074 39.643283,34.193499 C 39.679395,34.250925 39.697451,34.321374 39.697452,34.404848 C 39.697451,34.532723 39.658378,34.628037 39.580234,34.69079 C 39.502679,34.753544 39.384572,34.784921 39.225913,34.784921 L 38.715302,34.784921 L 38.715302,33.459106 L 39.177072,33.459106 C 39.342835,33.459107 39.462718,33.486932 39.536721,33.54258 C 39.611313,33.598231 39.64861,33.687329 39.648611,33.809874 C 39.64861,33.874405 39.634994,33.929462 39.607762,33.975046 C 39.581121,34.02004 39.541752,34.053489 39.489655,34.075392 M 40.375012,33.993694 C 40.311666,33.993695 40.263417,34.019152 40.230265,34.070064 C 40.197111,34.120386 40.180535,34.193204 40.180535,34.288517 C 40.180535,34.383832 40.197111,34.456946 40.230265,34.507858 C 40.263417,34.55818 40.311666,34.58334 40.375012,34.58334 C 40.437765,34.58334 40.485422,34.55818 40.517983,34.507858 C 40.551135,34.456946 40.567712,34.383832 40.567712,34.288517 C 40.567712,34.193204 40.551135,34.120386 40.517983,34.070064 C 40.485422,34.019152 40.437765,33.993695 40.375012,33.993694 M 40.375012,33.766361 C 40.529527,33.766362 40.650001,33.812539 40.736436,33.904892 C 40.822869,33.997247 40.866086,34.125122 40.866087,34.288517 C 40.866086,34.451913 40.822869,34.579788 40.736436,34.672142 C 40.650001,34.764496 40.529527,34.810673 40.375012,34.810673 C 40.221088,34.810673 40.100317,34.764496 40.0127,34.672142 C 39.925673,34.579788 39.88216,34.451913 39.882161,34.288517 C 39.88216,34.125122 39.925673,33.997247 40.0127,33.904892 C 40.100317,33.812539 40.221088,33.766362 40.375012,33.766361 M 41.975225,34.179291 L 41.975225,34.784921 L 41.687506,34.784921 L 41.687506,34.68635 L 41.687506,34.321374 C 41.687505,34.235533 41.685729,34.176331 41.682178,34.14377 C 41.678625,34.11121 41.672705,34.087233 41.664418,34.07184 C 41.653169,34.051121 41.637776,34.035136 41.618241,34.023887 C 41.599295,34.012048 41.577687,34.006127 41.553415,34.006127 C 41.493621,34.006127 41.446556,34.03188 41.41222,34.083385 C 41.378475,34.134298 41.361602,34.205044 41.361603,34.295621 L 41.361603,34.784921 L 41.07566,34.784921 L 41.07566,33.790338 L 41.361603,33.790338 L 41.361603,33.935973 C 41.404819,33.877957 41.4507,33.835332 41.499246,33.808098 C 41.54779,33.780274 41.601367,33.766362 41.659977,33.766361 C 41.762987,33.766362 41.841133,33.801587 41.894415,33.872036 C 41.948287,33.942486 41.975224,34.044904 41.975225,34.179291 M 42.939615,33.821418 L 42.939615,34.06296 C 42.878637,34.034544 42.819435,34.013232 42.762011,33.999023 C 42.705177,33.984815 42.6516,33.977711 42.601279,33.97771 C 42.546813,33.977711 42.506261,33.985407 42.47962,34.000799 C 42.453571,34.0156 42.440547,34.038688 42.440547,34.070064 C 42.440547,34.095521 42.450315,34.115058 42.469852,34.128674 C 42.48998,34.142291 42.526093,34.152355 42.578191,34.158866 L 42.62792,34.166858 C 42.774739,34.18758 42.873309,34.22162 42.923631,34.268981 C 42.974543,34.316342 42.999999,34.39064 43,34.491874 C 42.999999,34.597845 42.964775,34.67747 42.894326,34.730751 C 42.823876,34.784033 42.718793,34.810673 42.579079,34.810673 C 42.519877,34.810673 42.458603,34.805345 42.395258,34.794689 C 42.332505,34.784625 42.267975,34.769232 42.20167,34.748512 L 42.20167,34.50697 C 42.258503,34.537755 42.316816,34.560844 42.37661,34.576236 C 42.436995,34.591628 42.497972,34.599325 42.559542,34.599324 C 42.615191,34.599325 42.657224,34.59074 42.685641,34.573572 C 42.714057,34.556404 42.728265,34.530947 42.728266,34.497202 C 42.728265,34.468786 42.718497,34.447769 42.698961,34.434153 C 42.679424,34.419945 42.640648,34.408992 42.582631,34.401296 L 42.532014,34.394192 C 42.40473,34.376432 42.315336,34.343575 42.263831,34.295621 C 42.212918,34.247669 42.187462,34.174851 42.187462,34.077168 C 42.187462,33.971791 42.220022,33.893645 42.285144,33.842731 C 42.350265,33.791819 42.450019,33.766362 42.584407,33.766361 C 42.637095,33.766362 42.692449,33.770802 42.750467,33.779681 C 42.808483,33.788563 42.871533,33.802475 42.939615,33.821418" + id="flowRoot9140" /> + <path + style="opacity:1;fill:url(#linearGradient9194);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" + d="M 31 40 L 31 43 L 32 43 L 32 40 L 31 40 z M 33 40 L 33 43 L 35 43 L 35 40 L 33 40 z M 36 40 L 36 43 L 36.9375 43 L 36.9375 40 L 36 40 z M 38 40 L 38 43 L 40 43 L 40 40 L 38 40 z M 41.28125 40 C 41.168464 40 41.0625 40.105962 41.0625 40.21875 L 41.0625 42.78125 C 41.0625 42.894036 41.168462 43 41.28125 43 L 41.78125 43 C 41.894036 43 42 42.894038 42 42.78125 L 42 40.21875 C 42 40.105964 41.894038 40 41.78125 40 L 41.28125 40 z M 43.0625 40 L 43.0625 43 L 44 43 L 44 40 L 43.0625 40 z " + id="rect9175" /> + <path + style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:semi-condensed;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold Semi-Condensed" + d="M 33,35.766614 L 33.543122,35.766614 C 33.704956,35.766616 33.829008,35.806602 33.915279,35.886573 C 34.001548,35.965918 34.044683,36.079265 34.044684,36.226615 C 34.044683,36.374597 34.001548,36.488574 33.915279,36.568546 C 33.829008,36.64789 33.704956,36.687561 33.543122,36.687561 L 33.327762,36.687561 L 33.327762,37.176843 L 33,37.176843 L 33,35.766614 M 33.327762,36.030147 L 33.327762,36.424028 L 33.508174,36.424028 C 33.571773,36.424029 33.62089,36.407027 33.655525,36.373022 C 33.690158,36.338389 33.707475,36.289587 33.707476,36.226615 C 33.707475,36.163646 33.690158,36.115158 33.655525,36.081153 C 33.62089,36.04715 33.571773,36.030148 33.508174,36.030147 L 33.327762,36.030147 M 34.260044,36.118936 L 34.564192,36.118936 L 34.564192,37.176843 L 34.260044,37.176843 L 34.260044,36.118936 M 34.260044,35.707107 L 34.564192,35.707107 L 34.564192,35.982918 L 34.260044,35.982918 L 34.260044,35.707107 M 35.508753,36.273843 L 35.508753,35.707107 L 35.814791,35.707107 L 35.814791,37.176843 L 35.508753,37.176843 L 35.508753,37.023824 C 35.466561,37.086166 35.420278,37.131819 35.369903,37.160786 C 35.319525,37.189752 35.260962,37.204235 35.194214,37.204235 C 35.077088,37.204235 34.980743,37.152599 34.905178,37.049327 C 34.830243,36.945426 34.792776,36.811928 34.792776,36.648834 C 34.792776,36.48574 34.830243,36.352558 34.905178,36.249285 C 34.980743,36.145384 35.077088,36.093433 35.194214,36.093432 C 35.260333,36.093433 35.318581,36.108231 35.368958,36.137827 C 35.419963,36.166794 35.466561,36.212133 35.508753,36.273843 M 35.307561,36.95865 C 35.37305,36.95865 35.422797,36.932202 35.456802,36.879307 C 35.491435,36.826412 35.508752,36.749587 35.508753,36.648834 C 35.508752,36.548081 35.491435,36.471257 35.456802,36.418361 C 35.422797,36.365467 35.37305,36.339019 35.307561,36.339018 C 35.243331,36.339019 35.193899,36.365467 35.159265,36.418361 C 35.125261,36.471257 35.108259,36.548081 35.108259,36.648834 C 35.108259,36.749587 35.125261,36.826412 35.159265,36.879307 C 35.193899,36.932202 35.243331,36.95865 35.307561,36.95865 M 36.759351,36.997376 C 36.71716,37.059088 36.670876,37.104427 36.6205,37.133394 C 36.570123,37.16236 36.511561,37.176843 36.444812,37.176843 C 36.328946,37.176843 36.232915,37.126152 36.156721,37.024769 C 36.081156,36.922757 36.043374,36.793037 36.043374,36.63561 C 36.043374,36.477554 36.081156,36.348149 36.156721,36.247396 C 36.232915,36.146014 36.328946,36.095322 36.444812,36.095322 C 36.511561,36.095322 36.570123,36.109806 36.6205,36.138771 C 36.670876,36.167739 36.71716,36.213392 36.759351,36.275732 L 36.759351,36.118936 L 37.065388,36.118936 L 37.065388,37.070108 C 37.065387,37.240129 37.0169,37.369848 36.919926,37.459267 C 36.82358,37.549315 36.68347,37.594339 36.499597,37.594339 C 36.440404,37.594339 36.382786,37.589301 36.326742,37.579226 C 36.271327,37.56915 36.215599,37.553722 36.159555,37.532943 L 36.159555,37.26941 C 36.21308,37.303414 36.265345,37.328602 36.316352,37.344975 C 36.367358,37.361977 36.418679,37.370478 36.470315,37.370478 C 36.569809,37.370478 36.642854,37.346234 36.689453,37.297747 C 36.736051,37.24926 36.75935,37.17338 36.759351,37.070108 L 36.759351,36.997376 M 36.55816,36.339018 C 36.495188,36.339019 36.446071,36.364837 36.410808,36.416472 C 36.376174,36.468108 36.358857,36.541155 36.358857,36.63561 C 36.358857,36.732585 36.375859,36.806261 36.409864,36.856637 C 36.443867,36.906384 36.493299,36.931257 36.55816,36.931257 C 36.621759,36.931257 36.671191,36.90544 36.706456,36.853803 C 36.741718,36.802168 36.75935,36.729437 36.759351,36.63561 C 36.75935,36.541155 36.741718,36.468108 36.706456,36.416472 C 36.671191,36.364837 36.621759,36.339019 36.55816,36.339018 M 37.36198,36.118936 L 37.666129,36.118936 L 37.666129,37.176843 L 37.36198,37.176843 L 37.36198,36.118936 M 37.36198,35.707107 L 37.666129,35.707107 L 37.666129,35.982918 L 37.36198,35.982918 L 37.36198,35.707107 M 38.919561,36.532653 L 38.919561,37.176843 L 38.613523,37.176843 L 38.613523,37.071997 L 38.613523,36.683783 C 38.613522,36.592476 38.611633,36.529505 38.607856,36.494871 C 38.604077,36.460237 38.597779,36.434734 38.588965,36.418361 C 38.577,36.396322 38.560627,36.37932 38.539847,36.367355 C 38.519696,36.354762 38.496712,36.348464 38.470894,36.348464 C 38.407293,36.348464 38.357232,36.375857 38.320709,36.43064 C 38.284816,36.484796 38.266869,36.560046 38.266869,36.65639 L 38.266869,37.176843 L 37.962721,37.176843 L 37.962721,36.118936 L 38.266869,36.118936 L 38.266869,36.273843 C 38.312838,36.212133 38.36164,36.166794 38.413276,36.137827 C 38.464912,36.108231 38.5219,36.093433 38.584242,36.093432 C 38.69381,36.093433 38.776931,36.130901 38.833606,36.205835 C 38.890908,36.280771 38.91956,36.38971 38.919561,36.532653" + id="flowRoot9198" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-cool.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,704 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="cool.svg" + inkscape:export-filename="/home/hbons/Bureaublad/cool.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective105" /> + <linearGradient + id="linearGradient11669" + inkscape:collect="always"> + <stop + id="stop11671" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop11673" + offset="1" + style="stop-color:#3465a4;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11653"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop11655" /> + <stop + style="stop-color:#3465a4;stop-opacity:1" + offset="1" + id="stop11657" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11586"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11588" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11590" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + id="linearGradient11346" + inkscape:collect="always"> + <stop + id="stop11348" + offset="0" + style="stop-color:#ef7700;stop-opacity:1" /> + <stop + id="stop11350" + offset="1" + style="stop-color:#fea523;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11346" + id="linearGradient10424" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-2.0000002,0,0,2.0000001,48.499999,-0.4999991)" + x1="8.9999981" + y1="10.5625" + x2="8.9999981" + y2="12.4375" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="23.746914" + y2="36.579254" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9659258,0.258819,0.258819,0.9659258,39.560471,-4.4105697)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <filter + id="filter3405" + height="2.5649745" + y="-0.78248727" + width="1.5575919" + x="-0.27879593" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur3407" + stdDeviation="1.5438116" + inkscape:collect="always" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11586" + id="linearGradient11592" + x1="39.704506" + y1="13.248698" + x2="54.781696" + y2="18.949747" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11669" + id="radialGradient11659" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" + gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11653" + id="radialGradient11667" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="34.093743" + inkscape:cy="29.192709" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="matrix(0.9659258,-0.264782,0.258819,0.9881799,-6.825115,7.6473507)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 13,31.694019 C 15.576229,36.323459 20.846351,38.909081 25.954556,37.540342 C 31.062759,36.171603 34.33401,31.297326 34.250368,26 C 32.872293,29.813956 29.916568,34.514228 25.463432,35.707442 C 21.010298,36.900659 16.100427,34.307964 13,31.694019 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-11.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(0.9925109,-0.2659425,0.4601228,1.7172017,-13.102978,-15.495569)" /> + <path + style="opacity:0.59722218;fill:url(#radialGradient11659);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,18.537724 C 22,22.656901 18.64,26.000001 14.5,26.000001 C 10.36,26.000001 7,22.656901 7,18.537724 C 7,14.418548 10.36,14.000001 14.5,14.000001 C 18.64,14.000001 22,14.418548 22,18.537724 z" + id="path11647" + sodipodi:nodetypes="csssc" /> + <rect + style="opacity:1;fill:#204a87;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="rect11649" + width="5.1303458" + height="1.0018942" + x="6.2930641" + y="14.833013" + rx="0.51303452" + ry="0.50094712" + transform="matrix(0.9676638,0.2522433,-0.265541,0.9640996,0,0)" /> + <rect + style="opacity:1;fill:#204a87;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="rect11651" + width="5.1303449" + height="1.0018942" + x="31.000992" + y="25.932768" + rx="0.51303446" + ry="0.50094712" + transform="matrix(0.9676638,-0.2522433,0.265541,0.9640996,0,0)" /> + <path + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:0.99999994;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 14.5,13.5 C 10.084001,13.5 6.5,13.946414 6.5,18.408854 C 6.5,22.871297 10.084001,26.500001 14.5,26.5 C 17.950001,26.5 20.877881,24.27985 22,21.184896 C 23.122119,24.27985 26.049999,26.500001 29.5,26.5 C 33.916001,26.5 37.499998,22.871296 37.5,18.408854 C 37.5,13.946415 33.916,13.5 29.5,13.5 C 26.05,13.5 23.122119,13.790128 22,16.039063 C 20.877881,13.790128 17.950001,13.5 14.5,13.5 z" + id="path11661" /> + <path + style="opacity:0.59722218;fill:url(#radialGradient11667);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 37,18.537724 C 37,22.656901 33.64,26.000001 29.5,26.000001 C 25.36,26.000001 22,22.656901 22,18.537724 C 22,14.418548 25.36,14.000001 29.5,14.000001 C 33.64,14.000001 37,14.418548 37,18.537724 z" + id="path11663" + sodipodi:nodetypes="csssc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-dialog.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,609 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="dialog.svg" + inkscape:export-filename="/home/hbons/Bureaublad/dialog.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective89" /> + <linearGradient + inkscape:collect="always" + id="linearGradient9283"> + <stop + style="stop-color:white;stop-opacity:1;" + offset="0" + id="stop9285" /> + <stop + style="stop-color:#c9daee;stop-opacity:1" + offset="1" + id="stop9287" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="22.919643" + y2="36.402832" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.8636363,0,0,0.7777776,39.227274,9.2222251)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9166666,0,0,0.9166666,-3.0416663,6.1250012)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="matrix(0.9166667,0,0,0.9166666,7.9583347,6.1250012)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9,0,0,0.9,-2.7500001,6.450001)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9,0,0,0.9,39.749999,6.450001)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient7925" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient7927" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <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 + inkscape:collect="always" + xlink:href="#linearGradient9283" + id="linearGradient8508" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6666666,0,0,0.6587574,15.166665,0.8540557)" + x1="30.5" + y1="1.7319652" + x2="30.5" + y2="22.781603" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8904" + id="linearGradient8511" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6875001,0,0,0.6767003,14.531249,0.4849495)" + x1="29.466667" + y1="6.8962817" + x2="42.829762" + y2="37.801281" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313708" + inkscape:cx="42.212021" + inkscape:cy="27.33968" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1430" + inkscape:window-height="837" + inkscape:window-x="2" + inkscape:window-y="7" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="fill:#efefef;fill-opacity:1;stroke:url(#linearGradient8511);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 28.646485,1.5 C 26.351226,1.5 24.499999,3.6053736 24.499999,6.2157551 L 24.499999,14.378452 C 24.499999,16.988834 26.351226,19.471324 28.646485,19.471324 L 38.588405,19.471324 C 38.588405,19.471324 38.185679,21.246142 37.169849,22.500949 C 40.739034,22.500949 41.597375,20.059554 41.597375,19.461518 L 43.0625,19.471324 C 45.821256,19.471324 46.5,16.985061 46.5,14.378452 L 46.5,6.2157551 C 46.5,3.6053738 44.648774,1.5 42.353516,1.5 L 28.646485,1.5 z" + id="path8201" + sodipodi:nodetypes="cccccccccccc" /> + <path + style="fill:url(#linearGradient8508);fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 28.854165,2.5009492 C 27.043799,2.5009492 25.499999,4.1991556 25.499999,6.4329081 L 25.499999,14.379169 C 25.499999,16.612921 27.043799,18.498627 28.854165,18.498627 L 38.854706,18.498627 C 39.222454,18.499674 39.520313,18.606498 39.521372,18.969885 C 39.521372,18.969885 39.644477,20.147733 39.23261,20.89176 C 40.286203,20.514643 40.854165,18.434645 40.854165,18.434645 C 40.969505,18.353016 41.108134,18.309759 41.249998,18.311127 L 42.833331,18.311127 C 43.997822,18.311127 44.543633,17.937415 44.937499,17.28182 C 45.331364,16.626223 45.499999,15.591478 45.499999,14.379169 L 45.499999,6.4329081 C 45.499999,4.1991558 43.956197,2.5009492 42.145832,2.5009492 L 28.854165,2.5009492 z" + id="path8203" + sodipodi:nodetypes="ccccccccccscccc" /> + <path + transform="matrix(1.8058936,0,0,2.1118921,-0.410926,17.914587)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.7040925,0,0,1.7040625,-1.6187858,8.7839416)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.58828396;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.5795214,0,0,1.5795214,-0.1480796,10.152022)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.5538448,0,0,1.5538449,0.1550622,10.434085)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 18.5,24.000001 C 18.5,27.035998 16.036004,29.499999 13.000001,29.499999 C 9.9640002,29.499999 7.5000003,27.035998 7.5000003,24.000001 C 7.5000003,20.964 9.9640002,18.5 13.000001,18.5 C 16.036004,18.5 18.5,20.964 18.5,24.000001 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.6039688,0,0,-1.6039689,-0.4367098,45.116428)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.62345362;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 17.500001,24.000001 C 17.500001,26.484 15.484002,28.5 13,28.5 C 10.516001,28.5 8.5000003,26.484 8.5000003,24.000001 C 8.5000003,21.516 10.516001,19.5 13,19.5 C 15.484002,19.5 17.500001,21.516 17.500001,24.000001 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(0.8744826,0,0,0.8193141,-2.4902353,7.8660638)" + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,33.230703 24,33.230703 C 19.928002,33.230704 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + id="path11288" + sodipodi:nodetypes="cscscscsccc" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 9,31 C 10.114314,34.996589 13.932744,38 18.5,38 C 23.067256,38 26.885687,34.996589 28,31 C 25.997881,33.58792 22.481559,36.086622 18.5,36.086622 C 14.518443,36.086624 11.00212,33.58792 9,31 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.0998724,0.5796011,-0.5856851,1.5252629,3.1832579,-1.498334)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.0998724,0.5796014,-0.5856851,1.5252636,3.1832579,-0.669072)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.44422138;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-1.498334)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.0998724,0.5796011,0.5856851,1.5252629,33.816741,-0.6690642)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.4442215;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 19.499999,24.000001 C 19.499999,26.484 21.515997,28.5 23.999999,28.5 C 26.483998,28.5 28.499999,26.484 28.499999,24.000001 C 28.499999,21.516 26.483998,19.5 23.999999,19.5 C 21.515997,19.5 19.499999,21.516 19.499999,24.000001 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:0.99999994;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.9494392,0,0,1.2877393,4.0769204,13.069868)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.9747197,0,0,0.6878263,13.538459,18.695971)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 29.5,24.000001 C 29.5,27.035998 27.036004,29.499999 24.000002,29.499999 C 20.964001,29.499999 18.500001,27.035998 18.500001,24.000001 C 18.500001,20.964 20.964001,18.5 24.000002,18.5 C 27.036004,18.5 29.5,20.964 29.5,24.000001 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(0.8520939,0,0,1.474258,-1.3111844,-12.857869)" /> + <path + transform="matrix(1.9494392,0,0,1.2877393,-4.9230796,13.069868)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path7921" + style="opacity:1;fill:url(#linearGradient7925);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.9747197,0,0,0.6878263,4.5384591,18.695971)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path7923" + style="opacity:1;fill:url(#linearGradient7927);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-error.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,327 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="error.svg" + inkscape:export-filename="/home/hbons/Bureaublad/error.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective47" /> + <linearGradient + inkscape:collect="always" + id="linearGradient8757"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop8759" /> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="1" + id="stop8761" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="23.151463" + y1="36.068001" + x2="23.151463" + y2="31.364563" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,-1,46.004066,64)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="44.452724" + fx="24.00321" + fy="44.452724" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8757" + id="linearGradient8763" + x1="22" + y1="17.615276" + x2="22" + y2="20.974033" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="50.073667" + inkscape:cy="41.753083" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fill="#fce94f" + inkscape:window-width="1081" + inkscape:window-height="669" + inkscape:window-x="122" + inkscape:window-y="78" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036000000001;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="matrix(1,0,0,-1,-1.9959332,64)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 11.004066,36.000001 C 12.294325,30.861529 16.715664,27.000001 22.004067,27.000001 C 27.292467,27.000001 31.713809,30.861529 33.004066,36.000001 C 30.685823,32.672675 26.614292,28.897559 22.004067,28.897559 C 17.393842,28.897556 13.32231,32.672675 11.004066,36.000001 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.4298057,-1.6425985,-1.1582421,-1.5938167,-5.185395,36.479745)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + style="opacity:0.74537037;fill:#eeeeec;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" + d="M 14.03125,18 L 14.03125,19 L 15.03125,19 L 15.03125,18 L 14.03125,18 z M 15.03125,19 L 15.03125,20 L 16.03125,20 L 16.03125,19 L 15.03125,19 z M 16.03125,20 L 16.03125,21 L 17.03125,21 L 17.03125,20 L 16.03125,20 z M 17.03125,20 L 18.03125,20 L 18.03125,19 L 17.03125,19 L 17.03125,20 z M 18.03125,19 L 19.03125,19 L 19.03125,18 L 18.03125,18 L 18.03125,19 z M 17.03125,21 L 17.03125,22 L 18.03125,22 L 18.03125,21 L 17.03125,21 z M 18.03125,22 L 18.03125,23 L 19.03125,23 L 19.03125,22 L 18.03125,22 z M 16.03125,21 L 15.03125,21 L 15.03125,22 L 16.03125,22 L 16.03125,21 z M 25.03125,18 L 25.03125,19 L 26.03125,19 L 26.03125,18 L 25.03125,18 z M 26.03125,19 L 26.03125,20 L 27.03125,20 L 27.03125,19 L 26.03125,19 z M 27.03125,20 L 27.03125,21 L 28.03125,21 L 28.03125,20 L 27.03125,20 z M 28.03125,20 L 29.03125,20 L 29.03125,19 L 28.03125,19 L 28.03125,20 z M 29.03125,19 L 30.03125,19 L 30.03125,18 L 29.03125,18 L 29.03125,19 z M 28.03125,21 L 28.03125,22 L 29.03125,22 L 29.03125,21 L 28.03125,21 z M 29.03125,22 L 29.03125,23 L 30.03125,23 L 30.03125,22 L 29.03125,22 z M 27.03125,21 L 26.03125,21 L 26.03125,22 L 27.03125,22 L 27.03125,21 z M 14.03125,22.03125 L 14.03125,23.03125 L 15.03125,23.03125 L 15.03125,22.03125 L 14.03125,22.03125 z M 25.03125,22.03125 L 25.03125,23.03125 L 26.03125,23.03125 L 26.03125,22.03125 L 25.03125,22.03125 z" + id="path8765" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + <path + style="opacity:1;fill:url(#linearGradient8763);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" + d="M 14.03125,17 L 14.03125,18 L 15.03125,18 L 15.03125,17 L 14.03125,17 z M 15.03125,18 L 15.03125,19 L 16.03125,19 L 16.03125,18 L 15.03125,18 z M 16.03125,19 L 16.03125,20 L 17.03125,20 L 17.03125,19 L 16.03125,19 z M 17.03125,19 L 18.03125,19 L 18.03125,18 L 17.03125,18 L 17.03125,19 z M 18.03125,18 L 19.03125,18 L 19.03125,17 L 18.03125,17 L 18.03125,18 z M 17.03125,20 L 17.03125,21 L 18.03125,21 L 18.03125,20 L 17.03125,20 z M 18.03125,21 L 18.03125,22 L 19.03125,22 L 19.03125,21 L 18.03125,21 z M 16.03125,20 L 15.03125,20 L 15.03125,21 L 16.03125,21 L 16.03125,20 z M 25.03125,17 L 25.03125,18 L 26.03125,18 L 26.03125,17 L 25.03125,17 z M 26.03125,18 L 26.03125,19 L 27.03125,19 L 27.03125,18 L 26.03125,18 z M 27.03125,19 L 27.03125,20 L 28.03125,20 L 28.03125,19 L 27.03125,19 z M 28.03125,19 L 29.03125,19 L 29.03125,18 L 28.03125,18 L 28.03125,19 z M 29.03125,18 L 30.03125,18 L 30.03125,17 L 29.03125,17 L 29.03125,18 z M 28.03125,20 L 28.03125,21 L 29.03125,21 L 29.03125,20 L 28.03125,20 z M 29.03125,21 L 29.03125,22 L 30.03125,22 L 30.03125,21 L 29.03125,21 z M 27.03125,20 L 26.03125,20 L 26.03125,21 L 27.03125,21 L 27.03125,20 z M 14.03125,21.03125 L 14.03125,22.03125 L 15.03125,22.03125 L 15.03125,21.03125 L 14.03125,21.03125 z M 25.03125,21.03125 L 25.03125,22.03125 L 26.03125,22.03125 L 26.03125,21.03125 L 25.03125,21.03125 z" + id="rect7941" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.4298057,-1.6425985,1.1582421,-1.5938167,48.926576,36.479745)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path7888" + style="opacity:0.24537037;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-info.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,569 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="info.svg" + inkscape:export-filename="/home/hbons/Bureaublad/info.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective82" /> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="22.919643" + y2="36.402832" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="8" + inkscape:cx="41.138874" + inkscape:cy="20.946547" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="translate(-2.0000685,1.885788e-7)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-mail.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,976 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="mail.svg" + inkscape:export-filename="/home/hbons/Bureaublad/mail.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective126" /> + <linearGradient + inkscape:collect="always" + id="linearGradient9188"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop9190" /> + <stop + style="stop-color:#6f726d;stop-opacity:1" + offset="1" + id="stop9192" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9166"> + <stop + style="stop-color:#3b73bb;stop-opacity:1;" + offset="0" + id="stop9168" /> + <stop + style="stop-color:#3b73bb;stop-opacity:0;" + offset="1" + id="stop9170" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9158"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9160" /> + <stop + style="stop-color:#bcd2e9;stop-opacity:1" + offset="1" + id="stop9162" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9056"> + <stop + style="stop-color:#729fcf;stop-opacity:1;" + offset="0" + id="stop9058" /> + <stop + style="stop-color:#729fcf;stop-opacity:0;" + offset="1" + id="stop9060" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9040"> + <stop + style="stop-color:#729fcf;stop-opacity:1" + offset="0" + id="stop9042" /> + <stop + style="stop-color:#3465a4;stop-opacity:1" + offset="1" + id="stop9044" /> + </linearGradient> + <linearGradient + id="linearGradient11669" + inkscape:collect="always"> + <stop + id="stop11671" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + id="stop11673" + offset="1" + style="stop-color:#2e3436;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11653"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop11655" /> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="1" + id="stop11657" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11669" + id="radialGradient11659" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" + gradientTransform="matrix(1.0000001,0,0,0.8124999,0.5000001,4.156251)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11653" + id="radialGradient11667" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0000001,0,0,0.8124999,15.5,4.156251)" + cx="14" + cy="19.5" + fx="9.3258924" + fy="14.814685" + r="8" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient8720" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient8722" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient8985" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient8993" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8995" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient8997" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient9005" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-34.999933,2.0000002)" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient9018" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.9659258,0.1156321,0.258819,0.431545,39.417822,14.519987)" + x1="22.919643" + y1="33.491837" + x2="23.746914" + y2="36.579254" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient9036" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.5208182,0,0,0.3864192,-14.644203,17.599539)" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9040" + id="linearGradient9046" + x1="24" + y1="37" + x2="44.533825" + y2="40.875" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1262515,0,0,1,-4.093162,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9056" + id="linearGradient9062" + x1="34.5" + y1="61.35038" + x2="34.5" + y2="33.72963" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9158" + id="linearGradient9164" + x1="29" + y1="35.649048" + x2="29" + y2="32.334484" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1,0)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9172" + x1="29.125" + y1="36.5625" + x2="25" + y2="31.9375" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9188" + id="linearGradient9194" + x1="37.5" + y1="42.295494" + x2="37.5" + y2="40.792892" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9166" + id="linearGradient9246" + gradientUnits="userSpaceOnUse" + x1="29.78125" + y1="37.09375" + x2="23.984375" + y2="30.40625" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.7770035,0,2.6759581)" + r="8.9687502" + fy="12" + fx="12" + cy="12" + cx="12" + id="radialGradient3210" + xlink:href="#linearGradient3204" + inkscape:collect="always" /> + <linearGradient + y2="18.288521" + x2="12.015625" + y1="10.420408" + x1="12.015625" + gradientUnits="userSpaceOnUse" + id="linearGradient3200" + xlink:href="#linearGradient4130" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="13.251127" + x2="12.750399" + y1="19.780256" + x1="12.726427" + id="linearGradient3197" + xlink:href="#linearGradient3191" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="19.148933" + x2="15.742911" + y1="8.850009" + x1="13.038205" + id="linearGradient3189" + xlink:href="#linearGradient3183" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.257382,0,0,0.665505,-3.088585,4.013937)" + r="8.9687502" + fy="12" + fx="12" + cy="12" + cx="12" + id="radialGradient4152" + xlink:href="#linearGradient4146" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="17.151861" + x2="12.015625" + y1="12.513933" + x1="12.015625" + id="linearGradient4144" + xlink:href="#linearGradient4138" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4130" + inkscape:collect="always"> + <stop + id="stop4132" + offset="0" + style="stop-color:#babdb6;stop-opacity:1;" /> + <stop + id="stop4134" + offset="1" + style="stop-color:#babdb6;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4138" + inkscape:collect="always"> + <stop + id="stop4140" + offset="0" + style="stop-color:#babdb6;stop-opacity:1;" /> + <stop + id="stop4142" + offset="1" + style="stop-color:#babdb6;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4146" + inkscape:collect="always"> + <stop + id="stop4148" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop4150" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient3183" + inkscape:collect="always"> + <stop + id="stop3185" + offset="0" + style="stop-color:#888a85;stop-opacity:1;" /> + <stop + id="stop3187" + offset="1" + style="stop-color:#555753;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3191" + inkscape:collect="always"> + <stop + id="stop3193" + offset="0" + style="stop-color:#555753;stop-opacity:1;" /> + <stop + id="stop3195" + offset="1" + style="stop-color:#888a85;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient3204" + inkscape:collect="always"> + <stop + id="stop3206" + offset="0" + style="stop-color:#888a85;stop-opacity:1;" /> + <stop + id="stop3208" + offset="1" + style="stop-color:#888a85;stop-opacity:0;" /> + </linearGradient> + <inkscape:perspective + id="perspective8002" + inkscape:persp3d-origin="12 : 8 : 1" + inkscape:vp_z="24 : 12 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 12 : 1" + sodipodi:type="inkscape:persp3d" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="173.29133" + inkscape:cy="101.88242" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.73423419999999995;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.48784169999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + style="opacity:0.37037036000000001;fill:url(#radialGradient9036);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + d="M 10.826033,28.011426 C 10.520443,28.014045 10.234263,28.093756 10.050887,28.227332 C 9.8675105,28.360908 9.8075706,28.533318 9.8885335,28.694322 C 11.280177,31.722142 16.087826,34.020914 21.857283,34.020914 C 27.626736,34.020914 32.434391,31.722142 33.826033,28.694322 C 33.967019,28.436085 33.737888,28.160593 33.289106,28.048758 C 32.840324,27.936923 32.309315,28.02299 32.044783,28.25044 C 29.836827,29.981737 25.929281,31.047173 21.857283,31.047173 C 17.785285,31.047174 13.87774,29.981737 11.669783,28.25044 C 11.481718,28.097267 11.163547,28.007137 10.826033,28.011426 L 10.826033,28.011426 z" + id="path11288" + sodipodi:nodetypes="cscscscsccc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4873425,3.0804918)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.857282,29 C 12.147541,31.295706 16.56888,33.020914 21.857283,33.020914 C 27.145683,33.020914 31.567025,31.295706 32.857282,29 C 30.539039,30.486544 26.467508,31.996368 21.857283,31.996368 C 17.247058,31.99637 13.175526,30.486544 10.857282,29 z" + style="fill:url(#linearGradient9018);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-7.1539168,6.0838442)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837946999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-10.968439)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-9.9684388)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837955999999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,3.846082,6.0838439)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,2.3076208,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,13.30762,11.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640185999999996;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(0.651488,0,0,0.651488,28.30843,24.844692)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8714" + style="opacity:1;fill:#e0a900;fill-opacity:1;stroke:url(#linearGradient8720);stroke-width:1.53875648999999992;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5012403,0,0,0.5012402,30.082278,26.494867)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8716" + style="opacity:1;fill:url(#radialGradient8722);fill-opacity:1;stroke:none;stroke-width:0.51155167999999995;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(0.5513643,0,0,-0.5513643,29.490506,38.055647)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path8718" + style="opacity:0.48699998999999999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.81368314999999991;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <g + id="g8029" + inkscape:label="Layer 1" + transform="translate(24.000001,25)"> + <rect + ry="1.5292913" + rx="1.4791573" + y="4.5005183" + x="2.5008683" + height="14.994927" + width="18.999125" + id="rect3198" + style="opacity:1;fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3189);stroke-width:1.00000024;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + ry="1.325834" + rx="1.3235176" + y="5.5" + x="3.5" + height="13" + width="17" + id="rect3202" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + d="M 3.96875,5.53125 C 3.7197609,5.53125 3.53125,5.7077743 3.53125,6.03125 L 3.53125,17.96875 C 3.53125,18.292225 3.7197609,18.46875 3.96875,18.46875 L 20.03125,18.46875 C 20.280239,18.46875 20.46875,18.292227 20.46875,17.96875 L 20.46875,6.03125 C 20.46875,5.7077741 20.280239,5.53125 20.03125,5.53125 L 3.96875,5.53125 z" + inkscape:href="#rect3198" + id="path4119" + style="opacity:0.4;fill:url(#radialGradient3210);fill-opacity:1;stroke:url(#radialGradient4152);stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + xlink:href="#rect3198" + inkscape:original="M 3.96875 4.5 C 3.1492968 4.5 2.5 5.1840228 2.5 6.03125 L 2.5 17.96875 C 2.5 18.815977 3.1492967 19.5 3.96875 19.5 L 20.03125 19.5 C 20.850703 19.5 21.5 18.815978 21.5 17.96875 L 21.5 6.03125 C 21.5 5.1840226 20.850703 4.5 20.03125 4.5 L 3.96875 4.5 z " + inkscape:radius="-1.0251163" + sodipodi:type="inkscape:offset" /> + <path + sodipodi:nodetypes="cccccc" + id="path4113" + d="M 20.173644,19.500002 L 3.8263566,19.500002 C 3.0915545,19.500002 2.4999999,18.840678 2.4999999,18.021697 L 11.981112,10.500001 L 21.499999,18.021697 C 21.499999,18.840678 20.908445,19.500002 20.173644,19.500002 z" + style="fill:#dfe2dc;fill-opacity:1;stroke:url(#linearGradient3197);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" /> + <path + transform="matrix(1.0093633,0,0,1,-3.4234557e-2,0)" + d="M 11.96875,11.71875 L 3.65625,18.3125 C 3.718416,18.374228 3.7395135,18.53125 3.8125,18.53125 L 20.1875,18.53125 C 20.260486,18.53125 20.281584,18.374227 20.34375,18.3125 L 11.96875,11.71875 z" + inkscape:href="#path4113" + id="path4117" + style="opacity:1;fill:url(#linearGradient4144);fill-opacity:1;stroke:#ffffff;stroke-width:0.9953509;stroke-miterlimit:4;stroke-opacity:1" + xlink:href="#path4113" + inkscape:original="M 11.96875 10.5 L 2.5 18.03125 C 2.5 18.850231 3.0776979 19.5 3.8125 19.5 L 20.1875 19.5 C 20.922301 19.5 21.500001 18.850232 21.5 18.03125 L 11.96875 10.5 z " + inkscape:radius="-0.96695226" + sodipodi:type="inkscape:offset" /> + <path + sodipodi:nodetypes="ccczcc" + id="path4122" + d="M 20.145067,4.5000001 L 3.8242121,4.5000001 C 3.0905983,4.5000001 2.5000001,5.1593244 2.5000001,5.9783056 C 2.5000001,5.9783056 9.4173792,13.5 12.043511,13.5 C 14.708468,13.5 21.469279,5.9783056 21.469279,5.9783056 C 21.469279,5.1593244 20.878681,4.5000001 20.145067,4.5000001 z" + style="fill:#eeeeec;fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-miterlimit:4;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccz" + id="path4124" + d="M 12.087485,11.46875 C 10.301616,11.46875 3.34375,18.34375 3.34375,18.34375 C 3.4413342,18.582586 3.6045666,18.75 3.8125,18.75 L 20.1875,18.75 C 20.395433,18.75 20.558666,18.582586 20.65625,18.34375 C 20.65625,18.34375 13.912791,11.46875 12.087485,11.46875 z" + style="opacity:1;fill:url(#linearGradient3200);fill-opacity:1;stroke:#ffffff;stroke-width:1.03183317;stroke-miterlimit:4;stroke-opacity:1" + transform="matrix(0.9819495,0,0,-0.956515,0.2166063,23.434657)" /> + </g> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-question.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,655 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="question.svg" + inkscape:export-filename="/home/hbons/Bureaublad/question.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient8711"> + <stop + style="stop-color:#a5c2e1;stop-opacity:1" + offset="0" + id="stop8713" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop8715" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11586"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11588" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11590" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11570"> + <stop + style="stop-color:#0a387a;stop-opacity:1" + offset="0" + id="stop11572" /> + <stop + style="stop-color:#368eec;stop-opacity:1" + offset="1" + id="stop11574" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11418"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11420" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11422" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11292"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11294" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11296" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11208"> + <stop + style="stop-color:#c32f00;stop-opacity:1" + offset="0" + id="stop11210" /> + <stop + style="stop-color:#6c1300;stop-opacity:1" + offset="1" + id="stop11212" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11208" + id="linearGradient11214" + x1="22.919643" + y1="33.491837" + x2="22.919643" + y2="36.402832" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999931,1.885788e-7)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11292" + id="radialGradient11298" + cx="24.00321" + cy="34.70562" + fx="24.00321" + fy="34.70562" + r="12.133846" + gradientTransform="matrix(1.5208182,0,0,0.7073167,-12.501486,7.9416791)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="translate(10.999931,1.885788e-7)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11418" + id="linearGradient11424" + x1="22.915459" + y1="34.796875" + x2="22.854631" + y2="29.835938" + gradientUnits="userSpaceOnUse" /> + <filter + inkscape:collect="always" + id="filter11462" + x="-0.078992675" + width="1.1579853" + y="-0.19133781" + height="1.3826756"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.448448" + id="feGaussianBlur11464" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-2.0000685,1.885788e-7)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1,0,0,1,45.999932,1.885788e-7)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11570" + id="linearGradient11576" + x1="48.140072" + y1="17.348257" + x2="36.310215" + y2="9.2333107" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11586" + id="linearGradient11592" + x1="43.267006" + y1="14" + x2="54.781696" + y2="18.949747" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11570" + id="linearGradient8706" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0,-2)" + x1="46.202572" + y1="17.035757" + x2="37.247715" + y2="14.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11586" + id="linearGradient8708" + gradientUnits="userSpaceOnUse" + x1="43.267006" + y1="14" + x2="54.781696" + y2="18.949747" + gradientTransform="translate(0,-2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8711" + id="linearGradient8717" + x1="47.873451" + y1="13.986977" + x2="41.067547" + y2="12.484375" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="48.898255" + inkscape:cy="29.543471" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499931,19.500002 C 21.499931,22.812 18.811935,25.5 15.499932,25.5 C 12.187931,25.5 9.4999315,22.812 9.4999315,19.500002 C 9.4999315,16.188 12.187931,13.5 15.499932,13.5 C 18.811935,13.5 21.499931,16.188 21.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499932,19.5 C 20.499932,22.259999 18.259935,24.499999 15.499932,24.499999 C 12.739932,24.499999 10.499932,22.259999 10.499932,19.5 C 10.499932,16.739999 12.739932,14.499999 15.499932,14.499999 C 18.259935,14.499999 20.499932,16.739999 20.499932,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.4367989,0,0,1.5452869,-6.1538483,7.0838437)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.98821175" + inkscape:original="M 13 28 C 14.290259 33.138472 18.711597 37 24 37 C 29.288399 37 33.709743 33.138472 35 28 C 32.681757 31.327326 28.610225 35.09375 24 35.09375 C 19.389774 35.093751 15.318244 31.327326 13 28 z " + style="opacity:0.37037036;fill:url(#radialGradient11298);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="path11288" + d="M 12.96875,27 C 12.66316,27.004794 12.37698,27.150701 12.193604,27.395203 C 12.010227,27.639705 11.950287,27.955291 12.03125,28.25 C 13.422894,33.792238 18.230543,38 24,38 C 29.769453,38 34.577108,33.792239 35.96875,28.25 C 36.109736,27.777313 35.880605,27.273042 35.431823,27.068334 C 34.983041,26.863627 34.452032,27.021167 34.1875,27.4375 C 31.979544,30.606533 28.071998,34.09375 24,34.09375 C 19.928002,34.093751 16.020457,30.606534 13.8125,27.4375 C 13.624435,27.157127 13.306264,26.992149 12.96875,27 L 12.96875,27 z" + transform="translate(-2.0000685,1.885788e-7)" /> + <path + sodipodi:nodetypes="cscsc" + id="path17974" + d="M 10.999931,28 C 12.29019,33.138472 16.711529,37 21.999932,37 C 27.288332,37 31.709674,33.138472 32.999931,28 C 30.681688,31.327326 26.610157,35.102442 21.999932,35.102442 C 17.389707,35.102445 13.318175,31.327326 10.999931,28 z" + style="opacity:1;fill:url(#linearGradient11214);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5297812,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5297812,-9.9684476)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-10.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.470081,-9.9684383)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.499931,19.5 C 23.499931,22.259999 25.739928,24.499999 28.499931,24.499999 C 31.259931,24.499999 33.499931,22.259999 33.499931,19.5 C 33.499931,16.739999 31.259931,14.499999 28.499931,14.499999 C 25.739928,14.499999 23.499931,16.739999 23.499931,19.5 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.436799,0,0,1.5452869,5.8461508,7.0838441)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,3.3076893,12.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.4620795,0,0,1.0301913,15.30769,12.055896)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 34.499931,19.500002 C 34.499931,22.812 31.811935,25.5 28.499932,25.5 C 25.187931,25.5 22.499931,22.812 22.499931,19.500002 C 22.499931,16.188 25.187931,13.5 28.499932,13.5 C 31.811935,13.5 34.499931,16.188 34.499931,19.500002 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#linearGradient11424);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;filter:url(#filter11462);enable-background:accumulate" + id="path11416" + sodipodi:cx="23.25" + sodipodi:cy="30.1875" + sodipodi:rx="6.8125" + sodipodi:ry="2.8125" + d="M 30.0625,30.1875 A 6.8125,2.8125 0 1 1 16.4375,30.1875 A 6.8125,2.8125 0 1 1 30.0625,30.1875 z" + transform="matrix(1.0275229,0,0,1.777778,-1.8899762,-24.666672)" /> + <path + style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8706);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L" + d="M 40.5625,1 C 38.874477,1 37.314933,1.4226492 36.09375,2.28125 C 34.872565,3.1398509 34,4.5416345 34,6.125 C 33.999998,7.9320376 35.500885,9 37.375,9 C 38.972866,9 40.03125,8.6239064 40.03125,6.9375 C 40.03125,5.8358747 41.03125,5.7736538 41.03125,7 C 41.031252,7.5731772 40.720035,7.6923202 40.46875,8.03125 C 39.556981,9.1888218 39.147246,9.72288 38.8125,10.21875 C 37.953228,11.557311 37,12.936936 37,14.46875 C 36.999998,17.077704 39.59375,16.96875 39.59375,16.96875 C 39.236295,17.077217 38.886105,17.297356 38.5625,17.5625 C 38.550686,17.570277 38.542964,17.585834 38.53125,17.59375 C 38.424354,17.683359 38.318146,17.772605 38.21875,17.875 C 37.480053,18.516861 37,19.445308 37,20.5 C 37,22.432 38.568,24 40.5,24 C 42.432,24 44.000001,22.432 44,20.5 C 44,18.95785 43.010761,17.653479 41.625,17.1875 C 41.444379,17.110901 41.249634,17.062378 41.0625,17 C 41.763982,16.748864 42.068061,15.931257 42.0625,15.1875 C 42.051002,14.139574 42.280169,13.716262 42.375,13.5 C 43.426067,11.600594 44.954699,11.097944 46.125,9.75 C 46.749619,8.8343856 47,7.7477245 47,6.75 C 47.000001,5.1014533 46.28805,3.5482598 45.09375,2.53125 C 43.89945,1.5142402 42.298617,1 40.5625,1 z" + id="path3346" + sodipodi:nodetypes="csssssccscsscsssccsccssc" /> + <path + style="font-size:19.03945922999999851px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient8717);fill-opacity:1;stroke:none;stroke-width:1.55613649000000009px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Century Schoolbook L" + d="M 40.5625 1.96875 C 39.03732 1.96875 37.680971 2.3732797 36.65625 3.09375 C 35.664894 3.7907611 34.96875 4.9000488 34.96875 6.125 C 34.968749 6.758422 35.192622 7.1443716 35.59375 7.46875 C 35.994878 7.7931284 36.623252 8.03125 37.375 8.03125 C 38.097392 8.03125 38.596706 7.9024002 38.78125 7.78125 C 38.965794 7.6600998 39.0625 7.5766139 39.0625 6.9375 C 39.0625 6.5144976 39.145775 6.1274407 39.375 5.78125 C 39.604225 5.4350593 40.027732 5.1249297 40.53125 5.125 C 41.034768 5.1250703 41.462039 5.4531849 41.6875 5.8125 C 41.912961 6.1718151 42 6.5608281 42 7 C 42.000002 7.4631574 41.827288 7.9211544 41.625 8.1875 C 41.422712 8.453846 41.293456 8.566387 41.25 8.625 C 40.340574 9.779598 39.934939 10.290878 39.625 10.75 C 38.753163 12.108134 37.96875 13.34166 37.96875 14.46875 C 37.968749 15.449931 38.315321 15.62655 38.71875 15.8125 C 39.583542 16.168963 40.115403 16.105798 40.96875 15.84375 C 41.047882 15.684154 41.095517 15.423765 41.09375 15.1875 C 41.08066 13.994488 41.418028 13.209423 41.46875 13.09375 C 41.488628 13.071983 41.509483 13.051128 41.53125 13.03125 C 42.136141 11.938138 42.896246 11.218183 43.59375 10.65625 C 44.265082 10.115402 44.835184 9.717613 45.3125 9.1875 C 45.803013 8.468469 46.03125 7.5845097 46.03125 6.75 C 46.031251 5.3823316 45.435469 4.1044628 44.46875 3.28125 C 43.478484 2.4379857 42.105973 1.96875 40.5625 1.96875 z M 40.5 18 C 39.12 18 37.999999 19.12 38 20.5 C 38 21.88 39.119998 23 40.5 23 C 41.88 23 43.000002 21.88 43 20.5 C 43 19.12 41.879998 17.999999 40.5 18 z " + id="path11582" /> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/artwork/hicolor/scalable/status/pidgin-warning.svg Mon Sep 01 13:31:43 2008 +0000 @@ -0,0 +1,558 @@ +<?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="48" + height="48" + id="svg2" + sodipodi:version="0.32" + inkscape:version="0.46" + version="1.0" + sodipodi:docbase="/home/hbons/Desktop" + sodipodi:docname="warning.svg" + inkscape:export-filename="/home/hbons/Bureaublad/warning.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + sodipodi:modified="true"> + <defs + id="defs4"> + <linearGradient + inkscape:collect="always" + id="linearGradient8730"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop8732" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8734" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8716"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop8718" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop8720" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient8706"> + <stop + style="stop-color:#391f17;stop-opacity:1" + offset="0" + id="stop8708" /> + <stop + style="stop-color:#841c0e;stop-opacity:1" + offset="1" + id="stop8710" /> + </linearGradient> + <linearGradient + id="linearGradient11493" + inkscape:collect="always"> + <stop + id="stop11495" + offset="0" + style="stop-color:#555753;stop-opacity:1" /> + <stop + id="stop11497" + offset="1" + style="stop-color:#070808;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient11487" + inkscape:collect="always"> + <stop + id="stop11489" + offset="0" + style="stop-color:#538ac5;stop-opacity:1" /> + <stop + id="stop11491" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11474"> + <stop + style="stop-color:#558bc5;stop-opacity:1" + offset="0" + id="stop11476" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop11478" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11333"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11335" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11337" /> + </linearGradient> + <linearGradient + id="linearGradient11316" + inkscape:collect="always"> + <stop + id="stop11318" + offset="0" + style="stop-color:#edd400;stop-opacity:1" /> + <stop + id="stop11320" + offset="1" + style="stop-color:#f6c93b;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11304"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11306" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11308" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11259"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop11261" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop11263" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11241"> + <stop + style="stop-color:#4f381b;stop-opacity:0.97254902" + offset="0" + id="stop11243" /> + <stop + style="stop-color:#a87b42;stop-opacity:0.96078432" + offset="1" + id="stop11245" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11196"> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="0" + id="stop11198" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop11200" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11241" + id="linearGradient10406" + gradientUnits="userSpaceOnUse" + x1="14.365882" + y1="19.515574" + x2="11.215483" + y2="8.2263536" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11493" + id="linearGradient11202" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11196" + id="linearGradient11206" + gradientUnits="userSpaceOnUse" + x1="9.7069349" + y1="8.5495605" + x2="9.9879932" + y2="10.59237" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11316" + id="radialGradient11271" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8771377,9.6878354e-8,-5.330884e-8,1.0893079,-10.4827,-2.6428601)" + cx="11.873854" + cy="12.147273" + fx="11.594166" + fy="8.8655272" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11310" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11304" + id="linearGradient11314" + gradientUnits="userSpaceOnUse" + x1="8.9530411" + y1="6.2636566" + x2="10.732871" + y2="9.6526775" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient11259" + id="radialGradient11327" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.023438,0,0,0.8870879,-0.2709505,0.7064648)" + cx="11.736404" + cy="7.3689327" + fx="11.800528" + fy="1.1734189" + r="9.975256" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11339" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0833276,0,0,1.1666668,-3.9582687,-5.2500011)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11333" + id="linearGradient11343" + gradientUnits="userSpaceOnUse" + x1="14.6875" + y1="11.875" + x2="20.6875" + y2="22.5625" + gradientTransform="matrix(1.0833391,0,0,1.1666668,10.041531,-5.2500011)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11487" + id="linearGradient11480" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0999932,0,0,1.2,-4.2499165,-5.8999987)" /> + <filter + inkscape:collect="always" + id="filter11503" + x="-0.11697236" + width="1.2339447" + y="-0.32830241" + height="1.6566048"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.64772565" + id="feGaussianBlur11505" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11474" + id="linearGradient11507" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.1000069,0,0,1.2,48.250086,-5.8999987)" + x1="14.728965" + y1="15.785595" + x2="16.957989" + y2="24.104429" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8716" + id="radialGradient8722" + cx="44.7687" + cy="4.7732658" + fx="44.7687" + fy="4.7732658" + r="9.0598059" + gradientTransform="matrix(1.7013896,0,0,1.0125342,-31.400301,2.4538538)" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8730" + id="linearGradient8736" + x1="45.837402" + y1="21.754553" + x2="45.837402" + y2="19.126131" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8706" + id="radialGradient8738" + cx="44.7687" + cy="21.608887" + fx="44.7687" + fy="21.608887" + r="9.0598059" + gradientTransform="matrix(1.3094421,0,0,0.7792777,-13.85332,2.5000315)" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.8284271" + inkscape:cx="64.2628" + inkscape:cy="40.347011" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + fill="#fce94f" + inkscape:window-width="1440" + inkscape:window-height="847" + inkscape:window-x="0" + inkscape:window-y="0" + width="48px" + height="48px" + inkscape:snap-bbox="true" + inkscape:snap-nodes="false" + objecttolerance="10" + gridtolerance="10" + showguides="true" + inkscape:guide-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid10393" + visible="true" + enabled="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <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 + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + transform="matrix(2.257367,0,0,2.7454598,-1.263726,9.7889628)" + d="M 17.393564,10.457643 A 6.6449099,2.3675451 0 1 1 4.1037445,10.457643 A 6.6449099,2.3675451 0 1 1 17.393564,10.457643 z" + sodipodi:ry="2.3675451" + sodipodi:rx="6.6449099" + sodipodi:cy="10.457643" + sodipodi:cx="10.748654" + id="path17958" + style="opacity:0.7342342;fill:#2e3436;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11503);enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(2.0549539,0,0,2.0549096,-2.2611787,1.4304378)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17960" + style="opacity:1;fill:#e08700;fill-opacity:1;stroke:url(#linearGradient10406);stroke-width:0.4878417;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11247" + style="opacity:1;fill:url(#radialGradient11271);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.904713,0,0,1.904713,-0.4874115,3.0804919)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path11257" + style="opacity:1;fill:url(#radialGradient11327);fill-opacity:1;stroke:none;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11329" + d="M 21.499929,17.500003 C 21.499929,21.364001 18.587949,24.500001 14.999965,24.500001 C 11.411983,24.500001 8.4999987,21.364001 8.4999987,17.500003 C 8.4999987,13.636 11.411983,10.5 14.999965,10.5 C 18.587949,10.5 21.499929,13.636 21.499929,17.500003 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11339);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(1.954837,0,0,-1.954837,-1.0791836,45.47002)" + d="M 21.781414,10.983024 A 9.975256,9.975256 0 1 1 1.8309021,10.983024 A 9.975256,9.975256 0 1 1 21.781414,10.983024 z" + sodipodi:ry="9.975256" + sodipodi:rx="9.975256" + sodipodi:cy="10.983024" + sodipodi:cx="11.806158" + id="path17964" + style="opacity:0.48699999;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.51155168;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path17966" + d="M 20.499931,17.500002 C 20.499931,20.812 18.03595,23.5 14.999965,23.5 C 11.963984,23.5 9.499999,20.812 9.499999,17.500002 C 9.499999,14.188 11.963984,11.5 14.999965,11.5 C 18.03595,11.5 20.499931,14.188 20.499931,17.500002 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11480);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.9241248,0,0,1.5452869,-12.384324,4.083844)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path17968" + style="opacity:1;fill:url(#linearGradient11202);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989293,-0.7062659,1.8392838,3.5298496,-13.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11325" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(3.7380737,0.6989296,-0.7062659,1.8392846,3.5298496,-12.968448)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17976" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837947;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-13.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path11323" + style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:open="true" + sodipodi:end="5.6135639" + sodipodi:start="3.5782199" + transform="matrix(-3.7380737,0.6989293,0.7062659,1.8392838,40.47015,-12.968438)" + d="M 7.2133909,8.4869402 A 1.2276785,1.7410715 0 0 1 9.288462,8.1425499" + sodipodi:ry="1.7410715" + sodipodi:rx="1.2276785" + sodipodi:cy="9.2232141" + sodipodi:cx="8.3258924" + id="path17978" + style="opacity:1;fill:none;fill-opacity:1;stroke:#a95300;stroke-width:0.36837956;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11482" + d="M 23.49993,17.500002 C 23.49993,20.812 25.963942,23.5 28.999965,23.5 C 32.035984,23.5 34.499999,20.812 34.499999,17.500002 C 34.499999,14.188 32.035984,11.5 28.999965,11.5 C 25.963942,11.5 23.49993,14.188 23.49993,17.500002 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:url(#linearGradient11507);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + transform="matrix(2.9241927,0,0,1.5452869,-0.3849832,4.0838437)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11204" + style="opacity:1;fill:url(#linearGradient11206);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.9494053,0,0,1.0301913,-2.922785,9.0558958)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11300" + style="opacity:1;fill:url(#linearGradient11310);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + transform="matrix(1.9494735,0,0,1.0301913,9.0765518,9.0558958)" + d="M 10.732871,9.6526775 A 1.0259361,1.9413869 0 1 1 8.6809988,9.6526775 A 1.0259361,1.9413869 0 1 1 10.732871,9.6526775 z" + sodipodi:ry="1.9413869" + sodipodi:rx="1.0259361" + sodipodi:cy="9.6526775" + sodipodi:cx="9.7069349" + id="path11312" + style="opacity:1;fill:url(#linearGradient11314);fill-opacity:1;stroke:none;stroke-width:0.98640186;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + sodipodi:type="arc" /> + <path + id="path11341" + d="M 35.5,17.500003 C 35.5,21.364001 32.587988,24.500001 28.999966,24.500001 C 25.411946,24.500001 22.49993,21.364001 22.49993,17.500003 C 22.49993,13.636 25.411946,10.5 28.999966,10.5 C 32.587988,10.5 35.5,13.636 35.5,17.500003 z" + style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient11343);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient8722);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="path8714" + sodipodi:cx="44.7687" + sodipodi:cy="16.003418" + sodipodi:rx="9.0598059" + sodipodi:ry="5.3916893" + d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" + transform="matrix(1.0485875,0,0,1.2982945,-25.443899,12.222851)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:url(#radialGradient8738);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="path7934" + sodipodi:cx="44.7687" + sodipodi:cy="16.003418" + sodipodi:rx="9.0598059" + sodipodi:ry="5.3916893" + d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" + transform="matrix(0.93821,0,0,1.1128238,-20.50244,15.191015)" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient8736);stroke-width:0.80703287999999984;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="path8728" + sodipodi:cx="44.7687" + sodipodi:cy="16.003418" + sodipodi:rx="9.0598059" + sodipodi:ry="5.3916893" + d="M 53.828506,16.003418 A 9.0598059,5.3916893 0 1 1 35.708894,16.003418 A 9.0598059,5.3916893 0 1 1 53.828506,16.003418 z" + transform="matrix(1.1037765,0,0,1.3910297,-27.91464,10.738771)" /> + </g> +</svg>
--- a/pidgin/gtkblist.c Mon Sep 01 08:31:54 2008 +0000 +++ b/pidgin/gtkblist.c Mon Sep 01 13:31:43 2008 +0000 @@ -67,6 +67,7 @@ #include <gdk/gdk.h> #define HEADLINE_CLOSE_SIZE 12 +#define STEPS 50 typedef struct { @@ -167,11 +168,18 @@ PIDGIN_BLIST_NODE_HAS_PENDING_MESSAGE = 1 << 0, /* Whether there's pending message in a conversation */ } PidginBlistNodeFlags; +typedef enum { + RECENT_STATUS_NONE = 0, + RECENT_STATUS_SIGN_ON, + RECENT_STATUS_SIGN_OFF +} RecentStatus; + typedef struct _pidgin_blist_node { GtkTreeRowReference *row; gboolean contact_expanded; - gboolean recent_signonoff; + RecentStatus recent_signonoff; gint recent_signonoff_timer; + gint recent_signonoff_steps; struct { PurpleConversation *conv; time_t last_message; /* timestamp for last displayed message */ @@ -3738,11 +3746,11 @@ p = purple_buddy_get_presence(buddy); trans = purple_presence_is_idle(p); - if (PURPLE_BUDDY_IS_ONLINE(buddy) && gtkbuddynode && gtkbuddynode->recent_signonoff) + /*if (PURPLE_BUDDY_IS_ONLINE(buddy) && gtkbuddynode && gtkbuddynode->recent_signonoff) icon = PIDGIN_STOCK_STATUS_LOGIN; else if (gtkbuddynode && gtkbuddynode->recent_signonoff) icon = PIDGIN_STOCK_STATUS_LOGOUT; - else if (purple_presence_is_status_primitive_active(p, PURPLE_STATUS_UNAVAILABLE)) + else */if (purple_presence_is_status_primitive_active(p, PURPLE_STATUS_UNAVAILABLE)) if (trans) icon = PIDGIN_STOCK_STATUS_BUSY_I; else @@ -6038,9 +6046,11 @@ GdkPixbuf *status, *avatar, *emblem, *prpl_icon; char *mark; char *idle = NULL; + struct _pidgin_blist_node *gtknode = ((PurpleBlistNode*)buddy)->ui_data; gboolean expanded = ((struct _pidgin_blist_node *)(node->parent->ui_data))->contact_expanded; gboolean selected = (gtkblist->selected_node == node); gboolean biglist = purple_prefs_get_bool(PIDGIN_PREFS_ROOT "/blist/show_buddy_icons"); + int size; presence = purple_buddy_get_presence(buddy); if (editing_blist) @@ -6049,6 +6059,14 @@ status = pidgin_blist_get_status_icon((PurpleBlistNode*)buddy, biglist ? PIDGIN_STATUS_ICON_LARGE : PIDGIN_STATUS_ICON_SMALL); + size = biglist ? 16 : 11; + if (gtknode->recent_signonoff == RECENT_STATUS_SIGN_ON) { + size = size / 2 + (size / 2 + (STEPS - gtknode->recent_signonoff_steps)) % (size / 2); + } else if (gtknode->recent_signonoff == RECENT_STATUS_SIGN_OFF) { + size = size - (STEPS - gtknode->recent_signonoff_steps) % (size / 2); + } + status = gdk_pixbuf_scale_simple(status, size, size, GDK_INTERP_BILINEAR); + /* Speed it up if we don't want buddy icons. */ if(biglist) avatar = pidgin_blist_get_buddy_icon((PurpleBlistNode *)buddy, TRUE, TRUE); @@ -6180,7 +6198,7 @@ BUDDY_ICON_COLUMN, NULL, CONTACT_EXPANDER_COLUMN, TRUE, CONTACT_EXPANDER_VISIBLE_COLUMN, TRUE, - GROUP_EXPANDER_VISIBLE_COLUMN, FALSE, + GROUP_EXPANDER_VISIBLE_COLUMN, FALSE, -1); g_free(mark); if(status) @@ -7132,13 +7150,17 @@ static gboolean buddy_signonoff_timeout_cb(PurpleBuddy *buddy) { struct _pidgin_blist_node *gtknode = ((PurpleBlistNode*)buddy)->ui_data; - - gtknode->recent_signonoff = FALSE; - gtknode->recent_signonoff_timer = 0; + gboolean cont = TRUE; + + if (--gtknode->recent_signonoff_steps == 0) { + gtknode->recent_signonoff = RECENT_STATUS_NONE; + gtknode->recent_signonoff_timer = 0; + cont = FALSE; + } pidgin_blist_update(NULL, (PurpleBlistNode*)buddy); - return FALSE; + return cont; } static void buddy_signonoff_cb(PurpleBuddy *buddy) @@ -7151,11 +7173,12 @@ gtknode = ((PurpleBlistNode*)buddy)->ui_data; - gtknode->recent_signonoff = TRUE; + gtknode->recent_signonoff = PURPLE_BUDDY_IS_ONLINE(buddy) ? RECENT_STATUS_SIGN_ON : RECENT_STATUS_SIGN_OFF; if(gtknode->recent_signonoff_timer > 0) purple_timeout_remove(gtknode->recent_signonoff_timer); - gtknode->recent_signonoff_timer = purple_timeout_add(10000, + gtknode->recent_signonoff_steps = STEPS; + gtknode->recent_signonoff_timer = purple_timeout_add(100, (GSourceFunc)buddy_signonoff_timeout_cb, buddy); } @@ -7632,7 +7655,10 @@ gtk_widget_destroy(menuitem); } - for (accounts = purple_accounts_get_all(); accounts; accounts = accounts->next) { + if (!(accounts = purple_accounts_get_all())) + return; + + for (; accounts; accounts = accounts->next) { char *buf = NULL; GtkWidget *image = NULL; PurpleAccount *account = NULL;
--- a/pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg Mon Sep 01 08:31:54 2008 +0000 +++ b/pidgin/pixmaps/icons/hicolor/48x48/apps/scalable/pidgin.svg Mon Sep 01 13:31:43 2008 +0000 @@ -23,12 +23,55 @@ <defs id="defs4347"> <linearGradient + inkscape:collect="always" + id="linearGradient9905"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop9907" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop9909" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9893"> + <stop + style="stop-color:#ff2de9;stop-opacity:1;" + offset="0" + id="stop9895" /> + <stop + style="stop-color:#ffffff;stop-opacity:0.498" + offset="1" + id="stop9897" /> + </linearGradient> + <linearGradient + id="linearGradient9689" + inkscape:collect="always"> + <stop + id="stop9691" + offset="0" + style="stop-color:#ffb547;stop-opacity:1" /> + <stop + id="stop9693" + offset="1" + style="stop-color:#e56600;stop-opacity:1" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="48 : 24 : 1" + inkscape:persp3d-origin="24 : 16 : 1" + id="perspective100" /> + <linearGradient id="linearGradient8744" inkscape:collect="always"> <stop id="stop8746" offset="0" - style="stop-color:#7a1d90;stop-opacity:1" /> + style="stop-color:#162c5e;stop-opacity:1" /> <stop id="stop8748" offset="1" @@ -38,7 +81,7 @@ inkscape:collect="always" id="linearGradient8732"> <stop - style="stop-color:#6b3678;stop-opacity:1;" + style="stop-color:#262f65;stop-opacity:1" offset="0" id="stop8734" /> <stop @@ -50,11 +93,11 @@ inkscape:collect="always" id="linearGradient8904"> <stop - style="stop-color:#729fcf;stop-opacity:1;" + style="stop-color:#649fdd;stop-opacity:1" offset="0" id="stop8906" /> <stop - style="stop-color:#25486d;stop-opacity:1" + style="stop-color:#184779;stop-opacity:1" offset="1" id="stop8908" /> </linearGradient> @@ -66,7 +109,7 @@ offset="0" id="stop8886" /> <stop - style="stop-color:#6b3e75;stop-opacity:1" + style="stop-color:#3c2375;stop-opacity:1" offset="1" id="stop8888" /> </linearGradient> @@ -78,24 +121,12 @@ offset="0" id="stop8878" /> <stop - style="stop-color:#744380;stop-opacity:1" + style="stop-color:#472d7e;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;" @@ -107,18 +138,6 @@ 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 @@ -170,7 +189,7 @@ inkscape:collect="always" id="linearGradient2826"> <stop - style="stop-color:#3b1941;stop-opacity:1;" + style="stop-color:#552b72;stop-opacity:1" offset="0" id="stop2828" /> <stop @@ -186,7 +205,7 @@ offset="0" id="stop2818" /> <stop - style="stop-color:#eeeeec;stop-opacity:0;" + style="stop-color:#b077ee;stop-opacity:1" offset="1" id="stop2820" /> </linearGradient> @@ -198,7 +217,7 @@ offset="0" id="stop6539" /> <stop - style="stop-color:#d3e1f1;stop-opacity:1" + style="stop-color:#cce1f9;stop-opacity:1" offset="1" id="stop6541" /> </linearGradient> @@ -206,7 +225,7 @@ inkscape:collect="always" id="linearGradient6506"> <stop - style="stop-color:#ffffff;stop-opacity:0.95477384" + style="stop-color:#ffffff;stop-opacity:1" offset="0" id="stop6508" /> <stop @@ -214,26 +233,16 @@ 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" + cx="14.914475" + cy="26.467632" + fx="14.914475" + fy="26.467632" r="16.390338" - gradientTransform="matrix(1.3364897,0,0,1.3894845,-0.759152,-10.711989)" + gradientTransform="matrix(0.6426095,-5.3927465e-3,6.3214714e-3,0.753278,9.3247223,4.0470884)" gradientUnits="userSpaceOnUse" /> <linearGradient inkscape:collect="always" @@ -242,7 +251,7 @@ x1="13.191773" y1="41.606163" x2="13.191773" - y2="49.067719" + y2="48.688236" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> <linearGradient @@ -257,7 +266,7 @@ gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" /> <linearGradient inkscape:collect="always" - xlink:href="#linearGradient8686" + xlink:href="#linearGradient9689" id="linearGradient8692" x1="18.5" y1="29.911009" @@ -305,24 +314,6 @@ 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" @@ -333,31 +324,21 @@ 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" + y1="26.726713" + x2="9.7964153" + y2="19.333946" gradientUnits="userSpaceOnUse" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient8884" id="linearGradient8890" - x1="23.881994" - y1="24.343237" + x1="24.973602" + y1="24.961956" x2="24.973602" - y2="19.216713" + y2="18.863159" gradientUnits="userSpaceOnUse" /> <linearGradient inkscape:collect="always" @@ -396,6 +377,323 @@ y1="4.8871226" x2="30.5" y2="22.781603" /> + <inkscape:perspective + id="perspective7946" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 526.18109 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8860" + id="radialGradient8780" + cx="12.809438" + cy="7.5702162" + fx="12.809438" + fy="7.5702162" + r="5.140625" + gradientTransform="matrix(1,0,0,0.4138305,0,5.4390103)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.4138305,0,5.4390103)" + r="5.140625" + fy="7.5702162" + fx="12.809438" + cy="7.5702162" + cx="12.809438" + id="radialGradient9297" + xlink:href="#linearGradient8860" + inkscape:collect="always" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective9295" /> + <linearGradient + y2="22.781603" + x2="30.5" + y1="4.8871226" + x1="30.5" + gradientUnits="userSpaceOnUse" + id="linearGradient9293" + xlink:href="#linearGradient6537" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(-1,0,0,1,37.022732,0)" + y2="43.352409" + x2="4.0852318" + y1="40.416641" + x1="4.0852318" + gradientUnits="userSpaceOnUse" + id="linearGradient9291" + xlink:href="#linearGradient8732" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="44.321774" + x2="4.0852318" + y1="39.097038" + x1="4.0852318" + id="linearGradient9289" + xlink:href="#linearGradient8744" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="33.678783" + x2="41.875" + y1="1.8037834" + x1="26.125" + id="linearGradient9287" + xlink:href="#linearGradient8904" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="18.863159" + x2="24.973602" + y1="24.961956" + x1="24.973602" + id="linearGradient9285" + xlink:href="#linearGradient8884" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="19.333946" + x2="9.7964153" + y1="26.726713" + x1="10.46875" + id="linearGradient9283" + xlink:href="#linearGradient8876" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(1.50247,0,0,1,-6.5946403,-2.139701)" + gradientUnits="userSpaceOnUse" + y2="12.891665" + x2="16.545418" + y1="10.027351" + x1="13.061977" + id="linearGradient9281" + xlink:href="#linearGradient8860" + inkscape:collect="always" /> + <linearGradient + y2="23.675837" + x2="9.6415968" + y1="24.936121" + x1="10.498732" + gradientUnits="userSpaceOnUse" + id="linearGradient8858" + xlink:href="#linearGradient8848" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="23.675837" + x2="9.7512932" + y1="25.21174" + x1="10.48653" + id="linearGradient8854" + xlink:href="#linearGradient8848" + inkscape:collect="always" /> + <linearGradient + y2="30.188351" + x2="18.143806" + y1="29.494703" + x1="17.969458" + gradientUnits="userSpaceOnUse" + id="linearGradient9277" + xlink:href="#linearGradient8808" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="30.431053" + x2="18.031723" + y1="29.338558" + x1="18.339697" + id="linearGradient9275" + xlink:href="#linearGradient8820" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(1.0769231,0,0,1.1428571,-0.905101,-4.6800586)" + gradientUnits="userSpaceOnUse" + y2="29.853554" + x2="19.985121" + y1="29.911009" + x1="18.5" + id="linearGradient9265" + xlink:href="#linearGradient8686" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" + gradientUnits="userSpaceOnUse" + y2="47.757988" + x2="11.373499" + y1="43.444576" + x1="11.373499" + id="linearGradient9263" + xlink:href="#linearGradient2834" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(1,0,0,0.988192,1.4473537,-2.486208)" + gradientUnits="userSpaceOnUse" + y2="49.067719" + x2="13.191773" + y1="41.606163" + x1="13.191773" + id="linearGradient9261" + xlink:href="#linearGradient2826" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.6426095,-5.3927465e-3,6.3214714e-3,0.753278,9.3247223,4.0470884)" + r="16.390338" + fy="26.467632" + fx="14.914475" + cy="26.467632" + cx="14.914475" + id="radialGradient9259" + xlink:href="#linearGradient2816" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)" + gradientUnits="userSpaceOnUse" + y2="47.022106" + x2="15.645709" + y1="40.668503" + x1="15.645709" + id="linearGradient9257" + xlink:href="#linearGradient6506" + inkscape:collect="always" /> + <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> + <inkscape:perspective + id="perspective9168" + inkscape:persp3d-origin="24 : 16 : 1" + inkscape:vp_z="48 : 24 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 24 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient8860" + id="radialGradient9363" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.4138305,0,5.4390103)" + cx="12.809438" + cy="7.5702162" + fx="12.809438" + fy="7.5702162" + r="5.140625" /> + <linearGradient + gradientTransform="matrix(0.6875001,0,0,0.6767003,-0.4687499,-0.5159997)" + y2="37.801281" + x2="42.829762" + y1="6.8962817" + x1="29.466667" + gradientUnits="userSpaceOnUse" + id="linearGradient8280" + xlink:href="#linearGradient8904" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8820" + id="linearGradient9520" + x1="18.097515" + y1="29.72571" + x2="18.031723" + y2="30.431053" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient8808" + id="linearGradient9518" + gradientUnits="userSpaceOnUse" + x1="18.097515" + y1="29.72571" + x2="18.143806" + y2="30.188351" /> + <inkscape:perspective + id="perspective9485" + inkscape:persp3d-origin="16 : 10.666667 : 1" + inkscape:vp_z="32 : 16 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 16 : 1" + sodipodi:type="inkscape:persp3d" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6506" + id="linearGradient9651" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.988192,1.5624997,-2.39645)" + x1="24.027578" + y1="2.4785707" + x2="16.983839" + y2="70.046394" /> + <filter + inkscape:collect="always" + id="filter9685" + x="-0.29886015" + width="1.5977203" + y="-0.49649348" + height="1.992987"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.1336762" + id="feGaussianBlur9687" /> + </filter> + <filter + inkscape:collect="always" + id="filter9811" + x="-0.81284236" + width="2.6256847" + y="-0.52522121" + height="2.0504424"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.2573014" + id="feGaussianBlur9813" /> + </filter> + <filter + inkscape:collect="always" + id="filter9889" + x="-0.24442129" + width="1.4888426" + y="-0.20170113" + height="1.4034023"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.4272566" + id="feGaussianBlur9891" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9893" + id="linearGradient9899" + x1="17.854447" + y1="23.295456" + x2="21.566757" + y2="23.295456" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9905" + id="linearGradient9911" + x1="5.90625" + y1="23" + x2="11.291513" + y2="20.405081" + gradientUnits="userSpaceOnUse" /> </defs> <sodipodi:namedview id="base" @@ -404,16 +702,16 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="2.828427" - inkscape:cx="63.722923" - inkscape:cy="33.120105" + inkscape:zoom="5.6568543" + inkscape:cx="73.497233" + inkscape:cy="20.402636" inkscape:current-layer="layer1" - showgrid="true" + showgrid="false" inkscape:grid-bbox="true" inkscape:document-units="px" - inkscape:window-width="1434" - inkscape:window-height="840" - inkscape:window-x="-2" + inkscape:window-width="1440" + inkscape:window-height="848" + inkscape:window-x="0" inkscape:window-y="0" showguides="true" inkscape:guide-bbox="true" @@ -463,25 +761,39 @@ 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" /> + style="fill:url(#radialGradient8780);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" + d="M 12.75 7.15625 C 12.115339 7.1849256 11.504585 7.3489361 10.96875 7.6875 C 10.96875 7.6875 14.502372 8.292676 15.15625 10.1875 C 13.96441 9.115271 10.258623 8.3895059 8.90625 9.9375 C 8.90625 9.9375 12.96534 9.7931625 11.75 11.40625 L 15.53125 10.875 C 15.53125 10.837265 15.507609 10.787801 15.5 10.75 L 19.1875 10.75 C 18.766317 9.4043172 15.500198 7.0319893 12.75 7.15625 z " + id="rect5189" /> <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" + style="opacity:0.55000000000000004;fill:url(#radialGradient2824);fill-opacity:1;stroke:url(#linearGradient9651);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 5.5006447,22.842563 5.5012886,22.851054 5.5019315,22.85954 C 6.063858,30.276194 5.8154539,32.826976 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" /> + sodipodi:nodetypes="csscccssssssscssc" /> + <path + sodipodi:type="arc" + style="opacity:1;fill:#b87bf7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;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;filter:url(#filter9685);enable-background:accumulate" + id="path8782" + sodipodi:cx="18.075417" + sodipodi:cy="17.064077" + sodipodi:rx="4.552" + sodipodi:ry="2.7400389" + d="M 22.627417,17.064077 A 4.552,2.7400389 0 1 1 13.523417,17.064077 A 4.552,2.7400389 0 1 1 22.627417,17.064077 z" + transform="matrix(1.1235721,0,0,1.2773541,-2.423533,-4.2968681)" /> + <path + sodipodi:type="arc" + style="opacity:0.25;fill:url(#linearGradient9899);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;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;filter:url(#filter9889);enable-background:accumulate" + id="path9815" + sodipodi:cx="19.710602" + sodipodi:cy="23.295456" + sodipodi:rx="1.8561553" + sodipodi:ry="2.8726213" + d="M 21.566757,23.295456 A 1.8561553,2.8726213 0 1 1 17.854447,23.295456 A 1.8561553,2.8726213 0 1 1 21.566757,23.295456 z" + transform="matrix(8.4928046e-8,4.9721706,2.9846154,0,-50.922233,-71.70382)" /> <path sodipodi:type="inkscape:offset" inkscape:radius="1.0174263" @@ -489,7 +801,7 @@ 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)" /> + transform="translate(1.09375,-0.9687531)" /> <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" @@ -507,7 +819,7 @@ 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" + style="opacity:1;fill:#000000;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" @@ -522,10 +834,10 @@ 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)" /> + transform="translate(1.0348213,-0.9657741)" /> <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" + d="M 28.088692,18.950685 C 26.78423,17.518158 24.662074,17.899807 23.829158,18.814492 C 22.687755,20.067952 22.820093,22.247881 24.124557,23.680409 C 25.258155,24.925297 27.122721,25.578218 28.264124,24.32476 C 29.405528,23.0713 29.119266,20.082432 28.088692,18.950685 z" id="path5169" sodipodi:nodetypes="csssc" /> <path @@ -545,15 +857,25 @@ id="path8696" sodipodi:nodetypes="cssscccsccccsssc" /> <path + sodipodi:type="arc" + style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;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;filter:url(#filter9811);enable-background:accumulate" + id="path9701" + sodipodi:cx="19.710602" + sodipodi:cy="23.295456" + sodipodi:rx="1.8561553" + sodipodi:ry="2.8726213" + d="M 21.566757,23.295456 A 1.8561553,2.8726213 0 1 1 17.854447,23.295456 A 1.8561553,2.8726213 0 1 1 21.566757,23.295456 z" + transform="matrix(1.6864563,0,0,1.5538462,-14.149186,-11.929827)" /> + <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)" /> + transform="matrix(1.0403226,0,0,1.1666667,0.1470082,-5.4657729)" /> <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + style="opacity:1;fill:#f8eaba;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="rect5215" width="7" height="1.8602936" @@ -568,27 +890,27 @@ 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" + style="opacity:1;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)" /> + transform="matrix(-1.0945752,0.9356227,0.6067766,1.5209514,23.272227,-33.155044)" /> <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" + style="opacity:1;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)" /> + transform="matrix(1.0945741,0.9356227,-0.606776,1.5209514,16.727776,-33.132569)" /> <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" + style="opacity:1;fill:#000000;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" @@ -606,5 +928,38 @@ 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" /> + <image + y="-12" + x="50" + id="image7948" + height="69.54084" + width="69.54084" + sodipodi:absref="/home/hbons/Bureaublad/pidgin-oxygen.png" + xlink:href="/home/hbons/Bureaublad/pidgin-oxygen.png" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;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;opacity:0.55" + d="M 19.999895,26.990381 C 20.503282,27.702861 21.154686,31.031198 21.018582,33.998949 C 19.248555,31.850235 20.467226,29.772496 19.999895,26.990381 z" + id="rect9034" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:type="arc" + style="opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path9045" + 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.4028774,0,0,0.3862069,7.4028807,12.110344)" /> + <path + sodipodi:type="arc" + style="opacity:0.7;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path9047" + 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.3862069,21.40288,12.110344)" /> </g> </svg>