123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- 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="297mm"
- viewBox="0 0 297 297"
- version="1.1"
- id="svg8"
- inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
- sodipodi:docname="pageedit1.svg">
- <defs
- id="defs2">
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8246"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,3.823164,0,1 @ F,0,0,1,0,4.1699088,0,1 @ F,0,0,1,0,3.1932977,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8190"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.1368453,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8184"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.1368453,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8180"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.56422126,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.53940812,0,1 @ F,0,0,1,0,0.85532771,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8029"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8025"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8019"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8015"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0.83383119,0,1 @ F,0,0,1,0,0.92851094,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect8009"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,2.58726,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.84755525,0,1 @ F,0,0,1,0,0.81433335,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect7828"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,1.0113014,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.95701606,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <rect
- x="45.749982"
- y="58.969794"
- width="135.86336"
- height="204.05844"
- id="rect7382" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect7324"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,2.49917,0,1 @ F,0,0,1,0,1.5915343,0,1 @ F,0,1,1,0,2.587263,0,1 @ F,0,0,1,0,2.7854496,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect7318"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0472242,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.80302588,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect7314"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.95638602,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect7308"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.8264927,0,1 @ F,0,0,1,0,2.4007995,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect7304"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.4114625,0,1 @ F,0,0,1,0,2.0600253,0,1 @ F,0,0,1,0,2.30318,0,1 @ F,0,0,1,0,1.1562566,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.547728,0,1 @ F,0,0,1,0,1.7288581,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.9569798,0,1 @ F,0,0,1,0,1.66577,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.70817963,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="spiro"
- id="path-effect7284"
- is_visible="true"
- lpeversion="1" />
- <inkscape:path-effect
- effect="spiro"
- id="path-effect7280"
- is_visible="true"
- lpeversion="1" />
- <inkscape:path-effect
- effect="spiro"
- id="path-effect6968"
- is_visible="true"
- lpeversion="1" />
- <inkscape:path-effect
- effect="spiro"
- id="path-effect6964"
- is_visible="true"
- lpeversion="1" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6960"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.199067,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6958"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.0397351,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6882"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,19.62738,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="spiro"
- id="path-effect6878"
- is_visible="true"
- lpeversion="1" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6804"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.1508914,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6796"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.4597737,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6790"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,6.4284806,0,1 @ F,0,0,1,0,1.0259536,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6782"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,8.7559946,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6774"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,6.7097701,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect6766"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,11.79319,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5780"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,4.7581086,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,5.0739542,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5742"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.1419539,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0772472,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.2631921,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5738"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.235468,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5736"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.1118243,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5734"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0586216,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5727"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,1,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5719"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0899381,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0294692,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5717"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.94468642,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0.93037527,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5715"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0809708,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5711"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.0956057,0,1 @ F,0,0,1,0,2.7040796,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.281744,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5709"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.2621358,0,1 @ F,0,0,1,0,2.140279,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.5148418,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5707"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,1.8327178,0,1 @ F,0,0,1,0,1.762619,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,2.0855127,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5701"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,1.3768297,0,1 @ F,0,0,1,0,0,0,1 @ F,0,1,1,0,4.0526068,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5699"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,10.734258,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5695"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5693"
- is_visible="true"
- lpeversion="1"
- satellites_param="IF,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ C,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5691"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5643"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <inkscape:path-effect
- effect="bspline"
- id="path-effect5495"
- is_visible="true"
- lpeversion="1"
- weight="33.333333"
- steps="2"
- helper_size="0"
- apply_no_weight="true"
- apply_with_weight="true"
- only_selected="false" />
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5431"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,8.4632,0,1 @ F,0,0,1,0,0,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <marker
- style="overflow:visible"
- id="marker5377"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart"
- inkscape:isstock="true">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:#b8d3cd;fill-opacity:1"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path5375" />
- </marker>
- <inkscape:path-effect
- effect="fillet_chamfer"
- id="path-effect5349"
- is_visible="true"
- lpeversion="1"
- satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.134697,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,13.931761,0,1"
- unit="px"
- method="auto"
- mode="F"
- radius="0"
- chamfer_steps="1"
- flexible="false"
- use_knot_distance="true"
- apply_no_radius="true"
- apply_with_radius="true"
- only_selected="true"
- hide_knots="false" />
- <marker
- style="overflow:visible"
- id="marker5305"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart"
- inkscape:isstock="true">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:#b8d3cd;fill-opacity:1"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path5303" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker5271"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart"
- inkscape:isstock="true">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path5269" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker5243"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart"
- inkscape:isstock="true">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path5241" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker5221"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart"
- inkscape:isstock="true">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:#b8d3cd;fill-opacity:1"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path5219" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker5205"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart"
- inkscape:isstock="true">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path5203" />
- </marker>
- <marker
- style="overflow:visible"
- id="Arrow1Lstart"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart"
- inkscape:isstock="true">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:#b8d3cd;fill-opacity:1"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path4933" />
- </marker>
- <rect
- x="45.129635"
- y="54.946714"
- width="202.9487"
- height="190.22995"
- id="rect4857" />
- <rect
- x="48.344325"
- y="194.25686"
- width="91.48948"
- height="58.494407"
- id="rect3729" />
- <rect
- x="52.069068"
- y="193.38943"
- width="185.2942"
- height="69.520217"
- id="rect3615" />
- <inkscape:path-effect
- effect="bspline"
- id="path-effect3401"
- is_visible="true"
- lpeversion="1"
- weight="33.333333"
- steps="2"
- helper_size="0"
- apply_no_weight="true"
- apply_with_weight="true"
- only_selected="false" />
- <inkscape:path-effect
- effect="bspline"
- id="path-effect3307"
- is_visible="true"
- lpeversion="1"
- weight="33.333333"
- steps="2"
- helper_size="0"
- apply_no_weight="true"
- apply_with_weight="true"
- only_selected="false" />
- <linearGradient
- id="linearGradient2972"
- osb:paint="solid">
- <stop
- style="stop-color:#a56e6e;stop-opacity:1;"
- offset="0"
- id="stop2970" />
- </linearGradient>
- <rect
- x="66.588691"
- y="147.70443"
- width="92.201096"
- height="108.04266"
- id="rect859" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="-434.70716 : 415.15748 : 1"
- inkscape:vp_y="2709.1236 : 1922.2699 : 0"
- inkscape:vp_z="166.42857 : -569.66907 : 1"
- inkscape:persp3d-origin="-414.1701 : -686.9087 : 1"
- id="perspective841" />
- <filter
- id="filter6181"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur6183"
- stdDeviation="1.6001681" />
- </filter>
- <linearGradient
- id="linearGradient3487">
- <stop
- id="stop3489"
- style="stop-color:#e6cde2"
- offset="0" />
- <stop
- id="stop3491"
- style="stop-color:#e6cde2;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3495">
- <stop
- id="stop3497"
- style="stop-color:#c1cbe4"
- offset="0" />
- <stop
- id="stop3499"
- style="stop-color:#c1cbe4;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3503">
- <stop
- id="stop3505"
- style="stop-color:#c4ebdd"
- offset="0" />
- <stop
- id="stop3507"
- style="stop-color:#c4ebdd;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3511">
- <stop
- id="stop3513"
- style="stop-color:#ebeec7"
- offset="0" />
- <stop
- id="stop3515"
- style="stop-color:#ebeec7;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3519">
- <stop
- id="stop3521"
- style="stop-color:#fcd9cd"
- offset="0" />
- <stop
- id="stop3523"
- style="stop-color:#fcd9cd;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient6036">
- <stop
- id="stop6038"
- style="stop-color:#fff"
- offset="0" />
- <stop
- id="stop6040"
- style="stop-color:#fff;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient8471"
- y2="43"
- gradientUnits="userSpaceOnUse"
- x2="24"
- gradientTransform="matrix(2.7838,0,0,2.7838,-2.8108,-2.8108)"
- y1="5"
- x1="24">
- <stop
- id="stop3926"
- style="stop-color:#fff"
- offset="0" />
- <stop
- id="stop3928"
- style="stop-color:#fff;stop-opacity:.23529"
- offset=".063165" />
- <stop
- id="stop3930"
- style="stop-color:#fff;stop-opacity:.15686"
- offset=".95056" />
- <stop
- id="stop3932"
- style="stop-color:#fff;stop-opacity:.39216"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient8487"
- gradientUnits="userSpaceOnUse"
- cy="8.4498"
- cx="7.4957"
- gradientTransform="matrix(5.2307e-8,6.2919,-6.6561,-1.1592e-7,120.24,-34.094)"
- r="20">
- <stop
- id="stop41892"
- style="stop-color:#dbdbdb"
- offset="0" />
- <stop
- id="stop41894"
- style="stop-color:#b5b5b5"
- offset=".26238" />
- <stop
- id="stop41896"
- style="stop-color:#848484"
- offset=".66094" />
- <stop
- id="stop41898"
- style="stop-color:#585858"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient8489"
- y2="3.899"
- gradientUnits="userSpaceOnUse"
- x2="24"
- gradientTransform="matrix(2.6923,0,0,2.6923,-0.61538,-0.61538)"
- y1="44"
- x1="24">
- <stop
- id="stop41902"
- style="stop-color:#484848"
- offset="0" />
- <stop
- id="stop41904"
- style="stop-color:#767676"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9415"
- y2="9.8622"
- xlink:href="#linearGradient3487"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="24.274"
- y1="10.775"
- x1="20.58" />
- <linearGradient
- id="linearGradient9417"
- y2="9.7956"
- xlink:href="#linearGradient3495"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="21.047"
- y1="11.2"
- x1="17.495" />
- <linearGradient
- id="linearGradient9419"
- y2="10.732"
- xlink:href="#linearGradient3503"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="16.994"
- y1="13.046"
- x1="14.085" />
- <linearGradient
- id="linearGradient9421"
- y2="13.462"
- xlink:href="#linearGradient3511"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="14.609"
- y1="16.188"
- x1="12.372" />
- <linearGradient
- id="linearGradient9423"
- y2="20.613"
- xlink:href="#linearGradient3519"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="9.7298"
- y1="17.886"
- x1="10.609" />
- <linearGradient
- id="linearGradient9452"
- y2="199.71"
- gradientUnits="userSpaceOnUse"
- x2="28.479"
- gradientTransform="matrix(0.60138,0,0,0.60231,66.291,-39.635)"
- y1="115.94"
- x1="28.479">
- <stop
- id="stop3792"
- style="stop-color:#fff"
- offset="0" />
- <stop
- id="stop3794"
- style="stop-color:#fff;stop-opacity:.34483"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient9455"
- fx="14.688"
- fy="37.456"
- gradientUnits="userSpaceOnUse"
- cy="41.059"
- cx="17.059"
- gradientTransform="matrix(1.9278,-0.88987,0.4265,1.7058,23.129,35.267)"
- r="5.7385">
- <stop
- id="stop3812"
- style="stop-color:#e4fc58"
- offset="0" />
- <stop
- id="stop3814"
- style="stop-color:#a3cb27"
- offset=".66094" />
- <stop
- id="stop3816"
- style="stop-color:#74a111"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient9458"
- gradientUnits="userSpaceOnUse"
- cy="16.98"
- cx="35.294"
- gradientTransform="matrix(2.9700429,-3.7594872e-8,6.3495413e-8,8.0306093,206.6256,-66.913894)"
- r="12.03">
- <stop
- id="stop3798"
- style="stop-color:#e4fc58"
- offset="0" />
- <stop
- id="stop3800"
- style="stop-color:#a3cb27"
- offset=".32453" />
- <stop
- id="stop3802"
- style="stop-color:#74a111"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient9460"
- y2="4.0338"
- gradientUnits="userSpaceOnUse"
- x2="26.717"
- gradientTransform="matrix(2.1051676,0,0,2.6636201,237.14978,40.182895)"
- y1="46.002"
- x1="26.717">
- <stop
- id="stop3806"
- style="stop-color:#547411"
- offset="0" />
- <stop
- id="stop3808"
- style="stop-color:#8aaf19"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient9463"
- gradientUnits="userSpaceOnUse"
- cy="4.625"
- cx="62.625"
- gradientTransform="matrix(1.7754,0,0,0.83422,-44.275,91.778)"
- r="10.625">
- <stop
- id="stop8840"
- offset="0" />
- <stop
- id="stop8842"
- style="stop-opacity:0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient9466"
- y2="45.962"
- xlink:href="#linearGradient6036"
- gradientUnits="userSpaceOnUse"
- x2="18.203"
- gradientTransform="matrix(0.73241,0,0,-0.73241,46.168,80.31)"
- y1="4.0378"
- x1="18.776" />
- <linearGradient
- id="linearGradient9469"
- y2="45.176"
- gradientUnits="userSpaceOnUse"
- x2="20.019"
- gradientTransform="matrix(1.7805,0,0,1.7805,21.268,19.268)"
- y1="3"
- x1="20.019">
- <stop
- id="stop3774"
- style="stop-color:#b4b4b4"
- offset="0" />
- <stop
- id="stop3776"
- style="stop-color:#969696"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9472"
- y2="54.698"
- xlink:href="#linearGradient6036"
- gradientUnits="userSpaceOnUse"
- x2="48.799"
- gradientTransform="matrix(1.7931,0,0,1.7931,20.342,17.171)"
- y1="3.61"
- x1="10.502" />
- <linearGradient
- id="linearGradient9487"
- y2="32.509"
- gradientUnits="userSpaceOnUse"
- x2="21.448"
- gradientTransform="matrix(1.6875,0,0,1.6875,23.5,21.5)"
- y1="15.5"
- x1="21.448">
- <stop
- id="stop3430"
- style="stop-color:#aaa"
- offset="0" />
- <stop
- id="stop3432"
- style="stop-color:#d4d4d4"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient9491"
- y2="14.203"
- gradientUnits="userSpaceOnUse"
- x2="35.391"
- gradientTransform="matrix(0,2.0766,-2.0766,0,111.97,12.115)"
- y1="32.416"
- x1="12.274">
- <stop
- id="stop3265"
- style="stop-color:#dededb"
- offset="0" />
- <stop
- id="stop3267"
- style="stop-color:#e6e6e6"
- offset=".5" />
- <stop
- id="stop3269"
- style="stop-color:#d2d2d2"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient9494"
- gradientUnits="userSpaceOnUse"
- cy="41.636"
- cx="23.335"
- gradientTransform="matrix(1.7236,0,0,0.50919,23.781,68.231)"
- r="22.627">
- <stop
- id="stop23421"
- offset="0" />
- <stop
- id="stop23423"
- style="stop-opacity:0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="e">
- <stop
- stop-color="#b0b0b0"
- offset="0"
- id="stop7" />
- <stop
- stop-color="#f5f5f5"
- offset="1"
- id="stop9" />
- </linearGradient>
- <linearGradient
- id="a"
- stop-color="#fff">
- <stop
- offset="0"
- id="stop12" />
- <stop
- stop-opacity="0"
- offset="1"
- id="stop14" />
- </linearGradient>
- <filter
- id="i"
- height="1.384"
- width="1.384"
- color-interpolation-filters="sRGB"
- y="-.192"
- x="-.192">
- <feGaussianBlur
- stdDeviation="5.28"
- id="feGaussianBlur17" />
- </filter>
- <linearGradient
- id="j"
- y2="138.66"
- xlink:href="#a"
- gradientUnits="userSpaceOnUse"
- x2="48"
- y1="20.221"
- x1="48" />
- <clipPath
- id="f">
- <rect
- rx="6"
- ry="6"
- height="84"
- width="84"
- y="6"
- x="6"
- fill="#fff"
- id="rect21" />
- </clipPath>
- <linearGradient
- id="d"
- y2="7.0165"
- gradientUnits="userSpaceOnUse"
- x2="45.448"
- gradientTransform="matrix(1.0059 0 0 .99417 100 0)"
- y1="92.54"
- x1="45.448">
- <stop
- offset="0"
- id="stop24" />
- <stop
- stop-opacity=".58824"
- offset="1"
- id="stop26" />
- </linearGradient>
- <clipPath
- id="g">
- <rect
- rx="8.0455"
- ry="8.0455"
- height="112.64"
- width="112.64"
- y="7.6818"
- x="27.682"
- fill="#fff"
- id="rect29" />
- </clipPath>
- <linearGradient
- id="v"
- y2="6"
- xlink:href="#d"
- gradientUnits="userSpaceOnUse"
- x2="32.251"
- gradientTransform="translate(0,1)"
- y1="90"
- x1="32.251" />
- <radialGradient
- id="h"
- xlink:href="#a"
- gradientUnits="userSpaceOnUse"
- cy="90.172"
- cx="48"
- gradientTransform="matrix(1.1573 0 0 .99591 -7.551 .19713)"
- r="42" />
- <linearGradient
- id="u"
- y2="63.893"
- xlink:href="#a"
- gradientUnits="userSpaceOnUse"
- x2="36.357"
- y1="6"
- x1="36.357" />
- <linearGradient
- id="t"
- y2="6"
- gradientUnits="userSpaceOnUse"
- x2="48"
- gradientTransform="translate(.002534 .002375)"
- y1="90"
- x1="48">
- <stop
- stop-color="#8f6033"
- offset="0"
- id="stop35" />
- <stop
- stop-color="#a87849"
- offset="1"
- id="stop37" />
- </linearGradient>
- <linearGradient
- id="s"
- y2="31.657"
- gradientUnits="userSpaceOnUse"
- x2="49.996"
- y1="71.738"
- x1="49.996">
- <stop
- stop-color="#bf2222"
- offset="0"
- id="stop40" />
- <stop
- stop-color="#e94c4c"
- offset="1"
- id="stop42" />
- </linearGradient>
- <linearGradient
- id="r"
- y2="24"
- gradientUnits="userSpaceOnUse"
- x2="40"
- gradientTransform="matrix(1,0,0,1.125,0,-10.5)"
- y1="80"
- x1="56">
- <stop
- stop-color="#e7e7e7"
- offset="0"
- id="stop45" />
- <stop
- stop-color="#fff"
- offset="1"
- id="stop47" />
- </linearGradient>
- <linearGradient
- id="q"
- y2="6"
- xlink:href="#e"
- gradientUnits="userSpaceOnUse"
- x2="51"
- gradientTransform="matrix(0,-1,1,0,42,54)"
- y1="6"
- x1="45" />
- <linearGradient
- id="p"
- y2="6"
- xlink:href="#e"
- gradientUnits="userSpaceOnUse"
- x2="52"
- gradientTransform="matrix(0,1,-1,0,54,-42)"
- y1="6"
- x1="44" />
- <linearGradient
- id="o"
- y2="5"
- gradientUnits="userSpaceOnUse"
- x2="53"
- gradientTransform="matrix(0,-1,1,0,43,54)"
- y1="5"
- x1="43">
- <stop
- stop-color="#848484"
- offset="0"
- id="stop52" />
- <stop
- stop-color="#f5f5f5"
- offset="1"
- id="stop54" />
- </linearGradient>
- <linearGradient
- id="n"
- y2="15.055"
- xlink:href="#a"
- gradientUnits="userSpaceOnUse"
- x2="36"
- y1="6"
- x1="36" />
- <linearGradient
- id="m"
- y2="6"
- gradientUnits="userSpaceOnUse"
- x2="37"
- y1="16"
- x1="37">
- <stop
- stop-color="#3b3b3b"
- offset="0"
- id="stop58" />
- <stop
- stop-color="#aeaeae"
- offset=".12203"
- id="stop60" />
- <stop
- stop-color="#e9e9e9"
- offset=".24519"
- id="stop62" />
- <stop
- stop-color="#8a8a8a"
- offset=".44692"
- id="stop64" />
- <stop
- stop-color="#f0f0f0"
- offset="1"
- id="stop66" />
- </linearGradient>
- <linearGradient
- id="l"
- y2="5.9996"
- xlink:href="#d"
- gradientUnits="userSpaceOnUse"
- x2="32.251"
- gradientTransform="matrix(1.0238 0 0 1.0119 -1.1429 .929)"
- y1="90"
- x1="32.251" />
- <linearGradient
- id="k"
- y2="90.239"
- xlink:href="#d"
- gradientUnits="userSpaceOnUse"
- x2="32.251"
- gradientTransform="matrix(1.0238,0,0,-1.0119,-1.1429,98.071)"
- y1="6.1317"
- x1="32.251" />
- <linearGradient
- id="f-3"
- y2="1.0923001"
- gradientUnits="userSpaceOnUse"
- x2="6.6201"
- gradientTransform="matrix(-3.5754836,0,0,3.0823052,74.390602,19.873355)"
- y1="16.385"
- x1="6.6201"
- spreadMethod="pad">
- <stop
- stop-color="#dcdcdc"
- offset="0"
- id="stop27" />
- <stop
- stop-color="#ebebeb"
- offset=".30654"
- id="stop29" />
- <stop
- stop-color="#fff"
- offset=".70706"
- id="stop31" />
- <stop
- stop-color="#fafafa"
- offset=".84501"
- id="stop33" />
- <stop
- stop-color="#f0f0f0"
- offset="1"
- id="stop35-6" />
- </linearGradient>
- <filter
- style="color-interpolation-filters:sRGB"
- id="filter3899">
- <feGaussianBlur
- id="feGaussianBlur3901"
- stdDeviation="0.57" />
- </filter>
- <linearGradient
- x1="12"
- y1="4.5"
- x2="12"
- y2="20.5"
- id="linearGradient3182"
- xlink:href="#linearGradient3655"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(4,0,0,4,0,-82)" />
- <linearGradient
- id="linearGradient3655">
- <stop
- id="stop3657"
- style="stop-color:#ad0707;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3659"
- style="stop-color:#f75535;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="outerBackgroundGradient-8">
- <stop
- style="stop-color:#465674;stop-opacity:1"
- offset="0"
- id="stop3864-8-6-9" />
- <stop
- style="stop-color:#798bac;stop-opacity:1"
- offset="1"
- id="stop3866-9-1-0" />
- </linearGradient>
- <linearGradient
- id="outerBackgroundGradient-43">
- <stop
- style="stop-color:#2c333d;stop-opacity:1"
- offset="0"
- id="stop3864-8-6-744" />
- <stop
- style="stop-color:#485362;stop-opacity:1"
- offset="1"
- id="stop3866-9-1-541" />
- </linearGradient>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath4492">
- <path
- id="path4494"
- d="m 15.562635,9.6015624 c -3.857522,0 -6.9609379,3.1034156 -6.9609379,6.9609376 v 16.875 c 0,3.857522 3.1034159,6.960937 6.9609379,6.960937 h 16.875 c 3.857522,0 6.960937,-3.103415 6.960937,-6.960937 v -16.875 c 0,-3.857522 -3.103415,-6.9609376 -6.960937,-6.9609376 z"
- style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#b35151;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
- inkscape:connector-curvature="0" />
- </clipPath>
- <linearGradient
- id="linearGradient3929">
- <stop
- style="stop-color:#f6a602;stop-opacity:1;"
- offset="0"
- id="stop3931" />
- <stop
- style="stop-color:#ffb621;stop-opacity:1;"
- offset="1"
- id="stop3933" />
- </linearGradient>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath10483">
- <path
- inkscape:connector-curvature="0"
- id="path10485"
- d="m 84,46.500023 c -27.43126,0 -49.5,22.06873 -49.5,49.5 V 216.00002 c 0,27.43127 22.06874,49.5 49.5,49.5 h 120 c 27.43127,0 49.5,-22.06873 49.5,-49.5 V 96.000023 c 0,-27.43127 -22.06873,-49.5 -49.5,-49.5 z"
- style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#bf4f4f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath4295">
- <path
- style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4299);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
- d="m -429,-10.2 c -43.89002,0 -79.2,35.309971 -79.2,79.2 v 192 c 0,43.89003 35.30998,79.2 79.2,79.2 h 192 c 43.89003,0 79.2,-35.30997 79.2,-79.2 V 69 c 0,-43.890029 -35.30997,-79.2 -79.2,-79.2 z"
- id="path4297"
- inkscape:connector-curvature="0" />
- </clipPath>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4259"
- id="linearGradient4265"
- x1="-389"
- y1="333"
- x2="59"
- y2="333"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient4259">
- <stop
- style="stop-color:#2ba4e2;stop-opacity:1"
- offset="0"
- id="stop4261" />
- <stop
- style="stop-color:#3dbfff;stop-opacity:1"
- offset="1"
- id="stop4263" />
- </linearGradient>
- <filter
- id="i-7"
- height="1.384"
- width="1.384"
- color-interpolation-filters="sRGB"
- y="-.192"
- x="-.192">
- <feGaussianBlur
- stdDeviation="5.28"
- id="feGaussianBlur17-2" />
- </filter>
- <clipPath
- id="f-2">
- <rect
- rx="6"
- ry="6"
- height="84"
- width="84"
- y="6"
- x="6"
- fill="#fff"
- id="rect21-6" />
- </clipPath>
- <clipPath
- id="g-6">
- <rect
- rx="8.0455"
- ry="8.0455"
- height="112.64"
- width="112.64"
- y="7.6818"
- x="27.682"
- fill="#fff"
- id="rect29-1" />
- </clipPath>
- <radialGradient
- id="h-5"
- xlink:href="#a"
- gradientUnits="userSpaceOnUse"
- cy="90.172"
- cx="48"
- gradientTransform="matrix(1.1573 0 0 .99591 -7.551 .19713)"
- r="42" />
- <filter
- style="color-interpolation-filters:sRGB"
- id="filter3899-5">
- <feGaussianBlur
- id="feGaussianBlur3901-6"
- stdDeviation="0.57" />
- </filter>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath4492-9">
- <path
- id="path4494-3"
- d="m 15.562635,9.6015624 c -3.857522,0 -6.9609379,3.1034156 -6.9609379,6.9609376 v 16.875 c 0,3.857522 3.1034159,6.960937 6.9609379,6.960937 h 16.875 c 3.857522,0 6.960937,-3.103415 6.960937,-6.960937 v -16.875 c 0,-3.857522 -3.103415,-6.9609376 -6.960937,-6.9609376 z"
- style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#b35151;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
- inkscape:connector-curvature="0" />
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath10483-8">
- <path
- inkscape:connector-curvature="0"
- id="path10485-8"
- d="m 84,46.500023 c -27.43126,0 -49.5,22.06873 -49.5,49.5 V 216.00002 c 0,27.43127 22.06874,49.5 49.5,49.5 h 120 c 27.43127,0 49.5,-22.06873 49.5,-49.5 V 96.000023 c 0,-27.43127 -22.06873,-49.5 -49.5,-49.5 z"
- style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5;fill:#bf4f4f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
- </clipPath>
- <clipPath
- clipPathUnits="userSpaceOnUse"
- id="clipPath4295-5">
- <path
- style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4299);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate"
- d="m -429,-10.2 c -43.89002,0 -79.2,35.309971 -79.2,79.2 v 192 c 0,43.89003 35.30998,79.2 79.2,79.2 h 192 c 43.89003,0 79.2,-35.30997 79.2,-79.2 V 69 c 0,-43.890029 -35.30997,-79.2 -79.2,-79.2 z"
- id="path4297-0"
- inkscape:connector-curvature="0" />
- </clipPath>
- <rect
- x="66.588691"
- y="147.70443"
- width="92.201096"
- height="108.04266"
- id="rect859-6" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="-435.80566 : 418.49926 : 1"
- inkscape:vp_y="2709.1236 : 1922.2699 : 0"
- inkscape:vp_z="165.33007 : -566.32729 : 1"
- inkscape:persp3d-origin="-415.2686 : -683.56692 : 1"
- id="perspective841-1" />
- <filter
- id="filter6181-1"
- color-interpolation-filters="sRGB">
- <feGaussianBlur
- id="feGaussianBlur6183-5"
- stdDeviation="1.6001681" />
- </filter>
- <radialGradient
- id="radialGradient8487-7"
- gradientUnits="userSpaceOnUse"
- cy="8.4498"
- cx="7.4957"
- gradientTransform="matrix(5.2307e-8,6.2919,-6.6561,-1.1592e-7,120.24,-34.094)"
- r="20">
- <stop
- id="stop41892-5"
- style="stop-color:#dbdbdb"
- offset="0" />
- <stop
- id="stop41894-9"
- style="stop-color:#b5b5b5"
- offset=".26238" />
- <stop
- id="stop41896-6"
- style="stop-color:#848484"
- offset=".66094" />
- <stop
- id="stop41898-2"
- style="stop-color:#585858"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient9415-8"
- y2="9.8622"
- xlink:href="#linearGradient3487"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="24.274"
- y1="10.775"
- x1="20.58" />
- <linearGradient
- id="linearGradient9417-5"
- y2="9.7956"
- xlink:href="#linearGradient3495"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="21.047"
- y1="11.2"
- x1="17.495" />
- <linearGradient
- id="linearGradient9419-7"
- y2="10.732"
- xlink:href="#linearGradient3503"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="16.994"
- y1="13.046"
- x1="14.085" />
- <linearGradient
- id="linearGradient9421-4"
- y2="13.462"
- xlink:href="#linearGradient3511"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="14.609"
- y1="16.188"
- x1="12.372" />
- <linearGradient
- id="linearGradient9423-1"
- y2="20.613"
- xlink:href="#linearGradient3519"
- spreadMethod="reflect"
- gradientUnits="userSpaceOnUse"
- x2="9.7298"
- y1="17.886"
- x1="10.609" />
- <radialGradient
- id="radialGradient9455-9"
- fx="14.688"
- fy="37.456"
- gradientUnits="userSpaceOnUse"
- cy="41.059"
- cx="17.059"
- gradientTransform="matrix(1.9278,-0.88987,0.4265,1.7058,23.129,35.267)"
- r="5.7385">
- <stop
- id="stop3812-7"
- style="stop-color:#e4fc58"
- offset="0" />
- <stop
- id="stop3814-5"
- style="stop-color:#a3cb27"
- offset=".66094" />
- <stop
- id="stop3816-3"
- style="stop-color:#74a111"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient9458-8"
- gradientUnits="userSpaceOnUse"
- cy="16.98"
- cx="35.294"
- gradientTransform="matrix(2.9700429,-3.7594872e-8,6.3495413e-8,8.0306093,206.6256,-66.913894)"
- r="12.03">
- <stop
- id="stop3798-8"
- style="stop-color:#e4fc58"
- offset="0" />
- <stop
- id="stop3800-3"
- style="stop-color:#a3cb27"
- offset=".32453" />
- <stop
- id="stop3802-1"
- style="stop-color:#74a111"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient9463-6"
- gradientUnits="userSpaceOnUse"
- cy="4.625"
- cx="62.625"
- gradientTransform="matrix(1.7754,0,0,0.83422,-44.275,91.778)"
- r="10.625">
- <stop
- id="stop8840-4"
- offset="0" />
- <stop
- id="stop8842-3"
- style="stop-opacity:0"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient9494-8"
- gradientUnits="userSpaceOnUse"
- cy="41.636"
- cx="23.335"
- gradientTransform="matrix(1.7236,0,0,0.50919,23.781,68.231)"
- r="22.627">
- <stop
- id="stop23421-8"
- offset="0" />
- <stop
- id="stop23423-9"
- style="stop-opacity:0"
- offset="1" />
- </radialGradient>
- <path
- id="Square_6_"
- d="M147.318,181.079L20.895,161.048c-6.546-1.037-11.011-7.184-9.974-13.73L30.952,20.895 c1.037-6.546,7.184-11.011,13.73-9.974l126.423,20.032c6.546,1.037,11.011,7.184,9.974,13.73l-20.032,126.423 C160.01,177.651,153.863,182.117,147.318,181.079z" />
- <path
- id="SVGID_1_"
- d="M171.956,31.132C171.51,24.911,166.334,20,160,20h-58.016l-57.301-9.079 c-6.256-0.991-12.136,3.049-13.551,9.123C24.911,20.49,20,25.666,20,32v58.016l-9.079,57.301 c-0.991,6.256,3.049,12.136,9.123,13.551C20.49,167.089,25.666,172,32,172h58.016l57.301,9.079 c6.256,0.991,12.136-3.049,13.551-9.123C167.089,171.51,172,166.334,172,160v-58.016l9.079-57.301 C182.071,38.426,178.03,32.546,171.956,31.132z" />
- <path
- id="Square_8_"
- d="M160,172H32c-6.627,0-12-5.373-12-12V32c0-6.627,5.373-12,12-12h128c6.627,0,12,5.373,12,12v128 C172,166.627,166.627,172,160,172z" />
- <path
- id="SVGID_3_"
- d="M181.076,147.323L172,90.019V32c0-6.333-4.909-11.507-11.128-11.956 c-1.416-6.072-7.295-10.111-13.549-9.12L90.019,20H32c-6.333,0-11.507,4.909-11.956,11.127 c-6.072,1.416-10.111,7.295-9.12,13.549L20,101.981V160c0,6.333,4.909,11.507,11.128,11.956 c1.416,6.072,7.295,10.111,13.549,9.12L101.981,172H160c6.333,0,11.507-4.909,11.956-11.128 C178.028,159.457,182.067,153.578,181.076,147.323z" />
- <path
- id="Square_4_"
- d="M171.101,161.053L44.677,181.076c-6.546,1.037-12.693-3.429-13.729-9.975L10.924,44.677 c-1.037-6.546,3.429-12.693,9.975-13.729l126.424-20.024c6.546-1.037,12.693,3.429,13.729,9.975l20.024,126.424 C182.113,153.869,177.647,160.016,171.101,161.053z" />
- <path
- id="SVGID_5_"
- d="M171.961,31.133c-0.001,0-0.002-0.001-0.003-0.001c0-0.001,0-0.002,0-0.003l-11.085-11.085 c0.066,0.282,0.134,0.564,0.18,0.855l1.375,8.678l1.307,8.251L172,90.019v0l0.948,5.984l8.132-51.32 c0.25-1.578,0.178-3.131-0.164-4.595L171.961,31.133z" />
- <linearGradient
- id="linearGradient3766"
- osb:paint="gradient">
- <stop
- style="stop-color:#a8bb03;stop-opacity:1;"
- offset="0"
- id="stop3768" />
- <stop
- style="stop-color:#b5b900;stop-opacity:1;"
- offset="1"
- id="stop3770" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6455-7-3-3-2"
- id="linearGradient5701-5"
- y2="37.809635"
- x2="34.130882"
- y1="41.608219"
- x1="38.851257" />
- <linearGradient
- id="linearGradient6455-7-3-3-2">
- <stop
- offset="0"
- style="stop-color:#fbac9b;stop-opacity:1"
- id="stop6457-5-1-10-5" />
- <stop
- offset="1"
- style="stop-color:#fcfafc;stop-opacity:1"
- id="stop6459-8-9-7-0" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6413-0-0-0-9"
- id="linearGradient5699-5"
- y2="37.809635"
- x2="34.130882"
- y1="41.608219"
- x1="38.851257" />
- <linearGradient
- id="linearGradient6413-0-0-0-9">
- <stop
- offset="0"
- style="stop-color:#feffff;stop-opacity:1"
- id="stop6415-1-7-3-8" />
- <stop
- offset="1"
- style="stop-color:#fe70ca;stop-opacity:1"
- id="stop6417-4-9-2-3" />
- </linearGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6036"
- id="radialGradient5697-4"
- fy="39.708927"
- fx="36.49107"
- r="3.1589286"
- cy="39.708927"
- cx="36.49107" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6036"
- id="radialGradient5695-8"
- fy="39.708927"
- fx="36.49107"
- r="3.1589286"
- cy="39.708927"
- cx="36.49107" />
- <radialGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6036"
- id="radialGradient5693-2"
- fy="39.708927"
- fx="36.49107"
- r="3.1589286"
- cy="39.708927"
- cx="36.49107" />
- <radialGradient
- gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6088-6-1-0-06-8"
- id="radialGradient5691-8"
- fy="31.405056"
- fx="32.372566"
- r="3.857446"
- cy="31.405056"
- cx="32.372566" />
- <linearGradient
- id="linearGradient6088-6-1-0-06-8">
- <stop
- offset="0"
- style="stop-color:#ff54d2;stop-opacity:0"
- id="stop6090-2-0-4-9-4" />
- <stop
- offset="0.32368398"
- style="stop-color:#ff54d2;stop-opacity:0"
- id="stop6257-4-6-1-76-0" />
- <stop
- offset="0.56140333"
- style="stop-color:#ff54d2;stop-opacity:0.2521739"
- id="stop6255-3-6-7-23-8" />
- <stop
- offset="1"
- style="stop-color:#ff54d2;stop-opacity:0.47826087"
- id="stop6092-9-6-8-9-2" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6191-8-3-4-5-4"
- id="radialGradient5689-3"
- fy="31.405056"
- fx="32.372566"
- r="3.857446"
- cy="31.405056"
- cx="32.372566" />
- <linearGradient
- id="linearGradient6191-8-3-4-5-4">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop6193-75-7-6-4-2" />
- <stop
- offset="0.40531859"
- style="stop-color:#ffffff;stop-opacity:0"
- id="stop6197-3-4-1-4-8" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.47826087"
- id="stop6195-7-2-5-7-8" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6191-8-3-4-5-4"
- id="radialGradient5687-9"
- fy="31.405056"
- fx="32.372566"
- r="3.857446"
- cy="31.405056"
- cx="32.372566" />
- <radialGradient
- gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6191-8-3-4-5-4"
- id="radialGradient5685-6"
- fy="31.405056"
- fx="32.372566"
- r="3.857446"
- cy="31.405056"
- cx="32.372566" />
- <linearGradient
- gradientTransform="matrix(0.05404846,0,0,0.04053616,32.383161,32.92865)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6036"
- id="linearGradient5713-5"
- y2="65.922028"
- x2="68.313301"
- y1="52.925316"
- x1="68.313301" />
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4316-4-6-6-4-5-1"
- id="linearGradient5735-1"
- y2="48.983677"
- x2="92.696327"
- y1="16.554602"
- x1="92.696327" />
- <linearGradient
- id="linearGradient4316-4-6-6-4-5-1">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4318-4-4-6-5-3-0" />
- <stop
- offset="0.33799788"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop4320-2-2-6-59-35-1" />
- <stop
- offset="0.61996669"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop4322-4-5-5-0-1-8" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop4324-4-1-5-5-42-0" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6088-74-4-8-8"
- id="radialGradient5679-1"
- fy="31.405056"
- fx="32.372566"
- r="3.857446"
- cy="31.405056"
- cx="32.372566" />
- <linearGradient
- id="linearGradient6088-74-4-8-8">
- <stop
- offset="0"
- style="stop-color:#ff54d2;stop-opacity:0"
- id="stop6090-5-66-7-7" />
- <stop
- offset="0.32368398"
- style="stop-color:#f62b68;stop-opacity:1"
- id="stop6257-5-4-6-4" />
- <stop
- offset="0.56140333"
- style="stop-color:#ff0105;stop-opacity:1"
- id="stop6255-6-7-9-7" />
- <stop
- offset="1"
- style="stop-color:#ff54d2;stop-opacity:0.47826087"
- id="stop6092-0-22-2-1" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(0.19553888,-2.9157311e-8,2.7395628e-8,0.18372271,17.229421,18.403041)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4278-3-5-5-9"
- id="radialGradient5720-8"
- fy="95.388451"
- fx="95.838364"
- r="9.4981718"
- cy="95.388451"
- cx="95.838364" />
- <linearGradient
- id="linearGradient4278-3-5-5-9">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:0"
- id="stop4280-6-90-6-3" />
- <stop
- offset="0.5"
- style="stop-color:#000000;stop-opacity:0"
- id="stop4286-1-9-5-7" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:1"
- id="stop4282-24-4-0-5" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(0,0.2344161,-0.30942651,0,37.234491,28.249571)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-691-4-22-1-2"
- id="radialGradient5723-3"
- r="20.396999"
- cy="3.99"
- cx="23.896" />
- <linearGradient
- id="linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-691-4-22-1-2">
- <stop
- offset="0"
- style="stop-color:#612f91;stop-opacity:1"
- id="stop7191-4-6-8-8" />
- <stop
- offset="1"
- style="stop-color:#1a4aa2;stop-opacity:1"
- id="stop7197-2-8-6-5" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.09821987,0,0,0.09821945,33.642581,33.642799)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3087-408-5-3-7-9"
- id="linearGradient5726-9"
- y2="45.368999"
- x2="7.0776"
- y1="3.0816"
- x1="7.0776" />
- <linearGradient
- gradientTransform="matrix(0.22110724,0,0,0.22110728,6.6934256,6.693263)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3087-408-5-3-7-9"
- y2="45.368999"
- x2="7.0776"
- y1="3.0816"
- x1="7.0776">
- <stop
- offset="0"
- style="stop-color:#170418;stop-opacity:1"
- id="stop7201-5-71-3-5" />
- <stop
- offset="1"
- style="stop-color:#50386b;stop-opacity:1"
- id="stop7203-2-8-8-5" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(0,0.6733571,-1.5511106,0,68.944331,10.850549)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient6042-1-7-8-8"
- id="radialGradient5731-0"
- fy="21.239277"
- fx="31.999998"
- r="10.498171"
- cy="21.239277"
- cx="31.999998" />
- <linearGradient
- id="linearGradient6042-1-7-8-8">
- <stop
- offset="0"
- style="stop-color:#07132d;stop-opacity:1"
- id="stop6044-9-6-3-6" />
- <stop
- offset="1"
- style="stop-color:#425479;stop-opacity:1"
- id="stop6046-9-5-1-2" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(0,1.9804002,-1.9804002,0,123.92313,-164.4618)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4507-6-5-9-8"
- id="radialGradient5441-6"
- fy="16.447752"
- fx="91.349998"
- r="15.639286"
- cy="16.447752"
- cx="91.349998" />
- <linearGradient
- id="linearGradient4507-6-5-9-8">
- <stop
- offset="0"
- style="stop-color:#2d3955;stop-opacity:1"
- id="stop4509-3-8-8-5" />
- <stop
- offset="0.72468865"
- style="stop-color:#2b3853;stop-opacity:1"
- id="stop5959-4-45-4-7" />
- <stop
- offset="0.75"
- style="stop-color:#192640;stop-opacity:1"
- id="stop5961-1-7-2-5" />
- <stop
- offset="1"
- style="stop-color:#08142e;stop-opacity:1"
- id="stop4511-1-0-8-9" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4220-7-2-0-5"
- id="linearGradient5407-1"
- y2="48.631081"
- x2="91.566116"
- y1="16.542858"
- x1="91.566116" />
- <linearGradient
- id="linearGradient4220-7-2-0-5">
- <stop
- offset="0"
- style="stop-color:#7a8498;stop-opacity:1"
- id="stop4222-7-5-5-4" />
- <stop
- offset="1"
- style="stop-color:#34405c;stop-opacity:1"
- id="stop4224-0-5-2-0" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.37500007,0,0,0.37499833,16.757001,24.000191)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4164-9-2-4"
- id="linearGradient5397-1"
- y2="56.114563"
- x2="51.199997"
- y1="8.1142893"
- x1="51.199997" />
- <linearGradient
- id="linearGradient4164-9-2-4">
- <stop
- offset="0"
- style="stop-color:#b6b6b6;stop-opacity:1"
- id="stop4166-3-2-5" />
- <stop
- offset="0.33095336"
- style="stop-color:#a4a4a4;stop-opacity:1"
- id="stop4216-6-7-6" />
- <stop
- offset="1"
- style="stop-color:#c5c5c5;stop-opacity:1"
- id="stop4168-0-3-8" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.78776,0,0,0.78776,-20.857591,14.047705)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4806-2-9-2"
- id="linearGradient5400-4"
- y2="40.495617"
- x2="71.204407"
- y1="15.369057"
- x1="71.204407" />
- <linearGradient
- id="linearGradient4806-2-9-2">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop4808-4-6-7" />
- <stop
- offset="0.42447853"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop4810-0-9-3" />
- <stop
- offset="0.82089913"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop4812-8-7-9" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop4814-0-7-4" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(0,1.4794679,-1.9528714,0,43.792011,-10.070966)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#radialGradient3093-0-3-6-6-0-8"
- id="radialGradient6657"
- fy="3.99"
- fx="23.896"
- r="20.396999"
- cy="3.99"
- cx="23.896" />
- <radialGradient
- gradientTransform="matrix(0,1.2316483,-1.625754,0,18.486966,-28.721977)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3093-0-3-6-6-0-8"
- r="20.396999"
- cy="3.99"
- cx="23.896">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop3244-9-33-7-0-9-5-0" />
- <stop
- offset="0.26238"
- style="stop-color:#dddddd;stop-opacity:1"
- id="stop3246-3-5-0-8-5-0-0" />
- <stop
- offset="0.66093999"
- style="stop-color:#abacae;stop-opacity:1"
- id="stop3248-1-7-8-8-1-0-6" />
- <stop
- offset="1"
- style="stop-color:#89898b;stop-opacity:1"
- id="stop3250-9-3-0-5-1-2-1" />
- </radialGradient>
- <radialGradient
- gradientTransform="matrix(0.94117645,0,0,0.23529375,-22.941181,44.41176)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#radialGradient3109-3"
- id="radialGradient3169-1"
- r="10.625"
- cy="4.625"
- cx="62.625" />
- <radialGradient
- gradientTransform="matrix(1.1294118,0,0,0.2823525,-58.729414,19.694118)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3109-3"
- r="10.625"
- cy="4.625"
- cx="62.625">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:1"
- id="stop8840-3-7" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0"
- id="stop8842-5-0" />
- </radialGradient>
- <linearGradient
- gradientTransform="matrix(0.15070105,0,0,0.15182597,40.329191,20.187484)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4574-39-1"
- id="linearGradient6598-5"
- y2="88.801025"
- x2="-175.25337"
- y1="113.97943"
- x1="-184.92441" />
- <linearGradient
- id="linearGradient4574-39-1">
- <stop
- offset="0"
- style="stop-color:#7a0f01;stop-opacity:1"
- id="stop4576-75-8" />
- <stop
- offset="1"
- style="stop-color:#d31807;stop-opacity:1"
- id="stop4578-96-3" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4470-86-9"
- id="linearGradient4478-4-9"
- y2="75.190559"
- x2="-208.49672"
- y1="88.750069"
- x1="-211.28862" />
- <linearGradient
- id="linearGradient4470-86-9">
- <stop
- offset="0"
- style="stop-color:#ec4502;stop-opacity:1"
- id="stop4472-0-4" />
- <stop
- offset="1"
- style="stop-color:#fe7617;stop-opacity:1"
- id="stop4474-9-9" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.23682313,0,0,0.23897582,54.815171,17.241527)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3871-6-7"
- id="linearGradient6785"
- y2="38.561256"
- x2="-107.45584"
- y1="-37.385227"
- x1="-107.45584" />
- <linearGradient
- id="linearGradient3871-6-7">
- <stop
- offset="0"
- style="stop-color:#0b85e9;stop-opacity:1"
- id="stop3873-3-2" />
- <stop
- offset="1"
- style="stop-color:#69d1ef;stop-opacity:1"
- id="stop3875-4-0" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.23682313,0,0,0.23897582,54.815171,17.241527)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3825-5-8-9"
- id="linearGradient6790"
- y2="39.991924"
- x2="-96.557358"
- y1="110.92493"
- x1="-96.557358" />
- <linearGradient
- id="linearGradient3825-5-8-9">
- <stop
- offset="0"
- style="stop-color:#e89c42;stop-opacity:1"
- id="stop3827-2-3-55" />
- <stop
- offset="1"
- style="stop-color:#faca67;stop-opacity:1"
- id="stop3829-5-0-1" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(1.0540541,0,0,0.83783781,-1.2972891,5.8918999)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3977-7-61"
- id="linearGradient3174-3"
- y2="43"
- x2="23.99999"
- y1="5.5641499"
- x1="23.99999" />
- <linearGradient
- id="linearGradient3977-7-61">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop3979-6-49" />
- <stop
- offset="0.03626217"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop3981-3-78" />
- <stop
- offset="0.95056331"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop3983-8-86" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop3985-2-07" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(1.1428545,0,0,0.69530686,-3.4285091,8.2459499)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3600-9-51"
- id="linearGradient3182-6"
- y2="47.013336"
- x2="25.132275"
- y1="0.98520643"
- x1="25.132275" />
- <linearGradient
- id="linearGradient3600-9-51">
- <stop
- offset="0"
- style="stop-color:#f4f4f4;stop-opacity:1"
- id="stop3602-0-0" />
- <stop
- offset="1"
- style="stop-color:#dbdbdb;stop-opacity:1"
- id="stop3604-9-04" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.99682577,5.6082336e-4,2.043022e-4,0.71682639,121.08747,4.8432599)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4623-7-15"
- id="linearGradient3185-6"
- y2="52.887863"
- x2="-76.844345"
- y1="6.6805849"
- x1="-76.834877" />
- <linearGradient
- id="linearGradient4623-7-15">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:0.27058825"
- id="stop4625-3-7" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0.368"
- id="stop4627-1-42" />
- </linearGradient>
- <linearGradient
- gradientTransform="matrix(0.99352183,0.26504064,-0.20865372,0.77527588,5.1631609,-0.9676401)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3977-7-61"
- id="linearGradient3188-3"
- y2="43"
- x2="23.99999"
- y1="5.5641499"
- x1="23.99999" />
- <linearGradient
- gradientTransform="matrix(1.0786784,0.28775775,-0.17353123,0.64477442,2.5426809,0.6300199)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3600-9-51"
- id="linearGradient3192-0"
- y2="47.013336"
- x2="25.132275"
- y1="0.98520643"
- x1="25.132275" />
- <linearGradient
- gradientTransform="matrix(0.94191741,0.25183272,-0.17907033,0.66612446,121.0441,28.81807)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4623-7-15"
- id="linearGradient3195-4"
- y2="52.887863"
- x2="-76.844345"
- y1="6.6805849"
- x1="-76.834877" />
- <radialGradient
- gradientTransform="matrix(0.92701214,0,0,0.06268357,4.0977309,40.46568)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4623-7-15"
- id="radialGradient3814"
- fy="40.430397"
- fx="19.53446"
- r="23.929714"
- cy="40.430397"
- cx="19.53446" />
- <filter
- inkscape:label="filter3"
- id="filter4604"
- style="color-interpolation-filters:sRGB" />
- <filter
- inkscape:label="filter4"
- id="filter4606"
- style="color-interpolation-filters:sRGB">
- <feBlend
- in2="SourceGraphic"
- id="feBlend4608"
- mode="normal" />
- </filter>
- <linearGradient
- id="linearGradient4545">
- <stop
- offset="0"
- style="stop-color:#3d3d3d;stop-opacity:0"
- id="stop4547" />
- <stop
- offset="1"
- style="stop-color:#373d40;stop-opacity:0.59893048"
- id="stop4551" />
- </linearGradient>
- <linearGradient
- id="linearGradient3924-1">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1"
- id="stop3926-3" />
- <stop
- offset="0.06316455"
- style="stop-color:#ffffff;stop-opacity:0.23529412"
- id="stop3928-91" />
- <stop
- offset="0.95056331"
- style="stop-color:#ffffff;stop-opacity:0.15686275"
- id="stop3930-6" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687"
- id="stop3932-6" />
- </linearGradient>
- <linearGradient
- id="linearGradient27416-1-2-2">
- <stop
- offset="0"
- style="stop-color:#55c1ec;stop-opacity:1"
- id="stop27420-2-0-2" />
- <stop
- offset="1"
- style="stop-color:#3689e6;stop-opacity:1"
- id="stop27422-3-5-1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4632-92-3-0-8-1-6">
- <stop
- offset="0"
- style="stop-color:#fafafa;stop-opacity:1"
- id="stop4634-68-8-0-2-9-1" />
- <stop
- offset="1"
- style="stop-color:#e1e1e1;stop-opacity:1"
- id="stop4636-8-21-7-1-4-9" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3688-166-749"
- id="radialGradient3013"
- fy="43.5"
- fx="4.9929786"
- r="2.5"
- cy="43.5"
- cx="4.9929786" />
- <linearGradient
- id="linearGradient3688-166-749">
- <stop
- offset="0"
- style="stop-color:#181818;stop-opacity:1"
- id="stop2883" />
- <stop
- offset="1"
- style="stop-color:#181818;stop-opacity:0"
- id="stop2885" />
- </linearGradient>
- <radialGradient
- gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3688-166-749"
- id="radialGradient3015"
- fy="43.5"
- fx="4.9929786"
- r="2.5"
- cy="43.5"
- cx="4.9929786" />
- <linearGradient
- id="linearGradient3702-501-757">
- <stop
- offset="0"
- style="stop-color:#181818;stop-opacity:0"
- id="stop2895" />
- <stop
- offset="0.5"
- style="stop-color:#181818;stop-opacity:1"
- id="stop2897" />
- <stop
- offset="1"
- style="stop-color:#181818;stop-opacity:0"
- id="stop2899" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3702-501-757"
- id="linearGradient4387"
- y2="39.999443"
- x2="25.058096"
- y1="47.027729"
- x1="25.058096" />
- <linearGradient
- id="linearGradient4011-9-9-70-61-7">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;"
- id="stop4013-5-4-3-8-3" />
- <stop
- id="stop4015-1-5-70-9-5"
- style="stop-color:#ffffff;stop-opacity:0.23529412;"
- offset="0.507761" />
- <stop
- offset="0.83456558"
- style="stop-color:#ffffff;stop-opacity:0.15686275;"
- id="stop4017-7-0-13-0-1" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.39215687;"
- id="stop4019-1-12-7-0-7" />
- </linearGradient>
- <linearGradient
- id="linearGradient4215-8-4-07-7">
- <stop
- id="stop4217-1-2-1-2"
- offset="0"
- style="stop-color:#e9e9e9;stop-opacity:1;" />
- <stop
- id="stop4219-3-4-0-96"
- offset="1"
- style="stop-color:#ffffff;stop-opacity:1;" />
- </linearGradient>
- <radialGradient
- cx="4.9929786"
- cy="43.5"
- r="2.5"
- fx="4.9929786"
- fy="43.5"
- id="radialGradient3339-1-4"
- xlink:href="#linearGradient3688-166-749"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)" />
- <radialGradient
- cx="4.9929786"
- cy="43.5"
- r="2.5"
- fx="4.9929786"
- fy="43.5"
- id="radialGradient3337-2-2"
- xlink:href="#linearGradient3688-166-749"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)" />
- <linearGradient
- y2="55.052982"
- x2="30.271185"
- y1="10.028973"
- x1="30.271185"
- gradientTransform="matrix(1.111111,0,0,1.25,-96.572559,-8.817797)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3818"
- xlink:href="#linearGradient27416-1-2-2"
- inkscape:collect="always" />
- <linearGradient
- y2="43"
- x2="23.99999"
- y1="4.999989"
- x1="23.99999"
- gradientTransform="matrix(1.4324324,0,0,1.4362832,-95.395384,-3.2885759)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3822"
- xlink:href="#linearGradient3924-1"
- inkscape:collect="always" />
- <radialGradient
- r="27.5"
- fy="4.3419166"
- fx="31.999998"
- cy="4.3419166"
- cx="31.999998"
- gradientTransform="matrix(1.0056172e-8,2.3103361,-2.310336,1.0056172e-8,-50.985718,-69.903761)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3826"
- xlink:href="#linearGradient4632-92-3-0-8-1-6"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4722">
- <stop
- offset="0"
- style="stop-color:#f8917e;stop-opacity:1"
- id="stop4724" />
- <stop
- offset="1"
- style="stop-color:#ff6600;stop-opacity:1"
- id="stop4728" />
- </linearGradient>
- <linearGradient
- id="linearGradient4168">
- <stop
- id="stop4170"
- style="stop-color:#f8b17e;stop-opacity:1"
- offset="0" />
- <stop
- id="stop4172"
- style="stop-color:#e35d4f;stop-opacity:1"
- offset="0.23208089" />
- <stop
- id="stop4174"
- style="stop-color:#c6262e;stop-opacity:1"
- offset="0.5908742" />
- <stop
- id="stop4176"
- style="stop-color:#690b54;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3957">
- <stop
- id="stop3959"
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3961"
- style="stop-color:#c1c1c1;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-3-8">
- <stop
- id="stop3750-8-9"
- style="stop-color:#90dbec;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3752-3-2"
- style="stop-color:#42baea;stop-opacity:1"
- offset="0.26238" />
- <stop
- id="stop3754-7-2"
- style="stop-color:#3689e6;stop-opacity:1"
- offset="0.704952" />
- <stop
- id="stop3756-9-3"
- style="stop-color:#2b63a0;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3820-7-2-1">
- <stop
- id="stop3822-2-6-3"
- style="stop-color:#3d3d3d;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3864-8-7-7"
- style="stop-color:#686868;stop-opacity:0.49803922"
- offset="0.5" />
- <stop
- id="stop3824-1-2-5"
- style="stop-color:#686868;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="71.204407"
- y1="6.2375584"
- x2="71.204407"
- y2="44.340794"
- id="linearGradient3012"
- xlink:href="#linearGradient4011-9-9-70-61-7"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.054054,0,0,1.054054,-51.611001,-2.7279009)" />
- <radialGradient
- cx="3.9722471"
- cy="8.4497671"
- r="19.99999"
- fx="3.9722471"
- fy="8.4497671"
- id="radialGradient3015-1"
- xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-3-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,2.4988347,-2.6434689,-6.8014435e-8,46.336814,-12.180468)" />
- <radialGradient
- cx="99.157013"
- cy="186.17059"
- r="62.769119"
- fx="99.157013"
- fy="186.17059"
- id="radialGradient3018"
- xlink:href="#linearGradient3820-7-2-1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.35045396,0,0,0.32241713,-11.361196,-34.128859)" />
- <linearGradient
- x1="27.92535"
- y1="15.149301"
- x2="33.447899"
- y2="22.986004"
- id="linearGradient3951"
- xlink:href="#linearGradient4168"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.99907052,-0.04310556,0.04310556,0.99907052,19.058326,5.8136191)" />
- <linearGradient
- x1="24"
- y1="22"
- x2="24"
- y2="26"
- id="linearGradient3963"
- xlink:href="#linearGradient3957"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="21.013996"
- y1="25.433903"
- x2="22.805599"
- y2="27.343702"
- id="linearGradient3963-7"
- xlink:href="#linearGradient3957"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(14.20206,2.7685028)" />
- <linearGradient
- gradientTransform="matrix(-0.01867279,0.99982565,0.99982565,0.01867279,0.4557693,-0.54878726)"
- x1="27.92535"
- y1="15.149301"
- x2="33.447899"
- y2="22.986004"
- id="linearGradient3951-4"
- xlink:href="#linearGradient4168"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="27.92535"
- y1="15.149301"
- x2="33.447899"
- y2="22.986004"
- id="linearGradient3951-2"
- xlink:href="#linearGradient4168"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.86046654,-0.04100855,0.03712541,0.95046764,2.7186868,2.1805548)" />
- <linearGradient
- x1="27.92535"
- y1="15.149301"
- x2="31.188482"
- y2="19.779806"
- id="linearGradient3951-2-1"
- xlink:href="#linearGradient4722"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.86144305,-4.9307323e-4,-0.00761877,0.95116191,3.2443428,1.9173962)" />
- <linearGradient
- x1="27.92535"
- y1="15.149301"
- x2="31.188482"
- y2="19.779806"
- id="linearGradient3951-2-1-1"
- xlink:href="#linearGradient4722"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.86144305,-4.9307323e-4,-0.00761877,0.95116191,51.309337,26.573188)" />
- <linearGradient
- x1="27.92535"
- y1="15.149301"
- x2="31.188482"
- y2="19.779806"
- id="linearGradient3951-2-1-1-4"
- xlink:href="#linearGradient4722"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.69145796,-3.8913626e-4,-0.00611539,0.75066252,7.3232516,6.1434229)" />
- <linearGradient
- x1="16.116789"
- y1="21.119221"
- x2="16.116789"
- y2="10.997566"
- id="linearGradient3698"
- xlink:href="#linearGradient6036"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="15.321168"
- y1="3"
- x2="15.321168"
- y2="29.045145"
- id="linearGradient3688"
- xlink:href="#linearGradient6036"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- x1="86.132919"
- y1="105.105"
- x2="84.63858"
- y2="20.895"
- id="linearGradient2836"
- xlink:href="#linearGradient5128"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.20430229,0,0,0.20430239,2.9246465,3.1289497)" />
- <linearGradient
- id="linearGradient5128">
- <stop
- id="stop5130"
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0" />
- <stop
- id="stop5132"
- style="stop-color:#959595;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="32.036148"
- y1="19"
- x2="32.036148"
- y2="47.012184"
- id="linearGradient2840"
- xlink:href="#linearGradient5128"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-15,-17)" />
- <linearGradient
- x1="63.9995"
- y1="3.1001"
- x2="63.9995"
- y2="122.8994"
- id="linearGradient3309"
- gradientUnits="userSpaceOnUse">
- <stop
- id="stop3311"
- style="stop-color:#f6f6f6;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3313"
- style="stop-color:#d2d2d2;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- x1="25.922546"
- y1="19"
- x2="25.922546"
- y2="47.044857"
- id="linearGradient2842"
- xlink:href="#linearGradient3397"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-15,-17)" />
- <linearGradient
- id="linearGradient3397">
- <stop
- id="stop3399"
- style="stop-color:#aaaaaa;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3401"
- style="stop-color:#8c8c8c;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <radialGradient
- cx="6.702713"
- cy="73.615715"
- r="7.228416"
- fx="6.702713"
- fy="73.615715"
- id="radialGradient3751"
- xlink:href="#linearGradient4623-7-15"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.2134617,0,0,0.4842001,1.1638028,-7.1447362)" />
- <linearGradient
- x1="32.036148"
- y1="19"
- x2="32.036148"
- y2="47.012184"
- id="linearGradient2840-5"
- xlink:href="#linearGradient5128"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-0.1695175,13.954899)" />
- <linearGradient
- x1="25.922546"
- y1="19"
- x2="25.922546"
- y2="47.044857"
- id="linearGradient2842-7"
- xlink:href="#linearGradient3397"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(14.909798,25.376361)" />
- <linearGradient
- x1="86.132919"
- y1="105.105"
- x2="84.63858"
- y2="20.895"
- id="linearGradient2836-6"
- xlink:href="#linearGradient5128"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.21111502,0,0,0.20318555,17.383263,31.615773)" />
- <radialGradient
- cx="36.49107"
- cy="39.708927"
- r="3.1589286"
- fx="36.49107"
- fy="39.708927"
- id="radialGradient5697-4-9"
- xlink:href="#linearGradient6036"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- cx="36.49107"
- cy="39.708927"
- r="3.1589286"
- fx="36.49107"
- fy="39.708927"
- id="radialGradient5695-8-7"
- xlink:href="#linearGradient6036"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- cx="36.49107"
- cy="39.708927"
- r="3.1589286"
- fx="36.49107"
- fy="39.708927"
- id="radialGradient5693-2-0"
- xlink:href="#linearGradient6036"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- cx="32.372566"
- cy="31.405056"
- r="3.857446"
- fx="32.372566"
- fy="31.405056"
- id="radialGradient5691-8-9"
- xlink:href="#linearGradient6088-6-1-0-06-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)" />
- <radialGradient
- cx="32.372566"
- cy="31.405056"
- r="3.857446"
- fx="32.372566"
- fy="31.405056"
- id="radialGradient5689-3-2"
- xlink:href="#linearGradient6191-8-3-4-5-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)" />
- <radialGradient
- cx="32.372566"
- cy="31.405056"
- r="3.857446"
- fx="32.372566"
- fy="31.405056"
- id="radialGradient5687-9-7"
- xlink:href="#linearGradient6191-8-3-4-5-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)" />
- <radialGradient
- cx="32.372566"
- cy="31.405056"
- r="3.857446"
- fx="32.372566"
- fy="31.405056"
- id="radialGradient5685-6-9"
- xlink:href="#linearGradient6191-8-3-4-5-4"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.0676498,0.55402509,-0.5348486,1.9960821,-17.765612,-49.217228)" />
- <radialGradient
- cx="32.372566"
- cy="31.405056"
- r="3.857446"
- fx="32.372566"
- fy="31.405056"
- id="radialGradient5679-1-7"
- xlink:href="#linearGradient6088-74-4-8-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.0664963,0,0,2.0664963,-34.525221,-33.493375)" />
- <radialGradient
- cx="95.838364"
- cy="95.388451"
- r="9.4981718"
- fx="95.838364"
- fy="95.388451"
- id="radialGradient5720-8-8"
- xlink:href="#linearGradient4278-3-5-5-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.19553888,-2.9157311e-8,2.7395628e-8,0.18372271,17.229421,18.403041)" />
- <radialGradient
- cx="23.896"
- cy="3.99"
- r="20.396999"
- id="radialGradient5723-3-6"
- xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-691-4-22-1-2"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,0.2344161,-0.30942651,0,37.234491,28.249571)" />
- <radialGradient
- cx="31.999998"
- cy="21.239277"
- r="10.498171"
- fx="31.999998"
- fy="21.239277"
- id="radialGradient5731-0-1"
- xlink:href="#linearGradient6042-1-7-8-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,0.6733571,-1.5511106,0,68.944331,10.850549)" />
- <radialGradient
- cx="91.349998"
- cy="16.447752"
- r="15.639286"
- fx="91.349998"
- fy="16.447752"
- id="radialGradient5441-6-7"
- xlink:href="#linearGradient4507-6-5-9-8"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,1.9804002,-1.9804002,0,123.92313,-164.4618)" />
- <radialGradient
- cx="23.896"
- cy="3.99"
- r="20.396999"
- fx="23.896"
- fy="3.99"
- id="radialGradient6657-1"
- xlink:href="#radialGradient3093-0-3-6-6-0-8-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,1.4794679,-1.9528714,0,43.792011,-10.070966)" />
- <radialGradient
- cx="23.896"
- cy="3.99"
- r="20.396999"
- id="radialGradient3093-0-3-6-6-0-8-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0,1.2316483,-1.625754,0,18.486966,-28.721977)">
- <stop
- id="stop3244-9-33-7-0-9-5-0-5"
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3246-3-5-0-8-5-0-0-4"
- style="stop-color:#dddddd;stop-opacity:1"
- offset="0.26238" />
- <stop
- id="stop3248-1-7-8-8-1-0-6-7"
- style="stop-color:#abacae;stop-opacity:1"
- offset="0.66093999" />
- <stop
- id="stop3250-9-3-0-5-1-2-1-6"
- style="stop-color:#89898b;stop-opacity:1"
- offset="1" />
- </radialGradient>
- <radialGradient
- cx="62.625"
- cy="4.625"
- r="10.625"
- id="radialGradient3169-1-5"
- xlink:href="#radialGradient3109-3-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.94117645,0,0,0.23529375,-22.941181,44.41176)" />
- <radialGradient
- cx="62.625"
- cy="4.625"
- r="10.625"
- id="radialGradient3109-3-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.1294118,0,0,0.2823525,-58.729414,19.694118)">
- <stop
- id="stop8840-3-7-9"
- style="stop-color:#000000;stop-opacity:1"
- offset="0" />
- <stop
- id="stop8842-5-0-3"
- style="stop-color:#000000;stop-opacity:0"
- offset="1" />
- </radialGradient>
- <radialGradient
- cx="19.53446"
- cy="40.430397"
- r="23.929714"
- fx="19.53446"
- fy="40.430397"
- id="radialGradient3814-4"
- xlink:href="#linearGradient4623-7-15"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.92701214,0,0,0.06268357,4.0977309,40.46568)" />
- <filter
- style="color-interpolation-filters:sRGB"
- id="filter4604-4"
- inkscape:label="filter3" />
- <filter
- style="color-interpolation-filters:sRGB"
- id="filter4606-9"
- inkscape:label="filter4">
- <feBlend
- mode="normal"
- id="feBlend4608-2"
- in2="SourceGraphic" />
- </filter>
- <radialGradient
- cx="4.9929786"
- cy="43.5"
- r="2.5"
- fx="4.9929786"
- fy="43.5"
- id="radialGradient3013-1"
- xlink:href="#linearGradient3688-166-749"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)" />
- <radialGradient
- cx="4.9929786"
- cy="43.5"
- r="2.5"
- fx="4.9929786"
- fy="43.5"
- id="radialGradient3015-7"
- xlink:href="#linearGradient3688-166-749"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)" />
- <radialGradient
- gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3688-166-749"
- id="radialGradient3339-1-4-4"
- fy="43.5"
- fx="4.9929786"
- r="2.5"
- cy="43.5"
- cx="4.9929786" />
- <radialGradient
- gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3688-166-749"
- id="radialGradient3337-2-2-9"
- fy="43.5"
- fx="4.9929786"
- r="2.5"
- cy="43.5"
- cx="4.9929786" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4632-92-3-0-8-1-6"
- id="radialGradient3826-0"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.0056172e-8,2.3103361,-2.310336,1.0056172e-8,-50.985718,-69.903761)"
- cx="31.999998"
- cy="4.3419166"
- fx="31.999998"
- fy="4.3419166"
- r="27.5" />
- <radialGradient
- gradientTransform="matrix(0,2.4988347,-2.6434689,-6.8014435e-8,46.336814,-12.180468)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient2867-449-88-871-390-598-476-591-434-148-57-177-3-8"
- id="radialGradient3015-1-6"
- fy="8.4497671"
- fx="3.9722471"
- r="19.99999"
- cy="8.4497671"
- cx="3.9722471" />
- <radialGradient
- gradientTransform="matrix(0.35045396,0,0,0.32241713,-11.361196,-34.128859)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient3820-7-2-1"
- id="radialGradient3018-3"
- fy="186.17059"
- fx="99.157013"
- r="62.769119"
- cy="186.17059"
- cx="99.157013" />
- <radialGradient
- gradientTransform="matrix(2.2134617,0,0,0.4842001,1.1638028,-7.1447362)"
- gradientUnits="userSpaceOnUse"
- xlink:href="#linearGradient4623-7-15"
- id="radialGradient3751-3"
- fy="73.615715"
- fx="6.702713"
- r="7.228416"
- cy="73.615715"
- cx="6.702713" />
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="Arrow1Lstart-0"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Lstart">
- <path
- transform="scale(0.8) translate(12.5,0)"
- style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#ff0000;fill-opacity:1"
- d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
- id="path1223" />
- </marker>
- <linearGradient
- osb:paint="solid"
- id="linearGradient1219">
- <stop
- id="stop1217"
- offset="0"
- style="stop-color:#0000ff;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient8290">
- <stop
- style="stop-color:#f31111;stop-opacity:1"
- offset="0"
- id="stop8292" />
- <stop
- style="stop-color:#cb0707;stop-opacity:1"
- offset="1"
- id="stop8294" />
- </linearGradient>
- <linearGradient
- id="linearGradient3938">
- <stop
- style="stop-color:#eb2d2d;stop-opacity:1;"
- offset="0"
- id="stop3940" />
- <stop
- style="stop-color:#df2525;stop-opacity:1;"
- offset="1"
- id="stop3942" />
- </linearGradient>
- <linearGradient
- id="XMLID_74_-8-1"
- gradientUnits="userSpaceOnUse"
- x1="64.477501"
- y1="56.3008"
- x2="78.466103"
- y2="48.0854">
- <stop
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;"
- id="stop155-3-8" />
- <stop
- offset="1"
- style="stop-color:#e6e6e6;stop-opacity:1;"
- id="stop157-94-6" />
- </linearGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#XMLID_74_-8-1"
- id="radialGradient3867"
- cx="558.35437"
- cy="385.4841"
- fx="558.35437"
- fy="385.4841"
- r="191.6187"
- gradientTransform="matrix(1,0,0,1.0499906,0,-19.270593)"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="SVGID_2_"
- gradientUnits="userSpaceOnUse"
- x1="200.0508"
- y1="185.0742"
- x2="200.0508"
- y2="217.4595">
- <stop
- offset="0"
- style="stop-color:#61B74A"
- id="stop13" />
- <stop
- offset="1"
- style="stop-color:#449934"
- id="stop15" />
- </linearGradient>
- <linearGradient
- y2="217.4595"
- x2="200.0508"
- y1="185.0742"
- x1="200.0508"
- gradientTransform="matrix(13.577628,0,0,13.577628,-2026.1619,-2566.7096)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3021"
- xlink:href="#SVGID_2_"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient2460"
- y2="44.984001"
- gradientUnits="userSpaceOnUse"
- x2="19.360001"
- y1="21.030804"
- x1="19.244999">
- <stop
- id="stop3602"
- style="stop-color:#fafafa;stop-opacity:1;"
- offset="0" />
- <stop
- id="stop3604"
- style="stop-color:#f0f0f0;stop-opacity:1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- y2="44.984001"
- x2="19.360001"
- y1="21.030804"
- x1="19.244999"
- gradientTransform="matrix(11.076923,0,0,11.076923,-9.8523013,-20.578025)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient3096"
- xlink:href="#linearGradient2460"
- inkscape:collect="always" />
- <linearGradient
- gradientTransform="matrix(1.0058652,0,0,0.994169,100,0)"
- gradientUnits="userSpaceOnUse"
- id="ButtonShadow-0-1-1-5"
- y2="7.0165396"
- x2="45.447727"
- y1="92.539597"
- x1="45.447727">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:1"
- id="stop3750-8-9-3-6" />
- <stop
- offset="1"
- style="stop-color:#000000;stop-opacity:0.58823532"
- id="stop3752-5-6-4-2" />
- </linearGradient>
- <linearGradient
- y2="251.66064"
- x2="1011.9534"
- y1="476.25983"
- x1="1016.1035"
- gradientTransform="translate(-146.22032,369.08845)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4082"
- xlink:href="#a"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4046">
- <stop
- offset="0"
- style="stop-color:#000000;stop-opacity:1;"
- id="stop4048" />
- <stop
- offset="1"
- style="stop-color:#ffffff;stop-opacity:0.2"
- id="stop4050" />
- </linearGradient>
- <linearGradient
- id="linearGradient2760">
- <stop
- id="stop2770"
- offset="0"
- style="stop-color:#ffffff;stop-opacity:1;" />
- <stop
- id="stop2764"
- offset="1"
- style="stop-color:#a9a9a9;stop-opacity:1;" />
- </linearGradient>
- <linearGradient
- id="linearGradient4846">
- <stop
- offset="0"
- style="stop-color:#1a1a1a;stop-opacity:1"
- id="stop4848" />
- <stop
- offset="1"
- style="stop-color:#1e1e1e;stop-opacity:1;"
- id="stop4856" />
- </linearGradient>
- <linearGradient
- id="linearGradient4922">
- <stop
- id="stop4924"
- style="stop-color:#1a1a1a;stop-opacity:1"
- offset="0" />
- <stop
- id="stop4926"
- style="stop-color:#636363;stop-opacity:1"
- offset="0.15622118" />
- <stop
- id="stop4928"
- style="stop-color:#b4b4b4;stop-opacity:1"
- offset="0.33151907" />
- <stop
- id="stop4930"
- style="stop-color:#636363;stop-opacity:1"
- offset="0.53579742" />
- <stop
- id="stop4932"
- style="stop-color:#000000;stop-opacity:1"
- offset="1" />
- </linearGradient>
- <linearGradient
- y2="110.85986"
- x2="166.77547"
- y1="152.12039"
- x1="201.33115"
- spreadMethod="reflect"
- gradientTransform="matrix(1.2757694,0,0,1.2757694,-135.89444,2.4500392)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient4884"
- xlink:href="#linearGradient4888"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4888">
- <stop
- offset="0"
- style="stop-color:#c0821c;stop-opacity:1;"
- id="stop4892" />
- <stop
- id="stop4894"
- style="stop-color:#e4ae48;stop-opacity:1;"
- offset="1" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- y2="158.47191"
- x2="258.22205"
- y1="160.82593"
- x1="13.021049"
- id="linearGradient4882"
- xlink:href="#linearGradient4898"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4898">
- <stop
- offset="0"
- style="stop-color:#a86f20;stop-opacity:1;"
- id="stop4900" />
- <stop
- offset="1"
- style="stop-color:#c68d31;stop-opacity:1"
- id="stop4902" />
- </linearGradient>
- <linearGradient
- x1="45.447727"
- y1="92.539597"
- x2="45.447727"
- y2="7.0165396"
- id="ButtonShadow"
- gradientUnits="userSpaceOnUse"
- gradientTransform="scale(1.0058652,0.994169)">
- <stop
- id="stop3750"
- style="stop-color:#000000;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3752"
- style="stop-color:#000000;stop-opacity:0.58823532"
- offset="1" />
- </linearGradient>
- <filter
- color-interpolation-filters="sRGB"
- id="filter3174">
- <feGaussianBlur
- stdDeviation="1.71"
- id="feGaussianBlur3176" />
- </filter>
- <linearGradient
- y2="168.28262"
- x2="214.26566"
- y1="11.425488"
- x1="212.86353"
- spreadMethod="reflect"
- gradientTransform="matrix(1.8464564,0,0,1.8464564,-123.73343,86.826257)"
- gradientUnits="userSpaceOnUse"
- id="linearGradient8264"
- xlink:href="#linearGradient2760"
- inkscape:collect="always" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient2460"
- id="linearGradient3157"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(12.102564,0,0,12.102564,-34.468255,-46.187105)"
- x1="18.930269"
- y1="6.2951212"
- x2="19.360001"
- y2="36.643665" />
- <linearGradient
- y2="1"
- x2="1"
- y1="0"
- x1="0"
- id="acyl_gradient"
- xlink:href="#linearGradient4321"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4321">
- <stop
- id="stop1"
- offset="0"
- style="stop-color:#ee0c0c;stop-opacity:1;" />
- <stop
- id="stop2"
- offset="1"
- style="stop-color:#7a0404;stop-opacity:1;" />
- </linearGradient>
- <radialGradient
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.4249551,-0.00787504,0.00770263,2.3718665,-135.71828,-134.64744)"
- r="150"
- fy="98.692879"
- fx="94.710419"
- cy="98.692879"
- cx="94.710419"
- id="radialGradient3928"
- xlink:href="#linearGradient4321"
- inkscape:collect="always" />
- <radialGradient
- r="150"
- fy="98.692879"
- fx="94.710419"
- cy="98.692879"
- cx="94.710419"
- gradientTransform="matrix(2.4249551,-0.00787504,0.00770263,2.3718665,-135.71828,-134.64744)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3932"
- xlink:href="#linearGradient4321"
- inkscape:collect="always" />
- <radialGradient
- r="150"
- fy="112.57468"
- fx="110.73653"
- cy="112.57468"
- cx="110.73653"
- gradientTransform="matrix(1.6533901,0.0060994,-0.00539655,1.4623231,-50.506611,-35.439162)"
- gradientUnits="userSpaceOnUse"
- id="radialGradient3936"
- xlink:href="#linearGradient3938"
- inkscape:collect="always" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3938"
- id="radialGradient8259"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6533901,0.0060994,-0.00539655,1.4623231,703.83008,-47.907537)"
- cx="110.73653"
- cy="112.57468"
- fx="110.73653"
- fy="112.57468"
- r="150" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3938"
- id="radialGradient8273"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6533901,0.0060994,-0.00539655,1.4623231,703.83008,-47.907537)"
- cx="110.73653"
- cy="112.57468"
- fx="110.73653"
- fy="112.57468"
- r="150" />
- <linearGradient
- id="linearGradient4485">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop7431" />
- <stop
- style="stop-color:#000000;stop-opacity:0.384"
- offset="1"
- id="stop7433" />
- </linearGradient>
- <linearGradient
- id="linearGradient4477">
- <stop
- style="stop-color:#f7f7f7;stop-opacity:1;"
- offset="0"
- id="stop7436" />
- <stop
- style="stop-color:#f7f7f7;stop-opacity:0.392"
- offset="1"
- id="stop7438" />
- </linearGradient>
- <linearGradient
- id="b"
- y1="11"
- x1="17"
- y2="41"
- gradientUnits="userSpaceOnUse"
- x2="44"
- gradientTransform="translate(0 1004.36)">
- <stop
- id="stop7441" />
- <stop
- offset="1"
- stop-opacity="0"
- id="stop7443" />
- </linearGradient>
- <linearGradient
- id="c"
- y1="40"
- y2="6"
- gradientUnits="userSpaceOnUse"
- x2="0"
- gradientTransform="matrix(0.94118,0,0,0.91176,1.412,2.08)">
- <stop
- stop-color="#b1b1b1"
- id="stop7446" />
- <stop
- offset="1"
- stop-color="#dddddd"
- id="stop7448" />
- </linearGradient>
- <linearGradient
- xlink:href="#b"
- id="d-9"
- y1="21"
- x1="23"
- y2="39"
- gradientUnits="userSpaceOnUse"
- x2="40" />
- <linearGradient
- id="e-4"
- y1="1040.95"
- y2="1012.95"
- gradientUnits="userSpaceOnUse"
- x2="0"
- gradientTransform="translate(0,-1004.36)">
- <stop
- stop-color="#f2f2f2"
- id="stop7452" />
- <stop
- offset="1"
- stop-color="#ffffff"
- id="stop7454" />
- </linearGradient>
- <linearGradient
- gradientTransform="rotate(180,39.999995,19)"
- x2="49"
- gradientUnits="userSpaceOnUse"
- y2="20.735"
- x1="49.088"
- y1="26.497"
- id="d-3">
- <stop
- id="stop7457" />
- <stop
- stop-opacity="0"
- stop-color="#655c6f"
- offset="1"
- id="stop7459" />
- </linearGradient>
- <linearGradient
- xlink:href="#linearGradient4477"
- id="linearGradient4483"
- x1="34.237"
- y1="10.71"
- x2="30.045"
- y2="5.495"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- xlink:href="#linearGradient4485"
- id="linearGradient4491"
- x1="13"
- y1="44.006"
- x2="13"
- y2="3.172"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="a-6"
- y1="41"
- y2="7"
- x2="0"
- gradientUnits="userSpaceOnUse">
- <stop
- stop-color="#728790"
- id="stop7878" />
- <stop
- offset="1"
- stop-color="#85969e"
- id="stop7880" />
- </linearGradient>
- <linearGradient
- id="b-9"
- y1="36"
- y2="12"
- x2="0"
- gradientUnits="userSpaceOnUse">
- <stop
- stop-color="#06a370"
- id="stop7883" />
- <stop
- offset="1"
- stop-color="#22d1b0"
- id="stop7885" />
- </linearGradient>
- <linearGradient
- id="c-2"
- y1="44"
- y2="4"
- x2="0"
- gradientUnits="userSpaceOnUse">
- <stop
- stop-color="#2a2c2f"
- id="stop7888" />
- <stop
- offset="1"
- stop-color="#424649"
- id="stop7890" />
- </linearGradient>
- <linearGradient
- id="d-2"
- y1="15"
- x1="15"
- y2="44"
- x2="44"
- gradientUnits="userSpaceOnUse">
- <stop
- stop-color="#020303"
- id="stop7893" />
- <stop
- offset="1"
- stop-color="#424649"
- stop-opacity="0"
- id="stop7895" />
- </linearGradient>
- <linearGradient
- id="linearGradient4166">
- <stop
- style="stop-color:#f11c1c;stop-opacity:1"
- offset="0"
- id="stop8122" />
- <stop
- style="stop-color:#e05e4c;stop-opacity:1"
- offset="1"
- id="stop8124" />
- </linearGradient>
- <linearGradient
- gradientUnits="userSpaceOnUse"
- x2="0"
- y2="503.8"
- y1="544.8"
- id="linearGradient4173">
- <stop
- offset="0"
- stop-color="#44484c"
- id="stop8127" />
- <stop
- stop-color="#1d1e1e"
- offset="1"
- id="stop8129" />
- </linearGradient>
- <linearGradient
- xlink:href="#linearGradient4166"
- id="linearGradient4193"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-384.565,-499.911)"
- y1="544.8"
- x2="0"
- y2="503.8" />
- <linearGradient
- xlink:href="#linearGradient4173"
- id="linearGradient4246"
- gradientUnits="userSpaceOnUse"
- gradientTransform="rotate(-120,72.136052,385.66288)"
- y1="532.205"
- x2="386.827"
- y2="524.418"
- x1="428.029" />
- <linearGradient
- xlink:href="#linearGradient4166"
- id="linearGradient4248"
- gradientUnits="userSpaceOnUse"
- gradientTransform="rotate(-120,72.101514,385.71693)"
- y1="544.8"
- x2="0"
- y2="503.8" />
- <linearGradient
- xlink:href="#a"
- id="linearGradient4288"
- x1="7.669"
- y1="14.513"
- x2="42.224"
- y2="34.463"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- xlink:href="#linearGradient4166"
- id="linearGradient4172"
- x1="18.437"
- y1="38.559"
- x2="13.059"
- y2="31.145"
- gradientUnits="userSpaceOnUse" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0.0"
- inkscape:pageshadow="2"
- inkscape:zoom="0.37566154"
- inkscape:cx="408.4958"
- inkscape:cy="618.56227"
- inkscape:document-units="mm"
- inkscape:current-layer="g7945"
- inkscape:document-rotation="0"
- showgrid="false"
- inkscape:window-width="1393"
- inkscape:window-height="694"
- inkscape:window-x="61"
- inkscape:window-y="32"
- inkscape:window-maximized="0"
- showguides="true"
- inkscape:guide-bbox="true">
- <sodipodi:guide
- position="134.5064,399.45284"
- orientation="0,-1"
- id="guide6786" />
- </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="Layer 1"
- inkscape:groupmode="layer"
- id="layer1">
- <path
- style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 327.47595,206.02676 Z"
- id="path4247" />
- <path
- style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 351.76253,233.11052 Z"
- id="path4251" />
- <path
- style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 287.82073,46.670878 Z"
- id="path4259" />
- <path
- style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 221.02481,45.744788 Z"
- id="path4261" />
- <path
- style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 84.590685,109.93491 Z"
- id="path6770" />
- <g
- id="g7945"
- transform="matrix(6.5775104,0,0,6.4832931,-1156.6083,-22.283756)"
- inkscape:transform-center-x="44.212158"
- inkscape:transform-center-y="-175.37705">
- <path
- style="fill:none;stroke:#000000;stroke-width:0.0405167px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 179.73356,7.6490165 Z"
- id="path8011" />
- <rect
- style="opacity:1;fill:#ccced7;fill-opacity:1;fill-rule:nonzero;stroke:#a4a4a4;stroke-width:0.53596872;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
- id="rect8278"
- width="38.694481"
- height="40.34346"
- x="179.03389"
- y="6.2429066"
- ry="5.8129025" />
- <path
- style="opacity:1;fill:#ccced7;fill-opacity:1;fill-rule:nonzero;stroke:#3f8ea0;stroke-width:6.85106;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
- id="path8386"
- sodipodi:type="arc"
- sodipodi:cx="99.971909"
- sodipodi:cy="-168.23965"
- sodipodi:rx="8.7930307"
- sodipodi:ry="8.8282995"
- sodipodi:start="0.4702423"
- sodipodi:end="4.0625847"
- sodipodi:arc-type="arc"
- d="m 107.81053,-164.23953 a 8.7930307,8.8282995 0 0 1 -8.689276,4.78677 8.7930307,8.8282995 0 0 1 -7.608496,-6.37723 8.7930307,8.8282995 0 0 1 3.139098,-9.43878"
- transform="matrix(0.40451828,0.91452991,-0.91068598,0.41309932,0,0)"
- sodipodi:open="true"
- inkscape:transform-center-x="19.201984"
- inkscape:transform-center-y="-1.3310521" />
- <rect
- style="opacity:1;fill:#3f8ea0;fill-opacity:1;fill-rule:nonzero;stroke:#6b6b6b;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
- id="rect8380"
- width="8.7181559"
- height="5.849184"
- x="203.19423"
- y="23.131739" />
- <rect
- style="opacity:1;fill:#3f8ea0;fill-opacity:1;fill-rule:nonzero;stroke:#6b6b6b;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
- id="rect8378"
- width="7.7970076"
- height="33.748722"
- x="195.7812"
- y="9.6293049"
- ry="0" />
- <rect
- style="opacity:1;fill:#3f8ea0;fill-opacity:1;fill-rule:nonzero;stroke:#6b6b6b;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
- id="rect8382"
- width="7.8767648"
- height="9.8147783"
- x="206.81757"
- y="9.6293049"
- ry="0" />
- <rect
- style="opacity:1;fill:#3f8ea0;fill-opacity:1;fill-rule:nonzero;stroke:#6b6b6b;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
- id="rect8384"
- width="7.8767648"
- height="9.8147783"
- x="206.7887"
- y="33.563251"
- ry="0" />
- <rect
- style="opacity:1;fill:#3f8ea0;fill-opacity:1;fill-rule:nonzero;stroke:#6b6b6b;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
- id="rect8390"
- width="8.7181559"
- height="5.849184"
- x="192.02081"
- y="9.6677485"
- ry="2.924592" />
- </g>
- </g>
- <style
- type="text/css"
- id="current-color-scheme">
- .ColorScheme-Text {
- color:#232629;
- }
- </style>
- <style
- type="text/css"
- id="current-color-scheme-3">
- .ColorScheme-Text {
- color:#232629;
- }
- </style>
- <style
- type="text/css"
- id="current-color-scheme-6">
- .ColorScheme-Text {
- color:#232629;
- }
- </style>
- <style
- type="text/css"
- id="current-color-scheme-67">
- .ColorScheme-Text {
- color:#232629;
- }
- </style>
- </svg>
|