123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
- <svg
- xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- width="297mm"
- height="210mm"
- viewBox="0 0 297 210"
- version="1.1"
- id="svg8"
- inkscape:version="0.92.1 r15371"
- sodipodi:docname="réseau.svg">
- <defs
- id="defs2">
- <linearGradient
- id="linearGradient1164">
- <stop
- style="stop-color:#263d42;stop-opacity:1;"
- offset="0.000000"
- id="stop1165" />
- <stop
- style="stop-color:#9acde7;stop-opacity:1;"
- offset="1.000000"
- id="stop1166" />
- </linearGradient>
- <linearGradient
- y2="99.805397"
- y1="287.4808"
- xlink:href="#linearGradient1164"
- x2="33.348629"
- x1="190.08887"
- spreadMethod="reflect"
- id="linearGradient1167"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.2625343,0.79205769)" />
- <linearGradient
- id="linearGradient3000">
- <stop
- style="stop-color:#000000;stop-opacity:0.39215687;"
- offset="0.00000000"
- id="stop3001" />
- <stop
- style="stop-color:#000000;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop3002" />
- </linearGradient>
- <linearGradient
- id="linearGradient2991">
- <stop
- style="stop-color:#fff700;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop2992" />
- <stop
- style="stop-color:#ff8e00;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2993" />
- </linearGradient>
- <linearGradient
- id="linearGradient2979">
- <stop
- style="stop-color:#dee5f4;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop2980" />
- <stop
- style="stop-color:#747a92;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop2981" />
- </linearGradient>
- <linearGradient
- id="linearGradient2984">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.00000000"
- id="stop2985" />
- <stop
- style="stop-color:#ffffff;stop-opacity:0.00000000;"
- offset="1.0000000"
- id="stop2986" />
- </linearGradient>
- <linearGradient
- y2="199.20726"
- y1="85.529762"
- xlink:href="#linearGradient2984"
- x2="61.891071"
- x1="59.820393"
- id="linearGradient1871"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.306617,0.765335)" />
- <radialGradient
- xlink:href="#linearGradient3000"
- r="31.845842"
- id="radialGradient1908"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(2.157585,0.463481)"
- fy="1101.0496"
- fx="48.594395"
- cy="1101.0496"
- cx="48.594395" />
- <linearGradient
- y2="73.230858"
- y1="198.10153"
- xlink:href="#linearGradient2979"
- x2="171.147"
- x1="216.47505"
- id="linearGradient1917"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.977355,1.02317)" />
- <linearGradient
- y2="76.863205"
- y1="200.60095"
- xlink:href="#linearGradient3000"
- x2="139.02554"
- x1="146.52391"
- id="linearGradient1918"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.816232,1.225143)" />
- <linearGradient
- y2="76.863205"
- y1="200.60095"
- xlink:href="#linearGradient3000"
- x2="139.02554"
- x1="146.52391"
- id="linearGradient1919"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.877312,0,0,1.35409,-9.949676,-15.93499)" />
- <linearGradient
- y2="147.83969"
- y1="50.769344"
- xlink:href="#linearGradient2984"
- x2="231.59184"
- x1="233.42126"
- id="linearGradient1920"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.847717,1.179639)" />
- <linearGradient
- y2="160.49329"
- y1="128.38135"
- xlink:href="#linearGradient2979"
- x2="123.6971"
- x1="122.32335"
- id="linearGradient1921"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.598277,0.625674)" />
- <linearGradient
- y2="190.33418"
- y1="158.70644"
- xlink:href="#linearGradient2979"
- x2="122.9226"
- x1="121.56956"
- id="linearGradient1922"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.606578,0.622441)" />
- <linearGradient
- y2="125.2625"
- y1="166.56679"
- xlink:href="#linearGradient3000"
- x2="256.74417"
- x1="271.4765"
- id="linearGradient1923"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.768115,1.301889)" />
- <radialGradient
- xlink:href="#linearGradient3000"
- r="48.549095"
- id="radialGradient1955"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.907187,0.524332)"
- fy="1017.3969"
- fx="75.537109"
- cy="1017.3969"
- cx="75.537109" />
- <linearGradient
- y2="1007.7199"
- y1="1007.7199"
- xlink:href="#linearGradient2991"
- x2="112.30373"
- x1="80.622375"
- id="linearGradient1956"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.905684,0.524746)" />
- <linearGradient
- y2="1019.9909"
- y1="991.43304"
- xlink:href="#linearGradient2979"
- x2="89.493149"
- x1="111.28992"
- id="linearGradient1957"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.905684,0.524746)" />
- <linearGradient
- y2="1005.4645"
- y1="1036.9353"
- xlink:href="#linearGradient2991"
- x2="91.326256"
- x1="97.777306"
- id="linearGradient1958"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.92902,0.518398)" />
- <linearGradient
- y2="390.88043"
- y1="438.16623"
- xlink:href="#linearGradient2979"
- x2="65.910606"
- x1="95.44516"
- id="linearGradient1959"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.781362,0.561368)" />
- <linearGradient
- y2="522.2951"
- y1="404.27759"
- xlink:href="#linearGradient2984"
- x2="87.982124"
- x1="52.588963"
- id="linearGradient1960"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.964736,0.508974)" />
- <linearGradient
- y2="298.52386"
- y1="270.24692"
- xlink:href="#linearGradient2979"
- x2="180.98833"
- x1="177.20853"
- id="linearGradient1961"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.337132,0.747869)" />
- <linearGradient
- y2="716.89569"
- y1="704.06665"
- xlink:href="#linearGradient2984"
- x2="129.54399"
- x1="129.28658"
- id="linearGradient1962"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.369306,0.730297)" />
- <radialGradient
- xlink:href="#linearGradient3000"
- r="31.845842"
- id="radialGradient1971"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(2.157585,0.463481)"
- fy="1101.0496"
- fx="48.594395"
- cy="1101.0496"
- cx="48.594395" />
- <linearGradient
- y2="172.33038"
- y1="210.65846"
- xlink:href="#linearGradient2979"
- x2="79.453842"
- x1="85.997665"
- id="linearGradient1981"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="79.391563"
- y1="176.59102"
- xlink:href="#linearGradient2979"
- x2="69.298241"
- x1="79.259674"
- id="linearGradient1982"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.015953,0,0,0.984297,-1.875,0.625)" />
- <linearGradient
- y2="100.41222"
- y1="65.556458"
- xlink:href="#linearGradient2979"
- x2="99.187386"
- x1="131.51102"
- id="linearGradient1983"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.015805,0.98444)" />
- <linearGradient
- y2="79.391563"
- y1="176.59102"
- xlink:href="#linearGradient2979"
- x2="69.298241"
- x1="79.259674"
- id="linearGradient1984"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.015953,0.984297)" />
- <linearGradient
- y2="77.001305"
- y1="167.85587"
- xlink:href="#linearGradient2991"
- x2="48.997128"
- x1="52.874111"
- id="linearGradient1985"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.046727,0.955359)" />
- <linearGradient
- y2="437.71384"
- y1="462.63409"
- xlink:href="#linearGradient2984"
- x2="39.178116"
- x1="44.634335"
- id="linearGradient1986"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(2.284372,0.437757)" />
- <linearGradient
- y2="-90.461502"
- y1="505.53708"
- xlink:href="#linearGradient2979"
- x2="262.79605"
- x1="-71.758919"
- id="linearGradient1992"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.350628,0,0,0.811804,-29.70751,-1.423843)" />
- <linearGradient
- y2="637.12531"
- y1="-290.19931"
- xlink:href="#linearGradient2984"
- x2="-95.652382"
- x1="203.06593"
- id="linearGradient1994"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.289859,0.775278)" />
- <linearGradient
- y2="657.42157"
- y1="692.08044"
- xlink:href="#linearGradient3376"
- x2="-80.301514"
- x1="-56.230511"
- inkscape:collect="always"
- id="linearGradient3432"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient3290">
- <stop
- style="stop-color:#fb0000;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3291" />
- <stop
- style="stop-color:#bc2323;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3292" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient3290"
- r="22.582869"
- inkscape:collect="always"
- id="radialGradient3431"
- gradientUnits="userSpaceOnUse"
- fy="664.96503"
- fx="-73.827393"
- cy="664.96509"
- cx="-73.978615" />
- <linearGradient
- id="linearGradient3499">
- <stop
- style="stop-color:#adbe56;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3500" />
- <stop
- style="stop-color:#46630c;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3501" />
- </linearGradient>
- <radialGradient
- xlink:href="#linearGradient3499"
- r="33.866852"
- inkscape:collect="always"
- id="radialGradient3429"
- gradientUnits="userSpaceOnUse"
- fy="663.60602"
- fx="-75.833542"
- cy="663.60602"
- cx="-75.833542" />
- <linearGradient
- y2="696.04785"
- y1="652.68365"
- xlink:href="#linearGradient3363"
- x2="-51.446705"
- x1="-83.203087"
- inkscape:collect="always"
- id="linearGradient3427"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- y2="1394.0889"
- y1="1418.2798"
- xlink:href="#linearGradient3376"
- x2="-77.882248"
- x1="-56.337173"
- inkscape:collect="always"
- id="linearGradient3424"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.748538,0,0,0.578359,-3.482923,34.77842)" />
- <linearGradient
- y2="1341.8268"
- y1="1422.0023"
- xlink:href="#linearGradient3363"
- x2="-75.273094"
- x1="-54.402168"
- inkscape:collect="always"
- id="linearGradient3423"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.748541,0,0,0.578358,-3.482923,34.77842)" />
- <linearGradient
- y2="1394.0889"
- y1="1418.2798"
- xlink:href="#linearGradient3376"
- x2="-77.882248"
- x1="-56.337173"
- inkscape:collect="always"
- id="linearGradient3422"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.748538,0,0,0.578359,-3.482828,-5.154507)" />
- <linearGradient
- y2="1341.8268"
- y1="1422.0023"
- xlink:href="#linearGradient3363"
- x2="-75.273094"
- x1="-54.402168"
- inkscape:collect="always"
- id="linearGradient3421"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.748541,0,0,0.578358,-3.482828,-5.154507)" />
- <linearGradient
- y2="989.40729"
- y1="811.32251"
- xlink:href="#linearGradient3363"
- x2="-13.259475"
- x1="-257.64337"
- inkscape:collect="always"
- id="linearGradient3420"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.979784,0,0,1.020633,-382.7367,317.9636)" />
- <linearGradient
- id="linearGradient3363">
- <stop
- style="stop-color:#d9dbe6;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3364" />
- <stop
- style="stop-color:#b2b6df;stop-opacity:1.0000000;"
- offset="0.036697246"
- id="stop3365" />
- <stop
- style="stop-color:#787fb3;stop-opacity:1.0000000;"
- offset="0.44082990"
- id="stop3366" />
- <stop
- style="stop-color:#485093;stop-opacity:1.0000000;"
- offset="0.94495416"
- id="stop3367" />
- <stop
- style="stop-color:#2f3168;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3368" />
- </linearGradient>
- <linearGradient
- y2="709.28973"
- y1="557.39575"
- xlink:href="#linearGradient3363"
- x2="-80.057777"
- x1="-134.50366"
- inkscape:collect="always"
- id="linearGradient3419"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.850959,0,0,1.175145,-306.6545,88.94309)" />
- <linearGradient
- id="linearGradient3376">
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop3377" />
- <stop
- style="stop-color:#d7dcef;stop-opacity:1.0000000;"
- offset="0.066731133"
- id="stop3378" />
- <stop
- style="stop-color:#7884b3;stop-opacity:1.0000000;"
- offset="0.70324141"
- id="stop3379" />
- <stop
- style="stop-color:#2b3b61;stop-opacity:1.0000000;"
- offset="0.96460676"
- id="stop3380" />
- <stop
- style="stop-color:#213256;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop3381" />
- </linearGradient>
- <linearGradient
- y2="730.78772"
- y1="569.56873"
- xlink:href="#linearGradient3376"
- x2="-91.829643"
- x1="-154.7914"
- inkscape:collect="always"
- id="linearGradient3418"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.868013,0,0,1.152056,-148.1712,37.18994)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3363"
- id="linearGradient4901"
- gradientUnits="userSpaceOnUse"
- x1="-83.203087"
- y1="652.68365"
- x2="-51.446705"
- y2="696.04785" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3376"
- id="linearGradient4903"
- gradientUnits="userSpaceOnUse"
- x1="-56.230511"
- y1="692.08044"
- x2="-80.301514"
- y2="657.42157" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3376"
- id="linearGradient4905"
- gradientUnits="userSpaceOnUse"
- x1="-56.230511"
- y1="692.08044"
- x2="-80.301514"
- y2="657.42157" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3376"
- id="linearGradient4907"
- gradientUnits="userSpaceOnUse"
- x1="-56.230511"
- y1="692.08044"
- x2="-80.301514"
- y2="657.42157" />
- <radialGradient
- xlink:href="#linearGradient3000"
- r="31.845842"
- id="radialGradient1971-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(2.157585,0.463481)"
- fy="1101.0496"
- fx="48.594395"
- cy="1101.0496"
- cx="48.594395" />
- <radialGradient
- xlink:href="#linearGradient3000"
- r="31.845842"
- id="radialGradient1908-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(2.157585,0.463481)"
- fy="1101.0496"
- fx="48.594395"
- cy="1101.0496"
- cx="48.594395" />
- <radialGradient
- xlink:href="#linearGradient3000"
- r="48.549095"
- id="radialGradient1955-1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.907187,0.524332)"
- fy="1017.3969"
- fx="75.537109"
- cy="1017.3969"
- cx="75.537109" />
- <linearGradient
- y2="1007.7199"
- y1="1007.7199"
- xlink:href="#linearGradient2991"
- x2="112.30373"
- x1="80.622375"
- id="linearGradient1956-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.905684,0.524746)" />
- <linearGradient
- y2="1019.9909"
- y1="991.43304"
- xlink:href="#linearGradient2979"
- x2="89.493149"
- x1="111.28992"
- id="linearGradient1957-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.905684,0.524746)" />
- <linearGradient
- y2="1005.4645"
- y1="1036.9353"
- xlink:href="#linearGradient2991"
- x2="91.326256"
- x1="97.777306"
- id="linearGradient1958-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.92902,0.518398)" />
- <linearGradient
- y2="716.89569"
- y1="704.06665"
- xlink:href="#linearGradient2984"
- x2="129.54399"
- x1="129.28658"
- id="linearGradient1962-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.369306,0.730297)" />
- <linearGradient
- y2="172.33038"
- y1="210.65846"
- xlink:href="#linearGradient2979"
- x2="79.453842"
- x1="85.997665"
- id="linearGradient1981-1"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5280"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.781362,0.561368)"
- x1="95.44516"
- y1="438.16623"
- x2="65.910606"
- y2="390.88043" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2984"
- id="linearGradient5282"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.964736,0.508974)"
- x1="52.588963"
- y1="404.27759"
- x2="87.982124"
- y2="522.2951" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5284"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.337132,0.747869)"
- x1="177.20853"
- y1="270.24692"
- x2="180.98833"
- y2="298.52386" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5286"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.977355,1.02317)"
- x1="216.47505"
- y1="198.10153"
- x2="171.147"
- y2="73.230858" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3000"
- id="linearGradient5288"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.816232,1.225143)"
- x1="146.52391"
- y1="200.60095"
- x2="139.02554"
- y2="76.863205" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3000"
- id="linearGradient5290"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.877312,0,0,1.35409,-9.949676,-15.93499)"
- x1="146.52391"
- y1="200.60095"
- x2="139.02554"
- y2="76.863205" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2984"
- id="linearGradient5292"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.847717,1.179639)"
- x1="233.42126"
- y1="50.769344"
- x2="231.59184"
- y2="147.83969" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5294"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.598277,0.625674)"
- x1="122.32335"
- y1="128.38135"
- x2="123.6971"
- y2="160.49329" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5296"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.606578,0.622441)"
- x1="121.56956"
- y1="158.70644"
- x2="122.9226"
- y2="190.33418" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3000"
- id="linearGradient5298"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(0.768115,1.301889)"
- x1="271.4765"
- y1="166.56679"
- x2="256.74417"
- y2="125.2625" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5300"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.015953,0,0,0.984297,-1.875,0.625)"
- x1="79.259674"
- y1="176.59102"
- x2="69.298241"
- y2="79.391563" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5302"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.015805,0.98444)"
- x1="131.51102"
- y1="65.556458"
- x2="99.187386"
- y2="100.41222" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2979"
- id="linearGradient5304"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.015953,0.984297)"
- x1="79.259674"
- y1="176.59102"
- x2="69.298241"
- y2="79.391563" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2991"
- id="linearGradient5306"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.046727,0.955359)"
- x1="52.874111"
- y1="167.85587"
- x2="48.997128"
- y2="77.001305" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2984"
- id="linearGradient5308"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(2.284372,0.437757)"
- x1="44.634335"
- y1="462.63409"
- x2="39.178116"
- y2="437.71384" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2984"
- id="linearGradient5310"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.306617,0.765335)"
- x1="59.820393"
- y1="85.529762"
- x2="61.891071"
- y2="199.20726" />
- <linearGradient
- id="linearGradient1694">
- <stop
- style="stop-color:#ffffff;stop-opacity:0.0000000;"
- offset="0.0000000"
- id="stop1695" />
- <stop
- style="stop-color:#ffffff;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1696" />
- </linearGradient>
- <linearGradient
- id="linearGradient1683">
- <stop
- style="stop-color:#68db0c;stop-opacity:1.0000000;"
- offset="0.0000000"
- id="stop1684" />
- <stop
- style="stop-color:#387606;stop-opacity:1.0000000;"
- offset="1.0000000"
- id="stop1685" />
- </linearGradient>
- <linearGradient
- y2="636.25543"
- y1="1035.3337"
- xlink:href="#linearGradient1683"
- x2="242.39842"
- x1="242.39842"
- inkscape:collect="always"
- id="linearGradient1686"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.475472,0.677749)" />
- <linearGradient
- y2="1038.9441"
- y1="635.74658"
- xlink:href="#linearGradient1683"
- x2="240.86183"
- x1="240.86183"
- inkscape:collect="always"
- id="linearGradient1690"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.475472,0.677749)" />
- <linearGradient
- y2="646.06177"
- y1="827.01349"
- xlink:href="#linearGradient1694"
- x2="244.85980"
- x1="244.85980"
- inkscape:collect="always"
- id="linearGradient1692"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.479463,0.675921)" />
- <linearGradient
- y2="-492.41382"
- y1="-492.41382"
- xlink:href="#linearGradient1683"
- x2="-93.992599"
- x1="303.90472"
- inkscape:collect="always"
- id="linearGradient1700"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-4.959102e-18,1.475472,-0.677749,-2.277933e-18,0.000000,0.000000)" />
- <linearGradient
- y2="-477.69669"
- y1="-477.69666"
- xlink:href="#linearGradient1683"
- x2="315.00735"
- x1="-92.987160"
- inkscape:collect="always"
- id="linearGradient1701"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-4.959102e-18,1.475472,-0.677749,-2.277933e-18,0.000000,0.000000)" />
- <linearGradient
- y2="-485.28973"
- y1="-485.28952"
- xlink:href="#linearGradient1694"
- x2="-170.00552"
- x1="112.06259"
- inkscape:collect="always"
- id="linearGradient1705"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(-4.959101e-18,1.475473,-0.677749,-2.277931e-18,0.000000,0.000000)" />
- <linearGradient
- y2="269.54962"
- y1="269.54971"
- xlink:href="#linearGradient1694"
- x2="112.88631"
- x1="-175.31381"
- inkscape:collect="always"
- id="linearGradient1744"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1.475473,0.677749,0,0,0)" />
- <linearGradient
- y2="-435.86899"
- y1="-435.86899"
- xlink:href="#linearGradient1683"
- x2="313.85217"
- x1="-97.308411"
- inkscape:collect="always"
- id="linearGradient1745"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)" />
- <linearGradient
- y2="-418.63443"
- y1="-418.63443"
- xlink:href="#linearGradient1683"
- x2="-90.248940"
- x1="309.53091"
- inkscape:collect="always"
- id="linearGradient1746"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)" />
- <linearGradient
- y2="-435.86899"
- y1="-435.86899"
- xlink:href="#linearGradient1683"
- x2="313.85217"
- x1="-97.308411"
- inkscape:collect="always"
- id="linearGradient1745-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)" />
- <linearGradient
- y2="-418.63443"
- y1="-418.63443"
- xlink:href="#linearGradient1683"
- x2="-90.24894"
- x1="309.53091"
- inkscape:collect="always"
- id="linearGradient1746-7"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,1.475472,-0.677749,0,0,0)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient1694"
- id="linearGradient5503"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,-1.475473,0.677749,0,0,0)"
- x1="-175.31381"
- y1="269.54971"
- x2="112.88631"
- y2="269.54962" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.7"
- inkscape:cx="677.93995"
- inkscape:cy="556.59527"
- inkscape:document-units="mm"
- inkscape:current-layer="layer1"
- showgrid="false"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:window-width="1920"
- inkscape:window-height="1043"
- inkscape:window-x="1920"
- inkscape:window-y="0"
- inkscape:window-maximized="1">
- <sodipodi:guide
- position="170.46727,88.06845"
- orientation="0,1"
- id="guide5312"
- inkscape:locked="false" />
- <sodipodi:guide
- position="228.6756,24.190476"
- orientation="0,1"
- id="guide5338"
- inkscape:locked="false" />
- </sodipodi:namedview>
- <metadata
- id="metadata5">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g
- inkscape:label="Calque 1"
- inkscape:groupmode="layer"
- id="layer1"
- transform="translate(0,-87)">
- <g
- id="g1020"
- transform="matrix(0.09982799,0,0,0.10731869,149.66414,198.86087)">
- <g
- style="font-size:12px;stroke:#000000;stroke-width:3.75;stroke-linejoin:bevel"
- id="g1178">
- <g
- style="stroke:#000000;stroke-width:3.75;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- id="g1171">
- <path
- transform="translate(-6.818047,55.51842)"
- style="fill:#383838;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- id="path1156"
- d="M 79.8686,270.134 H 432.459 l 60.389,60.389 -443.1736,2.922 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#383838;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path1157"
- d="m 42.8563,387.989 v 15.584 l 442.1987,-2.922 v -14.61 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#383838;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path1161"
- d="m 73.0505,325.653 c -4.5804,-2.238 -1.079,-5.305 -0.974,-5.844 1.948,0 353.5645,-0.974 353.5645,-0.974 0.395,0.27 3.606,2.363 0,5.844 -6.818,0.974 -352.5905,2.922 -352.5905,0.974 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="stroke:#000000;stroke-width:3.75;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- id="g1168">
- <path
- style="fill:#383838;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- id="path1162"
- d="m 71.1025,318.835 -1.948,-207.464 c 0,0 7.7921,-17.5319 18.5061,-18.5059 10.7141,-0.974 331.1624,0.974 331.1624,0.974 0,0 5.844,1.948 6.818,8.7659 0.974,6.818 -0.974,215.256 -0.974,215.256 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:url(#linearGradient1167);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccccccc"
- id="path1163"
- d="m 87.6606,114.293 c 0,0 3.8961,-7.792 10.7141,-7.792 6.8183,0 301.9423,0 301.9423,0 0,0 8.766,5.844 8.766,11.688 0,5.844 0,181.166 0,181.166 0,0 0.974,6.818 -9.74,7.792 -10.714,0.974 -302.9163,-1.948 -302.9163,-1.948 0,0 -8.7661,-0.974 -9.7401,-5.844 2.922,-8.766 0,-178.244 0.974,-185.062 z"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <g
- style="font-size:12px;stroke:#000000;stroke-width:3.75;stroke-linejoin:bevel"
- id="g1175">
- <path
- style="fill:#595959;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- id="path1158"
- d="m 75.9725,330.523 346.7465,0.974 42.856,42.856 -408.1086,-1.948 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#4c4c4d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path1159"
- d="m 56.4924,372.405 v 7.792 H 464.601 v -5.844 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="font-size:12px"
- id="g1206">
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1203"
- d="m 76.25,338.125 c 1.25,0 350,2.5 350,2.5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1204"
- d="M 72.5,350 H 436.25"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1205"
- d="m 66.875,360 381.25,1.875 -1.25,0.625"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="font-size:12px"
- id="g1210">
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1198"
- d="m 111.25,333.75 -13.125,36.875 v 0"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1199"
- d="m 170,334.375 c 0,0 -8.75,35 -8.75,35.625"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1200"
- d="m 377.5,333.75 22.5,37.5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1201"
- d="m 316.25,332.5 5.625,36.875"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1202"
- d="m 246.875,334.375 1.875,36.25"
- inkscape:connector-curvature="0" />
- </g>
- <path
- style="fill:#ffffff;fill-opacity:0.5;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cccc"
- id="path579"
- d="m 93.3544,261.076 c 0,-1.582 -3.1645,-132.911 6.3291,-143.987 14.2405,-4.747 221.5195,-1.583 221.5195,-1.583 0,0 -226.2663,3.165 -227.8486,145.57 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffffff;fill-opacity:0.31111103;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path580"
- d="m 170.886,367.089 c 0,0 264.241,11.076 264.241,-1.583 0,-12.658 -15.823,-31.645 -15.823,-31.645 0,0 18.987,31.645 -248.418,33.228 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g1066"
- transform="matrix(0.10316603,0,0,0.09367103,228.45661,204.95054)">
- <path
- transform="translate(8.75,21.25)"
- style="fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path762"
- d="m 53.75,166.25 208.75,52.5 C 318.333,162.917 370.417,137.083 430,107.5 L 213.75,55 c -57.083,24.5833 -110.417,64.167 -160,111.25 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(8.75,21.25)"
- style="fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path763"
- d="m 51.25,166.25 -2.5,191.25 208.75,61.25 c 0,0 5,-201.25 3.75,-201.25 -1.25,0 -212.5,-50 -210,-51.25 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(8.75,21.25)"
- style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path764"
- d="M 260,220 C 277.5,193.75 416.25,106.25 428.75,108.75 l -6.25,192.5 -165,120 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(8.75,21.25)"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path766"
- d="m 101.25,153.75 c 39.167,-13.333 97.083,-37.917 113.75,-55 l 123.75,35 c -33.75,18.75 -67.5,35 -87.5,63.75 -13.75,-5 -141.25,-38.75 -150,-43.75 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(8.75,21.25)"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path767"
- d="m 213.75,98.75 60,-77.5 100,25 -35,87.5 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(8.75,21.25)"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path768"
- d="m 56.25,316.25 196.25,61.25 -1.25,35 -195,-58.75 c -2.5,-1.25 0,-32.5 0,-37.5 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(8.75,21.25)"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path769"
- d="m 56.25,308.75 c 3.75,1.25 195,62.5 195,60 0,-2.5 1.25,-36.25 1.25,-37.5 L 57.5,272.5 Z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path789"
- d="m 66.9435,371.499 5.3863,-10.003 1.5389,11.542 v 0.77"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cc"
- id="path790"
- d="m 69.6665,366.35 c 1.5391,0.769 2.9001,0.946 2.9001,0.946"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cccc"
- id="path791"
- d="m 79.7286,361.97 -3.6695,6.451 3.6695,0.475 -0.0589,5.681"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="ccc"
- id="path792"
- d="m 70.1393,318.111 -0.8874,8.759 3.0779,1.065"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="ccc"
- id="path793"
- d="m 74.6381,319.945 c 0,0 -0.7694,7.695 -0.7694,8.464 0,0.77 4.6168,1.599 4.6168,1.599"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cc"
- id="path794"
- d="m 74.6381,320.715 5.2867,1.737"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cc"
- id="path795"
- d="m 73.8687,324.86 4.9517,1.539"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cc"
- id="path796"
- d="m 81.2284,323.023 4.655,1.086"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cc"
- id="path797"
- d="m 83.2608,323.812 -0.199,7.556"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:0.25;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path567"
- d="m 275.316,425.633 c 6.33,-1.582 143.988,-93.355 147.152,-107.595 3.165,-14.241 7.912,-177.215 6.329,-177.215 -1.582,0 20.57,196.202 -153.481,284.81 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path568"
- d="m 68.038,278.481 c 3.1645,-7.911 -1.5823,-68.038 1.5823,-71.203 3.1645,-3.164 158.2277,33.228 158.2277,33.228 0,0 -147.1518,-41.139 -159.81,37.975 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:0.247059;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path569"
- d="m 223.101,126.582 c 1.583,0 117.089,26.899 104.431,31.646 -12.659,4.747 -63.291,39.557 -63.291,39.557 0,0 98.101,-47.469 -41.14,-71.203 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g4737"
- transform="matrix(0.17183189,0,0,0.20948637,23.483871,201.62084)">
- <path
- transform="matrix(0.940119,-0.124165,0.376587,0.821327,-213.4198,-213.7047)"
- style="fill:url(#radialGradient1971);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37295571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path2998"
- d="m 173.55663,510.3158 c 0.008,8.1529 -30.75695,14.76303 -68.7101,14.76303 -37.953155,0 -68.718039,-6.61013 -68.710109,-14.76303 -0.0079,-8.1529 30.756954,-14.76303 68.710109,-14.76303 37.95315,0 68.71803,6.61013 68.7101,14.76303 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.711735,0.102817,-0.102817,1.711735,-8.017553,-689.7307)"
- style="fill:url(#radialGradient1908);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.19681364;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3009"
- d="m 173.55663,510.3158 c 0.008,8.1529 -30.75695,14.76303 -68.7101,14.76303 -37.953155,0 -68.718039,-6.61013 -68.710109,-14.76303 -0.0079,-8.1529 30.756954,-14.76303 68.710109,-14.76303 37.95315,0 68.71803,6.61013 68.7101,14.76303 z"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(0,-75)"
- id="g1942">
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.19607843"
- id="path1941"
- d="m 223.80016,284.71299 c -11.51269,-0.95939 -19.18781,3.59769 -29.74109,3.35786 -10.55329,-0.23985 -20.78677,-2.71827 -33.57862,-2.87817 -12.79185,-0.15989 -19.34768,7.75505 -41.25375,3.35786 -5.11914,-1.02756 14.95049,-7.27537 10.55327,-11.51267 -4.39721,-4.23731 -27.5025,-3.91751 -40.77407,-12.95177 -5.572342,-3.79323 11.51269,-7.83503 12.47208,-15.82993"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.19607843"
- id="path1940"
- d="m 81.81048,305.81956 c -7.675106,-3.03806 -30.134398,-8.81347 -32.139554,-11.99237 -3.277913,-5.19669 30.69974,-1.22273 11.992372,-10.55329 -8.105029,-4.0425 -39.334974,-2.15864 -34.058335,-5.75635 5.276656,-3.59771 51.571914,-7.16133 63.004637,-12.43797 11.43273,-5.27663 5.649924,-14.62362 8.983687,-22.61383"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.606958,-0.180571,0.108339,1.105737,-118.8948,-254.5933)"
- style="fill:url(#radialGradient1955);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25180706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3228"
- d="m 236.65561,533.45416 c 0,14.05889 -41.45494,25.45586 -92.59221,25.45586 -51.137265,0 -92.592209,-11.39697 -92.592209,-25.45586 0,-14.05889 41.454944,-25.45586 92.592209,-25.45586 51.13727,0 92.59221,11.39697 92.59221,25.45586 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.71482,0,0,1.71482,-61.76929,-610.3221)"
- style="fill:url(#linearGradient1956);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1957);stroke-width:1.09340906;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1"
- id="path3141"
- d="m 187.375,521.03125 -33.1875,4.34375 26.1875,11.1875 33.09375,-7.71875 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.71482,0,0,1.71482,-61.76929,-611.731)"
- style="fill:url(#linearGradient1958);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.54670453;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1"
- id="path3140"
- d="m 187.375,521.03125 -33.1875,4.34375 26.1875,11.1875 33.09375,-7.71875 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#484c5f;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path3230"
- d="m 225.56792,208.82911 c -11.51269,-0.95939 -19.18781,3.59769 -29.74109,3.35786 -10.55329,-0.23985 -20.78677,-2.71827 -33.57862,-2.87817 -12.79185,-0.15989 -19.34768,7.75505 -41.25375,3.35786 -5.11914,-1.02756 14.95049,-7.27537 10.55327,-11.51267 -4.39721,-4.23731 -27.5025,-3.91751 -40.774064,-12.95177 -5.572342,-3.79323 11.512684,-7.83503 12.472074,-15.82993"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#484c5f;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path3231"
- d="m 83.578246,229.93568 c -7.675106,-3.03806 -30.134398,-8.81347 -32.139554,-11.99237 -3.277913,-5.19669 30.69974,-1.22273 11.992372,-10.55329 -8.105029,-4.0425 -39.334974,-2.15864 -34.058335,-5.75635 5.276656,-3.59771 51.571914,-7.16133 63.004637,-12.43797 11.432724,-5.27663 5.649924,-14.62362 8.983684,-22.61383"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:url(#linearGradient1959);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3010"
- d="m 64.332013,228.80006 1.745567,16.94802 38.06993,19.53072 125.63079,-22.32084 0.95174,-7.99115 -51.67286,-21.48368 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:#000000;fill-opacity:0.19607843;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3013"
- d="m 66.307606,229.92236 1.436985,14.45384 36.581949,18.89262 123.98789,-21.87248 0.51127,-5.31155 -124.37135,19.97716 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:url(#linearGradient1960);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3014"
- d="m 70.98008,230.35875 31.42014,20.07397 c 1.89101,-23.85603 116.37082,-8.00049 102.1154,-23.56509 l -25.31066,-11.34616 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:url(#linearGradient1961);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3135"
- d="m 260.74545,220.12719 c -6.45774,0.5736 -11.75187,6.50196 -25.04937,0.50971 -12.96121,-5.84069 -11.90811,-4.65879 -11.23209,-7.94799 0.59243,-2.88249 4.59769,-11.2772 19.47029,-10.76511 14.79403,0.50937 23.66829,17.5943 16.81117,18.20339 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.71482,0,0,1.71482,-61.76929,-606.9641)"
- style="fill:url(#linearGradient1962);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.19681366;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3233"
- d="m 183.22627,519.18774 c 0,1.85392 -2.81794,3.35682 -6.29403,3.35682 -3.4761,0 -6.29404,-1.5029 -6.29404,-3.35682 0,-1.85392 2.81794,-3.35682 6.29404,-3.35682 3.47609,0 6.29403,1.5029 6.29403,3.35682 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- transform="translate(0,75)"
- id="g1909">
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient1917);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path352"
- d="m 168.65587,72.330023 56.54429,3.87882 L 221.7842,198.54725 169.31652,206.3112 98.77599,189.11266 97.260299,80.427198 Z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient1918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path353"
- d="m 102.89328,117.91922 0.89443,66.3121 59.24054,12.30015 -0.4652,-86.06109 c -19.26492,-16.892053 -39.77985,23.71589 -59.66977,7.44884 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient1919);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path1853"
- d="m 100.64328,114.39526 0.96136,73.29147 63.67361,13.59474 -0.50001,-95.11904 c -20.70655,-18.66995 -42.75664,26.21199 -64.13496,8.23283 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient1920);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path2987"
- d="m 171.34995,74.897795 -0.87277,73.182045 c 29.33121,-32.58838 28.29052,14.33468 50.11006,-4.3824 l 2.61831,-65.671505 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient1921);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:0.39215686"
- id="path3005"
- d="m 177.48285,82.517255 -0.43638,13.582731 40.95474,1.696523 0.0191,-12.906594 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient1922);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:0.39215686"
- id="path3008"
- d="m 177.47737,100.94619 -0.43639,14.5909 40.55316,0.35501 -0.005,-13.56787 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.1995,0,0,1,-43.46294,-75)"
- style="fill:url(#linearGradient1923);fill-opacity:1;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1823"
- d="m 217.5,164.375 c 0,17.2589 -8.25475,31.25 -18.4375,31.25 -10.18275,0 -18.4375,-13.9911 -18.4375,-31.25 0,-17.2589 8.25475,-31.25 18.4375,-31.25 10.18275,0 18.4375,13.9911 18.4375,31.25 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- transform="translate(150)"
- id="g1972">
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient1981);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path354"
- d="m 68.78151,152.51618 -11.29487,39.91256 v 6.07614 l 24.304541,12.15228 36.456799,-3.78926 v -6.07614 l -32.475964,-8.97545 8.171427,-41.92051 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:#000000;fill-opacity:0.31097562;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path355"
- d="m 68.77909,153.94752 5.2057,1.53108 -11.33006,38.88969 18.066866,8.26788 0.306215,6.43056 -22.966351,-11.02382 0.30622,-5.81815 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient1982);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1983);stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path1828"
- d="m 24.2993,63.8626 109.37042,2.449741 6.07613,97.218149 -109.37041,12.15226 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient1984);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path356"
- d="m 26.1743,63.2376 109.37042,2.449741 6.07613,97.218149 -109.37041,12.15226 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient1985);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.19607843"
- id="path357"
- d="m 35.99156,72.467003 5.24711,87.636147 90.94974,-7.49521 -3.49806,-79.564398 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient1986);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path361"
- d="m 64.18582,194.36829 19.904163,-1.22488 28.034427,7.48685 -29.577302,1.69968 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient1871);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3003"
- d="m 41.63693,76.16683 2.46861,48.13766 c 12.54871,-27.566008 76.32083,24.48028 82.08089,-12.34298 L 124.335,77.401123 Z"
- inkscape:connector-curvature="0" />
- <rect
- y="33.75"
- x="-85.625"
- width="6.875"
- style="fill:none;fill-opacity:0.75;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- ry="1.875"
- rx="6.165308"
- id="rect1924"
- height="1.875" />
- </g>
- </g>
- <g
- id="g1103"
- transform="matrix(0.13389379,0,0,0.08728808,93.918716,127.54975)">
- <path
- transform="matrix(1.23188,0,0,1.265193,-38.04148,28.24585)"
- style="fill:#b3b3b3;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.00377989;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path747"
- d="M 53.75,166.25 C 41.25,202.5 45,230 51.25,280 c 16.25,7.5 332.5,6.25 358.75,-3.75 12.5,-17.5 6.25,-81.25 2.5,-111.25 -11.25,-3.75 -358.75,1.25 -358.75,1.25 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.23188,0,0,1.265193,-50.36028,-90.36602)"
- style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.00377989;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1"
- id="path749"
- d="m 62.5,260 c 1.25,0 81.25,-112.5 81.25,-112.5 H 372.5 l 50,111.25 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.23188,0,0,1.265193,-76.53772,-88.78452)"
- style="fill:#e63559;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.00377989;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccc"
- id="path750"
- d="m 95,303.75 c 1.25,-23.75 35,-23.75 36.25,0 -1.25,22.5 -35,25 -36.25,0 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.23188,0,0,1.265193,-8.784339,-88.78452)"
- style="fill:#9f5559;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.00377989;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccc"
- id="path751"
- d="m 95,303.75 c 1.25,-23.75 35,-23.75 36.25,0 -1.25,22.5 -35,25 -36.25,0 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.23188,0,0,1.265193,63.58859,-88.78452)"
- style="fill:#e63559;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.00377989;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccc"
- id="path752"
- d="m 95,303.75 c 1.25,-23.75 35,-23.75 36.25,0 -1.25,22.5 -35,25 -36.25,0 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.23188,0,0,1.265193,134.4217,-90.36602)"
- style="fill:#9f5559;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.00377989;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="ccc"
- id="path753"
- d="m 95,303.75 c 1.25,-23.75 35,-23.75 36.25,0 -1.25,22.5 -35,25 -36.25,0 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path754"
- d="m 453.75,370.625 -1.25,-11.875 -6.25,5.625 -7.5,-5.625 v 12.5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cccc"
- id="path756"
- d="m 430,360 h -13.75 v 11.25 h 12.5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path757"
- d="m 416.25,365 h 7.5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path758"
- d="m 397.5,360 v 12.5 l 10.625,-3.125 0.625,-7.5 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path759"
- d="M 378.75,360 H 390 l 0.625,11.875 -11.875,0.625 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-80.00004,1.875)"
- style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="ccccc"
- id="path761"
- d="m 453.75,370.625 -1.25,-11.875 -6.25,5.625 -7.5,-5.625 v 12.5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:0.25;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path563"
- d="m 196.203,101.266 c 0,0 189.873,0 199.367,1.582 9.493,1.582 52.215,121.836 52.215,121.836 0,0 -44.304,-112.342 -251.582,-123.418 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffffff;fill-opacity:0.496296;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- sodipodi:nodetypes="cccc"
- id="path564"
- d="m 310.127,248.418 c 0,0 143.987,-14.241 151.898,6.329 6.329,20.569 4.747,98.101 4.747,96.519 -12.658,-17.405 18.988,-110.76 -156.645,-102.848 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- inkscape:label="Layer 1"
- id="layer1-3"
- transform="matrix(0.07833135,0,0,0.096746,230.149,110.70563)">
- <g
- transform="matrix(2.811166,0,0,2.811166,777.9806,-1529.407)"
- id="g3389">
- <g
- transform="matrix(0.453022,0.02194121,0,0.459825,-103.5561,277.0976)"
- id="g3233">
- <rect
- y="785.48676"
- x="-1104.4669"
- width="150.10487"
- transform="matrix(0.903403,-0.428793,0.815123,0.579288,0,0)"
- style="fill:#000000;fill-opacity:0.040625;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="26.292253"
- id="rect3234"
- height="228.56616" />
- <path
- style="fill:#000000;fill-opacity:0.040625;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3235"
- d="m -233.6262,868.73161 c -16.12205,1.89283 -29.58611,11.96549 -44.35974,17.92487 -21.16105,10.08205 -42.39731,20.07971 -63.29651,30.66888 -9.93127,6.02065 -8.87942,20.6515 -0.0516,27.13701 49.25787,35.61996 99.1325,70.57343 148.83288,105.64423 17.39098,9.7016 39.68512,8.5007 56.58133,-1.7192 27.97963,-13.2973 56.191198,-26.2685 83.704342,-40.4307 9.749427,-5.4034 9.656095,-19.61755 1.375925,-26.30864 -20.133851,-15.41395 -41.409486,-29.53519 -61.956917,-44.48637 -29.86456,-20.98075 -59.4191,-42.51013 -89.61853,-62.94951 -9.45889,-5.13684 -20.622,-6.2664 -31.21115,-5.48057 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:0.040625;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3236"
- d="m -233.68687,864.77149 c -21.75432,3.88628 -40.34489,16.81287 -60.4698,25.2106 -17.41378,8.66853 -35.56015,16.21379 -52.06133,26.42194 -11.23719,9.98089 -5.2275,29.14718 7.50272,34.87316 48.61947,34.67848 97.15042,69.58481 146.37988,103.33761 20.19435,10.5413 44.8577,6.2222 63.70229,-5.1926 27.21436,-13.1909 55.092185,-25.3737 81.347306,-40.2888 11.279618,-9.25912 6.372913,-28.49746 -6.119927,-34.22596 -49.164709,-35.30766 -98.335289,-70.74159 -148.393949,-104.70267 -9.89944,-4.78988 -21.01165,-6.0261 -31.88719,-5.43328 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:0.040625;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3237"
- d="m -233.72754,860.83701 c -26.3969,5.59453 -49.36464,20.65111 -73.90391,31.18642 -14.56806,7.27411 -30.12705,13.46516 -42.94261,23.55368 -11.40612,12.8482 -3.16019,33.81196 11.38009,40.33962 48.84257,34.70927 97.52174,69.74097 147.17665,103.19667 22.31026,10.5737 48.55517,4.3154 68.87805,-7.8523 26.908978,-13.2049 55.047916,-24.7058 80.162106,-41.0169 11.623482,-12.15045 4.46597,-33.34254 -9.938778,-39.83263 -49.580368,-35.14547 -98.483988,-71.45073 -149.375598,-104.60597 -9.89342,-4.26921 -20.75698,-5.3577 -31.436,-4.96859 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:0.040625;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3238"
- d="m -234.18606,856.97474 c -30.49504,7.39512 -57.51701,24.10535 -85.94557,36.80625 -12.29075,6.35562 -26.20034,11.63001 -35.35314,22.2906 -10.15572,15.25784 -0.52494,36.61986 15.08283,43.9196 49.13777,34.70509 97.78291,70.16591 147.99713,103.29601 24.24928,10.6369 52.07975,3.1477 73.84046,-9.6797 26.693472,-12.8719 54.093484,-24.7009 78.909544,-41.0078 12.653237,-14.4957 4.641192,-38.49763 -11.9375,-46.15621 -50.114794,-35.39943 -99.335404,-72.32648 -151.261964,-104.97015 -9.96167,-3.84756 -20.72789,-4.85732 -31.33179,-4.4986 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#000000;fill-opacity:0.040625;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3239"
- d="m -234.63878,853.11788 c -34.20776,9.24698 -65.18172,27.1142 -97.02727,42.17372 -13.69544,6.72986 -30.74271,15.46743 -31.75398,32.76378 -0.96543,16.30306 10.33608,30.63259 24.28742,37.78227 48.92377,34.31485 96.95089,70.08915 147.44676,101.95845 26.25214,10.2744 55.33067,1.2121 78.56878,-12.2314 26.215216,-12.9203 53.526109,-24.2695 77.384543,-41.3531 12.70406,-16.41568 4.336399,-42.28299 -13.65625,-51.06247 -50.333177,-35.70971 -100.013773,-72.46359 -152.218753,-105.40625 -10.59811,-3.73702 -21.83056,-5.06477 -33.03125,-4.625 z"
- inkscape:connector-curvature="0" />
- </g>
- <ellipse
- transform="matrix(0.411506,-0.03969094,0,0.429985,-113.0543,239.9345)"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3241"
- cx="-333.53659"
- cy="1015.192"
- rx="21.57202"
- ry="15.930106" />
- <ellipse
- transform="matrix(0.411506,0.00786386,0,0.429985,-44.24608,309.7667)"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3242"
- cx="-333.53659"
- cy="1015.192"
- rx="21.57202"
- ry="15.930106" />
- <ellipse
- transform="matrix(0.411506,-0.03969094,0,0.429985,0.480408,274.0722)"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3243"
- cx="-333.53659"
- cy="1015.192"
- rx="21.57202"
- ry="15.930106" />
- <path
- transform="matrix(0.514383,0,0,0.515177,-93.06976,213.1349)"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:27.92499924;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3244"
- d="m -208.01276,671.68312 c -1.28838,0.12237 -2.49907,0.48252 -3.59375,1.03125 -4.31908,2.16502 -97.00359,48.59286 -99.5625,49.875 -0.27723,0.1232 -0.54812,0.25742 -0.8125,0.40625 -0.006,0.003 -0.5625,0.28125 -0.5625,0.28125 0,0.0218 0.0308,0.10233 0.0312,0.125 -3.80233,2.49656 -6.1875,7.67038 -6.1875,15.40625 v 146.90625 c 0,16.75052 10.82923,38.32065 24.25,48.34375 l 110.59375,82.59378 c 6.43206,4.8037 12.20246,5.9619 16.53125,4.125 0.0156,0.012 0.0472,0.082 0.0625,0.094 l 0.46875,-0.2187 0.0625,-0.031 c 0.0201,-0.01 0.0425,-0.021 0.0625,-0.031 l 99.937504,-49.96878 c 4.381188,-2.18994 7.093752,-7.74973 7.09375,-16.125 v -146.875 c 0,-16.75052 -10.797984,-38.32064 -24.21875,-48.34375 L -194.45026,676.68312 c -5.03278,-3.75867 -9.69734,-5.36712 -13.5625,-5 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(0.514383,0,0,0.515177,-93.06976,213.1349)"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3418);stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3245"
- d="m -208.01275,671.68311 c -1.28838,0.12237 -2.49907,0.48252 -3.59375,1.03125 -4.31908,2.16502 -97.0036,48.59286 -99.56251,49.875 -0.27723,0.1232 -0.54812,0.25742 -0.8125,0.40625 -0.006,0.003 -0.5625,0.28125 -0.5625,0.28125 0,0.0218 0.0308,0.10233 0.0312,0.125 -3.80233,2.49656 -6.1875,7.67038 -6.1875,15.40625 v 146.90625 c 0,16.75052 10.82923,38.32065 24.25,48.34375 l 110.59376,82.59379 c 6.43206,4.8036 12.20246,5.9619 16.53125,4.125 0.0156,0.012 0.0472,0.082 0.0625,0.094 l 0.46875,-0.2187 0.0625,-0.031 c 0.0201,-0.01 0.0425,-0.021 0.0625,-0.031 l 99.937494,-49.96879 c 4.38119,-2.18994 7.09375,-7.74973 7.09375,-16.125 v -146.875 c 0,-16.75052 -10.79798,-38.32064 -24.21875,-48.34375 L -194.45025,676.68311 c -5.03279,-3.75867 -9.69735,-5.36712 -13.5625,-5 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(0.514383,0,0,0.515177,-10.40857,186.8502)"
- style="fill:url(#linearGradient3419);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="ccccsccsc"
- id="path3247"
- d="m -355.1696,727.65242 110.60132,82.60102 c 13.42077,10.0231 24.22521,31.57732 24.22521,48.32784 v 146.90032 c 0,8.3753 -2.69863,13.9218 -7.07981,16.1118 l -100.55513,50.2625 c -13.42077,-10.0231 -145.25623,-280.85576 -145.25623,-297.60628 0,0 96.54054,-48.37074 100.91925,-50.56565 4.3787,-2.1949 10.43501,-1.04311 17.14539,3.96845 z"
- inkscape:connector-curvature="0" />
- <rect
- y="1117.5894"
- x="-598.33411"
- width="198.51288"
- transform="matrix(0.412131,0.30827,0,0.515177,-10.40857,186.8502)"
- style="fill:url(#linearGradient3420);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="30.235592"
- id="rect3248"
- height="207.37149" />
- <g
- transform="matrix(0.08788079,0.06194025,0,0.09228005,-180.6689,682.6906)"
- style="opacity:0.5276074"
- id="g3249">
- <rect
- y="358.73883"
- x="-650.47931"
- width="22.56765"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="11.283825"
- id="rect3250"
- height="155.31854" />
- <rect
- y="314.26727"
- x="-609.41132"
- width="22.56765"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="11.730078"
- id="rect3251"
- height="244.26164" />
- <rect
- y="293.69089"
- x="-568.34338"
- width="22.56765"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="11.231586"
- id="rect3252"
- height="285.4144" />
- <rect
- y="285.06207"
- x="-528.60291"
- width="25.222668"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="10.970386"
- id="rect3253"
- height="302.67203" />
- <rect
- y="358.7388"
- x="-404.07144"
- width="22.56765"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="11.283825"
- id="rect3254"
- height="155.31854" />
- <rect
- y="314.26727"
- x="-445.1394"
- width="22.56765"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="11.730078"
- id="rect3255"
- height="244.26164" />
- <rect
- y="293.69089"
- x="-486.20737"
- width="22.56765"
- style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="11.231586"
- id="rect3256"
- height="285.4144" />
- </g>
- <rect
- y="782.72504"
- x="-165.91295"
- width="91.999016"
- transform="matrix(0.467888,-0.214037,0,0.515177,-93.06976,213.1349)"
- style="fill:url(#linearGradient3421);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3422);stroke-width:3.93191195;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="10.120958"
- id="rect3257"
- height="30.430248" />
- <rect
- y="822.65796"
- x="-165.91237"
- width="91.998665"
- transform="matrix(0.467888,-0.214037,0,0.515177,-93.06976,213.1349)"
- style="fill:url(#linearGradient3423);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3424);stroke-width:3.93190479;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- ry="10.120958"
- id="rect3258"
- height="30.430248" />
- <circle
- transform="matrix(0.131099,-0.05353513,0,0.117485,-120.7725,599.421)"
- style="fill:url(#linearGradient4901);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4903);stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3259"
- cx="-67.70295"
- cy="678.0047"
- r="26.550177" />
- <circle
- transform="matrix(0.131099,-0.05353513,0,0.117485,-120.7725,607.2711)"
- style="fill:url(#linearGradient3427);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4905);stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3260"
- cx="-67.70295"
- cy="678.0047"
- r="26.550177" />
- <circle
- transform="matrix(0.131099,-0.05353513,0,0.117485,-120.7725,615.1212)"
- style="fill:url(#radialGradient3429);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4907);stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3261"
- cx="-67.70295"
- cy="678.0047"
- r="26.550177" />
- <circle
- transform="matrix(0.131099,-0.05353513,0,0.117485,-120.7725,622.9712)"
- style="fill:url(#radialGradient3431);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3432);stroke-width:10.36981297;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dashoffset:0;stroke-opacity:1"
- id="path3262"
- cx="-67.70295"
- cy="678.0047"
- r="26.550177" />
- </g>
- </g>
- <g
- id="g4737-8"
- transform="matrix(0.13615826,0,0,0.18031739,90.056157,202.84584)">
- <path
- transform="matrix(0.940119,-0.124165,0.376587,0.821327,-213.4198,-213.7047)"
- style="fill:url(#radialGradient1971-5);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.37295571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path2998-7"
- d="m 173.55663,510.3158 c 0.008,8.1529 -30.75695,14.76303 -68.7101,14.76303 -37.953155,0 -68.718039,-6.61013 -68.710109,-14.76303 -0.0079,-8.1529 30.756954,-14.76303 68.710109,-14.76303 37.95315,0 68.71803,6.61013 68.7101,14.76303 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.711735,0.102817,-0.102817,1.711735,-8.017553,-689.7307)"
- style="fill:url(#radialGradient1908-9);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.19681364;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3009-9"
- d="m 173.55663,510.3158 c 0.008,8.1529 -30.75695,14.76303 -68.7101,14.76303 -37.953155,0 -68.718039,-6.61013 -68.710109,-14.76303 -0.0079,-8.1529 30.756954,-14.76303 68.710109,-14.76303 37.95315,0 68.71803,6.61013 68.7101,14.76303 z"
- inkscape:connector-curvature="0" />
- <g
- transform="translate(0,-75)"
- id="g1942-2">
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.19607843"
- id="path1941-0"
- d="m 223.80016,284.71299 c -11.51269,-0.95939 -19.18781,3.59769 -29.74109,3.35786 -10.55329,-0.23985 -20.78677,-2.71827 -33.57862,-2.87817 -12.79185,-0.15989 -19.34768,7.75505 -41.25375,3.35786 -5.11914,-1.02756 14.95049,-7.27537 10.55327,-11.51267 -4.39721,-4.23731 -27.5025,-3.91751 -40.77407,-12.95177 -5.572342,-3.79323 11.51269,-7.83503 12.47208,-15.82993"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.19607843"
- id="path1940-2"
- d="m 81.81048,305.81956 c -7.675106,-3.03806 -30.134398,-8.81347 -32.139554,-11.99237 -3.277913,-5.19669 30.69974,-1.22273 11.992372,-10.55329 -8.105029,-4.0425 -39.334974,-2.15864 -34.058335,-5.75635 5.276656,-3.59771 51.571914,-7.16133 63.004637,-12.43797 11.43273,-5.27663 5.649924,-14.62362 8.983687,-22.61383"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.606958,-0.180571,0.108339,1.105737,-118.8948,-254.5933)"
- style="fill:url(#radialGradient1955-1);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.25180706;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3228-3"
- d="m 236.65561,533.45416 c 0,14.05889 -41.45494,25.45586 -92.59221,25.45586 -51.137265,0 -92.592209,-11.39697 -92.592209,-25.45586 0,-14.05889 41.454944,-25.45586 92.592209,-25.45586 51.13727,0 92.59221,11.39697 92.59221,25.45586 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.71482,0,0,1.71482,-61.76929,-610.3221)"
- style="fill:url(#linearGradient1956-2);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1957-9);stroke-width:1.09340906;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1"
- id="path3141-7"
- d="m 187.375,521.03125 -33.1875,4.34375 26.1875,11.1875 33.09375,-7.71875 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.71482,0,0,1.71482,-61.76929,-611.731)"
- style="fill:url(#linearGradient1958-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.54670453;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1"
- id="path3140-5"
- d="m 187.375,521.03125 -33.1875,4.34375 26.1875,11.1875 33.09375,-7.71875 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#484c5f;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path3230-9"
- d="m 225.56792,208.82911 c -11.51269,-0.95939 -19.18781,3.59769 -29.74109,3.35786 -10.55329,-0.23985 -20.78677,-2.71827 -33.57862,-2.87817 -12.79185,-0.15989 -19.34768,7.75505 -41.25375,3.35786 -5.11914,-1.02756 14.95049,-7.27537 10.55327,-11.51267 -4.39721,-4.23731 -27.5025,-3.91751 -40.774064,-12.95177 -5.572342,-3.79323 11.512684,-7.83503 12.472074,-15.82993"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#484c5f;stroke-width:1.875;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path3231-2"
- d="m 83.578246,229.93568 c -7.675106,-3.03806 -30.134398,-8.81347 -32.139554,-11.99237 -3.277913,-5.19669 30.69974,-1.22273 11.992372,-10.55329 -8.105029,-4.0425 -39.334974,-2.15864 -34.058335,-5.75635 5.276656,-3.59771 51.571914,-7.16133 63.004637,-12.43797 11.432724,-5.27663 5.649924,-14.62362 8.983684,-22.61383"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:url(#linearGradient5280);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3010-2"
- d="m 64.332013,228.80006 1.745567,16.94802 38.06993,19.53072 125.63079,-22.32084 0.95174,-7.99115 -51.67286,-21.48368 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:#000000;fill-opacity:0.19607843;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3013-8"
- d="m 66.307606,229.92236 1.436985,14.45384 36.581949,18.89262 123.98789,-21.87248 0.51127,-5.31155 -124.37135,19.97716 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:url(#linearGradient5282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3014-9"
- d="m 70.98008,230.35875 31.42014,20.07397 c 1.89101,-23.85603 116.37082,-8.00049 102.1154,-23.56509 l -25.31066,-11.34616 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,75)"
- style="fill:url(#linearGradient5284);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3135-7"
- d="m 260.74545,220.12719 c -6.45774,0.5736 -11.75187,6.50196 -25.04937,0.50971 -12.96121,-5.84069 -11.90811,-4.65879 -11.23209,-7.94799 0.59243,-2.88249 4.59769,-11.2772 19.47029,-10.76511 14.79403,0.50937 23.66829,17.5943 16.81117,18.20339 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.71482,0,0,1.71482,-61.76929,-606.9641)"
- style="fill:url(#linearGradient1962-6);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.19681366;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3233-3"
- d="m 183.22627,519.18774 c 0,1.85392 -2.81794,3.35682 -6.29403,3.35682 -3.4761,0 -6.29404,-1.5029 -6.29404,-3.35682 0,-1.85392 2.81794,-3.35682 6.29404,-3.35682 3.47609,0 6.29403,1.5029 6.29403,3.35682 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- transform="translate(0,75)"
- id="g1909-6">
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient5286);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path352-1"
- d="m 168.65587,72.330023 56.54429,3.87882 L 221.7842,198.54725 169.31652,206.3112 98.77599,189.11266 97.260299,80.427198 Z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient5288);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path353-2"
- d="m 102.89328,117.91922 0.89443,66.3121 59.24054,12.30015 -0.4652,-86.06109 c -19.26492,-16.892053 -39.77985,23.71589 -59.66977,7.44884 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient5290);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path1853-9"
- d="m 100.64328,114.39526 0.96136,73.29147 63.67361,13.59474 -0.50001,-95.11904 c -20.70655,-18.66995 -42.75664,26.21199 -64.13496,8.23283 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient5292);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path2987-3"
- d="m 171.34995,74.897795 -0.87277,73.182045 c 29.33121,-32.58838 28.29052,14.33468 50.11006,-4.3824 l 2.61831,-65.671505 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient5294);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:0.39215686"
- id="path3005-1"
- d="m 177.48285,82.517255 -0.43638,13.582731 40.95474,1.696523 0.0191,-12.906594 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(0,-75)"
- style="fill:url(#linearGradient5296);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:0.39215686"
- id="path3008-9"
- d="m 177.47737,100.94619 -0.43639,14.5909 40.55316,0.35501 -0.005,-13.56787 z"
- inkscape:connector-curvature="0" />
- <path
- transform="matrix(1.1995,0,0,1,-43.46294,-75)"
- style="fill:url(#linearGradient5298);fill-opacity:1;stroke:none;stroke-width:1.00000003pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path1823-4"
- d="m 217.5,164.375 c 0,17.2589 -8.25475,31.25 -18.4375,31.25 -10.18275,0 -18.4375,-13.9911 -18.4375,-31.25 0,-17.2589 8.25475,-31.25 18.4375,-31.25 10.18275,0 18.4375,13.9911 18.4375,31.25 z"
- inkscape:connector-curvature="0" />
- </g>
- <g
- transform="translate(150)"
- id="g1972-7">
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient1981-1);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path354-8"
- d="m 68.78151,152.51618 -11.29487,39.91256 v 6.07614 l 24.304541,12.15228 36.456799,-3.78926 v -6.07614 l -32.475964,-8.97545 8.171427,-41.92051 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:#000000;fill-opacity:0.31097562;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path355-4"
- d="m 68.77909,153.94752 5.2057,1.53108 -11.33006,38.88969 18.066866,8.26788 0.306215,6.43056 -22.966351,-11.02382 0.30622,-5.81815 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient5300);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5302);stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path1828-5"
- d="m 24.2993,63.8626 109.37042,2.449741 6.07613,97.218149 -109.37041,12.15226 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient5304);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path356-0"
- d="m 26.1743,63.2376 109.37042,2.449741 6.07613,97.218149 -109.37041,12.15226 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient5306);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.875;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.19607843"
- id="path357-3"
- d="m 35.99156,72.467003 5.24711,87.636147 90.94974,-7.49521 -3.49806,-79.564398 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient5308);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path361-6"
- d="m 64.18582,194.36829 19.904163,-1.22488 28.034427,7.48685 -29.577302,1.69968 z"
- inkscape:connector-curvature="0" />
- <path
- transform="translate(-150)"
- style="fill:url(#linearGradient5310);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.33750001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- id="path3003-1"
- d="m 41.63693,76.16683 2.46861,48.13766 c 12.54871,-27.566008 76.32083,24.48028 82.08089,-12.34298 L 124.335,77.401123 Z"
- inkscape:connector-curvature="0" />
- <rect
- y="33.75"
- x="-85.625"
- width="6.875"
- style="fill:none;fill-opacity:0.75;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
- ry="1.875"
- rx="6.165308"
- id="rect1924-0"
- height="1.875" />
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#f90000;fill-opacity:1;stroke:none;stroke-width:0.26458332;"
- x="106.96725"
- y="99.696426"
- id="text5316"><tspan
- sodipodi:role="line"
- id="tspan5314"
- x="106.96725"
- y="99.696426"
- style="stroke-width:0.26458332;fill:#f90000;fill-opacity:1;">Internet</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
- x="223.38391"
- y="106.12203"
- id="text5320"><tspan
- sodipodi:role="line"
- id="tspan5318"
- x="223.38391"
- y="106.12203"
- style="stroke-width:0.26458332">zone DMZ</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
- x="84.288696"
- y="292.0863"
- id="text5324"><tspan
- sodipodi:role="line"
- id="tspan5322"
- x="84.288696"
- y="292.0863"
- style="stroke-width:0.26458332">Notre réseau local</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
- x="25.702379"
- y="271.6756"
- id="text5328"><tspan
- sodipodi:role="line"
- id="tspan5326"
- x="25.702379"
- y="271.6756"
- style="stroke-width:0.26458332">connexion filaire</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
- x="161.01785"
- y="272.43155"
- id="text5332"><tspan
- sodipodi:role="line"
- id="tspan5330"
- x="161.01785"
- y="272.43155"
- style="stroke-width:0.26458332">wifi</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
- x="234.72321"
- y="271.29761"
- id="text5336"><tspan
- sodipodi:role="line"
- id="tspan5334"
- x="234.72321"
- y="271.29761"
- style="stroke-width:0.26458332">wifi/filaire</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
- x="217.71428"
- y="179.07143"
- id="text5342"><tspan
- sodipodi:role="line"
- id="tspan5340"
- x="217.71428"
- y="179.07143"
- style="stroke-width:0.26458332">notre serveur</tspan></text>
- <rect
- style="opacity:1;fill:#cc0000;stroke:#fc0000;stroke-width:0.56499994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0.17959182"
- id="rect5344"
- width="90.336304"
- height="90.336304"
- x="203.72916"
- y="95.916672" />
- <rect
- style="opacity:1;fill:#00ff00;stroke:#00f400;stroke-width:0.56499994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:0.17959183"
- id="rect5346"
- width="281.59229"
- height="80.508926"
- x="9.8273811"
- y="200.61607" />
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.36831772;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="cccccccc"
- id="path641"
- d="m 119.6712,106.12935 0.0736,15.41918 c 0,0 2.24386,0.0462 2.24386,0 0,-0.0462 -4.96593,4.38565 -4.96593,4.38565 l -5.00274,-3.87785 c 0,0 2.2071,-0.13846 2.17031,-0.13846 -0.0368,0 -0.18391,-15.78852 -0.14712,-15.74234 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.36286846;stroke-linecap:butt;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:nodetypes="cccccccc"
- id="path641-2"
- d="m 132.93548,125.56217 -0.0709,-15.53657 c 0,0 -2.1615,-0.0465 -2.1615,0 0,0.0465 4.78365,-4.41904 4.78365,-4.41904 l 4.81912,3.90737 c 0,0 -2.12609,0.13953 -2.09065,0.13953 0.0354,0 0.17716,15.90871 0.14172,15.86219 z"
- inkscape:connector-curvature="0" />
- <g
- style="overflow:visible"
- id="g5381"
- transform="matrix(0.04679705,0,0,0.04679705,173.60396,141.01253)">
- <g
- id="Layer_1"
- i:rgbTrio="#4F008000FFFF"
- i:layer="yes"
- i:dimmedPercent="50">
- <g
- id="g5368">
- <rect
- id="rect5364"
- width="420"
- i:knockout="Off"
- height="220"
- x="0"
- y="0"
- style="fill:#ffffff" />
- <path
- id="path5366"
- stroke-miterlimit="1"
- i:knockout="Off"
- d="m 310.5,210.5 100,-100 -100,-100 v 50 h -300 v 100 h 300 z m 0,0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ff2900;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1" />
- </g>
- </g>
- </g>
- <g
- style="overflow:visible"
- id="g5402"
- transform="matrix(0.04679705,0,0,0.04679705,168.43289,150.81651)">
- <g
- id="Layer_1-0"
- i:rgbTrio="#4F008000FFFF"
- i:layer="yes"
- i:dimmedPercent="50">
- <g
- id="g5389">
- <rect
- id="rect5385"
- width="420"
- i:knockout="Off"
- height="220"
- x="0"
- y="0"
- style="fill:#ffffff" />
- <path
- id="path5387"
- stroke-miterlimit="1"
- i:knockout="Off"
- d="m 110.5,210.5 -100,-100 100,-100 v 50 h 300 v 100 h -300 z m 0,0"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#ff2900;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1" />
- </g>
- </g>
- </g>
- <g
- inkscape:label="Layer 1"
- id="layer1-1"
- transform="matrix(0.03822208,0,0,0.03822208,108.28934,171.4234)">
- <g
- id="g1752">
- <path
- transform="rotate(180,240.00115,241.65045)"
- style="fill:url(#linearGradient1745);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1746);stroke-width:8.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path1061"
- d="M 322.99934,-148.98563 180.02475,25.576543 h 70.86614 V 468.48993 H 392.62317 V 25.576543 h 70.86614 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:url(#linearGradient1744);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- sodipodi:nodetypes="cccccccc"
- id="path1083"
- d="M 156.85832,606.99854 272.94169,465.26871 H 215.40434 V 27.96014 H 100.32963 V 465.26871 H 42.79226 Z"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <g
- inkscape:label="Layer 1"
- id="layer1-1-6"
- transform="matrix(-0.03822026,-3.730111e-4,3.730111e-4,-0.03822026,141.62094,196.03229)">
- <g
- id="g1752-9">
- <path
- transform="rotate(180,240.00115,241.65045)"
- style="fill:url(#linearGradient1745-5);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1746-7);stroke-width:8.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- id="path1061-3"
- d="M 322.99934,-148.98563 180.02475,25.576543 h 70.86614 V 468.48993 H 392.62317 V 25.576543 h 70.86614 z"
- inkscape:connector-curvature="0" />
- <path
- style="fill:url(#linearGradient5503);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.75;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
- sodipodi:nodetypes="cccccccc"
- id="path1083-7"
- d="M 156.85832,606.99854 272.94169,465.26871 H 215.40434 V 27.96014 H 100.32963 V 465.26871 H 42.79226 Z"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
- x="49.514881"
- y="156.39287"
- id="text5507"><tspan
- sodipodi:role="line"
- id="tspan5505"
- x="49.514881"
- y="156.39287"
- style="stroke-width:0.26458332">La box</tspan></text>
- </g>
- </svg>
|