123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394 |
- <?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"
- height="272"
- width="632"
- version="1.1"
- id="svg2"
- inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="wcmd.svg">
- <metadata
- id="metadata251">
- <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>
- <sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="931"
- inkscape:window-height="789"
- id="namedview249"
- showgrid="false"
- inkscape:zoom="1"
- inkscape:cx="387.5"
- inkscape:cy="74.981207"
- inkscape:window-x="221"
- inkscape:window-y="105"
- inkscape:window-maximized="0"
- inkscape:current-layer="svg2" />
- <defs
- id="defs4">
- <linearGradient
- id="linearGradient5060">
- <stop
- id="stop5062"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop5064"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <filter
- id="filter3436"
- height="1.2801698"
- width="1.1580106"
- color-interpolation-filters="sRGB"
- y="-0.14008497"
- x="-0.079005308">
- <feGaussianBlur
- id="feGaussianBlur3438"
- stdDeviation="0.3190069" />
- </filter>
- <linearGradient
- id="linearGradient3346">
- <stop
- id="stop3348"
- stop-color="#737373"
- offset="0" />
- <stop
- id="stop3350"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3228">
- <stop
- id="stop3230"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3232"
- stop-color="#cfcfcf"
- stop-opacity="0.67826086"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3198">
- <stop
- id="stop3200"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop3202"
- stop-color="#FFF"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3220">
- <stop
- id="stop3222"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3224"
- stop-color="#FFF"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3189">
- <stop
- id="stop3191"
- stop-color="#e40000"
- offset="0" />
- <stop
- id="stop3193"
- stop-color="#490000"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3171">
- <stop
- id="stop3173"
- stop-color="#fd0000"
- offset="0" />
- <stop
- id="stop3175"
- stop-color="#6a0000"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4402">
- <stop
- id="stop4404"
- stop-color="#e80000"
- offset="0" />
- <stop
- id="stop4406"
- stop-color="#490000"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3373">
- <stop
- id="stop3375"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop3377"
- stop-color="#373737"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <filter
- id="filter3391"
- height="1.336"
- width="1.1344"
- color-interpolation-filters="sRGB"
- y="-0.168"
- x="-0.067199998">
- <feGaussianBlur
- id="feGaussianBlur3393"
- stdDeviation="0.14" />
- </filter>
- <linearGradient
- id="linearGradient3409"
- y2="609.51001"
- gradientUnits="userSpaceOnUse"
- y1="366.64999"
- gradientTransform="matrix(0.06809735,0,0,0.041103,-0.29982463,21.126084)"
- x2="302.85999"
- x1="302.85999">
- <stop
- id="stop5050"
- stop-color="#000"
- stop-opacity="0"
- offset="0" />
- <stop
- id="stop5056"
- stop-color="#000"
- offset="0.5" />
- <stop
- id="stop5052"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3411"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient5060"
- cx="605.71002"
- cy="486.64999"
- r="117.14"
- gradientTransform="matrix(0.06809735,0,0,0.041103,-0.28642307,21.126084)" />
- <radialGradient
- id="radialGradient3413"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient5060"
- cx="605.71002"
- cy="486.64999"
- r="117.14"
- gradientTransform="matrix(-0.06809735,0,0,0.041103,48.91144,21.126084)" />
- <linearGradient
- id="linearGradient3415"
- y2="14.158"
- gradientUnits="userSpaceOnUse"
- y1="32.285999"
- gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
- x2="24.841999"
- x1="29.870001">
- <stop
- id="stop2208"
- stop-color="#777973"
- offset="0" />
- <stop
- id="stop2210"
- stop-color="#cbccca"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3417"
- y2="32.498001"
- gradientUnits="userSpaceOnUse"
- y1="9.5865002"
- gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
- x2="21.305"
- x1="8.6528997">
- <stop
- id="stop5178"
- stop-color="#a2a59c"
- offset="0" />
- <stop
- id="stop5180"
- stop-color="#535750"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3419"
- y2="34.226002"
- gradientUnits="userSpaceOnUse"
- y1="9.5830002"
- gradientTransform="matrix(0.950085,0,0,0.965659,1.243978,0.255342)"
- x2="22.441"
- x1="23.118999">
- <stop
- id="stop2200"
- stop-color="#748f48"
- offset="0" />
- <stop
- id="stop2202"
- stop-color="#1f2816"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3421"
- y2="30.343"
- gradientUnits="userSpaceOnUse"
- y1="9.1463003"
- gradientTransform="matrix(0.997583,0,0,0.989941,0.104141,0.07028871)"
- x2="26.177999"
- x1="11.048">
- <stop
- id="stop4256"
- stop-color="#616161"
- offset="0" />
- <stop
- id="stop4258"
- stop-color="#a0a0a0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3423"
- y2="49.730999"
- gradientUnits="userSpaceOnUse"
- y1="19.636999"
- gradientTransform="matrix(0.953506,0,0,0.947873,1.141528,1.205591)"
- x2="48.845001"
- x1="20.339001">
- <stop
- id="stop2240"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop2242"
- stop-color="#FFF"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3425"
- y2="26.729"
- gradientUnits="userSpaceOnUse"
- y1="1.6538"
- gradientTransform="matrix(1.236157,0,0,0.896051,-1.08182,2.830699)"
- x2="17.198999"
- x1="11.492">
- <stop
- id="stop2669"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop2671"
- stop-color="#fcfcff"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3427"
- gradientUnits="userSpaceOnUse"
- cx="37.495998"
- cy="39.509998"
- r="2.51"
- gradientTransform="matrix(1,0,0,0.73779,0,9.844321)">
- <stop
- id="stop6449"
- stop-color="#777973"
- offset="0" />
- <stop
- id="stop6451"
- stop-color="#777973"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient3429"
- y2="38"
- gradientUnits="userSpaceOnUse"
- y1="42.319"
- gradientTransform="matrix(1,0,0,0.744756,0,9.569132)"
- x2="36.452"
- x1="40.252998">
- <stop
- id="stop2216"
- stop-color="#a9aaa7"
- offset="0" />
- <stop
- id="stop2218"
- stop-color="#676964"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient3431"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient5060"
- cx="37.375"
- cy="33.188"
- r="14.625"
- gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)" />
- <radialGradient
- id="radialGradient3433"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3346"
- cx="27.5"
- cy="22.614"
- r="6.5"
- gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)" />
- <linearGradient
- id="linearGradient3435"
- y2="9.2770004"
- xlink:href="#linearGradient3228"
- gradientUnits="userSpaceOnUse"
- y1="14.243"
- gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
- x2="21.440001"
- x1="27.681" />
- <linearGradient
- id="linearGradient3437"
- y2="5.0353999"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- y1="12.038"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
- x2="17.799"
- x1="25.268999" />
- <linearGradient
- id="linearGradient3439"
- y2="27"
- xlink:href="#linearGradient3220"
- gradientUnits="userSpaceOnUse"
- y1="33"
- gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424369)"
- x2="19"
- x1="29" />
- <radialGradient
- id="radialGradient3441"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3189"
- cx="26.625"
- cy="26.577"
- r="12.5"
- gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)" />
- <radialGradient
- id="radialGradient3443"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3171"
- cx="25.017"
- cy="13.192"
- r="9.7512999"
- gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)" />
- <linearGradient
- id="linearGradient3445"
- y2="7.1352"
- xlink:href="#linearGradient4402"
- gradientUnits="userSpaceOnUse"
- y1="15.984"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
- x2="22.035999"
- x1="27.216999" />
- <linearGradient
- id="linearGradient3447"
- y2="19"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- y1="25.27"
- gradientTransform="matrix(1.0293043,0,0,1.0285483,14.331497,6.1942056)"
- x2="22"
- x1="30.375999" />
- <linearGradient
- id="linearGradient3449"
- y2="18.312"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- y1="18.312"
- gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633669)"
- x2="23"
- x1="17.605" />
- <radialGradient
- id="radialGradient3451"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3198"
- cx="18"
- cy="14.19"
- r="5.5054998"
- gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)" />
- <linearGradient
- id="linearGradient3453"
- y2="25.5"
- xlink:href="#linearGradient3373"
- gradientUnits="userSpaceOnUse"
- y1="27.5"
- gradientTransform="translate(-8.0000004,15.967633)"
- x2="20.5"
- x1="16" />
- <linearGradient
- id="linearGradient3455"
- y2="27"
- xlink:href="#linearGradient5060"
- gradientUnits="userSpaceOnUse"
- y1="27"
- gradientTransform="translate(-8.0000004,15.967633)"
- x2="21.5"
- x1="16" />
- <linearGradient
- id="linearGradient3465"
- y2="27"
- xlink:href="#linearGradient3220"
- gradientUnits="userSpaceOnUse"
- y1="33"
- gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424371)"
- x2="19"
- x1="29" />
- <linearGradient
- id="linearGradient3473"
- y2="18.312"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- y1="18.312"
- gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633671)"
- x2="23"
- x1="17.605" />
- <filter
- id="filter3391-4"
- height="1.336"
- width="1.1344"
- color-interpolation-filters="sRGB"
- y="-0.168"
- x="-0.067199998">
- <feGaussianBlur
- id="feGaussianBlur3393-3"
- stdDeviation="0.14" />
- </filter>
- <radialGradient
- id="radialGradient4589"
- gradientUnits="userSpaceOnUse"
- cy="14.19"
- cx="18"
- gradientTransform="matrix(0.7756645,0,0,0.1405889,190.08112,37.813815)"
- r="5.5054998">
- <stop
- id="stop3454-4"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop3456-3"
- stop-color="#FFF"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4592"
- y2="18.312"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="23"
- gradientTransform="matrix(0.7756645,0,0,0.7646744,184.54881,24.103289)"
- y1="18.312"
- x1="17.605" />
- <linearGradient
- id="linearGradient4595"
- y2="19"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="22"
- gradientTransform="matrix(0.7719782,0,0,0.7714112,183.99988,24.651418)"
- y1="25.27"
- x1="30.375999" />
- <radialGradient
- id="radialGradient4598"
- gradientUnits="userSpaceOnUse"
- cy="13.192"
- cx="25.017"
- gradientTransform="matrix(0.9613848,0,0,0.34890721,180.38941,35.303426)"
- r="9.7512999">
- <stop
- id="stop3173-8"
- stop-color="#fd0000"
- offset="0" />
- <stop
- id="stop3175-8"
- stop-color="#6a0000"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4600"
- y2="7.1352"
- gradientUnits="userSpaceOnUse"
- x2="22.035999"
- gradientTransform="matrix(0.9613848,0,0,0.7048595,180.38941,31.387951)"
- y1="15.984"
- x1="27.216999">
- <stop
- id="stop4404-7"
- stop-color="#e80000"
- offset="0" />
- <stop
- id="stop4406-7"
- stop-color="#490000"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient4603"
- gradientUnits="userSpaceOnUse"
- cy="26.577"
- cx="26.625"
- gradientTransform="matrix(0.73586,-0.2418113,0.0892014,0.2638127,182.57437,43.108436)"
- r="12.5">
- <stop
- id="stop3191-0"
- stop-color="#e40000"
- offset="0" />
- <stop
- id="stop3193-4"
- stop-color="#490000"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4606"
- y2="27"
- gradientUnits="userSpaceOnUse"
- x2="19"
- gradientTransform="matrix(0.7756645,0,0,0.7646745,183.88532,24.612857)"
- y1="33"
- x1="29">
- <stop
- id="stop3222-3"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3224-8"
- stop-color="#FFF"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient4614"
- gradientUnits="userSpaceOnUse"
- cy="22.614"
- cx="27.5"
- gradientTransform="matrix(1.1933298,-0.058821,0.07448995,1.468693,170.715,11.369139)"
- r="6.5">
- <stop
- id="stop3348-1"
- stop-color="#737373"
- offset="0" />
- <stop
- id="stop3350-8"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient4617"
- gradientUnits="userSpaceOnUse"
- cy="33.188"
- cx="37.375"
- gradientTransform="matrix(0.3155237,0,0,0.07812973,190.20095,38.504047)"
- r="14.625">
- <stop
- id="stop4335-5"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop4337-7"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient4646"
- gradientUnits="userSpaceOnUse"
- cy="39.509998"
- cx="37.495998"
- gradientTransform="matrix(0.497503,0,0,0.249336,182.83949,40.14873)"
- r="2.51">
- <stop
- id="stop6449-9"
- stop-color="#777973"
- offset="0" />
- <stop
- id="stop6451-6"
- stop-color="#777973"
- stop-opacity="0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4648"
- y2="38"
- gradientUnits="userSpaceOnUse"
- x2="36.452"
- gradientTransform="matrix(0.497503,0,0,0.25169,182.83949,40.05573)"
- y1="42.319"
- x1="40.252998">
- <stop
- id="stop2216-1"
- stop-color="#a9aaa7"
- offset="0" />
- <stop
- id="stop2218-7"
- stop-color="#676964"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4652"
- y2="26.729"
- gradientUnits="userSpaceOnUse"
- x2="17.198999"
- gradientTransform="matrix(0.789718,0,0,0.612946,175.47085,26.463931)"
- y1="1.6538"
- x1="11.492">
- <stop
- id="stop2669-1"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop2671-7"
- stop-color="#fcfcff"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4656"
- y2="49.730999"
- gradientUnits="userSpaceOnUse"
- x2="48.845001"
- gradientTransform="matrix(0.621662,0,0,0.614827,176.57343,25.36266)"
- y1="19.636999"
- x1="20.339001">
- <stop
- id="stop2240-7"
- stop-color="#FFF"
- offset="0" />
- <stop
- id="stop2242-6"
- stop-color="#FFF"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4668"
- y2="34.226002"
- gradientUnits="userSpaceOnUse"
- x2="22.441"
- gradientTransform="matrix(0.615842,0,0,0.632354,176.69951,24.764695)"
- y1="9.5830002"
- x1="23.118999">
- <stop
- id="stop2200-3"
- stop-color="#748f48"
- offset="0" />
- <stop
- id="stop2202-0"
- stop-color="#1f2816"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4670"
- y2="30.343"
- gradientUnits="userSpaceOnUse"
- x2="26.177999"
- gradientTransform="matrix(0.646631,0,0,0.648255,175.96067,24.643515)"
- y1="9.1463003"
- x1="11.048">
- <stop
- id="stop4256-4"
- stop-color="#616161"
- offset="0" />
- <stop
- id="stop4258-4"
- stop-color="#a0a0a0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4673"
- y2="14.158"
- gradientUnits="userSpaceOnUse"
- x2="24.841999"
- gradientTransform="matrix(0.638331,0,0,0.634908,176.17371,24.25443)"
- y1="32.285999"
- x1="29.870001">
- <stop
- id="stop2208-9"
- stop-color="#777973"
- offset="0" />
- <stop
- id="stop2210-8"
- stop-color="#cbccca"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4675"
- y2="32.498001"
- gradientUnits="userSpaceOnUse"
- x2="21.305"
- gradientTransform="matrix(0.638331,0,0,0.634908,176.17371,24.25443)"
- y1="9.5865002"
- x1="8.6528997">
- <stop
- id="stop5178-8"
- stop-color="#a2a59c"
- offset="0" />
- <stop
- id="stop5180-1"
- stop-color="#535750"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient4696"
- xlink:href="#linearGradient5060"
- gradientUnits="userSpaceOnUse"
- cy="486.64999"
- cx="605.71002"
- gradientTransform="matrix(-0.04539824,0,0,0.02740202,208.3993,38.084044)"
- r="117.14" />
- <radialGradient
- id="radialGradient4699"
- xlink:href="#linearGradient5060"
- gradientUnits="userSpaceOnUse"
- cy="486.64999"
- cx="605.71002"
- gradientTransform="matrix(0.04539824,0,0,0.02740202,175.60071,38.084044)"
- r="117.14" />
- <linearGradient
- id="linearGradient4702"
- y2="609.51001"
- gradientUnits="userSpaceOnUse"
- x2="302.85999"
- gradientTransform="matrix(0.04539824,0,0,0.02740202,175.59178,38.084044)"
- y1="366.64999"
- x1="302.85999">
- <stop
- id="stop5050-3"
- stop-color="#000"
- stop-opacity="0"
- offset="0" />
- <stop
- id="stop5056-8"
- stop-color="#000"
- offset="0.5" />
- <stop
- id="stop5052-5"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4708"
- y2="25.5"
- gradientUnits="userSpaceOnUse"
- x2="20.5"
- gradientTransform="translate(-8.0000004,15.967633)"
- y1="27.5"
- x1="16">
- <stop
- id="stop3375-3"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop3377-1"
- stop-color="#373737"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4710"
- y2="27"
- gradientUnits="userSpaceOnUse"
- x2="21.5"
- gradientTransform="translate(-8.0000004,15.967633)"
- y1="27"
- x1="16">
- <stop
- id="stop3444-9"
- stop-color="#000"
- offset="0" />
- <stop
- id="stop3446-6"
- stop-color="#000"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4714"
- y2="5.0353999"
- xlink:href="#linearGradient3198"
- gradientUnits="userSpaceOnUse"
- x2="17.799"
- gradientTransform="matrix(0.9670244,0,0,0.5702668,180.4877,45.721459)"
- y1="12.038"
- x1="25.268999" />
- <linearGradient
- id="linearGradient4717"
- y2="9.2770004"
- gradientUnits="userSpaceOnUse"
- x2="21.440001"
- gradientTransform="matrix(1.012819,0,0,0.6841522,179.44027,44.46872)"
- y1="19.122"
- x1="29.455">
- <stop
- id="stop3230-9"
- stop-color="#373737"
- offset="0" />
- <stop
- id="stop3232-7"
- stop-color="#373737"
- stop-opacity="0"
- offset="1" />
- </linearGradient>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3409"
- id="linearGradient3343"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.06809735,0,0,0.041103,-0.29982463,21.126084)"
- x1="302.85999"
- y1="366.64999"
- x2="302.85999"
- y2="609.51001" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="radialGradient3345"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.06809735,0,0,0.041103,-0.28642307,21.126084)"
- cx="605.71002"
- cy="486.64999"
- r="117.14" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="radialGradient3347"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-0.06809735,0,0,0.041103,48.91144,21.126084)"
- cx="605.71002"
- cy="486.64999"
- r="117.14" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3415"
- id="linearGradient3349"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
- x1="29.870001"
- y1="32.285999"
- x2="24.841999"
- y2="14.158" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3417"
- id="linearGradient3351"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
- x1="8.6528997"
- y1="9.5865002"
- x2="21.305"
- y2="32.498001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3419"
- id="linearGradient3353"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.950085,0,0,0.965659,1.243978,0.255342)"
- x1="23.118999"
- y1="9.5830002"
- x2="22.441"
- y2="34.226002" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3421"
- id="linearGradient3355"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.997583,0,0,0.989941,0.104141,0.07028871)"
- x1="11.048"
- y1="9.1463003"
- x2="26.177999"
- y2="30.343" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3423"
- id="linearGradient3357"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.953506,0,0,0.947873,1.141528,1.205591)"
- x1="20.339001"
- y1="19.636999"
- x2="48.845001"
- y2="49.730999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3425"
- id="linearGradient3359"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.236157,0,0,0.896051,-1.08182,2.830699)"
- x1="11.492"
- y1="1.6538"
- x2="17.198999"
- y2="26.729" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient3427"
- id="radialGradient3361"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.73779,0,9.844321)"
- cx="37.495998"
- cy="39.509998"
- r="2.51" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3429"
- id="linearGradient3363"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.744756,0,9.569132)"
- x1="40.252998"
- y1="42.319"
- x2="36.452"
- y2="38" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="radialGradient3365"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)"
- cx="37.375"
- cy="33.188"
- r="14.625" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3346"
- id="radialGradient3367"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)"
- cx="27.5"
- cy="22.614"
- r="6.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3228"
- id="linearGradient3369"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
- x1="27.681"
- y1="14.243"
- x2="21.440001"
- y2="9.2770004" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3371"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
- x1="25.268999"
- y1="12.038"
- x2="17.799"
- y2="5.0353999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3220"
- id="linearGradient3374"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424369)"
- x1="29"
- y1="33"
- x2="19"
- y2="27" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3189"
- id="radialGradient3376"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)"
- cx="26.625"
- cy="26.577"
- r="12.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3171"
- id="radialGradient3378"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)"
- cx="25.017"
- cy="13.192"
- r="9.7512999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4402"
- id="linearGradient3380"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
- x1="27.216999"
- y1="15.984"
- x2="22.035999"
- y2="7.1352" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3382"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0293043,0,0,1.0285483,14.331497,6.1942056)"
- x1="30.375999"
- y1="25.27"
- x2="22"
- y2="19" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3384"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633669)"
- x1="17.605"
- y1="18.312"
- x2="23"
- y2="18.312" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="radialGradient3386"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)"
- cx="18"
- cy="14.19"
- r="5.5054998" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3373"
- id="linearGradient3388"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27.5"
- x2="20.5"
- y2="25.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="linearGradient3390"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27"
- x2="21.5"
- y2="27" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3346"
- id="radialGradient3392"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)"
- cx="27.5"
- cy="22.614"
- r="6.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="radialGradient3394"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)"
- cx="37.375"
- cy="33.188"
- r="14.625" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3228"
- id="linearGradient3396"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
- x1="27.681"
- y1="14.243"
- x2="21.440001"
- y2="9.2770004" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3398"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
- x1="25.268999"
- y1="12.038"
- x2="17.799"
- y2="5.0353999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3220"
- id="linearGradient3400"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,1.0195661,14.178737,6.1424371)"
- x1="29"
- y1="33"
- x2="19"
- y2="27" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3189"
- id="radialGradient3402"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)"
- cx="26.625"
- cy="26.577"
- r="12.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3171"
- id="radialGradient3404"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)"
- cx="25.017"
- cy="13.192"
- r="9.7512999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4402"
- id="linearGradient3406"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
- x1="27.216999"
- y1="15.984"
- x2="22.035999"
- y2="7.1352" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3408"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,1.019566,15.063398,5.4633671)"
- x1="17.605"
- y1="18.312"
- x2="23"
- y2="18.312" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="radialGradient3410"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)"
- cx="18"
- cy="14.19"
- r="5.5054998" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3373"
- id="linearGradient3412"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27.5"
- x2="20.5"
- y2="25.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="linearGradient3414"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27"
- x2="21.5"
- y2="27" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3409"
- id="linearGradient3416"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.06809735,0,0,0.041103,-0.29982463,21.126084)"
- x1="302.85999"
- y1="366.64999"
- x2="302.85999"
- y2="609.51001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3415"
- id="linearGradient3418"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
- x1="29.870001"
- y1="32.285999"
- x2="24.841999"
- y2="14.158" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3417"
- id="linearGradient3420"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.957412,0,0,0.952331,1.022766,0.133307)"
- x1="8.6528997"
- y1="9.5865002"
- x2="21.305"
- y2="32.498001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3419"
- id="linearGradient3422"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.950085,0,0,0.965659,1.243978,0.255342)"
- x1="23.118999"
- y1="9.5830002"
- x2="22.441"
- y2="34.226002" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3421"
- id="linearGradient3424"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.997583,0,0,0.989941,0.104141,0.07028871)"
- x1="11.048"
- y1="9.1463003"
- x2="26.177999"
- y2="30.343" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3423"
- id="linearGradient3426"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.953506,0,0,0.947873,1.141528,1.205591)"
- x1="20.339001"
- y1="19.636999"
- x2="48.845001"
- y2="49.730999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3425"
- id="linearGradient3428"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.236157,0,0,0.896051,-1.08182,2.830699)"
- x1="11.492"
- y1="1.6538"
- x2="17.198999"
- y2="26.729" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient3427"
- id="radialGradient3430"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.73779,0,9.844321)"
- cx="37.495998"
- cy="39.509998"
- r="2.51" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3429"
- id="linearGradient3432"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,0.744756,0,9.569132)"
- x1="40.252998"
- y1="42.319"
- x2="36.452"
- y2="38" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="radialGradient3434"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.4206982,0,0,0.10417298,22.599585,24.664379)"
- cx="37.375"
- cy="33.188"
- r="14.625" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3346"
- id="radialGradient3436"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,-3.381692,-11.515501)"
- cx="27.5"
- cy="22.614"
- r="6.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3228"
- id="linearGradient3438"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2744752,0,0,1.0288787,9.68707,31.233392)"
- x1="27.681"
- y1="14.243"
- x2="21.440001"
- y2="9.2770004" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="linearGradient3440"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.517531,32.213117)"
- x1="25.268999"
- y1="12.038"
- x2="17.799"
- y2="5.0353999" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3189"
- id="radialGradient3442"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,12.430811,30.803565)"
- cx="26.625"
- cy="26.577"
- r="12.5" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3171"
- id="radialGradient3444"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.46520969,9.51753,20.396884)"
- cx="25.017"
- cy="13.192"
- r="9.7512999" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4402"
- id="linearGradient3446"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.2818465,0,0,0.9398128,9.51753,15.17625)"
- x1="27.216999"
- y1="15.984"
- x2="22.035999"
- y2="7.1352" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3198"
- id="radialGradient3448"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0342194,0,0,0.1874519,22.439811,23.744069)"
- cx="18"
- cy="14.19"
- r="5.5054998" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3373"
- id="linearGradient3450"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27.5"
- x2="20.5"
- y2="25.5" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5060"
- id="linearGradient3452"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-8.0000004,15.967633)"
- x1="16"
- y1="27"
- x2="21.5"
- y2="27" />
- </defs>
- <image
- id="icon:16-4"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAAXNSR0IArs4c6QAAADBQTFRFfwAA AAAAAH8Af38AAAB/fwB/AH9/wMDAf39//wAAAP8A//8AAAD//wD/AP//////LRS/BQAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH2QwFDhwU/fhe XgAAADNJREFUCNdj4OgAgwaG9nIwqGBoFwQD/Az5RihD4gdMqr8RTQSuRlBQ/v9H7ObALIU5AwA7 0yVhGrIDjgAAAABJRU5ErkJggg== "
- height="16"
- width="16"
- y="248"
- x="344" />
- <image
- id="icon:16-8"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAAXNSR0IArs4c6QAAAelQTFRFAAAh AAAAAQIBAgMCBgYGBgcGBwcGBwgGCAgHCQkICgsJCwwKDQ4MDxANExQSGB8RGCARGSARIyQjJzAZ JjEaJzEZJzEaJzIaJzIbKDIaKDMbKTMdKDQbKTQcLzEtKTUcNDYzNkMjNkQjNkUjN0UjN0UlO0om O0onPEsnPEwnRlYrRlcsTFY9TFo6VFhRVVlSTl42TmEyT2IyT2MyWl5XU2U3X2JbYmVeY2ZgYWpV ZGhgZWlhYW5NZHFRZXFSam5manVZb3NraXhQZXxBdHdydHhwdnlyd3pzc31keHx0eX11c4JffX95 fYB5doVgfoB6foF6eoRsdYlUeYdkgYN9gYN+e4hlfIlngoV+g4Z+hIaBfotphoeCf4xrgI1th4mD h4qCgo5wiIuDhJBxioyHi4yHhJB0jI+HjY+KjZCIj5GMhZhpkZKNkpWNk5WQjJ1ylpiTjp90mJmV mJmWl5qSkKB2mpuXmZyUkqJ5lKJ9laR/naCYmaOKl6aBoKGdoqWco6ado6aeorOHpLWKpbaNsLGu qLiOqbmQsrSxqrqStLaxrLyUrr2Xr76Yt7m0sb+bwMG+zM3Lzc7MztHIzdLGz9PL09bN1tfV19fV 19jW19jX29vZ2d7U3d3c3d7c3d7d4OPb7O3q8vPx6MWZegAAAAF0Uk5TAEDm2GYAAAABYktHRACI BR1IAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH2QwFDhg3O/PqKAAAAPJJREFUGNNjYKgu z81MigzwcnW0tzY3YWBo6Joxf95cMJg9scNFn6FhugIHFLCxyRXrM9TP4u3v7enubG9raW5iLNMD CvCkJSfGxUaHhwX7MRaABLhrqyorSgvzs4OcGfNAAlwOcwLtbG0MtLS0GXNAApzeNQumOJkaGhkZ M2aABNh1LKdOU1VUUlJWYUwBCbDpTvZQV1NT09DQZIwHC0iLCYsuWrRooaQkYxRIgFVEXEJCSkpG VlaeMQQkwMIPAQKCgoz+egwNM4WYmWCAz02fobFv0oTWuqK8rNSYUB93C30GhuqS3PSECF9PoPet zEwYANj9SWxq1mEXAAAAAElFTkSuQmCC "
- height="16"
- width="16"
- y="248"
- x="320" />
- <image
- id="icon:16-32"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1QoSFSUbRvzYGQAAAilJREFUOMt9k89LVFEUxz93fDMq ZEGG0cLAEgpXrly1qEXLNu2C0mqRuggXQWCtgja1DkqwRWKC/gG1LSUIwqI0UCOdsRgrHX2Ome/d X6fFG2dGLQ8c7r3ccz/3ew7nqKHngweNsf3W2u44jhuMMVTcYmz1OXFn3XoUx4+11g8CpdT9o03H ek62tKYztXWAgPBP896xXiySX8o3jk+8vp1bzKYD4PqJltb0la5Opj9Ns5+JJOTTbafo7enN5Baz PYGI1CmV4svcHKMvH+HFISJ4cXjvEUnceUHE4b2j80I/qZRCRA4FFXnC1MdZwOG9lEDJ422QF8F5 C4B1yVoF8DQ2NSTB3uOxeO/wJUBstgjXlwk3CwA453YCRISpDzP09d7l2cgTlgt5BME5SyH8SRRt JoFKJR/uAXihviHDqzcvuNHVR2FtmcGRh6wVfkGNpf5AbQlAKYVdAC+e2el5Vn/8oaP9HJmglveT nxHvy49Qle2eFBAgcNzsvsXw2ABvJycI0gqoKSlXOxS43UUE+Dr7jUtXL4IIKHg3PlO+0zrmzPn2 8tk5v6sGgPMuqZFKAdBxtq1KukKlUvsoECiubv2/Davy31EDpZQGqW8+3szCwkK5XfezxiOHieII pdTvANRwNjd/bWxsNNjYKBKGIWG4RhRFGGuw1mK3J9FarDVoo1lZKWjgaSDi7+SXvpPNzV82xmS0 1pVRNqYM2R5lrTVGm9hYOyQi9/4C16KCF5hN9R0AAAAASUVORK5CYII= "
- height="16"
- width="16"
- y="248"
- x="296" />
- <image
- id="icon:32-4"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAAXNSR0IArs4c6QAAADBQTFRFAAB/ AAAAAH8AAH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////GNcbwAAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwaEjoVVGfw MQAAAK5JREFUKM+V0TEOwyAMBVCPjOnGgRgycB+jLglSJLzlGL1Kh16mG1tqcJPYWar+jSdiBxvg d0hnBnCbTgVYUScNDOqL0iDdzvh/oVXR4PmcZg1rpdphy1/gtgIiDCjgRTwVRKnB0pqUEAKpG0uD p6qxUIivUXcZ+Yb5Dz7HA3g474VLDBp8iGRfy2+x4Gkf4T7RPsJjwNPjAncBZxaVeXNnzYKZzFIL TtWA67u95gPomJ5K/cPWXwAAAABJRU5ErkJggg== "
- height="32"
- width="32"
- y="232"
- x="256" />
- <image
- id="icon:32-8"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IArs4c6QAAAvdQTFRFAAAA CAsHCxIGDxENXAQAawACFRkReAEAfQAAggEAiAABHB8TGyAYkwABhQYIGycUHyYUIiUZISYepAMA pAMEVhobtwAAIyoYsAMAIS0aKCsfehQXJC8WIzAcng0Rnw4KKzAoKTIkMDMmaiQjygsBMjUoLTgf NDcqLjogMDocLj0eMjwdMz0uNEMjPEAyOEgoO0kkNkwqP00nPkw3jTc5ziYmQVAqPVIqOVQrRk9A bUZFQ1YpRVU0RVgqRVkxTFg9U1RSTlhImkJEZlFKe0xIUlhPTV074zMzVVtSVV5PUmMwUWU2VmQ9 VWVDXGJY2z8+YGJfYmRhZGZjilxcaGdfY2lfXW1LYGxQwVBPZ2lmnVpcW3BHV3JIamxp6UtIXXRQ bm1l6ExNbG5rcXBoxFlaZXZTcHJvY3pWpWZlZntRaXpXc3Vyb3lXWoBYbnxUdXhpb3ppdHpwtWhn d3l2enlxzmJiXoRccn9ig3h4b4JScoFYnXNxdoFee316coNfgX5weoB2foB9gYB4dYZihYB/eYZp foR6gYOAao5gq3p6eYxbeotmhId4hIaDgoh+iId/goxpeo9knoKBgI5lh4mGkoaGvHt6jYiHgo5x hoyCiYuIhJJo13h2hJFziY+Fl4uLjY6Lko2MgJZqkZCIj5GOipZ4h5hziZhukZOQgJ1wf593kJp3 lJaTkZiOhp53iJ5yj5qJlpiVmZmQjaFvkaB1lpySjKJ2lZ97mZuYg6aDlKN4laKEiad4nJ6bm6GX hqmGn6Cdl6Z7n6OTi6uDoaOgj6uJmKmEk6yEoKacjbCNpaekqKeepKqgnbF+m7GEwaSjqauoo7KG lreNy6eorrCsqLeLsbOwp7mTksdQrrmnjstTtri137Gup8Ohury5v761vcGwvsC9rcmnwcPAs8yj xMbDwsi+x8nGwcy6ys3Jvta6y9HGud2R0tXF0tTRyNvHxt3C0+fS4eTg2e3Y5ujl6uzo3/Le7vDt 8fPw6/rt9Prv8vz3/v/8GKc6kQAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3X AAAN1wFCKJt4AAAAB3RJTUUH2QwFDiQM+Qt68wAAAsNJREFUOMtjYKACOH0CAfbt27R17drFi+fN 7Otra2sDy5959/UHVvD9y9MGkP53X9+9xA7efXlcyMBw4uu7jYEBQBAYFBQZm5SUlp1dXFvb2N7b O+XCu0/JQAU/XgbqqcOAKggoQYDOgqdfEkAKngeoXr9+9SoQXQSDcxfPnj137uxZxQUPP4VAFCjs 3r0dBFYDwbLVy4Bg6YolQLDiAMSEQKVjx44dBIFdQLBly7Ytm5esOXNz8e0ra5YwMOz78TxIau66 uTNmTACCbiBobm5uXfP1y7un7z59XcHAsPXH80ip5U8erZ8NAZMnTu6qrNn64u2DA9cu3F7AwLDp x/NYofJHvz8er8vJyslKTU31sbUt2Prs2YbkjSsOAE1Y/ONpkmDdoruff75aWZWXlxft7eXl1XPo 9f1654oWoEOBCh6m8YSHh6cfff/tsK+bmREI9LtcniYnLCIvl7GQYeb329ncYWFhmYc/fNtjZw0B C6XvzDF1j0v0T1nI0Pf9WjGbffzJjz8fxejrQsEU0fMZ7JycnBxRCxnavl4oZrO59OtDh7mBvr6+ ARjkWwVXs7Cyc/F2LmRo+Hqqlklt1SpDTTU1NRBW09TUNJ6ubMLHKywRsZCBofDLgUZmDQstDQ0N TRDQ0gYCLc/pTiJiKqXzk0AKNrYzysjIyMrIlO2HgDIg13LqpKJJUze6MjAkf1nSyyguCQL7/0DA fhlZWRnH3oW9TTuAChI+LZjCKAAGuTshIJcfyBFvX7OgBGRC6Kf+WcyMWEDakgUla8AKmtoXrFiz ccfeA6hgxawpJSuACvxeLijBAG9ulUTWTmlqmgVSsOMxpopbN5qmLJmyYkk7MMkxeGx8/PLl86eP H967d/vatStXLpw6cuTAgmv3rkxxcDhyBJRzXLGAxgtXjkw58PzLKZz5ccqCHUcOrJlCjawNAFEy wdh5APi1AAAAAElFTkSuQmCC "
- height="32"
- width="32"
- y="232"
- x="216" />
- <image
- id="icon:48-4"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAAXNSR0IArs4c6QAAADBQTFRFAAB/ AAAAAH8AAH9/fwAAfwB/f38AwMDAf39/AAD/AP8AAP///wAA/wD///8A////GNcbwAAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwaEjoew7Up uQAAAO9JREFUOMvdlDsOgzAMhhk7li0bl7FEBo5TKWykElKycY+egzGX6UTUJbVLUSh2lqpTPfrT 72ecqvqlecHIf0qCWQSTESyiYJFAfybAU6ygr5m5fwDUoQSUScn4N2jiTuC2WRFI8SNSzjFlQhl2 Q8yEBPuqpnRfc6OgN8YyhSJBBjmS8o7SW1YVRgIA7VkfY3sJIcyadT62pAAB6AJQ4NE/2wya1xNE oNEvAoCuA8vHPlIkLe1jhKC9tEEMVtj5to/io+Y34CTwKIHbBoRTQ3Cl45Su9kxneyx2iPV6zwdz acFypf9gwDS+9FN888M8AQuKNEUITzvFAAAAAElFTkSuQmCC "
- height="48"
- width="48"
- y="216"
- x="120" />
- <image
- id="icon:48-8"
- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAAXNSR0IArs4c6QAAAwBQTFRFAAAA CQwIDRMHTQEAXQAAagABFBkQbgAAeAAAhwABGx8TlQACjwMAmAEAIyIcoAABHiUTogAAYBMPIiUY rAAAkAgPeBEQIyoYHywYvAACJSoiwwAAKCwf0AAAJzIaLTAj3AABJDUbKjMlMDMmiRoaKzYdkBgd LTgfMzYpaCcoVS0qMDocLzkqNjksMzweLz8fTDo4PT88NUQkNkYmYjg4tyIhqCcmPkkvNk0liDM2 P00ntSsnR0lGRFIsP1QsgUFEoTk4S1JDTFM/RVgrTVVAvjU0QFsvTFZGuTk4T1k5UlZSUlhOT1tA RWAzbVJNTl49TWAyWVxOU2E6XFxXWV5VYVxbd1dYVmk1YGJfgVlXx0ZIX2RVY2NbX2VcXWhLXGtD kVpYWW1CZWdkT3FCW21KaWpoXXM3Zmxje2dkZnBPbWxkZ29ZZXRLbnBtZ3ZNbHJoa3VTYnpEZXpN aHlWcnRxjm1ucXhj1ltclm1qX4BRaX9ChnJvcnxapGxpbX5adHpwXYNbd3l2enlxcYBXcINTcoNf eYBqfH57lXd3dYRaf392eYNhaYhgtnByfIJ4dIlSd4hk2GtqgYR1xnBxgYOAg4Z3q3p6eI5jgYto hYeEfI1piYiAcJJnf45khIqAg41zcpRgk4eHiYuIdJZrhJNpgpNv5XZ1ko2MjpCNipVxhJhmkpGJ jJR9iJdtjZOJhphzhJpwkZOQjJeGd591f550ipt3jZp8jpxy4oKAlZeUkpx5mJiPk5qQmJqX1IuM kKF8hKV4lqB8k6J3kKRym52atJiXlqOEm6CWkah7oaOgiq2KzJmYoKacj66EnKuAn6qYm698yZ6h nK6Ip6mm3pqZqKqhnbF+mLOIpLOHlbiUrrCtp7aLp7iSsbWljcpStLWyoMCXt7m2pcGflc1cqMWi vb+8vcGwwsTBsc+uxsjFy8rByszJzc/Muti40tTR2NvRyeHFyuSn2dzY3+He1O3T5efj6Orm3O/a 7e/r8PPv5fjj6/rt9Pfz9Prv8/34/P76GEV+GgAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAA CXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwFDiIApueRXgAABJlJREFUSMfN1n1cE2UAwHEB 5R2loJwyxCASEaEgy4wosywRoxcqSoGYEGWSJLO0TNtKTwfhrCu8EIwT2kO8XiJ2wMJsikvtxWXW pM6lc8Bw0s4NZCE+z902oE8Sf/q93Xa33W97Pve5+zybMOHGxJw6Plp7e0t7Sytc6qrhUlIGFRWR Ksfxp0zWK/+rv9/SVcIff9xqMRnHwcSyMm48JotxnFgDjQZkNRkZcaqDSCTKzs7ORcRiCYRhGA4R lM7YwxahEfX3GMUPz+VFOIWNEIrWRyij0brGHqRGRMwdJSqKf46y70XBLwAGg2WVIwiL6OjoONNx 5sxv//Ir9BMSGkLp9ZYcZxB2BPqW09zW3La/eT9S71BRGRJK6fRsmiMICTt58odRjsIH8p2dUEgx OvNwENKEVNVX1VdWVfI+cyqVy+VCIc0w5hUwaEeBMORQ2yHkgFPDgYbahtovOTt2vO3vT2u15hR7 IBIK9+ziyXfJkQL5Ft6m1VuBnUpjGhHU1lbUVtiVVpQWl5bCtfiDN14uA6CupqkJwylA9yyFQSsM sgOEWwoKGiu3bEQ2bczPz8uHMhZBQA0oqrqaBJSaMqKghQsC5PLtZ/s6DxZv57wPrX0eyQRWdKVa rNYrVmBAQR0McgMC8vLyfr86ZOtsXJv1Klyynn4ASkhIeA3UWC5dqNma8oxSDbR8YDTAAI7gRN/g 0JDt4tHC11dnPOnwUfWR/kt/bH0zMREngQoF1f0Gg9jbOz09PSu/8a9e21Vbb2PCAiey7kdrd+vy p+LjxRKCQkFZv14PgywoIyNz7eenLw+cXbbICXx1wdL9CQpEIhxwgVWvk7h7JyUtWZKcWXiis2+g 72BCnBPY080yT0RGRt75bKoEJHKBjpG4uycnJ+8+32e7Onj59MrFwyNKUtz86c8f3uI3xc/H1/cO Bbo0iqyMFgbRMTH74FnqbVwWBzedlr/j9c0vO4OCg2dCQevEXKDVYK6usbGx+wYu7l28IG6Uzc9N Onbs48ff+uLrnS/O83sBQ4FFg4Lw8FkbNsyfM2vYHLST84rb+sMvTZwEeXh4rpPAYLNFo8ZdXaOj o+fHRPP40XCv9yrcZh9e7zZxkqeXl6+PIoUL1CrcxWXGdRB3uz347q2evn5TAgMfUqDTuplVKUcH KwudssIfU8z2uN3LL3BaUND9CiUK1rBKinBxmQoJpnL22gbtbN/PECxU3OdzU2BQ8MxHFbiKD2gA A/5gAfLeeafdMwSCheXb7pkWNG9bOS7lfmEVS5Gki4v/sNtGEKA3yHKFopygZXyQw4ISGIxlMkZg 2GSlTEpzgbkEJ6aPXWAqWjKdlkq5qzXNXCLDCQDvQ4qmlUql6j8AGn6O24MVZpl0bLkiDJA42uKC HAMY6+i/z0lFUowkMLgtI9DViquZsYJzf0rFUhlJoGGUSLkpKM3AEGMlMoIEJAlyczE8hZ/k0lT6 nh5jV1eXwaDX63U6HcMwWq1Wo9GoIYrSm1ki/q5EHJc6plEsben1kSZWr6Xg/cyyxLgmcZUSTp9m s+Ufi4oe57xPU0q1RgnoG/RvyYRrqMrAplybagcAAAAASUVORK5CYII= "
- height="48"
- width="48"
- y="216"
- x="64" />
- <g
- id="g3405"
- transform="translate(7.9879866,216)">
- <rect
- id="rect4173"
- style="opacity:0.40206;color:#000000;fill:url(#linearGradient3416);fill-rule:nonzero"
- height="9.9821997"
- width="32.881001"
- y="36.195999"
- x="7.8719001" />
- <path
- id="path5058"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3411);fill-rule:nonzero"
- d="m 40.753,36.197 v 9.9816 c 3.5068,0.01879 8.4778,-2.2364 8.4778,-4.9914 0,-2.7551 -3.9134,-4.9902 -8.4778,-4.9902 z"
- inkscape:connector-curvature="0" />
- <path
- id="path5018"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3413);fill-rule:nonzero"
- d="m 7.8719,36.197 v 9.9816 c -3.5068,0.01879 -8.4778,-2.2364 -8.4778,-4.9914 0,-2.7551 3.9134,-4.9902 8.4778,-4.9902 z"
- inkscape:connector-curvature="0" />
- <rect
- id="rect1316"
- style="fill:url(#linearGradient3418);fill-rule:evenodd;stroke:url(#linearGradient3420);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="4.8516998"
- ry="4.8516998"
- height="38.999001"
- width="44.995998"
- stroke-miterlimit="4"
- y="3.5016"
- x="1.5026" />
- <rect
- id="rect1314"
- style="fill:url(#linearGradient3422);fill-rule:evenodd;stroke:url(#linearGradient3424);stroke-width:0.99496001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="1.6452"
- ry="1.6452"
- height="29.021999"
- width="37.088001"
- stroke-miterlimit="4"
- y="7.4826999"
- x="5.4963002" />
- <path
- id="path1345"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,11.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2264"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,13.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2266"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,15.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2268"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,17.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2270"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,19.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2272"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,21.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2274"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,23.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2276"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,25.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2278"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,27.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2280"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,29.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2282"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,31.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2284"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 8.0152,33.5 31.979,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <rect
- id="rect2232"
- style="opacity:0.76374003;fill:none;stroke:url(#linearGradient3426);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="3.7909999"
- ry="3.7909999"
- height="37.000999"
- width="42.945"
- stroke-miterlimit="4"
- y="4.5007"
- x="2.5543001" />
- <path
- id="text1340"
- style="text-align:start;fill:#ffffff;stroke:#6ed66e;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.27868856"
- d="m 11.625,20.679 0,-3.0544 8.9848,4.0608 0,1.8559 -8.9848,4.0874 0,-3.0453 6.9644,-1.8539 -6.964,-2.051 z m 18.893,10.026 0,1.9742 -10.903,0 0,-1.9742 10.903,0"
- inkscape:connector-curvature="0" />
- <path
- id="path2443"
- d="M 7.6254,8 C 7.1021,8 6.0515,8.1902 6.0515,9.026 l 0.1181,16.517 c 17.672,-0.964 14.124,-8.257 35.83,-11.91 l -0.063,-4.3416 c -0.078,-1.1251 -0.539,-1.2319 -1.61,-1.2253 L 7.6246,8 z"
- inkscape:connector-curvature="0"
- style="opacity:0.53142856;fill:url(#linearGradient3428);fill-rule:evenodd" />
- <rect
- id="rect1340"
- style="opacity:0.71429001;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="0.11773"
- ry="0.11773"
- height="26.056999"
- width="34.026001"
- stroke-miterlimit="4"
- y="8.9805002"
- x="6.9895" />
- <rect
- id="rect5025"
- style="fill:url(#radialGradient3430);fill-rule:evenodd;stroke:url(#linearGradient3432);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="0.35819"
- ry="0.56023002"
- height="2.9590001"
- width="4.0201001"
- stroke-miterlimit="4"
- y="37.514999"
- x="35.486" />
- <rect
- id="rect6458"
- rx="0.56023002"
- ry="0.56023002"
- height="2"
- width="2"
- y="38"
- x="32"
- style="fill:#93d94c;fill-rule:evenodd" />
- <path
- id="path2300"
- style="color:#000000;fill:#ffffff;fill-rule:nonzero"
- d="m 33.25,38.688 a 0.5625,0.5625 0 0 1 -1.125,0 0.5625,0.5625 0 1 1 1.125,0 z"
- inkscape:connector-curvature="0" />
- <path
- id="path11959"
- d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:0.38020833;fill-rule:evenodd" />
- <path
- id="path10590"
- d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
- inkscape:connector-curvature="0"
- style="opacity:0.07000002;fill:url(#radialGradient3434)" />
- <path
- id="path10592"
- style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
- d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
- transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path10594"
- d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3436);fill-rule:evenodd" />
- <path
- id="path10596"
- style="fill:url(#linearGradient3438);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path10598"
- style="fill:none;stroke:url(#linearGradient3440);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path10600"
- d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3439);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path10602"
- d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3442);fill-rule:evenodd" />
- <path
- id="path10604"
- style="fill:url(#radialGradient3444);stroke:url(#linearGradient3446);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path10606"
- d="m 43.594,18.864 -10.5,6.9062 c -0.47185,2.1071 0.57612,3.8839 1.9688,5.1562 0.69977,0.63931 1.4779,1.1545 2.1875,1.5 0.70965,0.3455 1.3655,0.53125 1.75,0.53125 0.38459,0 1.0458,-0.20765 1.7812,-0.5625 0.73541,-0.35485 1.5613,-0.85244 2.2812,-1.5312 1.4399,-1.3576 2.4993,-3.3228 1.8438,-5.7812 a 0.10694,0.10694 0 0 1 0,-0.03125 C 44.58022,22.4413 44.23507,21.1135 43.594,18.864 z"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#linearGradient3447);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path10608"
- d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3449);fill-rule:evenodd" />
- <path
- id="path10610"
- style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path10612"
- d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69994 -5.1622,0.69994 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69994"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path10614"
- d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#radialGradient3448);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path10616"
- d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- id="path10618"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.267061)"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3450);fill-rule:evenodd;stroke:url(#linearGradient3452);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)" />
- <path
- id="path10620"
- d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path11877"
- d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3433);fill-rule:evenodd" />
- <path
- id="path11873"
- d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
- inkscape:connector-curvature="0"
- style="opacity:0.07000002;fill:url(#radialGradient3431)" />
- <path
- id="path11875"
- style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
- d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
- transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path11879"
- style="fill:url(#linearGradient3435);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path11881"
- style="fill:none;stroke:url(#linearGradient3437);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path11883"
- d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3465);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path11885"
- d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient3441);fill-rule:evenodd" />
- <path
- id="path11887"
- style="fill:url(#radialGradient3443);stroke:url(#linearGradient3445);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path11891"
- d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3473);fill-rule:evenodd" />
- <path
- id="path11893"
- style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path11895"
- d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69993 -5.1622,0.69993 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69993"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path11897"
- d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#radialGradient3451);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path11899"
- d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- id="path11901"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.2670609)"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient3453);fill-rule:evenodd;stroke:url(#linearGradient3455);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)" />
- <path
- id="path11903"
- d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- </g>
- <rect
- id="icon:48-32"
- height="48"
- width="48"
- y="216"
- x="8"
- style="fill:none" />
- <g
- id="g4719"
- transform="translate(0,208)">
- <rect
- id="rect4173-0"
- style="opacity:0.40206;color:#000000;fill:url(#linearGradient4702);fill-rule:nonzero"
- height="6.6547999"
- width="21.921"
- y="48.131001"
- x="181.03999" />
- <path
- id="path5058-3"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient4699);fill-rule:nonzero"
- d="m 202.96,48.131 v 6.6544 c 2.3379,0.01253 5.6519,-1.4909 5.6519,-3.3276 0,-1.8367 -2.6089,-3.3268 -5.6519,-3.3268 z"
- inkscape:connector-curvature="0" />
- <path
- id="path5018-0"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient4696);fill-rule:nonzero"
- d="m 181.04,48.131 v 6.6544 c -2.3379,0.01253 -5.6519,-1.4909 -5.6519,-3.3276 0,-1.8367 2.6089,-3.3268 5.6519,-3.3268 z"
- inkscape:connector-curvature="0" />
- <rect
- id="rect1316-9"
- style="fill:url(#linearGradient4673);fill-rule:evenodd;stroke:url(#linearGradient4675);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="3.2348001"
- ry="3.2346001"
- height="26"
- width="30"
- stroke-miterlimit="4"
- y="26.5"
- x="176.49001" />
- <rect
- id="rect1314-2"
- style="fill:url(#linearGradient4668);fill-rule:evenodd;stroke:url(#linearGradient4670);stroke-width:0.99496001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="1.0664001"
- ry="1.0774"
- height="19.004999"
- width="24.040001"
- stroke-miterlimit="4"
- y="29.497"
- x="179.46001" />
- <path
- id="path1345-5"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,32.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path3032"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,34.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path3034"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,36.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path3036"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,38.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path3038"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,40.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path3040"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,42.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path3042"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,44.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path3044"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072193;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- d="m 180.49,46.5 21.944,0"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <rect
- id="rect2232-4"
- style="opacity:0.76374003;fill:none;stroke:url(#linearGradient4656);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="2.4717"
- ry="2.4590001"
- height="24"
- width="27.999001"
- stroke-miterlimit="4"
- y="27.5"
- x="177.49001" />
- <path
- id="text1340-0"
- style="text-align:start;fill:#ffffff;stroke:#6ed66e;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.2786885;stroke-dasharray:none"
- d="m 182.49,37 0,-2 6,3.5 0,1 -6,3.5 0,-2 4.5,-2 -4.5,-2 z m 5,7.5 8,0 0,2 -8,0 0,-2 z"
- stroke-miterlimit="4"
- inkscape:connector-curvature="0" />
- <path
- id="path2443-5"
- d="m 181.03,30 c -0.3343,0 -1.0055,0.1301 -1.0055,0.70182 l 0.08,11.298 c 11.29,-0.65901 9.0236,-5.6476 22.89,-8.1465 l -0.0401,-2.9701 c -0.05,-0.76962 -0.34454,-0.8427 -1.0286,-0.83818 l -20.89,-0.046 z"
- inkscape:connector-curvature="0"
- style="opacity:0.53142856;fill:url(#linearGradient4652);fill-rule:evenodd" />
- <rect
- id="rect1340-9"
- style="opacity:0.71429001;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="0.076121002"
- ry="0.076808996"
- height="17"
- width="22"
- stroke-miterlimit="4"
- y="30.5"
- x="180.49001" />
- <rect
- id="rect5025-4"
- style="fill:url(#radialGradient4646);fill-rule:evenodd;stroke:url(#linearGradient4648);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- rx="0.17820001"
- ry="0.18933"
- height="1"
- width="2"
- stroke-miterlimit="4"
- y="49.5"
- x="200.49001" />
- <rect
- id="rect6458-6"
- rx="0.56023002"
- ry="0.56023002"
- height="2"
- width="2"
- y="49"
- x="196.99001"
- style="fill:#93d94c;fill-rule:evenodd" />
- <path
- id="path2300-9"
- style="color:#000000;fill:#ffffff;fill-rule:nonzero"
- d="m 198.15,49.57 a 0.42969,0.42969 0 0 1 -0.85937,0 0.42969,0.42969 0 1 1 0.85937,0 z"
- inkscape:connector-curvature="0" />
- <path
- id="path10475"
- d="m 206.35,33.017 c -0.38783,-0.76468 -7.3688,-0.76468 -7.7566,0 0,1.147 -1.1322,4.213 -1.1322,7.2717 0,3.0587 3.8783,4.9704 5.0418,4.9704 1.1635,0 5.0418,-1.9117 5.0418,-4.9704 0,-3.0587 -1.1948,-6.1247 -1.1948,-7.2717 z"
- inkscape:connector-curvature="0"
- style="fill:#eeeeec;fill-opacity:0.52263375;fill-rule:evenodd" />
- <path
- id="path4331"
- d="m 206.61,41.097 a 4.61455,1.1426124 0 0 1 -9.2291,0 4.61455,1.1426124 0 1 1 9.2291,0 z"
- inkscape:connector-curvature="0"
- style="opacity:0.07000002;fill:url(#radialGradient4617)" />
- <path
- id="path3159"
- d="m 206.38,32.642 c -0.38783,-0.76468 -7.3688,-0.76468 -7.7566,0 0,1.147 -1.1635,4.588 -1.1635,7.6467 0,3.0587 3.8783,4.9704 5.0418,4.9704 1.1635,0 5.0418,-1.9117 5.0418,-4.9704 0,-3.0587 -1.1635,-6.4997 -1.1635,-7.6467 z"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient4614);fill-rule:evenodd" />
- <path
- id="path2385"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 206.5,33.526 a 4,1 0 1 1 -8,0 4,1 0 1 1 8,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3157"
- style="fill:url(#linearGradient4717);stroke:#888a85;stroke-width:1.01121235;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 207.23,51.994 a 4.4944,1.4944 0 0 1 -8.9888,0 4.4944,1.4944 0 1 1 8.9888,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3236"
- style="fill:none;stroke:url(#linearGradient4714);stroke-width:0.74999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 206.32,51.994 a 3.5954,0.90458 0 1 1 -7.1908,0 3.5954,0.90458 0 1 1 7.1908,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path3363"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- transform="matrix(0.7756645,0,0,0.7646744,196.29594,18.755806)"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient4708);fill-rule:evenodd;stroke:url(#linearGradient4710);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391-4)" />
- <path
- id="path3163"
- d="m 200.56,44.494 c 0.77567,0.76467 1.5513,1.9117 1.5513,6.1174 0,0.76468 0.10491,1.147 0.38783,1.147 0.28293,0 0.38783,-0.38234 0.38783,-1.147 0,-4.2057 0.77567,-5.3527 1.5513,-6.1174"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient4606);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path3179"
- d="m 197.5,39.044 c 0,4.5 3.8365,6.2147 5,6.2147 1.1635,0 5,-1.7147 5,-6.2147"
- inkscape:connector-curvature="0"
- style="fill:url(#radialGradient4603);fill-rule:evenodd" />
- <path
- id="path5788"
- style="fill:url(#radialGradient4598);stroke:url(#linearGradient4600);stroke-width:0.50549006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- d="m 207.25,39.141 a 4.75,1.147 0 0 1 -9.5,0 4.75,1.147 0 1 1 9.5,0 z"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0" />
- <path
- id="path9912"
- d="m 205.88,34.357 -7.6875,5.0312 c -0.32309,1.5166 0.41911,2.7902 1.4375,3.7188 0.51582,0.4703 1.1023,0.87123 1.625,1.125 0.5227,0.25377 0.99517,0.375 1.25,0.375 0.25483,0 0.73952,-0.14486 1.2812,-0.40625 0.54173,-0.26139 1.1572,-0.62499 1.6875,-1.125 1.0606,-1 1.8238,-2.4185 1.3438,-4.2188 a 0.19227,0.19227 0 0 1 0,-0.03125 c -0.23524,-1.8819 -0.49159,-2.8929 -0.9375,-4.4688 z"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#linearGradient4595);stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- id="path3266"
- d="m 199.67,34.526 2.327,0 c 0,0 -1.1635,4.1065 -1.1635,6.0182 0,1.147 0.77566,1.9117 0.38783,2.294 -0.38783,0.38234 -2.327,-1.1092 -2.327,-3.0587 0,-0.76467 0.38784,-2.5772 0.77567,-5.2535 z"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient4592);fill-rule:evenodd" />
- <path
- id="path3450"
- d="m 207,38.794 c 0,0.42777 -1.75,1 -4.5095,1.025 C 199.731,39.84395 198,39.22182 198,38.794"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:url(#radialGradient4589);stroke-width:0.50549001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path3358"
- d="m 206.21,34.407 c -0.25,0.25 -1.7308,0.52495 -3.8717,0.52495 -2.1408,0 -3.3783,-0.27495 -3.6283,-0.52495"
- stroke-miterlimit="0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- id="path3395"
- d="m 201.5,45.515 c 0,0 0.25,0.5 1,0.47942 0.75,-0.02058 1,-0.47942 1,-0.47942"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.49999997px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- id="path3354"
- d="m 206.5,33.526 c -0.35936,-1.3412 -7.6317,-1.3746 -8,0 0,1.147 -1,3.4598 -1,6.5185 0,3.0587 3.8365,5.2147 5,5.2147 1.1635,0 5,-2.156 5,-5.2147 0,-3.0587 -1,-5.3715 -1,-6.5185 z"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- </g>
- <rect
- id="icon:32-32"
- height="32"
- width="32"
- y="232"
- x="176"
- style="fill:none" />
- <g
- transform="matrix(5.1367767,0,0,5.1367767,371.11237,8.7243673)"
- id="g3228">
- <rect
- x="7.8719001"
- y="36.195999"
- width="32.881001"
- height="9.9821997"
- style="opacity:0.40206;color:#000000;fill:url(#linearGradient3343);fill-rule:nonzero"
- id="rect3230" />
- <path
- d="m 40.753,36.197 v 9.9816 c 3.5068,0.01879 8.4778,-2.2364 8.4778,-4.9914 0,-2.7551 -3.9134,-4.9902 -8.4778,-4.9902 z"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3345);fill-rule:nonzero"
- id="path3232"
- inkscape:connector-curvature="0" />
- <path
- d="m 7.8719,36.197 v 9.9816 c -3.5068,0.01879 -8.4778,-2.2364 -8.4778,-4.9914 0,-2.7551 3.9134,-4.9902 8.4778,-4.9902 z"
- style="opacity:0.40206185;color:#000000;fill:url(#radialGradient3347);fill-rule:nonzero"
- id="path3234"
- inkscape:connector-curvature="0" />
- <rect
- x="1.5026"
- y="3.5016"
- stroke-miterlimit="4"
- width="44.995998"
- height="38.999001"
- ry="4.8516998"
- rx="4.8516998"
- style="fill:url(#linearGradient3349);fill-rule:evenodd;stroke:url(#linearGradient3351);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- id="rect3236" />
- <rect
- x="5.4963002"
- y="7.4826999"
- stroke-miterlimit="4"
- width="37.088001"
- height="29.021999"
- ry="1.6452"
- rx="1.6452"
- style="fill:url(#linearGradient3353);fill-rule:evenodd;stroke:url(#linearGradient3355);stroke-width:0.99496001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- id="rect3238" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,11.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3240"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,13.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3242"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,15.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3244"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,17.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3246"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,19.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3248"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,21.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3250"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,23.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3252"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,25.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3254"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,27.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3256"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,29.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3258"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,31.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3260"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="4"
- d="m 8.0152,33.5 31.979,0"
- style="opacity:0.25568183;fill:none;stroke:#181f10;stroke-width:1.00072134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
- id="path3262"
- inkscape:connector-curvature="0" />
- <rect
- x="2.5543001"
- y="4.5007"
- stroke-miterlimit="4"
- width="42.945"
- height="37.000999"
- ry="3.7909999"
- rx="3.7909999"
- style="opacity:0.76374003;fill:none;stroke:url(#linearGradient3357);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- id="rect3264" />
- <path
- d="m 11.625,20.679 0,-3.0544 8.9848,4.0608 0,1.8559 -8.9848,4.0874 0,-3.0453 6.9644,-1.8539 -6.964,-2.051 z m 18.893,10.026 0,1.9742 -10.903,0 0,-1.9742 10.903,0"
- style="text-align:start;fill:#ffffff;stroke:#6ed66e;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.27868856"
- id="path3267"
- inkscape:connector-curvature="0" />
- <path
- d="M 7.6254,8 C 7.1021,8 6.0515,8.1902 6.0515,9.026 l 0.1181,16.517 c 17.672,-0.964 14.124,-8.257 35.83,-11.91 l -0.063,-4.3416 c -0.078,-1.1251 -0.539,-1.2319 -1.61,-1.2253 L 7.6246,8 z"
- id="path3269"
- style="opacity:0.53142856;fill:url(#linearGradient3359);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <rect
- x="6.9895"
- y="8.9805002"
- stroke-miterlimit="4"
- width="34.026001"
- height="26.056999"
- ry="0.11773"
- rx="0.11773"
- style="opacity:0.71429001;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- id="rect3271" />
- <rect
- x="35.486"
- y="37.514999"
- stroke-miterlimit="4"
- width="4.0201001"
- height="2.9590001"
- ry="0.56023002"
- rx="0.35819"
- style="fill:url(#radialGradient3361);fill-rule:evenodd;stroke:url(#linearGradient3363);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0"
- id="rect3273" />
- <rect
- x="32"
- y="38"
- width="2"
- height="2"
- ry="0.56023002"
- rx="0.56023002"
- id="rect3275"
- style="fill:#93d94c;fill-rule:evenodd" />
- <path
- d="m 33.25,38.688 a 0.5625,0.5625 0 0 1 -1.125,0 0.5625,0.5625 0 1 1 1.125,0 z"
- style="color:#000000;fill:#ffffff;fill-rule:nonzero"
- id="path3277"
- inkscape:connector-curvature="0" />
- <path
- d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
- id="path3279"
- inkscape:connector-curvature="0"
- style="fill:#ffffff;fill-opacity:0.38020833;fill-rule:evenodd" />
- <path
- d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
- id="path3281"
- style="opacity:0.07000002;fill:url(#radialGradient3365)"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
- d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
- style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
- id="path3283"
- inkscape:connector-curvature="0" />
- <path
- d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
- id="path3285"
- style="fill:url(#radialGradient3367);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
- style="fill:url(#linearGradient3369);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3287"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
- style="fill:none;stroke:url(#linearGradient3371);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3289"
- inkscape:connector-curvature="0" />
- <path
- d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
- id="path3291"
- style="fill:url(#linearGradient3374);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
- inkscape:connector-curvature="0" />
- <path
- d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
- id="path3293"
- style="fill:url(#radialGradient3376);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
- style="fill:url(#radialGradient3378);stroke:url(#linearGradient3380);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3295"
- inkscape:connector-curvature="0" />
- <path
- d="m 43.594,18.864 -10.5,6.9062 c -0.47185,2.1071 0.57612,3.8839 1.9688,5.1562 0.69977,0.63931 1.4779,1.1545 2.1875,1.5 0.70965,0.3455 1.3655,0.53125 1.75,0.53125 0.38459,0 1.0458,-0.20765 1.7812,-0.5625 0.73541,-0.35485 1.5613,-0.85244 2.2812,-1.5312 1.4399,-1.3576 2.4993,-3.3228 1.8438,-5.7812 a 0.10694,0.10694 0 0 1 0,-0.03125 C 44.58022,22.4413 44.23507,21.1135 43.594,18.864 z"
- id="path3297"
- style="fill:none;stroke:url(#linearGradient3382);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
- inkscape:connector-curvature="0" />
- <path
- d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
- id="path3299"
- style="fill:url(#linearGradient3384);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
- style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3301"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69994 -5.1622,0.69994 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69994"
- id="path3303"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- stroke-miterlimit="0"
- d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
- id="path3305"
- style="fill:none;stroke:url(#radialGradient3386);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
- inkscape:connector-curvature="0" />
- <path
- d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
- id="path3307"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.267061)"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- id="path3309"
- style="fill:url(#linearGradient3388);fill-rule:evenodd;stroke:url(#linearGradient3390);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)"
- inkscape:connector-curvature="0" />
- <path
- d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
- id="path3311"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- <path
- d="m 44.171,16.848 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
- id="path3313"
- style="fill:url(#radialGradient3392);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- d="m 44.476,28.122 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
- id="path3315"
- style="opacity:0.07000002;fill:url(#radialGradient3394)"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- transform="matrix(1.2818465,0,0,0.9398128,9.51753,33.032356)"
- d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
- style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
- id="path3317"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 44.478,42.551 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
- style="fill:url(#linearGradient3396);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3319"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 43.5,42.551 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
- style="fill:none;stroke:url(#linearGradient3398);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3321"
- inkscape:connector-curvature="0" />
- <path
- d="m 36.414,32.651 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
- id="path3323"
- style="fill:url(#linearGradient3400);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter"
- inkscape:connector-curvature="0" />
- <path
- d="m 32,25.551 c 0,6 5.4487,8.1197 7,8.1197 1.551,0 7,-2.12 7,-8.12"
- id="path3325"
- style="fill:url(#radialGradient3402);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 45.333,25.514 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
- style="fill:url(#radialGradient3404);stroke:url(#linearGradient3406);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3327"
- inkscape:connector-curvature="0" />
- <path
- d="m 35.231,18.718 3.1027,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1027,-1.4789 -3.1027,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
- id="path3329"
- style="fill:url(#linearGradient3408);fill-rule:evenodd"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 44.184,16.778 a 5.1841,1.2399 0 1 1 -7.84e-4,-0.02154"
- style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
- id="path3331"
- inkscape:connector-curvature="0" />
- <path
- stroke-miterlimit="0"
- d="m 44,18.016 c -0.33333,0.33333 -2.3078,0.69993 -5.1622,0.69993 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69993"
- id="path3333"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
- <path
- stroke-miterlimit="0"
- d="m 45,25.051 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.679,0.033 -5.987,-0.797 -5.987,-1.367"
- id="path3335"
- style="fill:none;stroke:url(#radialGradient3410);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
- inkscape:connector-curvature="0" />
- <path
- d="m 37.667,34.051 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
- id="path3337"
- inkscape:connector-curvature="0"
- style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
- <path
- transform="matrix(1.0342194,0,0,1.019566,30.726246,-2.2670609)"
- d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
- id="path3339"
- style="fill:url(#linearGradient3412);fill-rule:evenodd;stroke:url(#linearGradient3414);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)"
- inkscape:connector-curvature="0" />
- <path
- d="m 44.171,16.848 c -0.671,-1.797 -9.671,-1.797 -10.342,0 0,1.529 -1.829,6.125 -1.829,10.203 0,4.078 5.449,6.62 7,6.62 1.551,0 7,-2.542 7,-6.62 0,-4.078 -1.829,-8.674 -1.829,-10.203 z"
- id="path3341"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
- </g>
- <rect
- id="icon:256-32"
- height="256"
- width="256"
- y="8"
- x="368"
- style="fill:none" />
- </svg>
|