sitemap.xml 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221
  1. <shapes name="mxgraph.sitemap">
  2. <shape aspect="variable" h="350" name="about us" strokewidth="inherit" w="600">
  3. <connections>
  4. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  5. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  6. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  7. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  8. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  9. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  10. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  11. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  12. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  13. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  14. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  15. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  16. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  17. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  18. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  19. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  20. </connections>
  21. <background>
  22. <path>
  23. <move x="10" y="350"/>
  24. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  25. <line x="0" y="10"/>
  26. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  27. <line x="590" y="0"/>
  28. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  29. <line x="600" y="340"/>
  30. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  31. <close/>
  32. </path>
  33. </background>
  34. <foreground>
  35. <fillstroke/>
  36. <fillcolor color="#ffffff"/>
  37. <alpha alpha="0.5"/>
  38. <path>
  39. <move x="379.62" y="297.61"/>
  40. <curve x1="376.48" x2="375.62" x3="375.89" y1="297.55" y2="295.2" y3="291.68"/>
  41. <curve x1="377.42" x2="379.17" x3="382.59" y1="264.4" y2="235.59" y3="214.88"/>
  42. <curve x1="384.85" x2="387.43" x3="392.4" y1="204.98" y2="196.26" y3="196.06"/>
  43. <curve x1="399.83" x2="407.57" x3="414.44" y1="195.98" y2="195.64" y3="196.01"/>
  44. <curve x1="428.23" x2="439.38" x3="438.96" y1="196.66" y2="206.93" y3="220.58"/>
  45. <line x="438.72" y="291.1"/>
  46. <curve x1="426.13" x2="410.46" x3="379.62" y1="293.94" y2="298.07" y3="297.61"/>
  47. <close/>
  48. <move x="240.7" y="313.7"/>
  49. <curve x1="238.28" x2="235.36" x3="235.56" y1="313.31" y2="312.46" y3="309.17"/>
  50. <line x="235.47" y="213.62"/>
  51. <curve x1="235.33" x2="249.78" x3="264.52" y1="199.97" y2="186.76" y3="186.35"/>
  52. <line x="281.76" y="186.29"/>
  53. <curve x1="288.37" x2="294.37" x3="300.37" y1="202.71" y2="211.34" y3="219.98"/>
  54. <curve x1="308.9" x2="315.51" x3="321.05" y1="212.56" y2="200.61" y3="186.16"/>
  55. <line x="338.5" y="186.47"/>
  56. <curve x1="352.54" x2="368.41" x3="368.41" y1="186.47" y2="198.94" y3="218.82"/>
  57. <line x="368.19" y="308.93"/>
  58. <curve x1="368.19" x2="366.67" x3="363.57" y1="311.2" y2="312.01" y3="312.95"/>
  59. <curve x1="343.12" x2="276.9" x3="240.7" y1="319.6" y2="320.12" y3="313.7"/>
  60. <close/>
  61. <move x="381.92" y="187.19"/>
  62. <curve x1="366.3" x2="351.39" x3="351.39" y1="187.19" y2="174.17" y3="155.66"/>
  63. <curve x1="351.39" x2="363.47" x3="381.92" y1="144.09" y2="125.64" y3="125.64"/>
  64. <curve x1="402.46" x2="413.22" x3="413.22" y1="125.64" y2="141.78" y3="155.66"/>
  65. <curve x1="413.22" x2="402.35" x3="381.92" y1="172.74" y2="187.19" y3="187.19"/>
  66. <close/>
  67. <move x="301.19" y="180.4"/>
  68. <curve x1="282.75" x2="264.61" x3="264.61" y1="180.4" y2="165.72" y3="142.99"/>
  69. <curve x1="264.61" x2="283.66" x3="301.19" y1="121.44" y2="105.97" y3="105.97"/>
  70. <curve x1="320.25" x2="339.01" x3="339.01" y1="105.97" y2="120.97" y3="142.99"/>
  71. <curve x1="339.01" x2="323.48" x3="301.19" y1="160.91" y2="180.4" y3="180.4"/>
  72. <close/>
  73. <move x="220.09" y="187.42"/>
  74. <curve x1="201.57" x2="189.8" x3="189.8" y1="187.42" y2="170.97" y3="157.02"/>
  75. <curve x1="189.8" x2="209.76" x3="221.7" y1="133.36" y2="125.87" y3="125.87"/>
  76. <curve x1="238.69" x2="251.45" x3="251.45" y1="125.87" y2="140.96" y3="157.34"/>
  77. <curve x1="251.45" x2="236.65" x3="220.09" y1="173.65" y2="187.42" y3="187.42"/>
  78. <close/>
  79. <move x="164.07" y="291.1"/>
  80. <line x="163.98" y="218.64"/>
  81. <curve x1="163.93" x2="175.4" x3="186.64" y1="207.09" y2="196.9" y3="196"/>
  82. <line x="207.65" y="195.74"/>
  83. <curve x1="211.48" x2="214.84" x3="216.26" y1="195.74" y2="197.39" y3="200.68"/>
  84. <curve x1="219.51" x2="221.51" x3="223.13" y1="207.2" y2="220.84" y3="233.78"/>
  85. <curve x1="223.95" x2="225.17" x3="225.99" y1="242.52" y2="264.53" y3="276.95"/>
  86. <curve x1="226.49" x2="226.84" x3="226.7" y1="287.24" y2="291.36" y3="297.59"/>
  87. <curve x1="204.51" x2="189.67" x3="164.07" y1="297.95" y2="297.1" y3="291.1"/>
  88. <close/>
  89. <move x="5" y="80"/>
  90. <line x="5" y="340"/>
  91. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  92. <line x="590" y="345"/>
  93. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  94. <line x="595" y="80"/>
  95. <close/>
  96. </path>
  97. <fill/>
  98. </foreground>
  99. </shape>
  100. <shape aspect="variable" h="350" name="audio" strokewidth="inherit" w="600">
  101. <connections>
  102. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  103. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  104. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  105. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  106. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  107. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  108. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  109. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  110. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  111. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  112. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  113. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  114. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  115. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  116. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  117. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  118. </connections>
  119. <background>
  120. <path>
  121. <move x="10" y="350"/>
  122. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  123. <line x="0" y="10"/>
  124. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  125. <line x="590" y="0"/>
  126. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  127. <line x="600" y="340"/>
  128. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  129. <close/>
  130. </path>
  131. </background>
  132. <foreground>
  133. <fillstroke/>
  134. <fillcolor color="#ffffff"/>
  135. <alpha alpha="0.5"/>
  136. <path>
  137. <move x="206.08" y="254.98"/>
  138. <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="200.57" x-axis-rotation="0" y="249.26"/>
  139. <line x="200.57" y="174.72"/>
  140. <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="206.08" x-axis-rotation="0" y="169.82"/>
  141. <line x="232.63" y="169.82"/>
  142. <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="238.56" x-axis-rotation="0" y="174.72"/>
  143. <line x="238.56" y="249.26"/>
  144. <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="232.63" x-axis-rotation="0" y="254.98"/>
  145. <close/>
  146. <move x="257.14" y="254.16"/>
  147. <arc large-arc-flag="0" rx="14.3" ry="14.3" sweep-flag="1" x="252.85" x-axis-rotation="0" y="244.36"/>
  148. <line x="252.85" y="179.42"/>
  149. <arc large-arc-flag="0" rx="14.3" ry="14.3" sweep-flag="1" x="257.14" x-axis-rotation="0" y="171.04"/>
  150. <line x="316.16" y="111.61"/>
  151. <arc large-arc-flag="0" rx="1.63" ry="1.63" sweep-flag="1" x="318.82" x-axis-rotation="0" y="113.04"/>
  152. <line x="318.82" y="311.96"/>
  153. <arc large-arc-flag="0" rx="1.63" ry="1.63" sweep-flag="1" x="316.16" x-axis-rotation="0" y="313.39"/>
  154. <close/>
  155. <move x="338.01" y="237.42"/>
  156. <arc large-arc-flag="0" rx="29.61" ry="29.61" sweep-flag="0" x="338.01" x-axis-rotation="0" y="190.24"/>
  157. <line x="343.73" y="177.78"/>
  158. <arc large-arc-flag="0" rx="42.89" ry="42.89" sweep-flag="1" x="343.73" x-axis-rotation="0" y="248.85"/>
  159. <close/>
  160. <move x="353.74" y="269.07"/>
  161. <arc large-arc-flag="0" rx="64.94" ry="64.94" sweep-flag="0" x="353.74" x-axis-rotation="0" y="158.59"/>
  162. <line x="360.48" y="144.49"/>
  163. <arc large-arc-flag="0" rx="80.06" ry="80.06" sweep-flag="1" x="360.48" x-axis-rotation="0" y="281.94"/>
  164. <close/>
  165. <move x="5" y="80"/>
  166. <line x="5" y="340"/>
  167. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  168. <line x="590" y="345"/>
  169. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  170. <line x="595" y="80"/>
  171. <close/>
  172. </path>
  173. <fill/>
  174. </foreground>
  175. </shape>
  176. <shape aspect="variable" h="350" name="biography" strokewidth="inherit" w="600">
  177. <connections>
  178. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  179. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  180. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  181. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  182. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  183. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  184. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  185. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  186. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  187. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  188. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  189. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  190. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  191. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  192. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  193. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  194. </connections>
  195. <background>
  196. <path>
  197. <move x="10" y="350"/>
  198. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  199. <line x="0" y="10"/>
  200. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  201. <line x="590" y="0"/>
  202. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  203. <line x="600" y="340"/>
  204. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  205. <close/>
  206. </path>
  207. </background>
  208. <foreground>
  209. <fillstroke/>
  210. <fillcolor color="#ffffff"/>
  211. <alpha alpha="0.5"/>
  212. <path>
  213. <move x="280.05" y="198.54"/>
  214. <curve x1="257.29" x2="235.31" x3="235.31" y1="198.54" y2="179.07" y3="149.47"/>
  215. <curve x1="235.31" x2="254.32" x3="279.64" y1="122.6" y2="99.77" y3="99.77"/>
  216. <curve x1="303.94" x2="324.31" x3="324.31" y1="99.77" y2="121.99" y3="147.91"/>
  217. <curve x1="324.31" x2="302.64" x3="280.05" y1="179.45" y2="198.54" y3="198.54"/>
  218. <close/>
  219. <move x="189.33" y="298.25"/>
  220. <curve x1="192.09" x2="192.98" x3="199.86" y1="274.95" y2="250.09" y3="230.18"/>
  221. <curve x1="202.04" x2="205.41" x3="210.25" y1="224.42" y2="219.61" y3="215.99"/>
  222. <curve x1="214.9" x2="230.44" x3="233.4" y1="212.41" y2="203.68" y3="202.85"/>
  223. <curve x1="236.25" x2="239.66" x3="241.89" y1="201.75" y2="201.82" y3="203.62"/>
  224. <curve x1="264.9" x2="297.25" x3="318.29" y1="224.94" y2="222.51" y3="204"/>
  225. <curve x1="319.82" x2="323.06" x3="326.6" y1="202.52" y2="201.84" y3="203.08"/>
  226. <curve x1="333.49" x2="348.62" x3="349.96" y1="205.64" y2="214.82" y3="216.13"/>
  227. <curve x1="353.81" x2="356.5" x3="358.51" y1="218.89" y2="222.36" y3="226.25"/>
  228. <curve x1="357.1" x2="355.69" x3="354.32" y1="226.98" y2="227.78" y3="228.83"/>
  229. <curve x1="350.96" x2="347.24" x3="343.46" y1="226.28" y2="224.72" y3="224.42"/>
  230. <line x="311.07" y="224.42"/>
  231. <curve x1="302.93" x2="295.7" x3="295.06" y1="224.42" y2="231.27" y3="239.1"/>
  232. <curve x1="292.4" x2="289.02" x3="289.03" y1="241.27" y2="244.7" y3="251.37"/>
  233. <line x="289.03" y="298.25"/>
  234. <close/>
  235. <move x="318.7" y="262.99"/>
  236. <line x="318.7" y="257.07"/>
  237. <line x="342.43" y="257.07"/>
  238. <line x="342.43" y="262.99"/>
  239. <close/>
  240. <move x="318.7" y="277.83"/>
  241. <line x="318.7" y="271.9"/>
  242. <line x="342.43" y="271.9"/>
  243. <line x="342.43" y="277.83"/>
  244. <close/>
  245. <move x="318.7" y="292.66"/>
  246. <line x="318.7" y="286.74"/>
  247. <line x="342.43" y="286.74"/>
  248. <line x="342.43" y="292.66"/>
  249. <close/>
  250. <move x="366.22" y="262.99"/>
  251. <line x="366.22" y="257.07"/>
  252. <line x="389.95" y="257.07"/>
  253. <line x="389.95" y="262.99"/>
  254. <close/>
  255. <move x="366.22" y="277.83"/>
  256. <line x="366.22" y="271.9"/>
  257. <line x="389.95" y="271.9"/>
  258. <line x="389.95" y="277.83"/>
  259. <close/>
  260. <move x="366.22" y="292.66"/>
  261. <line x="366.22" y="286.74"/>
  262. <line x="389.95" y="286.74"/>
  263. <line x="389.95" y="292.66"/>
  264. <close/>
  265. <move x="397.39" y="239.21"/>
  266. <line x="368.75" y="239.21"/>
  267. <curve x1="363.66" x2="357.28" x3="357.28" y1="239.21" y2="243.98" y3="251.75"/>
  268. <line x="357.28" y="313.39"/>
  269. <curve x1="363" x2="363.78" x3="367.31" y1="311.03" y2="310.67" y3="310.42"/>
  270. <line x="398.83" y="310.44"/>
  271. <line x="398.83" y="240.84"/>
  272. <curve x1="398.83" x2="397.98" x3="397.39" y1="239.61" y2="239.19" y3="239.19"/>
  273. <close/>
  274. <move x="348.27" y="325.23"/>
  275. <curve x1="346.63" x2="345.41" x3="345.41" y1="325.23" y2="324.08" y3="322.28"/>
  276. <line x="303.59" y="322.28"/>
  277. <curve x1="300.44" x2="297.94" x3="297.94" y1="322.28" y2="319.57" y3="316.93"/>
  278. <line x="297.94" y="250.72"/>
  279. <curve x1="297.94" x2="300.56" x3="303.86" y1="247.99" y2="245.2" y3="245.2"/>
  280. <line x="303.86" y="240.31"/>
  281. <curve x1="303.86" x2="307.64" x3="310.76" y1="236.42" y2="233.34" y3="233.34"/>
  282. <line x="342.58" y="233.34"/>
  283. <curve x1="347.17" x2="351.9" x3="354.32" y1="233.42" y2="238.06" y3="242.21"/>
  284. <curve x1="357.94" x2="362.85" x3="365.98" y1="236.02" y2="233.36" y3="233.34"/>
  285. <line x="397.6" y="233.34"/>
  286. <curve x1="401.74" x2="404.76" x3="404.76" y1="233.34" y2="236.95" y3="240.48"/>
  287. <line x="404.76" y="245.2"/>
  288. <line x="405.77" y="245.25"/>
  289. <curve x1="408.49" x2="410.67" x3="410.67" y1="245.75" y2="248.11" y3="250.77"/>
  290. <line x="410.67" y="316.84"/>
  291. <curve x1="410.67" x2="407.79" x3="405.2" y1="320.09" y2="322.28" y3="322.28"/>
  292. <line x="363.21" y="322.28"/>
  293. <curve x1="363.2" x2="362.06" x3="360.49" y1="324.11" y2="325.24" y3="325.23"/>
  294. <close/>
  295. <move x="309.8" y="310.43"/>
  296. <line x="340.07" y="310.41"/>
  297. <curve x1="344.81" x2="346.42" x3="351.34" y1="310.5" y2="311.04" y3="313.39"/>
  298. <line x="351.34" y="250.44"/>
  299. <curve x1="351.34" x2="346.71" x3="339.34" y1="246.09" y2="239.21" y3="239.21"/>
  300. <line x="311.19" y="239.21"/>
  301. <curve x1="310.15" x2="309.8" x3="309.8" y1="239.21" y2="240.09" y3="240.77"/>
  302. <close/>
  303. <move x="5" y="80"/>
  304. <line x="5" y="340"/>
  305. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  306. <line x="590" y="345"/>
  307. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  308. <line x="595" y="80"/>
  309. <close/>
  310. </path>
  311. <fill/>
  312. </foreground>
  313. </shape>
  314. <shape aspect="variable" h="350" name="blog" strokewidth="inherit" w="600">
  315. <connections>
  316. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  317. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  318. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  319. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  320. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  321. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  322. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  323. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  324. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  325. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  326. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  327. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  328. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  329. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  330. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  331. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  332. </connections>
  333. <background>
  334. <path>
  335. <move x="10" y="350"/>
  336. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  337. <line x="0" y="10"/>
  338. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  339. <line x="590" y="0"/>
  340. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  341. <line x="600" y="340"/>
  342. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  343. <close/>
  344. </path>
  345. </background>
  346. <foreground>
  347. <fillstroke/>
  348. <fillcolor color="#ffffff"/>
  349. <alpha alpha="0.5"/>
  350. <path>
  351. <move x="256.11" y="128.83"/>
  352. <curve x1="244.2" x2="236.28" x3="236.34" y1="128.83" y2="122.24" y3="111"/>
  353. <curve x1="236.34" x2="242.53" x3="251.48" y1="100.59" y2="93.31" y3="93.31"/>
  354. <curve x1="346.02" x2="423.41" x3="421.91" y1="89.82" y2="162.91" y3="254.04"/>
  355. <curve x1="421.73" x2="413.12" x3="403.79" y1="264.19" y2="269.43" y3="269.43"/>
  356. <curve x1="391.72" x2="384.15" x3="384.15" y1="269.43" y2="262.02" y3="252.69"/>
  357. <curve x1="384.15" x2="330.05" x3="256.11" y1="186.77" y2="128.83" y3="128.83"/>
  358. <close/>
  359. <move x="249.88" y="188.51"/>
  360. <curve x1="241.19" x2="235.88" x3="236.29" y1="187.35" y2="180.96" y3="170.56"/>
  361. <curve x1="236.72" x2="242.92" x3="253.13" y1="159.95" y2="153.82" y3="152.85"/>
  362. <curve x1="305.44" x2="356.79" x3="358.87" y1="155.09" y2="188.93" y3="251.56"/>
  363. <curve x1="358.87" x2="350.13" x3="339.22" y1="263.44" y2="269.45" y3="269.45"/>
  364. <curve x1="328.42" x2="320.86" x3="320.53" y1="269.45" y2="263.82" y3="252.44"/>
  365. <curve x1="319.39" x2="290.37" x3="249.88" y1="213.41" y2="189.33" y3="188.51"/>
  366. <close/>
  367. <move x="211.43" y="268.7"/>
  368. <curve x1="211.43" x2="221.62" x3="238.04" y1="281.38" y2="294.65" y3="294.65"/>
  369. <curve x1="255.47" x2="263.69" x3="263.69" y1="294.65" y2="279.14" y3="268.7"/>
  370. <curve x1="263.69" x2="254.31" x3="238.04" y1="257.13" y2="243.63" y3="243.63"/>
  371. <curve x1="223.07" x2="211.43" x3="211.43" y1="243.63" y2="254.73" y3="268.7"/>
  372. <close/>
  373. <move x="177.86" y="172.41"/>
  374. <curve x1="177.86" x2="185.54" x3="194.24" y1="159.3" y2="153.47" y3="153.47"/>
  375. <curve x1="203.49" x2="211.56" x3="211.56" y1="153.47" y2="159.61" y3="173.03"/>
  376. <line x="211.56" y="215.2"/>
  377. <curve x1="223.24" x2="233.56" x3="243.24" y1="210.37" y2="209.04" y3="209.52"/>
  378. <curve x1="276.09" x2="297.61" x3="297.61" y1="211.75" y2="243.59" y3="270.03"/>
  379. <curve x1="297.61" x2="270.01" x3="236.1" y1="300.8" y2="328.92" y3="328.92"/>
  380. <curve x1="212.55" x2="177.86" x3="177.86" y1="328.92" y2="307.85" y3="270.97"/>
  381. <close/>
  382. <move x="5" y="80"/>
  383. <line x="5" y="340"/>
  384. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  385. <line x="590" y="345"/>
  386. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  387. <line x="595" y="80"/>
  388. <close/>
  389. </path>
  390. <fill/>
  391. </foreground>
  392. </shape>
  393. <shape aspect="variable" h="350" name="calendar" strokewidth="inherit" w="600">
  394. <connections>
  395. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  396. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  397. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  398. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  399. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  400. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  401. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  402. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  403. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  404. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  405. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  406. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  407. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  408. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  409. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  410. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  411. </connections>
  412. <background>
  413. <path>
  414. <move x="10" y="350"/>
  415. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  416. <line x="0" y="10"/>
  417. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  418. <line x="590" y="0"/>
  419. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  420. <line x="600" y="340"/>
  421. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  422. <close/>
  423. </path>
  424. </background>
  425. <foreground>
  426. <fillstroke/>
  427. <fillcolor color="#ffffff"/>
  428. <alpha alpha="0.5"/>
  429. <path>
  430. <move x="243.91" y="178.48"/>
  431. <line x="243.91" y="147.89"/>
  432. <line x="274.5" y="147.89"/>
  433. <line x="274.5" y="178.48"/>
  434. <close/>
  435. <move x="284.71" y="178.48"/>
  436. <line x="284.71" y="147.89"/>
  437. <line x="315.3" y="147.89"/>
  438. <line x="315.3" y="178.48"/>
  439. <close/>
  440. <move x="325.52" y="178.48"/>
  441. <line x="325.52" y="147.89"/>
  442. <line x="356.11" y="147.89"/>
  443. <line x="356.11" y="178.48"/>
  444. <close/>
  445. <move x="366.33" y="178.48"/>
  446. <line x="366.33" y="147.89"/>
  447. <line x="396.92" y="147.89"/>
  448. <line x="396.92" y="178.48"/>
  449. <close/>
  450. <move x="366.33" y="219.27"/>
  451. <line x="366.33" y="188.68"/>
  452. <line x="396.92" y="188.68"/>
  453. <line x="396.92" y="219.27"/>
  454. <close/>
  455. <move x="325.52" y="219.27"/>
  456. <line x="325.52" y="188.68"/>
  457. <line x="356.11" y="188.68"/>
  458. <line x="356.11" y="219.27"/>
  459. <close/>
  460. <move x="284.71" y="219.27"/>
  461. <line x="284.71" y="188.68"/>
  462. <line x="315.3" y="188.68"/>
  463. <line x="315.3" y="219.27"/>
  464. <close/>
  465. <move x="243.91" y="219.27"/>
  466. <line x="243.91" y="188.68"/>
  467. <line x="274.5" y="188.68"/>
  468. <line x="274.5" y="219.27"/>
  469. <close/>
  470. <move x="203.1" y="219.27"/>
  471. <line x="203.1" y="188.68"/>
  472. <line x="233.69" y="188.68"/>
  473. <line x="233.69" y="219.27"/>
  474. <close/>
  475. <move x="203.1" y="300.86"/>
  476. <line x="203.1" y="270.27"/>
  477. <line x="233.69" y="270.27"/>
  478. <line x="233.69" y="300.86"/>
  479. <close/>
  480. <move x="243.91" y="300.86"/>
  481. <line x="243.91" y="270.27"/>
  482. <line x="274.5" y="270.27"/>
  483. <line x="274.5" y="300.86"/>
  484. <close/>
  485. <move x="284.71" y="300.86"/>
  486. <line x="284.71" y="270.27"/>
  487. <line x="315.3" y="270.27"/>
  488. <line x="315.3" y="300.86"/>
  489. <close/>
  490. <move x="325.52" y="300.86"/>
  491. <line x="325.52" y="270.27"/>
  492. <line x="356.11" y="270.27"/>
  493. <line x="356.11" y="300.86"/>
  494. <close/>
  495. <move x="366.33" y="260.06"/>
  496. <line x="366.33" y="229.48"/>
  497. <line x="396.92" y="229.48"/>
  498. <line x="396.92" y="260.06"/>
  499. <close/>
  500. <move x="325.52" y="260.06"/>
  501. <line x="325.52" y="229.48"/>
  502. <line x="356.11" y="229.48"/>
  503. <line x="356.11" y="260.06"/>
  504. <close/>
  505. <move x="284.71" y="260.06"/>
  506. <line x="284.71" y="229.48"/>
  507. <line x="315.3" y="229.48"/>
  508. <line x="315.3" y="260.06"/>
  509. <close/>
  510. <move x="243.91" y="260.06"/>
  511. <line x="243.91" y="229.48"/>
  512. <line x="274.5" y="229.48"/>
  513. <line x="274.5" y="260.06"/>
  514. <close/>
  515. <move x="203.1" y="260.06"/>
  516. <line x="203.1" y="229.48"/>
  517. <line x="233.69" y="229.48"/>
  518. <line x="233.69" y="260.06"/>
  519. <close/>
  520. <move x="189.49" y="314.51"/>
  521. <line x="410.51" y="314.51"/>
  522. <line x="410.51" y="134.29"/>
  523. <line x="189.49" y="134.29"/>
  524. <close/>
  525. <move x="179.29" y="324.7"/>
  526. <line x="179.29" y="114.12"/>
  527. <curve x1="179.29" x2="186.19" x3="192.68" y1="105.7" y2="100.3" y3="100.3"/>
  528. <line x="407.24" y="100.3"/>
  529. <curve x1="415.04" x2="420.71" x3="420.71" y1="100.3" y2="106.95" y3="113.62"/>
  530. <line x="420.71" y="324.7"/>
  531. <close/>
  532. <move x="5" y="80"/>
  533. <line x="5" y="340"/>
  534. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  535. <line x="590" y="345"/>
  536. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  537. <line x="595" y="80"/>
  538. <close/>
  539. </path>
  540. <fill/>
  541. </foreground>
  542. </shape>
  543. <shape aspect="variable" h="350" name="chart" strokewidth="inherit" w="600">
  544. <connections>
  545. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  546. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  547. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  548. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  549. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  550. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  551. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  552. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  553. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  554. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  555. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  556. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  557. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  558. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  559. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  560. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  561. </connections>
  562. <background>
  563. <path>
  564. <move x="10" y="350"/>
  565. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  566. <line x="0" y="10"/>
  567. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  568. <line x="590" y="0"/>
  569. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  570. <line x="600" y="340"/>
  571. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  572. <close/>
  573. </path>
  574. </background>
  575. <foreground>
  576. <fillstroke/>
  577. <fillcolor color="#ffffff"/>
  578. <alpha alpha="0.5"/>
  579. <path>
  580. <move x="328.17" y="129.08"/>
  581. <curve x1="371.92" x2="411.8" x3="411.8" y1="136.16" y2="175.06" y3="225.92"/>
  582. <curve x1="411.8" x2="364.36" x3="313.21" y1="276.56" y2="323.26" y3="323.26"/>
  583. <curve x1="296.14" x2="273.16" x3="256.25" y1="323.26" y2="314.96" y3="303.7"/>
  584. <line x="328.17" y="231.66"/>
  585. <close/>
  586. <move x="299.64" y="209.96"/>
  587. <line x="221.17" y="131.75"/>
  588. <curve x1="240.28" x2="269.65" x3="299.64" y1="114.94" y2="101.88" y3="100.6"/>
  589. <close/>
  590. <move x="213.88" y="304.57"/>
  591. <curve x1="180.79" x2="179.04" x3="214.5" y1="258.55" y2="211.51" y3="166.16"/>
  592. <line x="283.3" y="235.27"/>
  593. <close/>
  594. <move x="5" y="80"/>
  595. <line x="5" y="340"/>
  596. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  597. <line x="590" y="345"/>
  598. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  599. <line x="595" y="80"/>
  600. <close/>
  601. </path>
  602. <fill/>
  603. </foreground>
  604. </shape>
  605. <shape aspect="variable" h="350" name="chat" strokewidth="inherit" w="600">
  606. <connections>
  607. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  608. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  609. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  610. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  611. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  612. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  613. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  614. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  615. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  616. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  617. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  618. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  619. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  620. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  621. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  622. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  623. </connections>
  624. <background>
  625. <path>
  626. <move x="10" y="350"/>
  627. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  628. <line x="0" y="10"/>
  629. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  630. <line x="590" y="0"/>
  631. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  632. <line x="600" y="340"/>
  633. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  634. <close/>
  635. </path>
  636. </background>
  637. <foreground>
  638. <fillstroke/>
  639. <fillcolor color="#ffffff"/>
  640. <alpha alpha="0.5"/>
  641. <path>
  642. <move x="236.11" y="277.34"/>
  643. <line x="215.08" y="277.34"/>
  644. <curve x1="203.78" x2="187.56" x3="187.56" y1="277.34" y2="260.97" y3="248.4"/>
  645. <line x="187.56" y="132.84"/>
  646. <curve x1="187.56" x2="203.51" x3="217.78" y1="116.34" y2="101.25" y3="101.25"/>
  647. <line x="379.52" y="101.25"/>
  648. <curve x1="396.32" x2="412.33" x3="412.33" y1="101.25" y2="116.2" y3="133.19"/>
  649. <line x="412.33" y="246.55"/>
  650. <curve x1="412.33" x2="401.17" x3="380.27" y1="258.56" y2="277.34" y3="277.34"/>
  651. <line x="315.52" y="277.34"/>
  652. <line x="261.65" y="322.05"/>
  653. <curve x1="257.92" x2="249.8" x3="244.44" y1="325.02" y2="326.08" y3="323.98"/>
  654. <curve x1="240.11" x2="235.81" x3="235.81" y1="322.05" y2="316.28" y3="311.61"/>
  655. <close/>
  656. <move x="5" y="80"/>
  657. <line x="5" y="340"/>
  658. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  659. <line x="590" y="345"/>
  660. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  661. <line x="595" y="80"/>
  662. <close/>
  663. </path>
  664. <fill/>
  665. </foreground>
  666. </shape>
  667. <shape aspect="variable" h="350" name="cloud" strokewidth="inherit" w="600">
  668. <connections>
  669. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  670. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  671. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  672. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  673. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  674. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  675. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  676. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  677. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  678. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  679. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  680. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  681. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  682. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  683. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  684. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  685. </connections>
  686. <background>
  687. <path>
  688. <move x="10" y="350"/>
  689. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  690. <line x="0" y="10"/>
  691. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  692. <line x="590" y="0"/>
  693. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  694. <line x="600" y="340"/>
  695. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  696. <close/>
  697. </path>
  698. </background>
  699. <foreground>
  700. <fillstroke/>
  701. <fillcolor color="#ffffff"/>
  702. <alpha alpha="0.5"/>
  703. <path>
  704. <move x="174.78" y="316.01"/>
  705. <arc large-arc-flag="0" rx="51.99" ry="59.71" sweep-flag="1" x="178.63" x-axis-rotation="0" y="196.67"/>
  706. <arc large-arc-flag="0" rx="46.18" ry="53.04" sweep-flag="1" x="259.44" x-axis-rotation="0" y="165.73"/>
  707. <arc large-arc-flag="0" rx="84.66" ry="97.24" sweep-flag="1" x="421.06" x-axis-rotation="0" y="205.51"/>
  708. <arc large-arc-flag="1" rx="48.45" ry="55.65" sweep-flag="1" x="432.61" x-axis-rotation="0" y="316.01"/>
  709. <close/>
  710. <move x="5" y="80"/>
  711. <line x="5" y="340"/>
  712. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  713. <line x="590" y="345"/>
  714. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  715. <line x="595" y="80"/>
  716. <close/>
  717. </path>
  718. <fill/>
  719. </foreground>
  720. </shape>
  721. <shape aspect="variable" h="350" name="contact" strokewidth="inherit" w="600">
  722. <connections>
  723. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  724. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  725. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  726. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  727. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  728. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  729. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  730. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  731. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  732. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  733. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  734. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  735. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  736. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  737. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  738. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  739. </connections>
  740. <background>
  741. <path>
  742. <move x="10" y="350"/>
  743. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  744. <line x="0" y="10"/>
  745. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  746. <line x="590" y="0"/>
  747. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  748. <line x="600" y="340"/>
  749. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  750. <close/>
  751. </path>
  752. </background>
  753. <foreground>
  754. <fillstroke/>
  755. <fillcolor color="#ffffff"/>
  756. <alpha alpha="0.5"/>
  757. <path>
  758. <move x="267.66" y="298.5"/>
  759. <line x="332.17" y="298.5"/>
  760. <line x="332.17" y="287.74"/>
  761. <curve x1="332.17" x2="337.23" x3="343.82" y1="281.82" y2="276.87" y3="276.87"/>
  762. <line x="374.57" y="276.87"/>
  763. <curve x1="380.35" x2="385.93" x3="385.93" y1="276.87" y2="281.36" y3="287.78"/>
  764. <line x="385.93" y="298.53"/>
  765. <line x="397.72" y="298.53"/>
  766. <curve x1="408.7" x2="418.4" x3="418.4" y1="298.53" y2="287.69" y3="276.15"/>
  767. <line x="418.4" y="149.59"/>
  768. <curve x1="418.4" x2="410.63" x3="394.48" y1="137.44" y2="126.21" y3="126.21"/>
  769. <line x="203.86" y="126.21"/>
  770. <curve x1="193.59" x2="181.54" x3="181.54" y1="126.21" y2="134.83" y3="148.81"/>
  771. <line x="181.54" y="277.31"/>
  772. <curve x1="181.54" x2="193.57" x3="200.9" y1="289.38" y2="298.16" y3="298.16"/>
  773. <line x="213.98" y="298.16"/>
  774. <line x="213.98" y="286.99"/>
  775. <curve x1="213.98" x2="218.46" x3="226.06" y1="283.08" y2="276.87" y3="276.87"/>
  776. <line x="256.01" y="276.87"/>
  777. <curve x1="263.79" x2="267.66" x3="267.66" y1="276.87" y2="282.63" y3="287.83"/>
  778. <close/>
  779. <move x="257.34" y="320.01"/>
  780. <curve x1="253.33" x2="246.17" x3="246.17" y1="320.01" y2="316.72" y3="307.83"/>
  781. <line x="246.17" y="298.4"/>
  782. <line x="235.58" y="298.4"/>
  783. <line x="235.58" y="309.11"/>
  784. <curve x1="235.58" x2="229.86" x3="225.13" y1="315.19" y2="320.01" y3="320.01"/>
  785. <line x="200.28" y="320.01"/>
  786. <curve x1="182.44" x2="160.43" x3="160.43" y1="320.01" y2="301.6" y3="280.5"/>
  787. <line x="160.43" y="145.76"/>
  788. <curve x1="160.43" x2="181.88" x3="202.7" y1="122.5" y2="105.06" y3="105.06"/>
  789. <line x="397.69" y="105.06"/>
  790. <curve x1="423.13" x2="439.36" x3="439.36" y1="105.06" y2="128.85" y3="144.17"/>
  791. <line x="439.36" y="277.47"/>
  792. <curve x1="439.36" x2="418.6" x3="397.91" y1="302.22" y2="320.01" y3="320.01"/>
  793. <line x="375.71" y="320.01"/>
  794. <curve x1="370.31" x2="364.4" x3="364.4" y1="320.01" y2="316.39" y3="307.14"/>
  795. <line x="364.4" y="298.16"/>
  796. <line x="353.67" y="298.16"/>
  797. <line x="353.67" y="307.14"/>
  798. <curve x1="353.67" x2="348.31" x3="341.82" y1="315.8" y2="320.01" y3="320.01"/>
  799. <close/>
  800. <move x="374.08" y="173.87"/>
  801. <line x="386.3" y="173.87"/>
  802. <line x="380.58" y="204.48"/>
  803. <curve x1="380.06" x2="378.89" x3="381.49" y1="206.67" y2="211.56" y3="211.56"/>
  804. <curve x1="386.95" x2="393.58" x3="393.58" y1="211.56" y2="205.77" y3="192"/>
  805. <curve x1="393.58" x2="379.28" x3="359.52" y1="171.41" y2="160.86" y3="160.86"/>
  806. <curve x1="337.96" x2="324.18" x3="324.18" y1="160.86" y2="175.92" y3="197.01"/>
  807. <curve x1="324.18" x2="339.77" x3="361.73" y1="219.53" y2="232.91" y3="232.91"/>
  808. <curve x1="371.48" x2="379.94" x3="386.3" y1="232.91" y2="230.08" y3="225.32"/>
  809. <line x="399.04" y="225.32"/>
  810. <curve x1="389.81" x2="376.55" x3="360.7" y1="237.94" y2="244.76" y3="244.76"/>
  811. <curve x1="333.02" x2="310.27" x3="310.27" y1="244.76" y2="224.94" y3="197.02"/>
  812. <curve x1="310.27" x2="332.49" x3="359.92" y1="169.61" y2="149.03" y3="149.03"/>
  813. <curve x1="382.79" x2="405.14" x3="405.14" y1="149.03" y2="164.09" y3="187.9"/>
  814. <curve x1="405.14" x2="380.71" x3="373.05" y1="217.36" y2="225.08" y3="225.08"/>
  815. <curve x1="368.23" x2="365.12" x3="364.98" y1="225.08" y2="222.89" y3="218.78"/>
  816. <line x="364.72" y="218.78"/>
  817. <curve x1="362.12" x2="358.09" x3="352.25" y1="222.25" y2="225.21" y3="225.21"/>
  818. <curve x1="341.06" x2="330.8" x3="330.8" y1="225.21" y2="214.66" y3="201.93"/>
  819. <curve x1="330.8" x2="341.07" x3="356.93" y1="186.87" y2="172.59" y3="172.59"/>
  820. <curve x1="363.55" x2="369.02" x3="372.9" y1="172.59" y2="174.77" y3="180.04"/>
  821. <close/>
  822. <move x="369.14" y="196.89"/>
  823. <curve x1="369.14" x2="365.12" x3="358.88" y1="190.72" y2="186.47" y3="186.47"/>
  824. <curve x1="351.35" x2="346.01" x3="346.01" y1="186.47" y2="193.17" y3="199.85"/>
  825. <curve x1="346.01" x2="349.53" x3="355.89" y1="205.77" y2="210.4" y3="210.4"/>
  826. <curve x1="363.95" x2="369.14" x3="369.14" y1="210.4" y2="204.23" y3="196.89"/>
  827. <close/>
  828. <move x="246.42" y="194.9"/>
  829. <curve x1="234.8" x2="224.43" x3="224.43" y1="194.9" y2="185.18" y3="170.28"/>
  830. <curve x1="224.43" x2="233.19" x3="246.01" y1="158.74" y2="146.89" y3="146.89"/>
  831. <curve x1="258.51" x2="267.69" x3="267.69" y1="146.89" y2="158.34" y3="170.84"/>
  832. <curve x1="267.69" x2="256.89" x3="246.42" y1="185.31" y2="194.9" y3="194.9"/>
  833. <close/>
  834. <move x="202.07" y="243.34"/>
  835. <curve x1="203.07" x2="204.43" x3="206.99" y1="232.69" y2="218.17" y3="210.8"/>
  836. <curve x1="208.15" x2="209.86" x3="212.63" y1="207.47" y2="205.07" y3="203.07"/>
  837. <curve x1="214.41" x2="220.77" x3="221.96" y1="201.73" y2="198.22" y3="197.65"/>
  838. <curve x1="224" x2="226.11" x3="227.91" y1="196.58" y2="196.02" y3="197.65"/>
  839. <curve x1="238.7" x2="253.64" x3="264.57" y1="207.2" y2="206.92" y3="197.68"/>
  840. <curve x1="265.84" x2="267.87" x3="269.18" y1="196.38" y2="196.72" y3="197.25"/>
  841. <curve x1="271.28" x2="277.99" x3="279.26" y1="198.04" y2="202" y3="202.82"/>
  842. <curve x1="282.98" x2="284.98" x3="286.46" y1="205.24" y2="208.48" y3="214.59"/>
  843. <curve x1="288.35" x2="289.48" x3="290.76" y1="222.81" y2="233.3" y3="243.34"/>
  844. <close/>
  845. <move x="5" y="80"/>
  846. <line x="5" y="340"/>
  847. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  848. <line x="590" y="345"/>
  849. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  850. <line x="595" y="80"/>
  851. <close/>
  852. </path>
  853. <fill/>
  854. </foreground>
  855. </shape>
  856. <shape aspect="variable" h="350" name="contact us" strokewidth="inherit" w="600">
  857. <connections>
  858. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  859. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  860. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  861. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  862. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  863. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  864. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  865. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  866. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  867. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  868. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  869. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  870. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  871. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  872. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  873. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  874. </connections>
  875. <background>
  876. <path>
  877. <move x="10" y="350"/>
  878. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  879. <line x="0" y="10"/>
  880. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  881. <line x="590" y="0"/>
  882. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  883. <line x="600" y="340"/>
  884. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  885. <close/>
  886. </path>
  887. </background>
  888. <foreground>
  889. <fillstroke/>
  890. <fillcolor color="#ffffff"/>
  891. <alpha alpha="0.5"/>
  892. <path>
  893. <move x="234.81" y="100"/>
  894. <line x="260.73" y="160.48"/>
  895. <line x="236.97" y="190.72"/>
  896. <arc large-arc-flag="0" rx="172.79" ry="172.79" sweep-flag="0" x="329.85" x-axis-rotation="0" y="272.8"/>
  897. <line x="360.09" y="238.24"/>
  898. <line x="420.56" y="268.48"/>
  899. <line x="416.25" y="296.56"/>
  900. <arc large-arc-flag="0" rx="64.8" ry="64.8" sweep-flag="1" x="355.77" x-axis-rotation="0" y="324.63"/>
  901. <arc large-arc-flag="0" rx="237.59" ry="237.59" sweep-flag="1" x="179.52" x-axis-rotation="0" y="156.16"/>
  902. <arc large-arc-flag="0" rx="64.8" ry="64.8" sweep-flag="1" x="206.73" x-axis-rotation="0" y="100"/>
  903. <close/>
  904. <move x="5" y="80"/>
  905. <line x="5" y="340"/>
  906. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  907. <line x="590" y="345"/>
  908. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  909. <line x="595" y="80"/>
  910. <close/>
  911. </path>
  912. <fill/>
  913. </foreground>
  914. </shape>
  915. <shape aspect="variable" h="350" name="document" strokewidth="inherit" w="600">
  916. <connections>
  917. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  918. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  919. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  920. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  921. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  922. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  923. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  924. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  925. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  926. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  927. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  928. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  929. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  930. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  931. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  932. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  933. </connections>
  934. <background>
  935. <path>
  936. <move x="10" y="350"/>
  937. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  938. <line x="0" y="10"/>
  939. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  940. <line x="590" y="0"/>
  941. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  942. <line x="600" y="340"/>
  943. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  944. <close/>
  945. </path>
  946. </background>
  947. <foreground>
  948. <fillstroke/>
  949. <fillcolor color="#ffffff"/>
  950. <alpha alpha="0.5"/>
  951. <path>
  952. <move x="193.48" y="297.56"/>
  953. <line x="193.48" y="126.54"/>
  954. <arc large-arc-flag="0" rx="29.06" ry="29.06" sweep-flag="1" x="217.4" x-axis-rotation="0" y="101.95"/>
  955. <line x="362.48" y="101.95"/>
  956. <line x="406.52" y="145.55"/>
  957. <line x="406.52" y="297.56"/>
  958. <arc large-arc-flag="0" rx="29.06" ry="29.06" sweep-flag="1" x="381.26" x-axis-rotation="0" y="323.05"/>
  959. <line x="218.07" y="323.05"/>
  960. <arc large-arc-flag="0" rx="29.06" ry="29.06" sweep-flag="1" x="193.48" x-axis-rotation="0" y="297.56"/>
  961. <close/>
  962. <move x="249.37" y="261.12"/>
  963. <line x="348.18" y="261.12"/>
  964. <line x="348.18" y="242.57"/>
  965. <line x="249.37" y="242.57"/>
  966. <close/>
  967. <move x="348.18" y="225.8"/>
  968. <line x="348.18" y="207.69"/>
  969. <line x="249.37" y="207.69"/>
  970. <line x="249.37" y="225.8"/>
  971. <close/>
  972. <move x="249.37" y="190.93"/>
  973. <line x="348.18" y="190.93"/>
  974. <line x="348.18" y="173.04"/>
  975. <line x="249.37" y="173.04"/>
  976. <close/>
  977. <move x="352.87" y="156.28"/>
  978. <line x="389.08" y="156.28"/>
  979. <line x="352.87" y="118.72"/>
  980. <close/>
  981. <move x="5" y="80"/>
  982. <line x="5" y="340"/>
  983. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  984. <line x="590" y="345"/>
  985. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  986. <line x="595" y="80"/>
  987. <close/>
  988. </path>
  989. <fill/>
  990. </foreground>
  991. </shape>
  992. <shape aspect="variable" h="350" name="download" strokewidth="inherit" w="600">
  993. <connections>
  994. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  995. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  996. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  997. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  998. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  999. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1000. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1001. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1002. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1003. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1004. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1005. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1006. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1007. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1008. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1009. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1010. </connections>
  1011. <background>
  1012. <path>
  1013. <move x="10" y="350"/>
  1014. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1015. <line x="0" y="10"/>
  1016. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1017. <line x="590" y="0"/>
  1018. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1019. <line x="600" y="340"/>
  1020. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1021. <close/>
  1022. </path>
  1023. </background>
  1024. <foreground>
  1025. <fillstroke/>
  1026. <fillcolor color="#ffffff"/>
  1027. <alpha alpha="0.5"/>
  1028. <path>
  1029. <move x="299.95" y="279.35"/>
  1030. <line x="240.62" y="205.68"/>
  1031. <line x="270.43" y="205.68"/>
  1032. <line x="270.43" y="101.12"/>
  1033. <line x="329.95" y="101.12"/>
  1034. <line x="329.95" y="205.68"/>
  1035. <line x="359.25" y="205.68"/>
  1036. <close/>
  1037. <move x="195.8" y="324.54"/>
  1038. <line x="195.8" y="250.48"/>
  1039. <line x="225.22" y="250.48"/>
  1040. <line x="225.22" y="295.34"/>
  1041. <line x="374.92" y="295.34"/>
  1042. <line x="374.92" y="250.48"/>
  1043. <line x="404.33" y="250.48"/>
  1044. <line x="404.33" y="324.54"/>
  1045. <close/>
  1046. <move x="5" y="80"/>
  1047. <line x="5" y="340"/>
  1048. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  1049. <line x="590" y="345"/>
  1050. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  1051. <line x="595" y="80"/>
  1052. <close/>
  1053. </path>
  1054. <fill/>
  1055. </foreground>
  1056. </shape>
  1057. <shape aspect="variable" h="350" name="error" strokewidth="inherit" w="600">
  1058. <connections>
  1059. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1060. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1061. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1062. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1063. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1064. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1065. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1066. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1067. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1068. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1069. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1070. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1071. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1072. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1073. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1074. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1075. </connections>
  1076. <background>
  1077. <path>
  1078. <move x="10" y="350"/>
  1079. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1080. <line x="0" y="10"/>
  1081. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1082. <line x="590" y="0"/>
  1083. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1084. <line x="600" y="340"/>
  1085. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1086. <close/>
  1087. </path>
  1088. </background>
  1089. <foreground>
  1090. <fillstroke/>
  1091. <fillcolor color="#ffffff"/>
  1092. <alpha alpha="0.5"/>
  1093. <path>
  1094. <move x="300.1" y="238.41"/>
  1095. <line x="269.39" y="269"/>
  1096. <line x="246.78" y="246.59"/>
  1097. <line x="277.61" y="215.8"/>
  1098. <line x="246.46" y="185.09"/>
  1099. <line x="269.57" y="162.28"/>
  1100. <line x="300.13" y="193.1"/>
  1101. <line x="330.86" y="162.45"/>
  1102. <line x="353.47" y="185.21"/>
  1103. <line x="322.53" y="215.92"/>
  1104. <line x="353.47" y="246.42"/>
  1105. <line x="330.71" y="269.2"/>
  1106. <close/>
  1107. <move x="299.75" y="319.9"/>
  1108. <curve x1="239.81" x2="192.65" x3="192.65" y1="319.9" y2="272.02" y3="211.38"/>
  1109. <curve x1="192.65" x2="240.85" x3="301.12" y1="152.68" y2="105.03" y3="105.03"/>
  1110. <curve x1="362.61" x2="407.46" x3="407.46" y1="105.03" y2="157.29" y3="211.48"/>
  1111. <curve x1="407.46" x2="355.46" x3="299.75" y1="276.58" y2="319.9" y3="319.9"/>
  1112. <close/>
  1113. <move x="5" y="80"/>
  1114. <line x="5" y="340"/>
  1115. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  1116. <line x="590" y="345"/>
  1117. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  1118. <line x="595" y="80"/>
  1119. <close/>
  1120. </path>
  1121. <fill/>
  1122. </foreground>
  1123. </shape>
  1124. <shape aspect="variable" h="350" name="faq" strokewidth="inherit" w="600">
  1125. <connections>
  1126. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1127. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1128. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1129. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1130. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1131. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1132. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1133. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1134. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1135. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1136. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1137. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1138. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1139. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1140. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1141. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1142. </connections>
  1143. <background>
  1144. <path>
  1145. <move x="10" y="350"/>
  1146. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1147. <line x="0" y="10"/>
  1148. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1149. <line x="590" y="0"/>
  1150. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1151. <line x="600" y="340"/>
  1152. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1153. <close/>
  1154. </path>
  1155. </background>
  1156. <foreground>
  1157. <fillstroke/>
  1158. <fillcolor color="#ffffff"/>
  1159. <alpha alpha="0.5"/>
  1160. <path>
  1161. <move x="328.51" y="234.95"/>
  1162. <line x="347.82" y="234.95"/>
  1163. <line x="347.82" y="220.18"/>
  1164. <curve x1="347.76" x2="351.6" x3="356.16" y1="213.73" y2="210.35" y3="207.71"/>
  1165. <curve x1="364.9" x2="370.56" x3="372.85" y1="202.81" y2="196.46" y3="188.01"/>
  1166. <curve x1="375.08" x2="371.39" x3="363.28" y1="175.85" y2="166.1" y3="158.26"/>
  1167. <curve x1="356.44" x2="349.23" x3="337.08" y1="151.67" y2="148.46" y3="148.2"/>
  1168. <curve x1="326.47" x2="313.92" x3="304.8" y1="148.49" y2="150.96" y3="168.1"/>
  1169. <curve x1="301.9" x2="300.85" x3="301.12" y1="173.94" y2="181.66" y3="191.85"/>
  1170. <line x="320.08" y="191.85"/>
  1171. <curve x1="320.06" x2="320.04" x3="320.57" y1="186.83" y2="182.8" y3="179.93"/>
  1172. <curve x1="322.11" x2="329.19" x3="338.28" y1="171.59" y2="167.14" y3="167.48"/>
  1173. <curve x1="344.35" x2="353.54" x3="353.22" y1="167.43" y2="171" y3="180.18"/>
  1174. <curve x1="352.7" x2="349.82" x3="342.09" y1="187.99" y2="189.12" y3="194.41"/>
  1175. <curve x1="335.31" x2="328.55" x3="328.51" y1="198.64" y2="202.43" y3="212.08"/>
  1176. <close/>
  1177. <move x="328.51" y="262.21"/>
  1178. <line x="347.82" y="262.21"/>
  1179. <line x="347.82" y="242.42"/>
  1180. <line x="328.51" y="242.42"/>
  1181. <close/>
  1182. <move x="280.01" y="279.78"/>
  1183. <curve x1="252.43" x2="234.83" x3="234.83" y1="278.59" y2="254.61" y3="234.44"/>
  1184. <line x="234.83" y="177.09"/>
  1185. <curve x1="234.83" x2="257.9" x3="280.92" y1="150.43" y2="130.66" y3="130.66"/>
  1186. <line x="393.91" y="130.66"/>
  1187. <curve x1="419.02" x2="439.57" x3="439.57" y1="130.66" y2="153.06" y3="176.04"/>
  1188. <line x="439.57" y="234.83"/>
  1189. <curve x1="439.57" x2="429.17" x3="411.21" y1="249.64" y2="268.06" y3="275.84"/>
  1190. <line x="411.21" y="326.75"/>
  1191. <line x="369.55" y="279.78"/>
  1192. <close/>
  1193. <move x="184.4" y="256.09"/>
  1194. <line x="184.4" y="213.34"/>
  1195. <curve x1="172.71" x2="160.66" x3="160.66" y1="208.81" y2="195.73" y3="177"/>
  1196. <line x="160.66" y="138.99"/>
  1197. <curve x1="160.66" x2="180.93" x3="200.67" y1="113.65" y2="98.73" y3="98.73"/>
  1198. <line x="292.15" y="98.73"/>
  1199. <curve x1="308.74" x2="318.9" x3="324.68" y1="98.92" y2="107.01" y3="114.47"/>
  1200. <line x="280.62" y="114.47"/>
  1201. <curve x1="255.21" x2="219.77" x3="219.77" y1="114.47" y2="135.64" y3="179.62"/>
  1202. <line x="219.77" y="216.82"/>
  1203. <close/>
  1204. <move x="5" y="80"/>
  1205. <line x="5" y="340"/>
  1206. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  1207. <line x="590" y="345"/>
  1208. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  1209. <line x="595" y="80"/>
  1210. <close/>
  1211. </path>
  1212. <fill/>
  1213. </foreground>
  1214. </shape>
  1215. <shape aspect="variable" h="350" name="form" strokewidth="inherit" w="600">
  1216. <connections>
  1217. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1218. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1219. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1220. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1221. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1222. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1223. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1224. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1225. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1226. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1227. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1228. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1229. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1230. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1231. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1232. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1233. </connections>
  1234. <background>
  1235. <path>
  1236. <move x="10" y="350"/>
  1237. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1238. <line x="0" y="10"/>
  1239. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1240. <line x="590" y="0"/>
  1241. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1242. <line x="600" y="340"/>
  1243. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1244. <close/>
  1245. </path>
  1246. </background>
  1247. <foreground>
  1248. <fillstroke/>
  1249. <fillcolor color="#ffffff"/>
  1250. <alpha alpha="0.5"/>
  1251. <path>
  1252. <move x="387.03" y="123.24"/>
  1253. <line x="397.08" y="123.24"/>
  1254. <line x="397.08" y="113.19"/>
  1255. <line x="387.03" y="113.19"/>
  1256. <close/>
  1257. <move x="366.95" y="123.24"/>
  1258. <line x="377" y="123.24"/>
  1259. <line x="377" y="113.19"/>
  1260. <line x="366.95" y="113.19"/>
  1261. <close/>
  1262. <move x="346.87" y="123.24"/>
  1263. <line x="356.92" y="123.24"/>
  1264. <line x="356.92" y="113.19"/>
  1265. <line x="346.87" y="113.19"/>
  1266. <close/>
  1267. <move x="363.86" y="283.9"/>
  1268. <line x="373.86" y="273.88"/>
  1269. <line x="393.91" y="273.88"/>
  1270. <curve x1="395.84" x2="397.1" x3="397.1" y1="273.88" y2="272.34" y3="270.76"/>
  1271. <line x="397.1" y="250.55"/>
  1272. <line x="407.13" y="240.45"/>
  1273. <line x="407.13" y="271.13"/>
  1274. <curve x1="407.13" x2="401.02" x3="394.43" y1="277.59" y2="283.9" y3="283.9"/>
  1275. <close/>
  1276. <move x="319.07" y="289.61"/>
  1277. <line x="307.38" y="308.35"/>
  1278. <line x="309.39" y="310.38"/>
  1279. <line x="328.09" y="298.68"/>
  1280. <close/>
  1281. <move x="318.4" y="283.58"/>
  1282. <line x="406.3" y="195.02"/>
  1283. <curve x1="408.52" x2="411.83" x3="413.49" y1="193.11" y2="193.06" y3="194.52"/>
  1284. <line x="422.87" y="203.88"/>
  1285. <curve x1="424.54" x2="423.93" x3="422.45" y1="205.94" y2="209.13" y3="211.01"/>
  1286. <line x="334.17" y="299.63"/>
  1287. <line x="298.52" y="321.64"/>
  1288. <curve x1="297.09" x2="295.41" x3="296.13" y1="322.54" y2="320.87" y3="319.26"/>
  1289. <close/>
  1290. <move x="266.5" y="163.39"/>
  1291. <line x="202.9" y="163.39"/>
  1292. <line x="202.9" y="156.71"/>
  1293. <line x="266.5" y="156.71"/>
  1294. <close/>
  1295. <move x="333.75" y="253.78"/>
  1296. <line x="202.9" y="253.78"/>
  1297. <line x="202.9" y="176.79"/>
  1298. <line x="380.35" y="176.79"/>
  1299. <line x="380.35" y="206.95"/>
  1300. <line x="373.65" y="213.66"/>
  1301. <line x="373.65" y="183.47"/>
  1302. <line x="209.6" y="183.47"/>
  1303. <line x="209.6" y="247.09"/>
  1304. <line x="340.39" y="247.09"/>
  1305. <close/>
  1306. <move x="306.21" y="283.9"/>
  1307. <line x="188.88" y="283.9"/>
  1308. <curve x1="182.41" x2="176.13" x3="176.13" y1="283.9" y2="277.74" y3="270.92"/>
  1309. <line x="176.13" y="116.64"/>
  1310. <curve x1="176.13" x2="183.46" x3="189.13" y1="108.05" y2="103.11" y3="103.11"/>
  1311. <line x="393.74" y="103.11"/>
  1312. <curve x1="400.9" x2="407.13" x3="407.13" y1="103.11" y2="108.95" y3="116.34"/>
  1313. <line x="407.13" y="183.88"/>
  1314. <curve x1="402.53" x2="399.63" x3="397.1" y1="184.86" y2="187.36" y3="190.18"/>
  1315. <line x="397.1" y="136.6"/>
  1316. <line x="186.15" y="136.6"/>
  1317. <line x="186.15" y="270.8"/>
  1318. <curve x1="186.43" x2="187.69" x3="189.22" y1="273.09" y2="273.71" y3="273.86"/>
  1319. <line x="313.74" y="273.86"/>
  1320. <line x="310.36" y="277.29"/>
  1321. <close/>
  1322. <move x="5" y="80"/>
  1323. <line x="5" y="340"/>
  1324. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  1325. <line x="590" y="345"/>
  1326. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  1327. <line x="595" y="80"/>
  1328. <close/>
  1329. </path>
  1330. <fill/>
  1331. </foreground>
  1332. </shape>
  1333. <shape aspect="variable" h="350" name="gallery" strokewidth="inherit" w="600">
  1334. <connections>
  1335. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1336. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1337. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1338. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1339. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1340. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1341. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1342. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1343. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1344. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1345. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1346. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1347. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1348. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1349. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1350. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1351. </connections>
  1352. <background>
  1353. <path>
  1354. <move x="10" y="350"/>
  1355. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1356. <line x="0" y="10"/>
  1357. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1358. <line x="590" y="0"/>
  1359. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1360. <line x="600" y="340"/>
  1361. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1362. <close/>
  1363. </path>
  1364. </background>
  1365. <foreground>
  1366. <fillstroke/>
  1367. <fillcolor color="#ffffff"/>
  1368. <alpha alpha="0.5"/>
  1369. <path>
  1370. <move x="211.96" y="213.6"/>
  1371. <curve x1="223.87" x2="230.04" x3="230.04" y1="213.6" y2="206.01" y3="195.64"/>
  1372. <curve x1="230.04" x2="223.68" x3="211.96" y1="185.36" y2="176.82" y3="176.82"/>
  1373. <curve x1="201.28" x2="193.49" x3="193.49" y1="176.82" y2="184.43" y3="195.64"/>
  1374. <curve x1="193.49" x2="201.74" x3="211.96" y1="207.86" y2="213.6" y3="213.6"/>
  1375. <close/>
  1376. <move x="260.71" y="171.78"/>
  1377. <curve x1="270.63" x2="279.22" x3="279.22" y1="171.78" y2="164.67" y3="153.66"/>
  1378. <curve x1="279.22" x2="272.52" x3="261.45" y1="142.36" y2="134.56" y3="134.56"/>
  1379. <curve x1="250.17" x2="241.97" x3="241.97" y1="134.56" y2="143.05" y3="153.45"/>
  1380. <curve x1="241.97" x2="252.81" x3="260.71" y1="164.7" y2="171.78" y3="171.78"/>
  1381. <close/>
  1382. <move x="317.11" y="172.08"/>
  1383. <curve x1="327.59" x2="335.46" x3="335.46" y1="172.08" y2="162.39" y3="154.01"/>
  1384. <curve x1="335.46" x2="328.54" x3="317.11" y1="142.69" y2="134.38" y3="134.38"/>
  1385. <curve x1="306.29" x2="298.88" x3="298.88" y1="134.38" y2="143.96" y3="154.01"/>
  1386. <curve x1="298.88" x2="306.75" x3="317.11" y1="164.31" y2="172.08" y3="172.08"/>
  1387. <close/>
  1388. <move x="373.12" y="200.73"/>
  1389. <curve x1="383.28" x2="392.15" x3="392.15" y1="200.73" y2="191.1" y3="181.43"/>
  1390. <curve x1="392.15" x2="383.51" x3="373.12" y1="171.09" y2="162.45" y3="162.45"/>
  1391. <curve x1="362.58" x2="354.2" x3="354.2" y1="162.45" y2="173.12" y3="181.43"/>
  1392. <curve x1="354.2" x2="363.79" x3="373.12" y1="191.08" y2="200.73" y3="200.73"/>
  1393. <close/>
  1394. <move x="300.19" y="291.36"/>
  1395. <curve x1="312.27" x2="321.31" x3="321.31" y1="291.36" y2="279.23" y3="269.61"/>
  1396. <curve x1="321.31" x2="311.92" x3="300.19" y1="256.58" y2="246.74" y3="246.74"/>
  1397. <curve x1="285.38" x2="277.69" x3="277.69" y1="246.74" y2="259.51" y3="269.61"/>
  1398. <curve x1="277.69" x2="289.97" x3="300.19" y1="282.78" y2="291.36" y3="291.36"/>
  1399. <close/>
  1400. <move x="290.9" y="317.53"/>
  1401. <curve x1="279.89" x2="264.7" x3="257.75" y1="316.17" y2="307.23" y3="296.34"/>
  1402. <curve x1="253.9" x2="250.96" x3="249.77" y1="290.71" y2="281.01" y3="263.44"/>
  1403. <curve x1="249.08" x2="239.53" x3="223.35" y1="249.21" y2="245.04" y3="241.75"/>
  1404. <curve x1="216.48" x2="202.39" x3="194.18" y1="240.66" y2="241.93" y3="239.76"/>
  1405. <curve x1="183.92" x2="167.05" x3="166.27" y1="235.71" y2="221.88" y3="196.38"/>
  1406. <curve x1="166.45" x2="173.77" x3="200.67" y1="178.7" y2="160.06" y3="135.81"/>
  1407. <curve x1="217.37" x2="246.52" x3="277.69" y1="120.9" y2="109.65" y3="107.14"/>
  1408. <curve x1="317.63" x2="354.07" x3="385.38" y1="107.82" y2="114.96" y3="131.57"/>
  1409. <curve x1="420.88" x2="433.49" x3="432.49" y1="154.67" y2="188.01" y3="220.31"/>
  1410. <curve x1="429.96" x2="412.03" x3="383.13" y1="258.94" y2="281.34" y3="298.59"/>
  1411. <curve x1="354.3" x2="320.56" x3="290.9" y1="313.12" y2="319.92" y3="317.53"/>
  1412. <close/>
  1413. <move x="5" y="80"/>
  1414. <line x="5" y="340"/>
  1415. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  1416. <line x="590" y="345"/>
  1417. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  1418. <line x="595" y="80"/>
  1419. <close/>
  1420. </path>
  1421. <fill/>
  1422. </foreground>
  1423. </shape>
  1424. <shape aspect="variable" h="350" name="game" strokewidth="inherit" w="600">
  1425. <connections>
  1426. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1427. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1428. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1429. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1430. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1431. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1432. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1433. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1434. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1435. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1436. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1437. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1438. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1439. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1440. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1441. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1442. </connections>
  1443. <background>
  1444. <path>
  1445. <move x="10" y="350"/>
  1446. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1447. <line x="0" y="10"/>
  1448. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1449. <line x="590" y="0"/>
  1450. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1451. <line x="600" y="340"/>
  1452. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1453. <close/>
  1454. </path>
  1455. </background>
  1456. <foreground>
  1457. <fillstroke/>
  1458. <fillcolor color="#ffffff"/>
  1459. <alpha alpha="0.5"/>
  1460. <path>
  1461. <move x="186.15" y="117.56"/>
  1462. <arc large-arc-flag="0" rx="95.42" ry="95.42" sweep-flag="1" x="226.87" x-axis-rotation="0" y="101.97"/>
  1463. <arc large-arc-flag="0" rx="15.9" ry="15.9" sweep-flag="1" x="237.68" x-axis-rotation="0" y="106.43"/>
  1464. <arc large-arc-flag="0" rx="79.52" ry="79.52" sweep-flag="0" x="266.31" x-axis-rotation="0" y="124.24"/>
  1465. <arc large-arc-flag="0" rx="286.27" ry="286.27" sweep-flag="0" x="334.06" x-axis-rotation="0" y="124.24"/>
  1466. <arc large-arc-flag="0" rx="95.42" ry="95.42" sweep-flag="0" x="362.69" x-axis-rotation="0" y="104.52"/>
  1467. <arc large-arc-flag="0" rx="12.72" ry="12.72" sweep-flag="1" x="372.55" x-axis-rotation="0" y="101.97"/>
  1468. <arc large-arc-flag="0" rx="95.42" ry="95.42" sweep-flag="1" x="415.17" x-axis-rotation="0" y="117.88"/>
  1469. <arc large-arc-flag="0" rx="429.41" ry="429.41" sweep-flag="1" x="457.79" x-axis-rotation="0" y="266.42"/>
  1470. <arc large-arc-flag="0" rx="111.33" ry="111.33" sweep-flag="1" x="453.97" x-axis-rotation="0" y="309.36"/>
  1471. <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="421.85" x-axis-rotation="0" y="319.22"/>
  1472. <arc large-arc-flag="0" rx="318.08" ry="318.08" sweep-flag="1" x="363.64" x-axis-rotation="0" y="272.78"/>
  1473. <arc large-arc-flag="0" rx="69.98" ry="69.98" sweep-flag="0" x="333.42" x-axis-rotation="0" y="261.65"/>
  1474. <arc large-arc-flag="0" rx="445.31" ry="445.31" sweep-flag="0" x="266.63" x-axis-rotation="0" y="261.65"/>
  1475. <arc large-arc-flag="0" rx="57.25" ry="57.25" sweep-flag="0" x="234.82" x-axis-rotation="0" y="275.01"/>
  1476. <arc large-arc-flag="0" rx="445.31" ry="445.31" sweep-flag="1" x="179.47" x-axis-rotation="0" y="319.54"/>
  1477. <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="146.07" x-axis-rotation="0" y="307.77"/>
  1478. <arc large-arc-flag="0" rx="127.23" ry="127.23" sweep-flag="1" x="145.12" x-axis-rotation="0" y="244.47"/>
  1479. <arc large-arc-flag="0" rx="477.12" ry="477.12" sweep-flag="1" x="186.15" x-axis-rotation="0" y="117.56"/>
  1480. <close/>
  1481. <move x="189.65" y="190.08"/>
  1482. <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="230.05" x-axis-rotation="0" y="229.52"/>
  1483. <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="270.12" x-axis-rotation="0" y="190.08"/>
  1484. <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="230.05" x-axis-rotation="0" y="148.73"/>
  1485. <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="189.65" x-axis-rotation="0" y="190.08"/>
  1486. <close/>
  1487. <move x="207.14" y="186.9"/>
  1488. <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="230.05" x-axis-rotation="0" y="165.59"/>
  1489. <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="252.31" x-axis-rotation="0" y="186.9"/>
  1490. <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="230.05" x-axis-rotation="0" y="210.76"/>
  1491. <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="207.14" x-axis-rotation="0" y="186.9"/>
  1492. <close/>
  1493. <move x="341.37" y="198.67"/>
  1494. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="356.32" x-axis-rotation="0" y="186.9"/>
  1495. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="341.37" x-axis-rotation="0" y="172.59"/>
  1496. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="329.6" x-axis-rotation="0" y="186.9"/>
  1497. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="341.37" x-axis-rotation="0" y="198.67"/>
  1498. <close/>
  1499. <move x="358.55" y="215.53"/>
  1500. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="226.66"/>
  1501. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="384.63" x-axis-rotation="0" y="215.53"/>
  1502. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="201.21"/>
  1503. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="358.55" x-axis-rotation="0" y="215.53"/>
  1504. <close/>
  1505. <move x="371.59" y="171"/>
  1506. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="384.63" x-axis-rotation="0" y="158.27"/>
  1507. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="144.91"/>
  1508. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="358.23" x-axis-rotation="0" y="158.27"/>
  1509. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="171"/>
  1510. <close/>
  1511. <move x="385.27" y="186.9"/>
  1512. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="398.63" x-axis-rotation="0" y="198.67"/>
  1513. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="411.99" x-axis-rotation="0" y="186.9"/>
  1514. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="398.63" x-axis-rotation="0" y="172.59"/>
  1515. <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="385.27" x-axis-rotation="0" y="186.9"/>
  1516. <close/>
  1517. <move x="5" y="80"/>
  1518. <line x="5" y="340"/>
  1519. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  1520. <line x="590" y="345"/>
  1521. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  1522. <line x="595" y="80"/>
  1523. <close/>
  1524. </path>
  1525. <fill/>
  1526. </foreground>
  1527. </shape>
  1528. <shape aspect="variable" h="350" name="home" strokewidth="inherit" w="600">
  1529. <connections>
  1530. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1531. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1532. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1533. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1534. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1535. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1536. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1537. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1538. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1539. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1540. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1541. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1542. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1543. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1544. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1545. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1546. </connections>
  1547. <background>
  1548. <path>
  1549. <move x="10" y="350"/>
  1550. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1551. <line x="0" y="10"/>
  1552. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1553. <line x="590" y="0"/>
  1554. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1555. <line x="600" y="340"/>
  1556. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1557. <close/>
  1558. </path>
  1559. </background>
  1560. <foreground>
  1561. <fillstroke/>
  1562. <fillcolor color="#ffffff"/>
  1563. <alpha alpha="0.5"/>
  1564. <path>
  1565. <move x="206.06" y="323.49"/>
  1566. <line x="206.06" y="216.15"/>
  1567. <line x="196.97" y="216.15"/>
  1568. <curve x1="190.01" x2="187.05" x3="191.13" y1="215.9" y2="208.61" y3="203.61"/>
  1569. <line x="291.98" y="105.42"/>
  1570. <curve x1="298.68" x2="301.43" x3="307.36" y1="100.02" y2="100.57" y3="104.87"/>
  1571. <line x="353.65" y="149.09"/>
  1572. <line x="353.65" y="122.15"/>
  1573. <curve x1="353.65" x2="356.13" x3="360.34" y1="119.16" y2="115.55" y3="115.55"/>
  1574. <line x="380.65" y="115.55"/>
  1575. <curve x1="383.99" x2="387.19" x3="387.19" y1="115.55" y2="118.24" y3="122.32"/>
  1576. <line x="387.19" y="182.65"/>
  1577. <line x="408.71" y="203.49"/>
  1578. <curve x1="413.4" x2="409.27" x3="402.79" y1="209" y2="216.16" y3="216.16"/>
  1579. <line x="393.89" y="216.16"/>
  1580. <line x="393.89" y="323.49"/>
  1581. <line x="323.46" y="323.49"/>
  1582. <line x="323.46" y="242.98"/>
  1583. <line x="276.49" y="242.98"/>
  1584. <line x="276.49" y="323.49"/>
  1585. <close/>
  1586. <move x="5" y="80"/>
  1587. <line x="5" y="340"/>
  1588. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  1589. <line x="590" y="345"/>
  1590. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  1591. <line x="595" y="80"/>
  1592. <close/>
  1593. </path>
  1594. <fill/>
  1595. </foreground>
  1596. </shape>
  1597. <shape aspect="variable" h="350" name="info" strokewidth="inherit" w="600">
  1598. <connections>
  1599. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1600. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1601. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1602. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1603. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1604. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1605. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1606. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1607. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1608. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1609. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1610. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1611. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1612. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1613. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1614. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1615. </connections>
  1616. <background>
  1617. <path>
  1618. <move x="10" y="350"/>
  1619. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1620. <line x="0" y="10"/>
  1621. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1622. <line x="590" y="0"/>
  1623. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1624. <line x="600" y="340"/>
  1625. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1626. <close/>
  1627. </path>
  1628. </background>
  1629. <foreground>
  1630. <fillstroke/>
  1631. <fillcolor color="#ffffff"/>
  1632. <alpha alpha="0.5"/>
  1633. <path>
  1634. <move x="314.67" y="171.67"/>
  1635. <curve x1="306.18" x2="300.1" x3="300.1" y1="171.67" y2="165.05" y3="156.99"/>
  1636. <curve x1="300.1" x2="306.02" x3="314.67" y1="149.45" y2="142.35" y3="142.35"/>
  1637. <curve x1="321.52" x2="329.32" x3="329.32" y1="142.35" y2="148.14" y3="156.99"/>
  1638. <curve x1="329.32" x2="322.74" x3="314.67" y1="165.37" y2="171.67" y3="171.67"/>
  1639. <close/>
  1640. <move x="318.97" y="257.4"/>
  1641. <curve x1="315.04" x2="310.02" x3="303.42" y1="263.89" y2="271.54" y3="276.94"/>
  1642. <curve x1="299.98" x2="294.82" x3="285.15" y1="279.61" y2="284.07" y3="283.42"/>
  1643. <curve x1="278.55" x2="270.51" x3="273.2" y1="283.11" y2="277.38" y3="266.22"/>
  1644. <line x="290.02" y="207.31"/>
  1645. <curve x1="290.72" x2="290.81" x3="288.37" y1="204.44" y2="201.2" y3="199.29"/>
  1646. <curve x1="287.19" x2="285.65" x3="284.93" y1="198.34" y2="197.66" y3="197.66"/>
  1647. <line x="279.63" y="197.78"/>
  1648. <line x="280.96" y="193.69"/>
  1649. <line x="315.11" y="188.31"/>
  1650. <line x="320.76" y="188.39"/>
  1651. <line x="298.59" y="264.86"/>
  1652. <curve x1="297.97" x2="298.71" x3="299.83" y1="267.57" y2="268.55" y3="269.53"/>
  1653. <curve x1="302.21" x2="304.24" x3="306.36" y1="271.28" y2="269.19" y3="267.32"/>
  1654. <curve x1="309.37" x2="312.33" x3="315.57" y1="264.55" y2="259.84" y3="255.39"/>
  1655. <close/>
  1656. <move x="299.96" y="300.24"/>
  1657. <curve x1="346.98" x2="387.51" x3="387.51" y1="300.24" y2="265.15" y3="213.31"/>
  1658. <curve x1="387.51" x2="349.21" x3="299.74" y1="160.89" y2="125" y3="125"/>
  1659. <curve x1="257.48" x2="212.4" x3="212.4" y1="125" y2="156.39" y3="213.04"/>
  1660. <curve x1="212.4" x2="251.24" x3="299.96" y1="262.89" y2="300.24" y3="300.24"/>
  1661. <close/>
  1662. <move x="299.6" y="319.36"/>
  1663. <curve x1="237.28" x2="192.92" x3="192.92" y1="319.36" y2="265.7" y3="213.4"/>
  1664. <curve x1="192.92" x2="245.63" x3="299.38" y1="151.5" y2="105.61" y3="105.61"/>
  1665. <curve x1="361.19" x2="406.99" x3="406.99" y1="105.61" y2="156.98" y3="213.22"/>
  1666. <curve x1="406.99" x2="359.31" x3="299.6" y1="269.6" y2="319.36" y3="319.36"/>
  1667. <close/>
  1668. <move x="5" y="80"/>
  1669. <line x="5" y="340"/>
  1670. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  1671. <line x="590" y="345"/>
  1672. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  1673. <line x="595" y="80"/>
  1674. <close/>
  1675. </path>
  1676. <fill/>
  1677. </foreground>
  1678. </shape>
  1679. <shape aspect="variable" h="350" name="jobs" strokewidth="inherit" w="600">
  1680. <connections>
  1681. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1682. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1683. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1684. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1685. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1686. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1687. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1688. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1689. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1690. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1691. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1692. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1693. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1694. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1695. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1696. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1697. </connections>
  1698. <background>
  1699. <path>
  1700. <move x="10" y="350"/>
  1701. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1702. <line x="0" y="10"/>
  1703. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1704. <line x="590" y="0"/>
  1705. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1706. <line x="600" y="340"/>
  1707. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1708. <close/>
  1709. </path>
  1710. </background>
  1711. <foreground>
  1712. <fillstroke/>
  1713. <fillcolor color="#ffffff"/>
  1714. <alpha alpha="0.5"/>
  1715. <path>
  1716. <move x="348.48" y="263.87"/>
  1717. <curve x1="357.96" x2="364.63" x3="364.63" y1="263.87" y2="255.66" y3="248.17"/>
  1718. <line x="364.63" y="193.14"/>
  1719. <curve x1="364.63" x2="357.8" x3="348.48" y1="182.48" y2="175.55" y3="175.55"/>
  1720. <close/>
  1721. <move x="284.54" y="175.55"/>
  1722. <line x="284.54" y="159.57"/>
  1723. <line x="316.36" y="159.57"/>
  1724. <line x="316.36" y="175.55"/>
  1725. <close/>
  1726. <move x="260.37" y="263.87"/>
  1727. <line x="340.53" y="263.87"/>
  1728. <line x="340.53" y="175.55"/>
  1729. <line x="324.6" y="175.55"/>
  1730. <line x="324.6" y="159.63"/>
  1731. <curve x1="324.6" x2="320.7" x3="317.05" y1="154.82" y2="151.51" y3="151.51"/>
  1732. <line x="284.08" y="151.51"/>
  1733. <curve x1="280.25" x2="276.43" x3="276.43" y1="151.51" y2="155.15" y3="159.24"/>
  1734. <line x="276.43" y="175.55"/>
  1735. <line x="260.37" y="175.55"/>
  1736. <close/>
  1737. <move x="252.48" y="175.55"/>
  1738. <curve x1="242.95" x2="236.32" x3="236.32" y1="175.55" y2="183.54" y3="190.8"/>
  1739. <line x="236.32" y="247.98"/>
  1740. <curve x1="236.32" x2="245.04" x3="252.48" y1="257.42" y2="263.87" y3="263.87"/>
  1741. <close/>
  1742. <move x="300.3" y="325.04"/>
  1743. <curve x1="236.02" x2="188.39" x3="188.39" y1="325.04" y2="271.27" y3="215.13"/>
  1744. <curve x1="188.39" x2="238.92" x3="299.13" y1="149.98" y2="101.16" y3="101.16"/>
  1745. <curve x1="365.03" x2="412.59" x3="412.59" y1="101.16" y2="153.29" y3="211.96"/>
  1746. <curve x1="412.59" x2="359.03" x3="300.3" y1="277.21" y2="325.04" y3="325.04"/>
  1747. <close/>
  1748. <move x="5" y="80"/>
  1749. <line x="5" y="340"/>
  1750. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  1751. <line x="590" y="345"/>
  1752. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  1753. <line x="595" y="80"/>
  1754. <close/>
  1755. </path>
  1756. <fill/>
  1757. </foreground>
  1758. </shape>
  1759. <shape aspect="variable" h="350" name="log" strokewidth="inherit" w="600">
  1760. <connections>
  1761. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1762. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1763. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1764. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1765. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1766. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1767. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1768. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1769. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1770. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1771. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1772. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1773. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1774. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1775. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1776. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1777. </connections>
  1778. <background>
  1779. <path>
  1780. <move x="10" y="350"/>
  1781. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1782. <line x="0" y="10"/>
  1783. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1784. <line x="590" y="0"/>
  1785. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1786. <line x="600" y="340"/>
  1787. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1788. <close/>
  1789. </path>
  1790. </background>
  1791. <foreground>
  1792. <fillstroke/>
  1793. <fillcolor color="#ffffff"/>
  1794. <alpha alpha="0.5"/>
  1795. <path>
  1796. <move x="365.74" y="210.31"/>
  1797. <line x="312.98" y="263.08"/>
  1798. <line x="311.52" y="261.67"/>
  1799. <line x="299.71" y="273.43"/>
  1800. <curve x1="298.14" x2="296.06" x3="293.93" y1="274.97" y2="275.67" y3="275.28"/>
  1801. <line x="285.73" y="279.2"/>
  1802. <curve x1="284.86" x2="284.24" x3="284.6" y1="279.57" y2="279.45" y3="278.24"/>
  1803. <line x="288.57" y="269.88"/>
  1804. <curve x1="288.23" x2="288.98" x3="290.45" y1="267.88" y2="265.6" y3="264.09"/>
  1805. <line x="302.2" y="252.33"/>
  1806. <line x="300.77" y="250.91"/>
  1807. <line x="353.54" y="198.12"/>
  1808. <close/>
  1809. <move x="351.04" y="181.62"/>
  1810. <line x="390.15" y="142.8"/>
  1811. <curve x1="391.35" x2="393.47" x3="394.85" y1="141.49" y2="141.26" y3="142.52"/>
  1812. <line x="400.55" y="148.23"/>
  1813. <line x="403.8" y="144.97"/>
  1814. <curve x1="407.77" x2="413.57" x3="418.14" y1="141.54" y2="141.67" y3="145.7"/>
  1815. <curve x1="422.55" x2="421.82" x3="419" y1="150.79" y2="156.73" y3="159.91"/>
  1816. <line x="371.49" y="207.45"/>
  1817. <line x="356.44" y="192.38"/>
  1818. <line x="396.63" y="152.53"/>
  1819. <line x="392.66" y="148.6"/>
  1820. <line x="363.93" y="177.31"/>
  1821. <curve x1="363.95" x2="362.56" x3="361.08" y1="179.61" y2="181.72" y3="182.96"/>
  1822. <curve x1="358.61" x2="356.76" x3="354.59" y1="184.8" y2="185.35" y3="185.21"/>
  1823. <close/>
  1824. <move x="225.39" y="207.08"/>
  1825. <line x="225.39" y="196.33"/>
  1826. <line x="322.28" y="196.33"/>
  1827. <line x="322.28" y="207.08"/>
  1828. <close/>
  1829. <move x="225.39" y="235.79"/>
  1830. <line x="225.39" y="225.04"/>
  1831. <line x="311.51" y="225.04"/>
  1832. <line x="300.92" y="235.79"/>
  1833. <close/>
  1834. <move x="272.04" y="282.47"/>
  1835. <line x="225.39" y="282.47"/>
  1836. <line x="225.39" y="271.7"/>
  1837. <line x="272.04" y="271.7"/>
  1838. <close/>
  1839. <move x="368.96" y="222.59"/>
  1840. <line x="368.96" y="325.56"/>
  1841. <line x="178.72" y="325.56"/>
  1842. <line x="178.72" y="99.44"/>
  1843. <line x="311.51" y="99.44"/>
  1844. <line x="364.81" y="152.71"/>
  1845. <line x="349.91" y="167.6"/>
  1846. <line x="304.35" y="167.6"/>
  1847. <line x="304.35" y="110.19"/>
  1848. <line x="189.48" y="110.19"/>
  1849. <line x="189.48" y="314.8"/>
  1850. <line x="358.18" y="314.8"/>
  1851. <line x="358.18" y="233.39"/>
  1852. <close/>
  1853. <move x="5" y="80"/>
  1854. <line x="5" y="340"/>
  1855. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  1856. <line x="590" y="345"/>
  1857. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  1858. <line x="595" y="80"/>
  1859. <close/>
  1860. </path>
  1861. <fill/>
  1862. </foreground>
  1863. </shape>
  1864. <shape aspect="variable" h="350" name="login" strokewidth="inherit" w="600">
  1865. <connections>
  1866. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1867. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1868. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1869. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1870. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1871. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1872. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1873. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1874. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1875. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1876. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1877. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1878. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1879. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1880. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1881. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1882. </connections>
  1883. <background>
  1884. <path>
  1885. <move x="10" y="350"/>
  1886. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1887. <line x="0" y="10"/>
  1888. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1889. <line x="590" y="0"/>
  1890. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1891. <line x="600" y="340"/>
  1892. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1893. <close/>
  1894. </path>
  1895. </background>
  1896. <foreground>
  1897. <fillstroke/>
  1898. <fillcolor color="#ffffff"/>
  1899. <alpha alpha="0.5"/>
  1900. <path>
  1901. <move x="164.68" y="262.83"/>
  1902. <curve x1="165.85" x2="167.85" x3="170.23" y1="246.35" y2="229.03" y3="216.48"/>
  1903. <curve x1="172.47" x2="175.21" x3="181.17" y1="206.31" y2="198.84" y3="194.05"/>
  1904. <curve x1="183.39" x2="185.72" x3="188.06" y1="192.14" y2="190.83" y3="189.58"/>
  1905. <curve x1="192.45" x2="197.22" x3="200.71" y1="187.09" y2="184.21" y3="182.67"/>
  1906. <curve x1="203.89" x2="207.37" x3="209.35" y1="181.09" y2="181.22" y3="183.12"/>
  1907. <curve x1="227.21" x2="252.79" x3="273.83" y1="198.36" y2="200.44" y3="182.69"/>
  1908. <curve x1="277.2" x2="280.6" x3="283.35" y1="180.54" y2="181.97" y3="183.4"/>
  1909. <curve x1="288.27" x2="292.72" x3="297.73" y1="185.94" y2="188.96" y3="191.92"/>
  1910. <curve x1="306.53" x2="309.28" x3="311.07" y1="197.33" y2="204.79" y3="212.39"/>
  1911. <curve x1="313.04" x2="314.7" x3="315.93" y1="220.04" y2="232.53" y3="241.85"/>
  1912. <curve x1="312.33" x2="308.94" x3="308.81" y1="244.23" y2="249.02" y3="255.04"/>
  1913. <line x="308.83" y="262.83"/>
  1914. <close/>
  1915. <move x="241.15" y="178.77"/>
  1916. <curve x1="219.38" x2="203.88" x3="203.88" y1="178.77" y2="158" y3="137.42"/>
  1917. <curve x1="203.88" x2="223.76" x3="240.92" y1="111.03" y2="95.39" y3="95.39"/>
  1918. <curve x1="261.75" x2="278.78" x3="278.78" y1="95.39" y2="113.27" y3="138.28"/>
  1919. <curve x1="278.78" x2="264.07" x3="241.15" y1="156.97" y2="178.77" y3="178.77"/>
  1920. <close/>
  1921. <move x="324.8" y="315.49"/>
  1922. <curve x1="322.01" x2="319.07" x3="319.07" y1="315.49" y2="312.67" y3="309.5"/>
  1923. <line x="319.07" y="254.7"/>
  1924. <curve x1="319.07" x2="321.55" x3="325.06" y1="252.4" y2="249.06" y3="249.06"/>
  1925. <line x="328.26" y="249.08"/>
  1926. <line x="328.27" y="230.11"/>
  1927. <curve x1="328.27" x2="342.27" x3="361.34" y1="213.91" y2="197.82" y3="197.82"/>
  1928. <curve x1="382.54" x2="394.66" x3="394.66" y1="197.82" y2="215.59" y3="230.26"/>
  1929. <line x="394.69" y="243.83"/>
  1930. <curve x1="388.73" x2="384.25" x3="384.44" y1="249.13" y2="257.17" y3="267.85"/>
  1931. <curve x1="384.96" x2="391.07" x3="397.48" y1="279.52" y2="287.44" y3="291.78"/>
  1932. <line x="397.48" y="315.49"/>
  1933. <close/>
  1934. <move x="383" y="249.06"/>
  1935. <line x="383" y="231.24"/>
  1936. <curve x1="383" x2="374.06" x3="361.48" y1="219.76" y2="209.82" y3="209.82"/>
  1937. <curve x1="350.56" x2="340.59" x3="340.59" y1="209.82" y2="219.27" y3="230.58"/>
  1938. <line x="340.59" y="249.06"/>
  1939. <close/>
  1940. <move x="415.87" y="329.61"/>
  1941. <line x="408.08" y="321.14"/>
  1942. <line x="408.08" y="285.8"/>
  1943. <curve x1="400.3" x2="395.03" x3="395.03" y1="283.07" y2="275.36" y3="267.47"/>
  1944. <curve x1="395.03" x2="405.14" x3="415.06" y1="254.81" y2="246.93" y3="246.93"/>
  1945. <curve x1="426.04" x2="435.32" x3="435.32" y1="246.93" y2="255.79" y3="267"/>
  1946. <curve x1="435.32" x2="429.47" x3="422.58" y1="276.11" y2="283.25" y3="285.79"/>
  1947. <line x="422.58" y="293.96"/>
  1948. <line x="417.65" y="299.96"/>
  1949. <line x="424.86" y="307.55"/>
  1950. <line x="418.34" y="314.47"/>
  1951. <line x="424.32" y="320.75"/>
  1952. <close/>
  1953. <move x="415.02" y="265.7"/>
  1954. <curve x1="418.37" x2="420.47" x3="420.47" y1="265.7" y2="262.83" y3="260.35"/>
  1955. <curve x1="420.47" x2="418.12" x3="415.04" y1="257.74" y2="255.08" y3="255.08"/>
  1956. <curve x1="412" x2="409.86" x3="409.86" y1="255.08" y2="257.58" y3="260.38"/>
  1957. <curve x1="409.86" x2="412.99" x3="415.02" y1="263.66" y2="265.7" y3="265.7"/>
  1958. <close/>
  1959. <move x="5" y="80"/>
  1960. <line x="5" y="340"/>
  1961. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  1962. <line x="590" y="345"/>
  1963. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  1964. <line x="595" y="80"/>
  1965. <close/>
  1966. </path>
  1967. <fill/>
  1968. </foreground>
  1969. </shape>
  1970. <shape aspect="variable" h="350" name="mail" strokewidth="inherit" w="600">
  1971. <connections>
  1972. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  1973. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  1974. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  1975. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  1976. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  1977. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  1978. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  1979. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  1980. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  1981. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  1982. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  1983. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  1984. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  1985. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  1986. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  1987. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  1988. </connections>
  1989. <background>
  1990. <path>
  1991. <move x="10" y="350"/>
  1992. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  1993. <line x="0" y="10"/>
  1994. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  1995. <line x="590" y="0"/>
  1996. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  1997. <line x="600" y="340"/>
  1998. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  1999. <close/>
  2000. </path>
  2001. </background>
  2002. <foreground>
  2003. <fillstroke/>
  2004. <fillcolor color="#ffffff"/>
  2005. <alpha alpha="0.5"/>
  2006. <path>
  2007. <move x="440.82" y="319.66"/>
  2008. <line x="159.15" y="319.66"/>
  2009. <line x="159.15" y="105.34"/>
  2010. <line x="440.85" y="105.34"/>
  2011. <line x="440.85" y="319.66"/>
  2012. <line x="440.82" y="319.66"/>
  2013. <close/>
  2014. <move x="192.49" y="299.82"/>
  2015. <line x="407.51" y="299.82"/>
  2016. <line x="336.76" y="226.76"/>
  2017. <line x="323.37" y="240.38"/>
  2018. <curve x1="317.58" x2="309.28" x3="300.55" y1="246.23" y2="249.58" y3="249.58"/>
  2019. <curve x1="300.5" x2="300.47" x3="300.41" y1="249.58" y2="249.58" y3="249.58"/>
  2020. <curve x1="291.66" x2="283.33" x3="277.57" y1="249.55" y2="246.12" y3="240.21"/>
  2021. <line x="263.95" y="226.28"/>
  2022. <line x="192.49" y="299.82"/>
  2023. <line x="192.49" y="299.82"/>
  2024. <close/>
  2025. <move x="178.79" y="139.36"/>
  2026. <line x="178.79" y="285.59"/>
  2027. <line x="250.09" y="212.16"/>
  2028. <line x="178.79" y="139.36"/>
  2029. <line x="178.79" y="139.36"/>
  2030. <close/>
  2031. <move x="350.6" y="212.7"/>
  2032. <line x="421.18" y="285.59"/>
  2033. <line x="421.18" y="141"/>
  2034. <line x="350.6" y="212.7"/>
  2035. <line x="350.6" y="212.7"/>
  2036. <close/>
  2037. <move x="192.52" y="125.18"/>
  2038. <line x="291.52" y="226.25"/>
  2039. <curve x1="293.65" x2="296.92" x3="300.47" y1="228.44" y2="229.72" y3="229.72"/>
  2040. <curve x1="300.5" x2="300.5" x3="300.53" y1="229.72" y2="229.72" y3="229.72"/>
  2041. <curve x1="304.02" x2="307.35" x3="309.42" y1="229.72" y2="228.47" y3="226.37"/>
  2042. <line x="409.05" y="125.18"/>
  2043. <line x="192.52" y="125.18"/>
  2044. <line x="192.52" y="125.18"/>
  2045. <close/>
  2046. <move x="5" y="80"/>
  2047. <line x="5" y="340"/>
  2048. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  2049. <line x="590" y="345"/>
  2050. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  2051. <line x="595" y="80"/>
  2052. <close/>
  2053. </path>
  2054. <fill/>
  2055. </foreground>
  2056. </shape>
  2057. <shape aspect="variable" h="350" name="map" strokewidth="inherit" w="600">
  2058. <connections>
  2059. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2060. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2061. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2062. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2063. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2064. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2065. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2066. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2067. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2068. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2069. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2070. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2071. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2072. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2073. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2074. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2075. </connections>
  2076. <background>
  2077. <path>
  2078. <move x="10" y="350"/>
  2079. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2080. <line x="0" y="10"/>
  2081. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2082. <line x="590" y="0"/>
  2083. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2084. <line x="600" y="340"/>
  2085. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2086. <close/>
  2087. </path>
  2088. </background>
  2089. <foreground>
  2090. <fillstroke/>
  2091. <fillcolor color="#ffffff"/>
  2092. <alpha alpha="0.5"/>
  2093. <path>
  2094. <move x="348.67" y="241.38"/>
  2095. <line x="351.79" y="226.73"/>
  2096. <curve x1="357.45" x2="362.76" x3="367.93" y1="227.74" y2="229.79" y3="232.28"/>
  2097. <line x="361.45" y="245.74"/>
  2098. <curve x1="356.78" x2="352.68" x3="348.67" y1="243.17" y2="242.14" y3="241.38"/>
  2099. <close/>
  2100. <move x="321.56" y="243.25"/>
  2101. <line x="317.26" y="229.35"/>
  2102. <curve x1="321.67" x2="326.85" x3="333.9" y1="227.72" y2="226.38" y3="225.74"/>
  2103. <line x="335.15" y="240.88"/>
  2104. <curve x1="331.34" x2="326.86" x3="321.56" y1="241.11" y2="241.86" y3="243.25"/>
  2105. <close/>
  2106. <move x="294.95" y="256.71"/>
  2107. <line x="287.54" y="243.68"/>
  2108. <curve x1="291.49" x2="296.15" x3="301.43" y1="240.92" y2="238.16" y3="235.4"/>
  2109. <line x="308.1" y="248.79"/>
  2110. <curve x1="303.89" x2="299.5" x3="294.95" y1="251.09" y2="253.74" y3="256.71"/>
  2111. <close/>
  2112. <move x="263.54" y="268.86"/>
  2113. <line x="260.74" y="254.09"/>
  2114. <curve x1="264.67" x2="269.28" x3="274.2" y1="253.17" y2="251.67" y3="249.92"/>
  2115. <line x="279.87" y="263.88"/>
  2116. <curve x1="274.68" x2="269.23" x3="263.54" y1="266.05" y2="267.69" y3="268.86"/>
  2117. <close/>
  2118. <move x="229.02" y="268.05"/>
  2119. <line x="233.26" y="253.53"/>
  2120. <curve x1="237.2" x2="241.83" x3="246.59" y1="254.8" y2="255.24" y3="255.52"/>
  2121. <line x="246.53" y="270.54"/>
  2122. <curve x1="240.33" x2="234.56" x3="229.02" y1="270.72" y2="269.7" y3="268.05"/>
  2123. <close/>
  2124. <move x="310.31" y="168.47"/>
  2125. <curve x1="324" x2="333.28" x3="333.28" y1="168.47" y2="157.23" y3="145.38"/>
  2126. <curve x1="333.28" x2="322.81" x3="310.31" y1="132.84" y2="122.66" y3="122.66"/>
  2127. <curve x1="295.9" x2="287.29" x3="287.29" y1="122.66" y2="135.21" y3="145.38"/>
  2128. <curve x1="287.29" x2="297.6" x3="310.31" y1="157.93" y2="168.47" y3="168.47"/>
  2129. <close/>
  2130. <move x="310.16" y="235.16"/>
  2131. <line x="274.39" y="158.18"/>
  2132. <curve x1="271.35" x2="269.79" x3="281.43" y1="151.5" y2="135.15" y3="120.85"/>
  2133. <curve x1="290.67" x2="301.38" x3="311.47" y1="110.87" y2="107.27" y3="107.64"/>
  2134. <curve x1="323.71" x2="338.14" x3="344.31" y1="107.64" y2="116.16" y3="128.46"/>
  2135. <curve x1="350.04" x2="349.22" x3="345.87" y1="140.51" y2="151.92" y3="158.99"/>
  2136. <close/>
  2137. <move x="186.28" y="320.82"/>
  2138. <curve x1="180.02" x2="175.96" x3="178.16" y1="320.58" y2="318.38" y3="311.17"/>
  2139. <line x="218.1" y="191.19"/>
  2140. <curve x1="220.12" x2="224.08" x3="229.45" y1="184.89" y2="183.98" y3="183.98"/>
  2141. <line x="269.91" y="183.74"/>
  2142. <line x="277.47" y="198.76"/>
  2143. <curve x1="275.47" x2="238.69" x3="238.69" y1="198.76" y2="198.82" y3="198.82"/>
  2144. <curve x1="232.34" x2="230.18" x3="228.66" y1="198.82" y2="201.57" y3="206.8"/>
  2145. <line x="216.12" y="244.68"/>
  2146. <curve x1="217.24" x2="218.84" x3="220.79" y1="245.78" y2="246.88" y3="247.98"/>
  2147. <line x="212.76" y="260.76"/>
  2148. <line x="211.2" y="259.64"/>
  2149. <line x="198.33" y="298.16"/>
  2150. <curve x1="196.75" x2="198.98" x3="204.19" y1="302.65" y2="305.24" y3="305.24"/>
  2151. <line x="389.54" y="305.36"/>
  2152. <curve x1="393.52" x2="396.26" x3="395.09" y1="305.36" y2="303.29" y3="299.32"/>
  2153. <line x="383.26" y="262.81"/>
  2154. <line x="381.15" y="263.54"/>
  2155. <curve x1="379.39" x2="376.79" x3="373.03" y1="260.77" y2="257.87" y3="254.16"/>
  2156. <line x="378.41" y="248.14"/>
  2157. <line x="363.88" y="204.8"/>
  2158. <curve x1="362.72" x2="359.6" x3="355.15" y1="200.81" y2="198.75" y3="198.75"/>
  2159. <line x="343.13" y="198.75"/>
  2160. <line x="350.73" y="183.73"/>
  2161. <line x="364" y="183.86"/>
  2162. <curve x1="370.19" x2="373.67" x3="374.78" y1="183.86" y2="186.92" y3="190.65"/>
  2163. <line x="414.38" y="309.29"/>
  2164. <curve x1="416.97" x2="412.36" x3="403.67" y1="317.3" y2="320.55" y3="320.55"/>
  2165. <close/>
  2166. <move x="5" y="80"/>
  2167. <line x="5" y="340"/>
  2168. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  2169. <line x="590" y="345"/>
  2170. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  2171. <line x="595" y="80"/>
  2172. <close/>
  2173. </path>
  2174. <fill/>
  2175. </foreground>
  2176. </shape>
  2177. <shape aspect="variable" h="350" name="news" strokewidth="inherit" w="600">
  2178. <connections>
  2179. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2180. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2181. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2182. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2183. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2184. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2185. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2186. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2187. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2188. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2189. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2190. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2191. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2192. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2193. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2194. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2195. </connections>
  2196. <background>
  2197. <path>
  2198. <move x="10" y="350"/>
  2199. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2200. <line x="0" y="10"/>
  2201. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2202. <line x="590" y="0"/>
  2203. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2204. <line x="600" y="340"/>
  2205. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2206. <close/>
  2207. </path>
  2208. </background>
  2209. <foreground>
  2210. <fillstroke/>
  2211. <fillcolor color="#ffffff"/>
  2212. <alpha alpha="0.5"/>
  2213. <path>
  2214. <move x="292.25" y="252.43"/>
  2215. <line x="347.61" y="252.43"/>
  2216. <line x="347.61" y="268.17"/>
  2217. <line x="292.25" y="268.17"/>
  2218. <close/>
  2219. <move x="292.25" y="220.62"/>
  2220. <line x="363.54" y="220.62"/>
  2221. <line x="363.54" y="236.28"/>
  2222. <line x="292.25" y="236.28"/>
  2223. <close/>
  2224. <move x="292.25" y="188.81"/>
  2225. <line x="363.54" y="188.81"/>
  2226. <line x="363.54" y="204.36"/>
  2227. <line x="292.25" y="204.36"/>
  2228. <close/>
  2229. <move x="204.5" y="172.6"/>
  2230. <line x="204.5" y="156.8"/>
  2231. <line x="363.54" y="156.8"/>
  2232. <line x="363.54" y="172.6"/>
  2233. <close/>
  2234. <move x="204.5" y="268.17"/>
  2235. <line x="204.5" y="188.81"/>
  2236. <line x="275.88" y="188.81"/>
  2237. <line x="275.88" y="268.17"/>
  2238. <close/>
  2239. <move x="385.25" y="300.11"/>
  2240. <curve x1="381.87" x2="379.82" x3="379.82" y1="296.43" y2="291.57" y3="284.13"/>
  2241. <line x="379.82" y="124.96"/>
  2242. <line x="188.42" y="124.96"/>
  2243. <line x="188.42" y="281.76"/>
  2244. <curve x1="188.42" x2="193.85" x3="206.02" y1="293.52" y2="300.11" y3="300.11"/>
  2245. <close/>
  2246. <move x="203.78" y="315.86"/>
  2247. <curve x1="184.33" x2="172.7" x3="172.7" y1="315.86" y2="301.49" y3="283.88"/>
  2248. <line x="172.7" y="109.02"/>
  2249. <line x="395.49" y="109.02"/>
  2250. <line x="395.49" y="140.93"/>
  2251. <line x="427.24" y="140.93"/>
  2252. <line x="427.24" y="284.18"/>
  2253. <curve x1="427.24" x2="419.77" x3="400.86" y1="300.89" y2="315.86" y3="315.86"/>
  2254. <close/>
  2255. <move x="5" y="80"/>
  2256. <line x="5" y="340"/>
  2257. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  2258. <line x="590" y="345"/>
  2259. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  2260. <line x="595" y="80"/>
  2261. <close/>
  2262. </path>
  2263. <fill/>
  2264. </foreground>
  2265. </shape>
  2266. <shape aspect="variable" h="350" name="page" strokewidth="inherit" w="600">
  2267. <connections>
  2268. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2269. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2270. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2271. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2272. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2273. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2274. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2275. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2276. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2277. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2278. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2279. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2280. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2281. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2282. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2283. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2284. </connections>
  2285. <background>
  2286. <path>
  2287. <move x="10" y="350"/>
  2288. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2289. <line x="0" y="10"/>
  2290. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2291. <line x="590" y="0"/>
  2292. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2293. <line x="600" y="340"/>
  2294. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2295. <close/>
  2296. </path>
  2297. </background>
  2298. <foreground>
  2299. <fillstroke/>
  2300. <fillcolor color="#ffffff"/>
  2301. <alpha alpha="0.5"/>
  2302. <path>
  2303. <move x="5" y="80"/>
  2304. <line x="5" y="340"/>
  2305. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  2306. <line x="590" y="345"/>
  2307. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  2308. <line x="595" y="80"/>
  2309. <close/>
  2310. </path>
  2311. <fill/>
  2312. </foreground>
  2313. </shape>
  2314. <shape aspect="variable" h="350" name="payment" strokewidth="inherit" w="600">
  2315. <connections>
  2316. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2317. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2318. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2319. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2320. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2321. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2322. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2323. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2324. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2325. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2326. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2327. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2328. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2329. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2330. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2331. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2332. </connections>
  2333. <background>
  2334. <path>
  2335. <move x="10" y="350"/>
  2336. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2337. <line x="0" y="10"/>
  2338. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2339. <line x="590" y="0"/>
  2340. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2341. <line x="600" y="340"/>
  2342. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2343. <close/>
  2344. </path>
  2345. </background>
  2346. <foreground>
  2347. <fillstroke/>
  2348. <fillcolor color="#ffffff"/>
  2349. <alpha alpha="0.5"/>
  2350. <path>
  2351. <move x="300.06" y="170.93"/>
  2352. <line x="300.06" y="153.93"/>
  2353. <line x="273.4" y="153.93"/>
  2354. <line x="327.39" y="100.04"/>
  2355. <line x="381.09" y="153.93"/>
  2356. <line x="354.52" y="153.93"/>
  2357. <line x="354.52" y="170.93"/>
  2358. <close/>
  2359. <move x="400.78" y="207.92"/>
  2360. <line x="400.78" y="201.48"/>
  2361. <curve x1="400.78" x2="398.71" x3="393.7" y1="197.42" y2="193.21" y3="193.21"/>
  2362. <line x="264.57" y="193.21"/>
  2363. <curve x1="260.3" x2="257.1" x3="257.1" y1="193.21" y2="197.29" y3="200.92"/>
  2364. <line x="257.1" y="207.92"/>
  2365. <close/>
  2366. <move x="257.1" y="235.17"/>
  2367. <line x="257.1" y="272.56"/>
  2368. <curve x1="257.1" x2="260.34" x3="264.94" y1="278.21" y2="281.57" y3="281.57"/>
  2369. <line x="391.41" y="281.57"/>
  2370. <curve x1="397.67" x2="400.8" x3="400.78" y1="281.57" y2="278.89" y3="272.84"/>
  2371. <line x="400.78" y="235.17"/>
  2372. <close/>
  2373. <move x="264.15" y="292.05"/>
  2374. <curve x1="257.95" x2="247.01" x3="247.01" y1="292.05" y2="285.06" y3="275.27"/>
  2375. <line x="247.01" y="199.33"/>
  2376. <curve x1="247.01" x2="254.61" x3="265.55" y1="191.36" y2="182.73" y3="182.73"/>
  2377. <line x="392.45" y="182.73"/>
  2378. <curve x1="401.82" x2="410.75" x3="410.75" y1="182.73" y2="189.44" y3="198.82"/>
  2379. <line x="410.75" y="274.97"/>
  2380. <curve x1="410.75" x2="401.34" x3="391.07" y1="285.41" y2="292.05" y3="292.05"/>
  2381. <close/>
  2382. <move x="345.23" y="303.48"/>
  2383. <line x="337.47" y="317.49"/>
  2384. <curve x1="333.29" x2="321.88" x3="311.23" y1="323.97" y2="328.54" y3="321.6"/>
  2385. <line x="279.84" y="303.48"/>
  2386. <close/>
  2387. <move x="235.57" y="278.07"/>
  2388. <line x="202.5" y="259.01"/>
  2389. <curve x1="193.02" x2="190.57" x3="196.34" y1="253.51" y2="242.97" y3="232.86"/>
  2390. <line x="231.83" y="171.31"/>
  2391. <curve x1="237.37" x2="249.06" x3="255.56" y1="162.02" y2="159.43" y3="163.09"/>
  2392. <line x="268.73" y="171.26"/>
  2393. <line x="261.81" y="171.26"/>
  2394. <curve x1="249.09" x2="235.57" x3="235.57" y1="171.26" y2="183.64" y3="198.77"/>
  2395. <close/>
  2396. <move x="5" y="80"/>
  2397. <line x="5" y="340"/>
  2398. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  2399. <line x="590" y="345"/>
  2400. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  2401. <line x="595" y="80"/>
  2402. <close/>
  2403. </path>
  2404. <fill/>
  2405. </foreground>
  2406. </shape>
  2407. <shape aspect="variable" h="350" name="photo" strokewidth="inherit" w="600">
  2408. <connections>
  2409. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2410. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2411. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2412. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2413. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2414. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2415. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2416. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2417. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2418. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2419. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2420. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2421. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2422. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2423. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2424. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2425. </connections>
  2426. <background>
  2427. <path>
  2428. <move x="10" y="350"/>
  2429. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2430. <line x="0" y="10"/>
  2431. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2432. <line x="590" y="0"/>
  2433. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2434. <line x="600" y="340"/>
  2435. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2436. <close/>
  2437. </path>
  2438. </background>
  2439. <foreground>
  2440. <fillstroke/>
  2441. <fillcolor color="#ffffff"/>
  2442. <alpha alpha="0.5"/>
  2443. <path>
  2444. <move x="372.53" y="188.28"/>
  2445. <curve x1="360.17" x2="348.38" x3="348.38" y1="188.28" y2="177.89" y3="163.51"/>
  2446. <curve x1="348.38" x2="358.91" x3="372.71" y1="151.57" y2="139.98" y3="139.98"/>
  2447. <curve x1="383.06" x2="396.59" x3="396.59" y1="139.98" y2="148.37" y3="164.31"/>
  2448. <curve x1="396.59" x2="384.47" x3="372.53" y1="178.15" y2="188.28" y3="188.28"/>
  2449. <close/>
  2450. <move x="203.3" y="284.99"/>
  2451. <line x="251.7" y="156.02"/>
  2452. <line x="316.05" y="236.75"/>
  2453. <line x="348.36" y="212.54"/>
  2454. <line x="396.8" y="284.99"/>
  2455. <close/>
  2456. <move x="187.15" y="301.26"/>
  2457. <line x="412.92" y="301.26"/>
  2458. <line x="412.92" y="123.8"/>
  2459. <line x="187.15" y="123.8"/>
  2460. <close/>
  2461. <move x="171.06" y="317.22"/>
  2462. <line x="171.06" y="107.81"/>
  2463. <line x="428.96" y="107.81"/>
  2464. <line x="428.96" y="317.22"/>
  2465. <close/>
  2466. <move x="5" y="80"/>
  2467. <line x="5" y="340"/>
  2468. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  2469. <line x="590" y="345"/>
  2470. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  2471. <line x="595" y="80"/>
  2472. <close/>
  2473. </path>
  2474. <fill/>
  2475. </foreground>
  2476. </shape>
  2477. <shape aspect="variable" h="350" name="portfolio" strokewidth="inherit" w="600">
  2478. <connections>
  2479. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2480. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2481. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2482. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2483. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2484. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2485. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2486. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2487. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2488. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2489. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2490. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2491. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2492. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2493. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2494. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2495. </connections>
  2496. <background>
  2497. <path>
  2498. <move x="10" y="350"/>
  2499. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2500. <line x="0" y="10"/>
  2501. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2502. <line x="590" y="0"/>
  2503. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2504. <line x="600" y="340"/>
  2505. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2506. <close/>
  2507. </path>
  2508. </background>
  2509. <foreground>
  2510. <fillstroke/>
  2511. <fillcolor color="#ffffff"/>
  2512. <alpha alpha="0.5"/>
  2513. <path>
  2514. <move x="261.8" y="137.95"/>
  2515. <line x="261.8" y="130.02"/>
  2516. <curve x1="261.8" x2="270.52" x3="276.35" y1="121.18" y2="115.98" y3="115.98"/>
  2517. <line x="324" y="115.98"/>
  2518. <curve x1="333.62" x2="338.27" x3="338.27" y1="115.98" y2="124.89" y3="129.44"/>
  2519. <line x="338.27" y="137.95"/>
  2520. <line x="325.95" y="137.95"/>
  2521. <line x="325.95" y="131.04"/>
  2522. <curve x1="325.95" x2="324.96" x3="323.27" y1="129.39" y2="128.39" y3="128.39"/>
  2523. <line x="276.57" y="128.39"/>
  2524. <curve x1="275.02" x2="274.11" x3="274.11" y1="128.39" y2="129.32" y3="131.11"/>
  2525. <line x="274.11" y="137.95"/>
  2526. <close/>
  2527. <move x="291.13" y="243.89"/>
  2528. <line x="291.13" y="210.63"/>
  2529. <line x="308.97" y="210.63"/>
  2530. <line x="308.97" y="243.89"/>
  2531. <close/>
  2532. <move x="191.43" y="160.24"/>
  2533. <curve x1="191.43" x2="198" x3="206.71" y1="151.87" y2="145.43" y3="145.43"/>
  2534. <line x="394.78" y="145.43"/>
  2535. <curve x1="402.55" x2="408.57" x3="408.57" y1="145.43" y2="153.38" y3="159.42"/>
  2536. <line x="408.57" y="195.51"/>
  2537. <curve x1="408.57" x2="392" x3="376.68" y1="208.75" y2="223.47" y3="223.47"/>
  2538. <line x="316.26" y="223.47"/>
  2539. <line x="316.26" y="212.51"/>
  2540. <curve x1="316.26" x2="311.41" x3="308.19" y1="206.11" y2="203.25" y3="203.25"/>
  2541. <line x="292.88" y="203.25"/>
  2542. <curve x1="288.24" x2="283.71" x3="283.71" y1="203.25" y2="206.73" y3="211.24"/>
  2543. <line x="283.71" y="223.47"/>
  2544. <line x="220.36" y="223.47"/>
  2545. <curve x1="210.47" x2="191.43" x3="191.43" y1="223.47" y2="210.73" y3="194.7"/>
  2546. <close/>
  2547. <move x="206.53" y="308.98"/>
  2548. <curve x1="197.97" x2="191.43" x3="191.43" y1="308.98" y2="303.18" y3="292.82"/>
  2549. <line x="191.43" y="214.42"/>
  2550. <curve x1="197.72" x2="211.06" x3="223.08" y1="223.47" y2="230.93" y3="230.93"/>
  2551. <line x="283.71" y="230.93"/>
  2552. <line x="283.71" y="242.72"/>
  2553. <curve x1="283.71" x2="287.92" x3="292.59" y1="247.24" y2="251.24" y3="251.24"/>
  2554. <line x="308.16" y="251.24"/>
  2555. <curve x1="312.6" x2="316.26" x3="316.26" y1="251.24" y2="246.87" y3="243"/>
  2556. <line x="316.26" y="230.93"/>
  2557. <line x="376.09" y="230.93"/>
  2558. <curve x1="385.66" x2="401.05" x3="408.57" y1="230.93" y2="225.68" y3="214.08"/>
  2559. <line x="408.57" y="294.19"/>
  2560. <curve x1="408.57" x2="399.24" x3="394.41" y1="304.84" y2="308.98" y3="308.98"/>
  2561. <close/>
  2562. <move x="5" y="80"/>
  2563. <line x="5" y="340"/>
  2564. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  2565. <line x="590" y="345"/>
  2566. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  2567. <line x="595" y="80"/>
  2568. <close/>
  2569. </path>
  2570. <fill/>
  2571. </foreground>
  2572. </shape>
  2573. <shape aspect="variable" h="350" name="post" strokewidth="inherit" w="600">
  2574. <connections>
  2575. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2576. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2577. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2578. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2579. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2580. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2581. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2582. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2583. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2584. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2585. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2586. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2587. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2588. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2589. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2590. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2591. </connections>
  2592. <background>
  2593. <path>
  2594. <move x="10" y="350"/>
  2595. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2596. <line x="0" y="10"/>
  2597. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2598. <line x="590" y="0"/>
  2599. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2600. <line x="600" y="340"/>
  2601. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2602. <close/>
  2603. </path>
  2604. </background>
  2605. <foreground>
  2606. <fillstroke/>
  2607. <fillcolor color="#ffffff"/>
  2608. <alpha alpha="0.5"/>
  2609. <path>
  2610. <move x="281.09" y="304.6"/>
  2611. <line x="189.21" y="304.6"/>
  2612. <line x="189.21" y="101.71"/>
  2613. <line x="392.1" y="101.71"/>
  2614. <line x="392.1" y="198.04"/>
  2615. <line x="372.52" y="198.04"/>
  2616. <line x="372.52" y="120.4"/>
  2617. <line x="207.68" y="120.4"/>
  2618. <line x="207.9" y="285.91"/>
  2619. <line x="281.31" y="285.91"/>
  2620. <close/>
  2621. <move x="226.14" y="267.89"/>
  2622. <line x="226.14" y="212.5"/>
  2623. <line x="281.31" y="212.5"/>
  2624. <line x="281.31" y="267.89"/>
  2625. <close/>
  2626. <move x="281.09" y="193.81"/>
  2627. <line x="226.14" y="193.81"/>
  2628. <line x="226.14" y="138.64"/>
  2629. <line x="281.09" y="138.64"/>
  2630. <close/>
  2631. <move x="300" y="138.64"/>
  2632. <line x="355.39" y="138.64"/>
  2633. <line x="355.39" y="193.81"/>
  2634. <line x="300" y="193.81"/>
  2635. <close/>
  2636. <move x="410.79" y="212.5"/>
  2637. <line x="410.79" y="323.29"/>
  2638. <line x="300" y="323.29"/>
  2639. <line x="300" y="212.5"/>
  2640. <close/>
  2641. <move x="5" y="80"/>
  2642. <line x="5" y="340"/>
  2643. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  2644. <line x="590" y="345"/>
  2645. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  2646. <line x="595" y="80"/>
  2647. <close/>
  2648. </path>
  2649. <fill/>
  2650. </foreground>
  2651. </shape>
  2652. <shape aspect="variable" h="350" name="pricing" strokewidth="inherit" w="600">
  2653. <connections>
  2654. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2655. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2656. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2657. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2658. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2659. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2660. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2661. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2662. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2663. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2664. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2665. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2666. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2667. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2668. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2669. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2670. </connections>
  2671. <background>
  2672. <path>
  2673. <move x="10" y="350"/>
  2674. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2675. <line x="0" y="10"/>
  2676. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2677. <line x="590" y="0"/>
  2678. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2679. <line x="600" y="340"/>
  2680. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2681. <close/>
  2682. </path>
  2683. </background>
  2684. <foreground>
  2685. <fillstroke/>
  2686. <fillcolor color="#ffffff"/>
  2687. <alpha alpha="0.5"/>
  2688. <path>
  2689. <move x="374.47" y="183.43"/>
  2690. <curve x1="386.54" x2="396.68" x3="396.68" y1="183.43" y2="172.66" y3="160.78"/>
  2691. <curve x1="396.68" x2="386" x3="374.47" y1="148.96" y2="138.4" y3="138.4"/>
  2692. <curve x1="360.04" x2="351.47" x3="351.47" y1="138.4" y2="149.69" y3="160.08"/>
  2693. <curve x1="351.47" x2="362.48" x3="374.47" y1="174.19" y2="183.43" y3="183.43"/>
  2694. <close/>
  2695. <move x="224.11" y="243.32"/>
  2696. <curve x1="215.97" x2="216.84" x3="226.45" y1="234.66" y2="220.33" y3="211.07"/>
  2697. <line x="312.15" y="125.62"/>
  2698. <curve x1="322.74" x2="338.53" x3="352.77" y1="114.83" y2="108.6" y3="108.6"/>
  2699. <line x="401.31" y="108.6"/>
  2700. <curve x1="415.89" x2="426.56" x3="426.56" y1="108.6" y2="118.23" y3="131.26"/>
  2701. <line x="426.56" y="182.02"/>
  2702. <curve x1="426.56" x2="420.94" x3="411.75" y1="193.67" y2="209.99" y3="220.27"/>
  2703. <line x="324.68" y="307.52"/>
  2704. <curve x1="313.75" x2="301.26" x3="290.83" y1="319.16" y2="319.22" y3="309.99"/>
  2705. <close/>
  2706. <move x="271.82" y="313.66"/>
  2707. <curve x1="261.8" x2="250.71" x3="245.67" y1="319.18" y2="315.63" y3="309.88"/>
  2708. <line x="179.88" y="244.07"/>
  2709. <curve x1="169" x2="174.52" x3="179.96" y1="233.2" y2="217.81" y3="212.69"/>
  2710. <line x="268.46" y="124.35"/>
  2711. <curve x1="279.12" x2="297.5" x3="306.39" y1="113.55" y2="109.18" y3="108.53"/>
  2712. <line x="193.8" y="221.06"/>
  2713. <curve x1="188.52" x2="188.48" x3="192.66" y1="225.92" y2="230.84" y3="234.77"/>
  2714. <close/>
  2715. <move x="5" y="80"/>
  2716. <line x="5" y="340"/>
  2717. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  2718. <line x="590" y="345"/>
  2719. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  2720. <line x="595" y="80"/>
  2721. <close/>
  2722. </path>
  2723. <fill/>
  2724. </foreground>
  2725. </shape>
  2726. <shape aspect="variable" h="350" name="print" strokewidth="inherit" w="600">
  2727. <connections>
  2728. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2729. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2730. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2731. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2732. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2733. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2734. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2735. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2736. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2737. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2738. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2739. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2740. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2741. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2742. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2743. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2744. </connections>
  2745. <background>
  2746. <path>
  2747. <move x="10" y="350"/>
  2748. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2749. <line x="0" y="10"/>
  2750. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2751. <line x="590" y="0"/>
  2752. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2753. <line x="600" y="340"/>
  2754. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2755. <close/>
  2756. </path>
  2757. </background>
  2758. <foreground>
  2759. <fillstroke/>
  2760. <fillcolor color="#ffffff"/>
  2761. <alpha alpha="0.5"/>
  2762. <path>
  2763. <move x="270.7" y="279.7"/>
  2764. <line x="270.68" y="272.81"/>
  2765. <line x="332.74" y="272.81"/>
  2766. <line x="332.74" y="279.7"/>
  2767. <close/>
  2768. <move x="170.72" y="279.73"/>
  2769. <line x="170.72" y="215.46"/>
  2770. <curve x1="170.72" x2="184.38" x3="199.53" y1="199.59" y2="186.65" y3="186.65"/>
  2771. <line x="239.67" y="186.65"/>
  2772. <line x="239.67" y="117.65"/>
  2773. <curve x1="239.67" x2="247.03" x3="253.03" y1="109.13" y2="103.91" y3="103.91"/>
  2774. <line x="350.28" y="103.91"/>
  2775. <curve x1="357.96" x2="363.78" x3="363.78" y1="103.91" y2="110.59" y3="117.65"/>
  2776. <line x="363.78" y="186.65"/>
  2777. <line x="401.29" y="186.65"/>
  2778. <curve x1="416.17" x2="429.28" x3="429.28" y1="186.65" y2="200.01" y3="214.99"/>
  2779. <line x="429.28" y="279.73"/>
  2780. <line x="363.78" y="279.73"/>
  2781. <line x="363.78" y="307.46"/>
  2782. <curve x1="363.78" x2="357.24" x3="350.63" y1="314.9" y2="321.09" y3="321.09"/>
  2783. <line x="253.19" y="321.09"/>
  2784. <curve x1="246.68" x2="239.67" x3="239.67" y1="321.09" y2="315.49" y3="307.66"/>
  2785. <line x="239.67" y="279.73"/>
  2786. <close/>
  2787. <move x="196.64" y="221.13"/>
  2788. <curve x1="201.95" x2="205.21" x3="205.21" y1="221.13" y2="216.68" y3="212.59"/>
  2789. <curve x1="205.21" x2="201.14" x3="196.45" y1="207.29" y2="203.89" y3="203.89"/>
  2790. <curve x1="193.03" x2="187.94" x3="187.96" y1="203.89" y2="206.39" y3="212.83"/>
  2791. <curve x1="187.96" x2="191.46" x3="196.64" y1="216.94" y2="221.13" y3="221.13"/>
  2792. <close/>
  2793. <move x="250.01" y="310.77"/>
  2794. <line x="353.43" y="310.77"/>
  2795. <line x="353.43" y="262.5"/>
  2796. <line x="250.01" y="262.5"/>
  2797. <close/>
  2798. <move x="270.7" y="296.94"/>
  2799. <line x="270.68" y="290.05"/>
  2800. <line x="332.74" y="290.05"/>
  2801. <line x="332.74" y="296.94"/>
  2802. <close/>
  2803. <move x="250.01" y="186.65"/>
  2804. <line x="353.43" y="186.65"/>
  2805. <line x="353.43" y="114.25"/>
  2806. <line x="250.01" y="114.25"/>
  2807. <close/>
  2808. <move x="5" y="80"/>
  2809. <line x="5" y="340"/>
  2810. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  2811. <line x="590" y="345"/>
  2812. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  2813. <line x="595" y="80"/>
  2814. <close/>
  2815. </path>
  2816. <fill/>
  2817. </foreground>
  2818. </shape>
  2819. <shape aspect="variable" h="350" name="products" strokewidth="inherit" w="600">
  2820. <connections>
  2821. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2822. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2823. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2824. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2825. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2826. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2827. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2828. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2829. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2830. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2831. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2832. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2833. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2834. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2835. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2836. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2837. </connections>
  2838. <background>
  2839. <path>
  2840. <move x="10" y="350"/>
  2841. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2842. <line x="0" y="10"/>
  2843. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2844. <line x="590" y="0"/>
  2845. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2846. <line x="600" y="340"/>
  2847. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2848. <close/>
  2849. </path>
  2850. </background>
  2851. <foreground>
  2852. <fillstroke/>
  2853. <fillcolor color="#ffffff"/>
  2854. <alpha alpha="0.5"/>
  2855. <path>
  2856. <move x="311.39" y="233.76"/>
  2857. <curve x1="311.39" x2="314.59" x3="323.04" y1="224.32" y2="219.78" y3="215.82"/>
  2858. <line x="393.49" y="179.35"/>
  2859. <curve x1="396.06" x2="400.37" x3="400.37" y1="178.06" y2="178.42" y3="181.02"/>
  2860. <line x="400.37" y="267.77"/>
  2861. <curve x1="400.37" x2="395.79" x3="392.71" y1="271.91" y2="276.64" y3="278.17"/>
  2862. <line x="319.66" y="320.15"/>
  2863. <curve x1="314.35" x2="311.39" x3="311.39" y1="323.74" y2="320.43" y3="315.69"/>
  2864. <close/>
  2865. <move x="209.66" y="158.08"/>
  2866. <curve x1="204.85" x2="206.37" x3="209.93" y1="155.55" y2="151.7" y3="149.87"/>
  2867. <line x="292.42" y="106.84"/>
  2868. <curve x1="297.49" x2="304.53" x3="308.9" y1="103.85" y2="104.29" y3="106.54"/>
  2869. <line x="391.92" y="149.94"/>
  2870. <curve x1="395.6" x2="396.58" x3="392.27" y1="151.9" y2="155.43" y3="157.78"/>
  2871. <line x="309.56" y="200.93"/>
  2872. <curve x1="305.12" x2="296.98" x3="291.72" y1="203.93" y2="204.16" y3="200.79"/>
  2873. <close/>
  2874. <move x="209.49" y="278.53"/>
  2875. <curve x1="204.38" x2="200.46" x3="200.46" y1="275.87" y2="270.34" y3="263.06"/>
  2876. <line x="200.46" y="184.8"/>
  2877. <curve x1="200.46" x2="203.5" x3="208.63" y1="179.4" y2="177.05" y3="179.68"/>
  2878. <line x="280.74" y="216.92"/>
  2879. <curve x1="287.71" x2="290.24" x3="290.24" y1="220.01" y2="226.46" y3="230.89"/>
  2880. <line x="290.24" y="316.94"/>
  2881. <curve x1="290.24" x2="286.06" x3="282.33" y1="321.04" y2="322.83" y3="320.32"/>
  2882. <close/>
  2883. <move x="5" y="80"/>
  2884. <line x="5" y="340"/>
  2885. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  2886. <line x="590" y="345"/>
  2887. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  2888. <line x="595" y="80"/>
  2889. <close/>
  2890. </path>
  2891. <fill/>
  2892. </foreground>
  2893. </shape>
  2894. <shape aspect="variable" h="350" name="profile" strokewidth="inherit" w="600">
  2895. <connections>
  2896. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2897. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2898. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2899. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2900. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2901. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2902. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2903. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2904. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2905. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2906. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2907. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2908. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2909. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2910. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2911. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2912. </connections>
  2913. <background>
  2914. <path>
  2915. <move x="10" y="350"/>
  2916. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2917. <line x="0" y="10"/>
  2918. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2919. <line x="590" y="0"/>
  2920. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2921. <line x="600" y="340"/>
  2922. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2923. <close/>
  2924. </path>
  2925. </background>
  2926. <foreground>
  2927. <fillstroke/>
  2928. <fillcolor color="#ffffff"/>
  2929. <alpha alpha="0.5"/>
  2930. <path>
  2931. <move x="203.47" y="323.67"/>
  2932. <arc large-arc-flag="0" rx="725.77" ry="725.77" sweep-flag="1" x="209.28" x-axis-rotation="0" y="275.28"/>
  2933. <arc large-arc-flag="0" rx="120.96" ry="120.96" sweep-flag="1" x="217.26" x-axis-rotation="0" y="241.42"/>
  2934. <arc large-arc-flag="0" rx="31.45" ry="31.45" sweep-flag="1" x="227.66" x-axis-rotation="0" y="229.08"/>
  2935. <arc large-arc-flag="0" rx="96.77" ry="96.77" sweep-flag="1" x="251.86" x-axis-rotation="0" y="218.43"/>
  2936. <arc large-arc-flag="0" rx="9.68" ry="9.68" sweep-flag="1" x="262.02" x-axis-rotation="0" y="221.34"/>
  2937. <arc large-arc-flag="0" rx="48.38" ry="48.38" sweep-flag="0" x="300.73" x-axis-rotation="0" y="236.34"/>
  2938. <arc large-arc-flag="0" rx="48.38" ry="48.38" sweep-flag="0" x="338.22" x-axis-rotation="0" y="221.34"/>
  2939. <arc large-arc-flag="0" rx="12.1" ry="12.1" sweep-flag="1" x="350.08" x-axis-rotation="0" y="218.43"/>
  2940. <arc large-arc-flag="0" rx="120.96" ry="120.96" sweep-flag="1" x="373.06" x-axis-rotation="0" y="229.56"/>
  2941. <arc large-arc-flag="0" rx="36.29" ry="36.29" sweep-flag="1" x="386.12" x-axis-rotation="0" y="249.88"/>
  2942. <arc large-arc-flag="0" rx="241.92" ry="241.92" sweep-flag="1" x="392.17" x-axis-rotation="0" y="284.96"/>
  2943. <line x="396.53" y="323.67"/>
  2944. <close/>
  2945. <move x="301.21" y="209.24"/>
  2946. <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="252.34" x-axis-rotation="0" y="156.74"/>
  2947. <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="301.21" x-axis-rotation="0" y="101.34"/>
  2948. <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="347.66" x-axis-rotation="0" y="156.74"/>
  2949. <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="301.21" x-axis-rotation="0" y="209.24"/>
  2950. <move x="5" y="80"/>
  2951. <line x="5" y="340"/>
  2952. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  2953. <line x="590" y="345"/>
  2954. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  2955. <line x="595" y="80"/>
  2956. <close/>
  2957. </path>
  2958. <fill/>
  2959. </foreground>
  2960. </shape>
  2961. <shape aspect="variable" h="350" name="references" strokewidth="inherit" w="600">
  2962. <connections>
  2963. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  2964. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  2965. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  2966. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  2967. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  2968. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  2969. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  2970. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  2971. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  2972. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  2973. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  2974. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  2975. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  2976. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  2977. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  2978. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  2979. </connections>
  2980. <background>
  2981. <path>
  2982. <move x="10" y="350"/>
  2983. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  2984. <line x="0" y="10"/>
  2985. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  2986. <line x="590" y="0"/>
  2987. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  2988. <line x="600" y="340"/>
  2989. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  2990. <close/>
  2991. </path>
  2992. </background>
  2993. <foreground>
  2994. <fillstroke/>
  2995. <fillcolor color="#ffffff"/>
  2996. <alpha alpha="0.5"/>
  2997. <path>
  2998. <move x="405.21" y="232.66"/>
  2999. <line x="438.94" y="232.66"/>
  3000. <line x="438.94" y="215.65"/>
  3001. <line x="405.21" y="215.65"/>
  3002. <close/>
  3003. <move x="405.21" y="283.33"/>
  3004. <line x="438.94" y="283.33"/>
  3005. <line x="438.94" y="266.39"/>
  3006. <line x="405.21" y="266.39"/>
  3007. <close/>
  3008. <move x="354.42" y="232.66"/>
  3009. <line x="354.42" y="215.65"/>
  3010. <line x="320.42" y="215.65"/>
  3011. <line x="320.42" y="232.66"/>
  3012. <close/>
  3013. <move x="320.42" y="283.33"/>
  3014. <line x="354.42" y="283.33"/>
  3015. <line x="354.42" y="266.39"/>
  3016. <line x="320.42" y="266.39"/>
  3017. <close/>
  3018. <move x="230.2" y="235.67"/>
  3019. <line x="238.72" y="221.07"/>
  3020. <line x="209.67" y="203.82"/>
  3021. <line x="200.96" y="218.41"/>
  3022. <close/>
  3023. <move x="204.55" y="279.49"/>
  3024. <line x="213.03" y="264.84"/>
  3025. <line x="184.1" y="247.74"/>
  3026. <line x="175.39" y="262.42"/>
  3027. <close/>
  3028. <move x="388.32" y="317.28"/>
  3029. <line x="388.32" y="114.06"/>
  3030. <line x="456.14" y="114.06"/>
  3031. <line x="456.14" y="317.28"/>
  3032. <close/>
  3033. <move x="201.93" y="317.24"/>
  3034. <line x="143.65" y="282.87"/>
  3035. <line x="246.46" y="107.73"/>
  3036. <line x="303.66" y="141.35"/>
  3037. <line x="303.66" y="114.06"/>
  3038. <line x="371.16" y="114.06"/>
  3039. <line x="371.16" y="317.28"/>
  3040. <line x="303.66" y="317.28"/>
  3041. <line x="303.66" y="143.68"/>
  3042. <close/>
  3043. <move x="5" y="80"/>
  3044. <line x="5" y="340"/>
  3045. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  3046. <line x="590" y="345"/>
  3047. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  3048. <line x="595" y="80"/>
  3049. <close/>
  3050. </path>
  3051. <fill/>
  3052. </foreground>
  3053. </shape>
  3054. <shape aspect="variable" h="350" name="script" strokewidth="inherit" w="600">
  3055. <connections>
  3056. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3057. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3058. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3059. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3060. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3061. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3062. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3063. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3064. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3065. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3066. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3067. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3068. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3069. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3070. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3071. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3072. </connections>
  3073. <background>
  3074. <path>
  3075. <move x="10" y="350"/>
  3076. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3077. <line x="0" y="10"/>
  3078. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3079. <line x="590" y="0"/>
  3080. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3081. <line x="600" y="340"/>
  3082. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3083. <close/>
  3084. </path>
  3085. </background>
  3086. <foreground>
  3087. <fillstroke/>
  3088. <fillcolor color="#ffffff"/>
  3089. <alpha alpha="0.5"/>
  3090. <path>
  3091. <move x="357.26" y="182.33"/>
  3092. <line x="357.26" y="155.65"/>
  3093. <line x="430.73" y="204.91"/>
  3094. <line x="430.73" y="223.38"/>
  3095. <line x="357.26" y="270.99"/>
  3096. <line x="357.26" y="245.54"/>
  3097. <line x="411.03" y="214.76"/>
  3098. <close/>
  3099. <move x="260.39" y="307.11"/>
  3100. <line x="315.8" y="117.89"/>
  3101. <line x="337.97" y="117.89"/>
  3102. <line x="282.56" y="307.11"/>
  3103. <close/>
  3104. <move x="243.15" y="273.04"/>
  3105. <line x="169.27" y="225.02"/>
  3106. <line x="169.27" y="206.96"/>
  3107. <line x="243.15" y="156.88"/>
  3108. <line x="243.15" y="182.74"/>
  3109. <line x="189.38" y="215.58"/>
  3110. <line x="243.15" y="246.36"/>
  3111. <close/>
  3112. <move x="5" y="80"/>
  3113. <line x="5" y="340"/>
  3114. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  3115. <line x="590" y="345"/>
  3116. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  3117. <line x="595" y="80"/>
  3118. <close/>
  3119. </path>
  3120. <fill/>
  3121. </foreground>
  3122. </shape>
  3123. <shape aspect="variable" h="350" name="search" strokewidth="inherit" w="600">
  3124. <connections>
  3125. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3126. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3127. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3128. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3129. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3130. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3131. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3132. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3133. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3134. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3135. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3136. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3137. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3138. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3139. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3140. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3141. </connections>
  3142. <background>
  3143. <path>
  3144. <move x="10" y="350"/>
  3145. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3146. <line x="0" y="10"/>
  3147. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3148. <line x="590" y="0"/>
  3149. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3150. <line x="600" y="340"/>
  3151. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3152. <close/>
  3153. </path>
  3154. </background>
  3155. <foreground>
  3156. <fillstroke/>
  3157. <fillcolor color="#ffffff"/>
  3158. <alpha alpha="0.5"/>
  3159. <path>
  3160. <move x="332.27" y="240.53"/>
  3161. <curve x1="357.62" x2="391.14" x3="391.14" y1="240.53" y2="218.64" y3="181.54"/>
  3162. <curve x1="391.14" x2="359.87" x3="332.27" y1="143.58" y2="120.69" y3="120.69"/>
  3163. <curve x1="295.67" x2="271.29" x3="271.29" y1="120.69" y2="148.7" y3="181.54"/>
  3164. <curve x1="271.29" x2="302.21" x3="332.27" y1="216.85" y2="240.53" y3="240.53"/>
  3165. <close/>
  3166. <move x="224.73" y="311.49"/>
  3167. <curve x1="216.45" x2="205.57" x3="199.65" y1="318.99" y2="318.47" y3="312.13"/>
  3168. <curve x1="193.84" x2="194.22" x3="200.64" y1="305.22" y2="295.52" y3="288.1"/>
  3169. <line x="251" y="237.68"/>
  3170. <curve x1="255.32" x2="261.77" x3="266.75" y1="234.01" y2="231.56" y3="232.67"/>
  3171. <line x="273.91" y="225.48"/>
  3172. <curve x1="265.72" x2="259" x3="258.52" y1="214.22" y2="201.32" y3="181.54"/>
  3173. <curve x1="258.52" x2="286.7" x3="332.27" y1="144.95" y2="108" y3="108"/>
  3174. <curve x1="372.27" x2="404.45" x3="404.45" y1="108" y2="141.09" y3="181.54"/>
  3175. <curve x1="404.45" x2="370.55" x3="332.27" y1="221.68" y2="253.52" y3="253.52"/>
  3176. <curve x1="316.09" x2="300.78" x3="286.91" y1="253.2" y2="248.97" y3="238.23"/>
  3177. <line x="279.74" y="245.43"/>
  3178. <curve x1="280.21" x2="278.84" x3="275.26" y1="251.02" y2="256" y3="260.22"/>
  3179. <close/>
  3180. <move x="5" y="80"/>
  3181. <line x="5" y="340"/>
  3182. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  3183. <line x="590" y="345"/>
  3184. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  3185. <line x="595" y="80"/>
  3186. <close/>
  3187. </path>
  3188. <fill/>
  3189. </foreground>
  3190. </shape>
  3191. <shape aspect="variable" h="350" name="security" strokewidth="inherit" w="600">
  3192. <connections>
  3193. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3194. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3195. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3196. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3197. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3198. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3199. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3200. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3201. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3202. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3203. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3204. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3205. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3206. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3207. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3208. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3209. </connections>
  3210. <background>
  3211. <path>
  3212. <move x="10" y="350"/>
  3213. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3214. <line x="0" y="10"/>
  3215. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3216. <line x="590" y="0"/>
  3217. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3218. <line x="600" y="340"/>
  3219. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3220. <close/>
  3221. </path>
  3222. </background>
  3223. <foreground>
  3224. <fillstroke/>
  3225. <fillcolor color="#ffffff"/>
  3226. <alpha alpha="0.5"/>
  3227. <path>
  3228. <move x="356.55" y="184"/>
  3229. <curve x1="358.37" x2="358.91" x3="356.23" y1="182.26" y2="177.85" y3="175.05"/>
  3230. <line x="348.11" y="166.79"/>
  3231. <curve x1="346.14" x2="340.94" x3="339.13" y1="164.72" y2="165.12" y3="167.04"/>
  3232. <line x="291.73" y="214.37"/>
  3233. <line x="267.16" y="189.82"/>
  3234. <curve x1="264.91" x2="260.58" x3="257.71" y1="187.65" y2="187.07" y3="189.83"/>
  3235. <line x="250.16" y="197.3"/>
  3236. <curve x1="247.58" x2="247.52" x3="250.11" y1="199.65" y2="204.77" y3="207.24"/>
  3237. <line x="286.08" y="243.16"/>
  3238. <curve x1="289.78" x2="294.3" x3="297.56" y1="246.98" y2="246.61" y3="243.17"/>
  3239. <close/>
  3240. <move x="299.56" y="320.65"/>
  3241. <curve x1="279.81" x2="256.43" x3="239.54" y1="315.33" y2="302.74" y3="285.22"/>
  3242. <curve x1="220.73" x2="207.78" x3="204.38" y1="267.25" y2="246.06" y3="198.82"/>
  3243. <curve x1="203.21" x2="203.33" x3="206.14" y1="180.03" y2="159.64" y3="135.93"/>
  3244. <curve x1="206.73" x2="208.2" x3="212.66" y1="131.92" y2="129.98" y3="128.79"/>
  3245. <line x="300.09" y="104.38"/>
  3246. <line x="386.55" y="128.35"/>
  3247. <curve x1="391.67" x2="393.12" x3="394.04" y1="129.63" y2="130.7" y3="136.63"/>
  3248. <curve x1="396.18" x2="397.13" x3="395.93" y1="152.69" y2="177.56" y3="193.45"/>
  3249. <curve x1="393.47" x2="384.07" x3="363.45" y1="236.48" y2="260.66" y3="282.14"/>
  3250. <curve x1="347.09" x2="325.18" x3="299.56" y1="299.52" y2="314.38" y3="320.65"/>
  3251. <close/>
  3252. <move x="5" y="80"/>
  3253. <line x="5" y="340"/>
  3254. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  3255. <line x="590" y="345"/>
  3256. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  3257. <line x="595" y="80"/>
  3258. <close/>
  3259. </path>
  3260. <fill/>
  3261. </foreground>
  3262. </shape>
  3263. <shape aspect="variable" h="350" name="services" strokewidth="inherit" w="600">
  3264. <connections>
  3265. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3266. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3267. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3268. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3269. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3270. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3271. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3272. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3273. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3274. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3275. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3276. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3277. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3278. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3279. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3280. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3281. </connections>
  3282. <background>
  3283. <path>
  3284. <move x="10" y="350"/>
  3285. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3286. <line x="0" y="10"/>
  3287. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3288. <line x="590" y="0"/>
  3289. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3290. <line x="600" y="340"/>
  3291. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3292. <close/>
  3293. </path>
  3294. </background>
  3295. <foreground>
  3296. <fillstroke/>
  3297. <fillcolor color="#ffffff"/>
  3298. <alpha alpha="0.5"/>
  3299. <path>
  3300. <move x="258.27" y="267.7"/>
  3301. <curve x1="278.8" x2="293.53" x3="293.53" y1="267.7" y2="250.27" y3="233.12"/>
  3302. <curve x1="293.53" x2="278.29" x3="257.28" y1="213.14" y2="196.86" y3="196.86"/>
  3303. <curve x1="241.91" x2="222.74" x3="222.74" y1="196.86" y2="209.58" y3="232.84"/>
  3304. <curve x1="222.74" x2="235.61" x3="258.27" y1="248.23" y2="267.7" y3="267.7"/>
  3305. <close/>
  3306. <move x="207.46" y="313.23"/>
  3307. <line x="212.69" y="278.34"/>
  3308. <line x="210.68" y="276.12"/>
  3309. <line x="176.1" y="280.93"/>
  3310. <line x="164.97" y="253.67"/>
  3311. <line x="193.84" y="232.36"/>
  3312. <line x="193.87" y="229.94"/>
  3313. <line x="165.86" y="208.71"/>
  3314. <line x="177.17" y="181.58"/>
  3315. <line x="212.58" y="186.91"/>
  3316. <line x="214.33" y="185.17"/>
  3317. <line x="209.54" y="150.32"/>
  3318. <line x="236.78" y="139.2"/>
  3319. <line x="257.77" y="167.57"/>
  3320. <line x="260.72" y="167.68"/>
  3321. <line x="281.76" y="139.95"/>
  3322. <line x="308.81" y="151.39"/>
  3323. <line x="303.69" y="185.77"/>
  3324. <line x="306.22" y="188.29"/>
  3325. <line x="340.18" y="183.64"/>
  3326. <line x="351.17" y="210.87"/>
  3327. <line x="323.62" y="231.37"/>
  3328. <line x="323.57" y="235.43"/>
  3329. <line x="350.42" y="255.88"/>
  3330. <line x="339.11" y="283.01"/>
  3331. <line x="305.12" y="277.96"/>
  3332. <line x="302.19" y="280.75"/>
  3333. <line x="306.73" y="314.27"/>
  3334. <line x="279.5" y="325.37"/>
  3335. <line x="258.87" y="297.46"/>
  3336. <line x="255.28" y="297.35"/>
  3337. <line x="234.49" y="324.64"/>
  3338. <close/>
  3339. <move x="386.18" y="167.21"/>
  3340. <curve x1="396.97" x2="404.72" x3="404.72" y1="167.21" y2="158.04" y3="149.02"/>
  3341. <curve x1="404.72" x2="396.71" x3="385.66" y1="138.52" y2="129.96" y3="129.96"/>
  3342. <curve x1="377.57" x2="367.49" x3="367.49" y1="129.96" y2="136.64" y3="148.87"/>
  3343. <curve x1="367.49" x2="374.26" x3="386.18" y1="156.97" y2="167.21" y3="167.21"/>
  3344. <close/>
  3345. <move x="359.46" y="191.15"/>
  3346. <line x="362.21" y="172.8"/>
  3347. <line x="361.15" y="171.64"/>
  3348. <line x="342.96" y="174.17"/>
  3349. <line x="337.11" y="159.83"/>
  3350. <line x="352.3" y="148.63"/>
  3351. <line x="352.31" y="147.35"/>
  3352. <line x="337.58" y="136.19"/>
  3353. <line x="343.53" y="121.92"/>
  3354. <line x="362.15" y="124.72"/>
  3355. <line x="363.07" y="123.81"/>
  3356. <line x="360.55" y="105.48"/>
  3357. <line x="374.88" y="99.63"/>
  3358. <line x="385.91" y="114.55"/>
  3359. <line x="387.46" y="114.61"/>
  3360. <line x="398.53" y="100.03"/>
  3361. <line x="412.76" y="106.04"/>
  3362. <line x="410.06" y="124.12"/>
  3363. <line x="411.39" y="125.45"/>
  3364. <line x="429.25" y="123"/>
  3365. <line x="435.03" y="137.32"/>
  3366. <line x="420.55" y="148.1"/>
  3367. <line x="420.52" y="150.24"/>
  3368. <line x="434.63" y="160.99"/>
  3369. <line x="428.69" y="175.26"/>
  3370. <line x="410.82" y="172.61"/>
  3371. <line x="409.27" y="174.07"/>
  3372. <line x="411.66" y="191.7"/>
  3373. <line x="397.34" y="197.53"/>
  3374. <line x="386.49" y="182.86"/>
  3375. <line x="384.6" y="182.8"/>
  3376. <line x="373.67" y="197.15"/>
  3377. <close/>
  3378. <move x="5" y="80"/>
  3379. <line x="5" y="340"/>
  3380. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  3381. <line x="590" y="345"/>
  3382. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  3383. <line x="595" y="80"/>
  3384. <close/>
  3385. </path>
  3386. <fill/>
  3387. </foreground>
  3388. </shape>
  3389. <shape aspect="variable" h="350" name="settings" strokewidth="inherit" w="600">
  3390. <connections>
  3391. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3392. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3393. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3394. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3395. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3396. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3397. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3398. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3399. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3400. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3401. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3402. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3403. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3404. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3405. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3406. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3407. </connections>
  3408. <background>
  3409. <path>
  3410. <move x="10" y="350"/>
  3411. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3412. <line x="0" y="10"/>
  3413. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3414. <line x="590" y="0"/>
  3415. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3416. <line x="600" y="340"/>
  3417. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3418. <close/>
  3419. </path>
  3420. </background>
  3421. <foreground>
  3422. <fillstroke/>
  3423. <fillcolor color="#ffffff"/>
  3424. <alpha alpha="0.5"/>
  3425. <path>
  3426. <move x="213.01" y="228.31"/>
  3427. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="213.01" x-axis-rotation="0" y="196.61"/>
  3428. <line x="187.36" y="185.65"/>
  3429. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="183.87" x-axis-rotation="0" y="178.89"/>
  3430. <line x="194.36" y="154.18"/>
  3431. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="202.52" x-axis-rotation="0" y="152.31"/>
  3432. <line x="227.23" y="162.1"/>
  3433. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="249.61" x-axis-rotation="0" y="139.96"/>
  3434. <line x="239.82" y="114.78"/>
  3435. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="243.08" x-axis-rotation="0" y="105.92"/>
  3436. <line x="265.93" y="96.59"/>
  3437. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="273.39" x-axis-rotation="0" y="99.86"/>
  3438. <line x="284.11" y="125.5"/>
  3439. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="315.82" x-axis-rotation="0" y="125.5"/>
  3440. <line x="326.54" y="100.56"/>
  3441. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="334" x-axis-rotation="0" y="96.59"/>
  3442. <line x="358.25" y="106.85"/>
  3443. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="361.04" x-axis-rotation="0" y="113.15"/>
  3444. <line x="350.32" y="139.49"/>
  3445. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="372.7" x-axis-rotation="0" y="162.1"/>
  3446. <line x="397.88" y="151.85"/>
  3447. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="406.27" x-axis-rotation="0" y="155.58"/>
  3448. <line x="415.13" y="176.56"/>
  3449. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="412.8" x-axis-rotation="0" y="185.65"/>
  3450. <line x="387.15" y="195.91"/>
  3451. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="387.15" x-axis-rotation="0" y="228.55"/>
  3452. <line x="412.33" y="239.04"/>
  3453. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="416.06" x-axis-rotation="0" y="246.5"/>
  3454. <line x="405.8" y="270.28"/>
  3455. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="397.88" x-axis-rotation="0" y="272.84"/>
  3456. <line x="372.93" y="262.82"/>
  3457. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="350.32" x-axis-rotation="0" y="285.66"/>
  3458. <line x="360.34" y="309.91"/>
  3459. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="358.25" x-axis-rotation="0" y="318.07"/>
  3460. <line x="332.6" y="328.56"/>
  3461. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="326.54" x-axis-rotation="0" y="324.83"/>
  3462. <line x="316.28" y="299.65"/>
  3463. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="284.34" x-axis-rotation="0" y="299.65"/>
  3464. <line x="273.39" y="324.36"/>
  3465. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="265.69" x-axis-rotation="0" y="327.86"/>
  3466. <line x="241.21" y="318.07"/>
  3467. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="238.88" x-axis-rotation="0" y="311.77"/>
  3468. <line x="249.61" y="285.66"/>
  3469. <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="226.99" x-axis-rotation="0" y="262.82"/>
  3470. <line x="202.98" y="272.61"/>
  3471. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="193.89" x-axis-rotation="0" y="270.28"/>
  3472. <line x="184.8" y="246.96"/>
  3473. <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="188.06" x-axis-rotation="0" y="238.8"/>
  3474. <close/>
  3475. <move x="238.18" y="212.46"/>
  3476. <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="299.96" x-axis-rotation="0" y="274.24"/>
  3477. <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="361.74" x-axis-rotation="0" y="212.46"/>
  3478. <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="299.96" x-axis-rotation="0" y="150.68"/>
  3479. <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="238.18" x-axis-rotation="0" y="212.46"/>
  3480. <close/>
  3481. <move x="5" y="80"/>
  3482. <line x="5" y="340"/>
  3483. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  3484. <line x="590" y="345"/>
  3485. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  3486. <line x="595" y="80"/>
  3487. <close/>
  3488. </path>
  3489. <fill/>
  3490. </foreground>
  3491. </shape>
  3492. <shape aspect="variable" h="350" name="shopping" strokewidth="inherit" w="600">
  3493. <connections>
  3494. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3495. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3496. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3497. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3498. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3499. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3500. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3501. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3502. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3503. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3504. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3505. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3506. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3507. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3508. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3509. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3510. </connections>
  3511. <background>
  3512. <path>
  3513. <move x="10" y="350"/>
  3514. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3515. <line x="0" y="10"/>
  3516. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3517. <line x="590" y="0"/>
  3518. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3519. <line x="600" y="340"/>
  3520. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3521. <close/>
  3522. </path>
  3523. </background>
  3524. <foreground>
  3525. <fillstroke/>
  3526. <fillcolor color="#ffffff"/>
  3527. <alpha alpha="0.5"/>
  3528. <path>
  3529. <move x="268.59" y="212.71"/>
  3530. <line x="360.08" y="212.71"/>
  3531. <line x="378.52" y="156.94"/>
  3532. <line x="253.01" y="156.94"/>
  3533. <close/>
  3534. <move x="259.37" y="239.91"/>
  3535. <curve x1="251.52" x2="246.52" x3="244.04" y1="239.91" y2="235.04" y3="224.8"/>
  3536. <line x="217.24" y="129.39"/>
  3537. <line x="202.66" y="129.39"/>
  3538. <curve x1="195.65" x2="189.2" x3="189.2" y1="129.39" y2="122.9" y3="115"/>
  3539. <curve x1="189.2" x2="195.23" x3="203.03" y1="108.93" y2="101.72" y3="101.72"/>
  3540. <line x="227.3" y="101.72"/>
  3541. <curve x1="233.87" x2="239.27" x3="240.42" y1="101.72" y2="107.59" y3="112.13"/>
  3542. <line x="245.17" y="129.61"/>
  3543. <line x="397.97" y="129.61"/>
  3544. <curve x1="405.95" x2="412.65" x3="410.3" y1="129.61" y2="138.34" y3="146.84"/>
  3545. <line x="383.3" y="227.85"/>
  3546. <curve x1="380.8" x2="376.64" x3="365.96" y1="235.59" y2="239.91" y3="239.91"/>
  3547. <close/>
  3548. <move x="355.78" y="323.51"/>
  3549. <curve x1="342.41" x2="327.42" x3="327.42" y1="323.51" y2="312.29" y3="296.47"/>
  3550. <curve x1="327.42" x2="340.19" x3="355.78" y1="280.59" y2="267.8" y3="267.8"/>
  3551. <curve x1="370.97" x2="383.13" x3="383.13" y1="267.8" y2="282.42" y3="296.47"/>
  3552. <curve x1="383.13" x2="373.01" x3="355.78" y1="308.34" y2="323.51" y3="323.51"/>
  3553. <close/>
  3554. <move x="271.83" y="323.26"/>
  3555. <curve x1="259.09" x2="244.41" x3="244.41" y1="323.26" y2="311.75" y3="296.47"/>
  3556. <curve x1="244.41" x2="257.66" x3="271.83" y1="279.71" y2="267.93" y3="267.93"/>
  3557. <curve x1="286.03" x2="300.25" x3="300.25" y1="267.93" y2="279.51" y3="296.47"/>
  3558. <curve x1="300.25" x2="287.86" x3="271.83" y1="309.95" y2="323.26" y3="323.26"/>
  3559. <close/>
  3560. <move x="5" y="80"/>
  3561. <line x="5" y="340"/>
  3562. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  3563. <line x="590" y="345"/>
  3564. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  3565. <line x="595" y="80"/>
  3566. <close/>
  3567. </path>
  3568. <fill/>
  3569. </foreground>
  3570. </shape>
  3571. <shape aspect="variable" h="350" name="sitemap" strokewidth="inherit" w="600">
  3572. <connections>
  3573. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3574. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3575. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3576. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3577. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3578. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3579. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3580. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3581. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3582. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3583. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3584. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3585. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3586. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3587. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3588. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3589. </connections>
  3590. <background>
  3591. <path>
  3592. <move x="10" y="350"/>
  3593. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3594. <line x="0" y="10"/>
  3595. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3596. <line x="590" y="0"/>
  3597. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3598. <line x="600" y="340"/>
  3599. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3600. <close/>
  3601. </path>
  3602. </background>
  3603. <foreground>
  3604. <fillstroke/>
  3605. <fillcolor color="#ffffff"/>
  3606. <alpha alpha="0.5"/>
  3607. <path>
  3608. <move x="182.94" y="314.3"/>
  3609. <curve x1="175.81" x2="168.02" x3="168.02" y1="314.3" y2="308.45" y3="299.2"/>
  3610. <line x="168.02" y="125.6"/>
  3611. <curve x1="168.02" x2="175.71" x3="182.58" y1="116.8" y2="110.7" y3="110.7"/>
  3612. <line x="417.26" y="110.7"/>
  3613. <curve x1="424.44" x2="431.98" x3="431.98" y1="110.7" y2="116.94" y3="125.49"/>
  3614. <line x="431.98" y="299.29"/>
  3615. <curve x1="431.98" x2="424.3" x3="417.41" y1="308.26" y2="314.3" y3="314.3"/>
  3616. <close/>
  3617. <move x="390.51" y="242.67"/>
  3618. <line x="371.64" y="242.67"/>
  3619. <line x="371.64" y="212.5"/>
  3620. <line x="303.77" y="212.5"/>
  3621. <line x="303.77" y="189.87"/>
  3622. <line x="330.17" y="189.87"/>
  3623. <line x="330.17" y="148.4"/>
  3624. <line x="269.83" y="148.4"/>
  3625. <line x="269.83" y="189.87"/>
  3626. <line x="296.23" y="189.87"/>
  3627. <line x="296.23" y="212.5"/>
  3628. <line x="228.36" y="212.5"/>
  3629. <line x="228.36" y="242.67"/>
  3630. <line x="209.51" y="242.67"/>
  3631. <line x="209.51" y="276.6"/>
  3632. <line x="254.75" y="276.6"/>
  3633. <line x="254.75" y="242.67"/>
  3634. <line x="235.89" y="242.67"/>
  3635. <line x="235.89" y="220.04"/>
  3636. <line x="296.23" y="220.04"/>
  3637. <line x="296.23" y="242.67"/>
  3638. <line x="277.39" y="242.67"/>
  3639. <line x="277.39" y="276.6"/>
  3640. <line x="322.63" y="276.6"/>
  3641. <line x="322.63" y="242.67"/>
  3642. <line x="303.77" y="242.67"/>
  3643. <line x="303.77" y="220.04"/>
  3644. <line x="364.11" y="220.04"/>
  3645. <line x="364.11" y="242.67"/>
  3646. <line x="345.26" y="242.67"/>
  3647. <line x="345.26" y="276.6"/>
  3648. <line x="390.51" y="276.6"/>
  3649. <close/>
  3650. <move x="5" y="80"/>
  3651. <line x="5" y="340"/>
  3652. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  3653. <line x="590" y="345"/>
  3654. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  3655. <line x="595" y="80"/>
  3656. <close/>
  3657. </path>
  3658. <fill/>
  3659. </foreground>
  3660. </shape>
  3661. <shape aspect="variable" h="350" name="slideshow" strokewidth="inherit" w="600">
  3662. <connections>
  3663. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3664. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3665. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3666. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3667. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3668. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3669. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3670. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3671. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3672. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3673. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3674. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3675. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3676. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3677. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3678. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3679. </connections>
  3680. <background>
  3681. <path>
  3682. <move x="10" y="350"/>
  3683. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3684. <line x="0" y="10"/>
  3685. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3686. <line x="590" y="0"/>
  3687. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3688. <line x="600" y="340"/>
  3689. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3690. <close/>
  3691. </path>
  3692. </background>
  3693. <foreground>
  3694. <fillstroke/>
  3695. <fillcolor color="#ffffff"/>
  3696. <alpha alpha="0.5"/>
  3697. <path>
  3698. <move x="275.32" y="318.84"/>
  3699. <line x="275.32" y="105.89"/>
  3700. <line x="411.62" y="140.3"/>
  3701. <line x="411.62" y="284.8"/>
  3702. <close/>
  3703. <move x="230.96" y="309.06"/>
  3704. <line x="230.96" y="115.69"/>
  3705. <line x="263.59" y="126.84"/>
  3706. <line x="263.59" y="298.15"/>
  3707. <close/>
  3708. <move x="188.39" y="299.77"/>
  3709. <line x="188.39" y="125.03"/>
  3710. <line x="219.95" y="135.87"/>
  3711. <line x="219.95" y="289.11"/>
  3712. <close/>
  3713. <move x="5" y="80"/>
  3714. <line x="5" y="340"/>
  3715. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  3716. <line x="590" y="345"/>
  3717. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  3718. <line x="595" y="80"/>
  3719. <close/>
  3720. </path>
  3721. <fill/>
  3722. </foreground>
  3723. </shape>
  3724. <shape aspect="variable" h="350" name="sports" strokewidth="inherit" w="600">
  3725. <connections>
  3726. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3727. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3728. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3729. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3730. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3731. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3732. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3733. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3734. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3735. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3736. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3737. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3738. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3739. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3740. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3741. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3742. </connections>
  3743. <background>
  3744. <path>
  3745. <move x="10" y="350"/>
  3746. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3747. <line x="0" y="10"/>
  3748. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3749. <line x="590" y="0"/>
  3750. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3751. <line x="600" y="340"/>
  3752. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3753. <close/>
  3754. </path>
  3755. </background>
  3756. <foreground>
  3757. <fillstroke/>
  3758. <fillcolor color="#ffffff"/>
  3759. <alpha alpha="0.5"/>
  3760. <path>
  3761. <move x="367.35" y="158.73"/>
  3762. <curve x1="352.45" x2="341.07" x3="341.07" y1="158.73" y2="147.56" y3="132.45"/>
  3763. <curve x1="341.07" x2="350.71" x3="367.6" y1="120.06" y2="106.58" y3="106.58"/>
  3764. <curve x1="382.16" x2="393.16" x3="393.16" y1="106.58" y2="118.56" y3="132.45"/>
  3765. <curve x1="393.16" x2="378.63" x3="367.35" y1="150.27" y2="158.73" y3="158.73"/>
  3766. <close/>
  3767. <move x="318.9" y="260.02"/>
  3768. <line x="271.31" y="235.83"/>
  3769. <curve x1="261.48" x2="262.75" x3="267.92" y1="230.84" y2="220.45" y3="215.29"/>
  3770. <line x="314.72" y="165.23"/>
  3771. <line x="297.53" y="146.55"/>
  3772. <line x="258.75" y="155.71"/>
  3773. <curve x1="254.39" x2="247.29" x3="245.53" y1="156.87" y2="154.24" y3="147.3"/>
  3774. <curve x1="243.47" x2="249.42" x3="253.16" y1="139.81" y2="134.34" y3="133.42"/>
  3775. <line x="297.84" y="122.93"/>
  3776. <curve x1="304.16" x2="307.25" x3="310.18" y1="121.09" y2="123.16" y3="126.23"/>
  3777. <line x="375.97" y="188.9"/>
  3778. <line x="397.91" y="168.45"/>
  3779. <curve x1="403.52" x2="410.05" x3="414.84" y1="163.46" y2="163.98" y3="168.71"/>
  3780. <curve x1="419.22" x2="417.92" x3="414.84" y1="173.92" y2="181.16" y3="184.22"/>
  3781. <line x="384.12" y="212.87"/>
  3782. <curve x1="379.73" x2="373.13" x3="368.48" y1="217.11" y2="216.95" y3="212.87"/>
  3783. <line x="342.79" y="191.05"/>
  3784. <line x="308.21" y="228.02"/>
  3785. <line x="341.24" y="244.77"/>
  3786. <curve x1="347.48" x2="349.4" x3="346.24" y1="248.26" y2="255.74" y3="261.04"/>
  3787. <line x="313.75" y="313.69"/>
  3788. <curve x1="311.58" x2="304.94" x3="298.33" y1="317.24" y2="321.07" y3="317.66"/>
  3789. <curve x1="291.83" x2="290.21" x3="293.79" y1="314.22" y2="306.53" y3="300.65"/>
  3790. <close/>
  3791. <move x="274.18" y="245.45"/>
  3792. <line x="253.2" y="271.87"/>
  3793. <curve x1="251.46" x2="247.99" x3="245.65" y1="274.37" y2="276.16" y3="276.43"/>
  3794. <line x="195.92" y="286.12"/>
  3795. <curve x1="189.24" x2="183.46" x3="182.51" y1="287.24" y2="281.58" y3="276.09"/>
  3796. <curve x1="181.86" x2="185.59" x3="191.19" y1="270.65" y2="263.87" y3="262.75"/>
  3797. <line x="237.07" y="253.98"/>
  3798. <line x="256.85" y="228.83"/>
  3799. <curve x1="259.37" x2="264.27" x3="274.18" y1="238.03" y2="241.36" y3="245.45"/>
  3800. <close/>
  3801. <move x="5" y="80"/>
  3802. <line x="5" y="340"/>
  3803. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  3804. <line x="590" y="345"/>
  3805. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  3806. <line x="595" y="80"/>
  3807. <close/>
  3808. </path>
  3809. <fill/>
  3810. </foreground>
  3811. </shape>
  3812. <shape aspect="variable" h="350" name="success" strokewidth="inherit" w="600">
  3813. <connections>
  3814. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3815. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3816. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3817. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3818. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3819. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3820. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3821. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3822. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3823. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3824. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3825. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3826. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3827. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3828. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3829. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3830. </connections>
  3831. <background>
  3832. <path>
  3833. <move x="10" y="350"/>
  3834. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3835. <line x="0" y="10"/>
  3836. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3837. <line x="590" y="0"/>
  3838. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3839. <line x="600" y="340"/>
  3840. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3841. <close/>
  3842. </path>
  3843. </background>
  3844. <foreground>
  3845. <fillstroke/>
  3846. <fillcolor color="#ffffff"/>
  3847. <alpha alpha="0.5"/>
  3848. <path>
  3849. <move x="283.92" y="217.58"/>
  3850. <line x="260.23" y="193.7"/>
  3851. <curve x1="254.72" x2="247.19" x3="242.06" y1="188.33" y2="188.09" y3="192.54"/>
  3852. <line x="231.51" y="203.28"/>
  3853. <curve x1="227.07" x2="227.31" x3="230.99" y1="207.6" y2="215.53" y3="219.76"/>
  3854. <line x="273.38" y="262.57"/>
  3855. <curve x1="280.61" x2="289.83" x3="294.1" y1="271.21" y2="267.95" y3="263.1"/>
  3856. <line x="368.83" y="188.37"/>
  3857. <curve x1="372.43" x2="373.64" x3="367.69" y1="184.29" y2="176.76" y3="170.56"/>
  3858. <line x="357.73" y="161.13"/>
  3859. <curve x1="352.03" x2="345.15" x3="340.45" y1="156.02" y2="156.89" y3="161.31"/>
  3860. <close/>
  3861. <move x="301.09" y="320.23"/>
  3862. <curve x1="238.25" x2="192.13" x3="192.13" y1="320.23" y2="270.75" y3="212.74"/>
  3863. <curve x1="192.13" x2="238.92" x3="301.09" y1="153.69" y2="104.6" y3="104.6"/>
  3864. <curve x1="359.85" x2="407.83" x3="407.83" y1="104.6" y2="153.68" y3="212.74"/>
  3865. <curve x1="407.83" x2="355.05" x3="301.09" y1="276.36" y2="320.23" y3="320.23"/>
  3866. <close/>
  3867. <move x="5" y="80"/>
  3868. <line x="5" y="340"/>
  3869. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  3870. <line x="590" y="345"/>
  3871. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  3872. <line x="595" y="80"/>
  3873. <close/>
  3874. </path>
  3875. <fill/>
  3876. </foreground>
  3877. </shape>
  3878. <shape aspect="variable" h="350" name="text" strokewidth="inherit" w="600">
  3879. <connections>
  3880. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3881. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3882. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3883. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3884. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3885. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3886. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3887. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3888. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3889. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3890. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3891. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3892. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3893. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3894. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3895. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3896. </connections>
  3897. <background>
  3898. <path>
  3899. <move x="10" y="350"/>
  3900. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3901. <line x="0" y="10"/>
  3902. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3903. <line x="590" y="0"/>
  3904. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3905. <line x="600" y="340"/>
  3906. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3907. <close/>
  3908. </path>
  3909. </background>
  3910. <foreground>
  3911. <fillstroke/>
  3912. <fillcolor color="#ffffff"/>
  3913. <alpha alpha="0.5"/>
  3914. <path>
  3915. <move x="185.04" y="120.67"/>
  3916. <arc large-arc-flag="0" rx="31.33" ry="31.33" sweep-flag="1" x="212.75" x-axis-rotation="0" y="93.2"/>
  3917. <line x="367.24" y="93.2"/>
  3918. <line x="414.96" y="140.68"/>
  3919. <line x="414.96" y="302.16"/>
  3920. <arc large-arc-flag="0" rx="31.33" ry="31.33" sweep-flag="1" x="385.68" x-axis-rotation="0" y="331.8"/>
  3921. <line x="212.75" y="331.8"/>
  3922. <arc large-arc-flag="0" rx="31.33" ry="31.33" sweep-flag="1" x="185.04" x-axis-rotation="0" y="304.99"/>
  3923. <close/>
  3924. <move x="203.84" y="300.71"/>
  3925. <arc large-arc-flag="0" rx="12.05" ry="12.05" sweep-flag="0" x="213.48" x-axis-rotation="0" y="312.52"/>
  3926. <line x="386.04" y="312.52"/>
  3927. <arc large-arc-flag="0" rx="12.05" ry="12.05" sweep-flag="0" x="395.44" x-axis-rotation="0" y="300.71"/>
  3928. <line x="395.44" y="151.77"/>
  3929. <line x="356.88" y="151.77"/>
  3930. <line x="356.88" y="112.72"/>
  3931. <line x="213.48" y="112.72"/>
  3932. <arc large-arc-flag="0" rx="12.05" ry="12.05" sweep-flag="0" x="204.32" x-axis-rotation="0" y="123.81"/>
  3933. <close/>
  3934. <move x="245.29" y="169.6"/>
  3935. <line x="351.82" y="169.6"/>
  3936. <line x="351.82" y="189.36"/>
  3937. <line x="245.29" y="189.36"/>
  3938. <close/>
  3939. <move x="245.29" y="207.2"/>
  3940. <line x="351.82" y="207.2"/>
  3941. <line x="351.82" y="226.96"/>
  3942. <line x="245.29" y="226.96"/>
  3943. <close/>
  3944. <move x="245.29" y="244.8"/>
  3945. <line x="351.82" y="244.8"/>
  3946. <line x="351.82" y="264.8"/>
  3947. <line x="245.29" y="264.8"/>
  3948. <close/>
  3949. <move x="5" y="80"/>
  3950. <line x="5" y="340"/>
  3951. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  3952. <line x="590" y="345"/>
  3953. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  3954. <line x="595" y="80"/>
  3955. <close/>
  3956. </path>
  3957. <fill/>
  3958. </foreground>
  3959. </shape>
  3960. <shape aspect="variable" h="350" name="upload" strokewidth="inherit" w="600">
  3961. <connections>
  3962. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  3963. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  3964. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  3965. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  3966. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  3967. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  3968. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  3969. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  3970. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  3971. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  3972. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  3973. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  3974. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  3975. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  3976. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  3977. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  3978. </connections>
  3979. <background>
  3980. <path>
  3981. <move x="10" y="350"/>
  3982. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  3983. <line x="0" y="10"/>
  3984. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  3985. <line x="590" y="0"/>
  3986. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  3987. <line x="600" y="340"/>
  3988. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  3989. <close/>
  3990. </path>
  3991. </background>
  3992. <foreground>
  3993. <fillstroke/>
  3994. <fillcolor color="#ffffff"/>
  3995. <alpha alpha="0.5"/>
  3996. <path>
  3997. <move x="5" y="80"/>
  3998. <line x="5" y="340"/>
  3999. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  4000. <line x="590" y="345"/>
  4001. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  4002. <line x="595" y="80"/>
  4003. <close/>
  4004. <move x="195.8" y="324.54"/>
  4005. <line x="195.8" y="250.48"/>
  4006. <line x="225.22" y="250.48"/>
  4007. <line x="225.22" y="295.34"/>
  4008. <line x="374.92" y="295.34"/>
  4009. <line x="374.92" y="250.48"/>
  4010. <line x="404.33" y="250.48"/>
  4011. <line x="404.33" y="324.54"/>
  4012. <close/>
  4013. <move x="359.25" y="175.09"/>
  4014. <line x="329.95" y="175.09"/>
  4015. <line x="329.95" y="279.65"/>
  4016. <line x="270.43" y="279.65"/>
  4017. <line x="270.43" y="175.09"/>
  4018. <line x="240.62" y="175.09"/>
  4019. <line x="299.95" y="101.42"/>
  4020. <close/>
  4021. </path>
  4022. <fill/>
  4023. </foreground>
  4024. </shape>
  4025. <shape aspect="variable" h="350" name="user" strokewidth="inherit" w="600">
  4026. <connections>
  4027. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  4028. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4029. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  4030. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  4031. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  4032. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  4033. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  4034. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4035. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  4036. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  4037. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4038. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  4039. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  4040. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  4041. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  4042. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  4043. </connections>
  4044. <background>
  4045. <path>
  4046. <move x="10" y="350"/>
  4047. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  4048. <line x="0" y="10"/>
  4049. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  4050. <line x="590" y="0"/>
  4051. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  4052. <line x="600" y="340"/>
  4053. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  4054. <close/>
  4055. </path>
  4056. </background>
  4057. <foreground>
  4058. <fillstroke/>
  4059. <fillcolor color="#ffffff"/>
  4060. <alpha alpha="0.5"/>
  4061. <path>
  4062. <move x="199.52" y="328.22"/>
  4063. <arc large-arc-flag="0" rx="755.47" ry="755.47" sweep-flag="1" x="205.57" x-axis-rotation="0" y="277.85"/>
  4064. <arc large-arc-flag="0" rx="125.91" ry="125.91" sweep-flag="1" x="213.88" x-axis-rotation="0" y="242.6"/>
  4065. <arc large-arc-flag="0" rx="32.74" ry="32.74" sweep-flag="1" x="224.7" x-axis-rotation="0" y="229.76"/>
  4066. <arc large-arc-flag="0" rx="100.73" ry="100.73" sweep-flag="1" x="249.89" x-axis-rotation="0" y="218.68"/>
  4067. <arc large-arc-flag="0" rx="10.07" ry="10.07" sweep-flag="1" x="260.46" x-axis-rotation="0" y="221.7"/>
  4068. <arc large-arc-flag="0" rx="50.36" ry="50.36" sweep-flag="0" x="300.76" x-axis-rotation="0" y="237.31"/>
  4069. <arc large-arc-flag="0" rx="50.36" ry="50.36" sweep-flag="0" x="339.79" x-axis-rotation="0" y="221.7"/>
  4070. <arc large-arc-flag="0" rx="12.59" ry="12.59" sweep-flag="1" x="352.13" x-axis-rotation="0" y="218.68"/>
  4071. <arc large-arc-flag="0" rx="125.91" ry="125.91" sweep-flag="1" x="376.05" x-axis-rotation="0" y="230.26"/>
  4072. <arc large-arc-flag="0" rx="37.77" ry="37.77" sweep-flag="1" x="389.65" x-axis-rotation="0" y="251.41"/>
  4073. <arc large-arc-flag="0" rx="251.82" ry="251.82" sweep-flag="1" x="395.94" x-axis-rotation="0" y="287.93"/>
  4074. <line x="400.48" y="328.22"/>
  4075. <close/>
  4076. <move x="301.26" y="209.11"/>
  4077. <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="250.39" x-axis-rotation="0" y="154.46"/>
  4078. <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="301.26" x-axis-rotation="0" y="96.79"/>
  4079. <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="349.61" x-axis-rotation="0" y="154.46"/>
  4080. <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="301.26" x-axis-rotation="0" y="209.11"/>
  4081. <move x="5" y="80"/>
  4082. <line x="5" y="340"/>
  4083. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  4084. <line x="590" y="345"/>
  4085. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  4086. <line x="595" y="80"/>
  4087. <close/>
  4088. </path>
  4089. <fill/>
  4090. </foreground>
  4091. </shape>
  4092. <shape aspect="variable" h="350" name="video" strokewidth="inherit" w="600">
  4093. <connections>
  4094. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  4095. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4096. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  4097. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  4098. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  4099. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  4100. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  4101. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4102. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  4103. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  4104. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4105. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  4106. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  4107. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  4108. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  4109. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  4110. </connections>
  4111. <background>
  4112. <path>
  4113. <move x="10" y="350"/>
  4114. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  4115. <line x="0" y="10"/>
  4116. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  4117. <line x="590" y="0"/>
  4118. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  4119. <line x="600" y="340"/>
  4120. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  4121. <close/>
  4122. </path>
  4123. </background>
  4124. <foreground>
  4125. <fillstroke/>
  4126. <fillcolor color="#ffffff"/>
  4127. <alpha alpha="0.5"/>
  4128. <path>
  4129. <move x="267.13" y="258.58"/>
  4130. <line x="347.12" y="212.68"/>
  4131. <line x="267.13" y="167.1"/>
  4132. <close/>
  4133. <move x="196.75" y="306.21"/>
  4134. <curve x1="189.45" x2="183.68" x3="183.68" y1="306.21" y2="299.35" y3="293.08"/>
  4135. <line x="183.68" y="131.99"/>
  4136. <curve x1="183.68" x2="190.48" x3="196.72" y1="124.6" y2="118.79" y3="118.79"/>
  4137. <line x="402.51" y="118.79"/>
  4138. <curve x1="411.75" x2="416.32" x3="416.32" y1="118.79" y2="126.55" y3="131.94"/>
  4139. <line x="416.32" y="292.89"/>
  4140. <curve x1="416.32" x2="410.24" x3="403" y1="299.84" y2="306.21" y3="306.21"/>
  4141. <close/>
  4142. <move x="5" y="80"/>
  4143. <line x="5" y="340"/>
  4144. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
  4145. <line x="590" y="345"/>
  4146. <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
  4147. <line x="595" y="80"/>
  4148. <close/>
  4149. </path>
  4150. <fill/>
  4151. </foreground>
  4152. </shape>
  4153. <shape aspect="variable" h="350" name="warning" strokewidth="inherit" w="600">
  4154. <connections>
  4155. <constraint name="N1" perimeter="0" x="0.25" y="0"/>
  4156. <constraint name="N" perimeter="0" x="0.5" y="0"/>
  4157. <constraint name="N2" perimeter="0" x="0.75" y="0"/>
  4158. <constraint name="E1" perimeter="0" x="1" y="0.25"/>
  4159. <constraint name="E" perimeter="0" x="1" y="0.5"/>
  4160. <constraint name="E2" perimeter="0" x="1" y="0.75"/>
  4161. <constraint name="S1" perimeter="0" x="0.25" y="1"/>
  4162. <constraint name="S" perimeter="0" x="0.5" y="1"/>
  4163. <constraint name="S2" perimeter="0" x="0.75" y="1"/>
  4164. <constraint name="W1" perimeter="0" x="0" y="0.25"/>
  4165. <constraint name="W" perimeter="0" x="0" y="0.5"/>
  4166. <constraint name="W1" perimeter="0" x="0" y="0.75"/>
  4167. <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
  4168. <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
  4169. <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
  4170. <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
  4171. </connections>
  4172. <background>
  4173. <path>
  4174. <move x="10" y="350"/>
  4175. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
  4176. <line x="0" y="10"/>
  4177. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
  4178. <line x="590" y="0"/>
  4179. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
  4180. <line x="600" y="340"/>
  4181. <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
  4182. <close/>
  4183. </path>
  4184. </background>
  4185. <foreground>
  4186. <fillstroke/>
  4187. <fillcolor color="#ffffff"/>
  4188. <alpha alpha="0.5"/>
  4189. <path>
  4190. <move x="317.94" y="176.81"/>
  4191. <curve x1="318.34" x2="313.14" x3="302.34" y1="172.14" y2="164.49" y3="164.49"/>
  4192. <curve x1="291.86" x2="284.66" x3="285.54" y1="164.49" y2="172.14" y3="177.28"/>
  4193. <line x="290.84" y="240.51"/>
  4194. <curve x1="291.24" x2="295.92" x3="301.87" y1="246.42" y2="250.98" y3="250.98"/>
  4195. <curve x1="308.74" x2="313.14" x3="313.34" y1="250.98" y2="246.03" y3="240.13"/>
  4196. <close/>
  4197. <move x="301.89" y="290.78"/>
  4198. <curve x1="311.89" x2="318.1" x3="318.1" y1="290.78" y2="282.69" y3="275.13"/>
  4199. <curve x1="318.1" x2="312.75" x3="301.89" y1="267.93" y2="259.09" y3="259.09"/>
  4200. <curve x1="292.78" x2="286.23" x3="286.23" y1="259.09" y2="266.8" y3="275.13"/>
  4201. <curve x1="286.23" x2="293.03" x3="301.89" y1="283.02" y2="290.78" y3="290.78"/>
  4202. <close/>
  4203. <move x="199.36" y="308.42"/>
  4204. <curve x1="193.71" x2="191.35" x3="194.52" y1="308.42" y2="303.62" y3="297.79"/>
  4205. <line x="297.13" y="117.18"/>
  4206. <curve x1="298.58" x2="303.33" x3="304.83" y1="114.27" y2="113.93" y3="117.02"/>
  4207. <line x="404.88" y="296.34"/>
  4208. <curve x1="408.31" x2="405.93" x3="400.28" y1="301.81" y2="308.42" y3="308.42"/>
  4209. <close/>
  4210. <move x="5" y="80"/>
  4211. <line x="5" y="340"/>
  4212. <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
  4213. <line x="590" y="345"/>
  4214. <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
  4215. <line x="595" y="80"/>
  4216. <close/>
  4217. </path>
  4218. <fill/>
  4219. </foreground>
  4220. </shape>
  4221. </shapes>