| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221 |
- <shapes name="mxgraph.sitemap">
- <shape aspect="variable" h="350" name="about us" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="379.62" y="297.61"/>
- <curve x1="376.48" x2="375.62" x3="375.89" y1="297.55" y2="295.2" y3="291.68"/>
- <curve x1="377.42" x2="379.17" x3="382.59" y1="264.4" y2="235.59" y3="214.88"/>
- <curve x1="384.85" x2="387.43" x3="392.4" y1="204.98" y2="196.26" y3="196.06"/>
- <curve x1="399.83" x2="407.57" x3="414.44" y1="195.98" y2="195.64" y3="196.01"/>
- <curve x1="428.23" x2="439.38" x3="438.96" y1="196.66" y2="206.93" y3="220.58"/>
- <line x="438.72" y="291.1"/>
- <curve x1="426.13" x2="410.46" x3="379.62" y1="293.94" y2="298.07" y3="297.61"/>
- <close/>
- <move x="240.7" y="313.7"/>
- <curve x1="238.28" x2="235.36" x3="235.56" y1="313.31" y2="312.46" y3="309.17"/>
- <line x="235.47" y="213.62"/>
- <curve x1="235.33" x2="249.78" x3="264.52" y1="199.97" y2="186.76" y3="186.35"/>
- <line x="281.76" y="186.29"/>
- <curve x1="288.37" x2="294.37" x3="300.37" y1="202.71" y2="211.34" y3="219.98"/>
- <curve x1="308.9" x2="315.51" x3="321.05" y1="212.56" y2="200.61" y3="186.16"/>
- <line x="338.5" y="186.47"/>
- <curve x1="352.54" x2="368.41" x3="368.41" y1="186.47" y2="198.94" y3="218.82"/>
- <line x="368.19" y="308.93"/>
- <curve x1="368.19" x2="366.67" x3="363.57" y1="311.2" y2="312.01" y3="312.95"/>
- <curve x1="343.12" x2="276.9" x3="240.7" y1="319.6" y2="320.12" y3="313.7"/>
- <close/>
- <move x="381.92" y="187.19"/>
- <curve x1="366.3" x2="351.39" x3="351.39" y1="187.19" y2="174.17" y3="155.66"/>
- <curve x1="351.39" x2="363.47" x3="381.92" y1="144.09" y2="125.64" y3="125.64"/>
- <curve x1="402.46" x2="413.22" x3="413.22" y1="125.64" y2="141.78" y3="155.66"/>
- <curve x1="413.22" x2="402.35" x3="381.92" y1="172.74" y2="187.19" y3="187.19"/>
- <close/>
- <move x="301.19" y="180.4"/>
- <curve x1="282.75" x2="264.61" x3="264.61" y1="180.4" y2="165.72" y3="142.99"/>
- <curve x1="264.61" x2="283.66" x3="301.19" y1="121.44" y2="105.97" y3="105.97"/>
- <curve x1="320.25" x2="339.01" x3="339.01" y1="105.97" y2="120.97" y3="142.99"/>
- <curve x1="339.01" x2="323.48" x3="301.19" y1="160.91" y2="180.4" y3="180.4"/>
- <close/>
- <move x="220.09" y="187.42"/>
- <curve x1="201.57" x2="189.8" x3="189.8" y1="187.42" y2="170.97" y3="157.02"/>
- <curve x1="189.8" x2="209.76" x3="221.7" y1="133.36" y2="125.87" y3="125.87"/>
- <curve x1="238.69" x2="251.45" x3="251.45" y1="125.87" y2="140.96" y3="157.34"/>
- <curve x1="251.45" x2="236.65" x3="220.09" y1="173.65" y2="187.42" y3="187.42"/>
- <close/>
- <move x="164.07" y="291.1"/>
- <line x="163.98" y="218.64"/>
- <curve x1="163.93" x2="175.4" x3="186.64" y1="207.09" y2="196.9" y3="196"/>
- <line x="207.65" y="195.74"/>
- <curve x1="211.48" x2="214.84" x3="216.26" y1="195.74" y2="197.39" y3="200.68"/>
- <curve x1="219.51" x2="221.51" x3="223.13" y1="207.2" y2="220.84" y3="233.78"/>
- <curve x1="223.95" x2="225.17" x3="225.99" y1="242.52" y2="264.53" y3="276.95"/>
- <curve x1="226.49" x2="226.84" x3="226.7" y1="287.24" y2="291.36" y3="297.59"/>
- <curve x1="204.51" x2="189.67" x3="164.07" y1="297.95" y2="297.1" y3="291.1"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="audio" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="206.08" y="254.98"/>
- <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="200.57" x-axis-rotation="0" y="249.26"/>
- <line x="200.57" y="174.72"/>
- <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="206.08" x-axis-rotation="0" y="169.82"/>
- <line x="232.63" y="169.82"/>
- <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="238.56" x-axis-rotation="0" y="174.72"/>
- <line x="238.56" y="249.26"/>
- <arc large-arc-flag="0" rx="5.11" ry="5.11" sweep-flag="1" x="232.63" x-axis-rotation="0" y="254.98"/>
- <close/>
- <move x="257.14" y="254.16"/>
- <arc large-arc-flag="0" rx="14.3" ry="14.3" sweep-flag="1" x="252.85" x-axis-rotation="0" y="244.36"/>
- <line x="252.85" y="179.42"/>
- <arc large-arc-flag="0" rx="14.3" ry="14.3" sweep-flag="1" x="257.14" x-axis-rotation="0" y="171.04"/>
- <line x="316.16" y="111.61"/>
- <arc large-arc-flag="0" rx="1.63" ry="1.63" sweep-flag="1" x="318.82" x-axis-rotation="0" y="113.04"/>
- <line x="318.82" y="311.96"/>
- <arc large-arc-flag="0" rx="1.63" ry="1.63" sweep-flag="1" x="316.16" x-axis-rotation="0" y="313.39"/>
- <close/>
- <move x="338.01" y="237.42"/>
- <arc large-arc-flag="0" rx="29.61" ry="29.61" sweep-flag="0" x="338.01" x-axis-rotation="0" y="190.24"/>
- <line x="343.73" y="177.78"/>
- <arc large-arc-flag="0" rx="42.89" ry="42.89" sweep-flag="1" x="343.73" x-axis-rotation="0" y="248.85"/>
- <close/>
- <move x="353.74" y="269.07"/>
- <arc large-arc-flag="0" rx="64.94" ry="64.94" sweep-flag="0" x="353.74" x-axis-rotation="0" y="158.59"/>
- <line x="360.48" y="144.49"/>
- <arc large-arc-flag="0" rx="80.06" ry="80.06" sweep-flag="1" x="360.48" x-axis-rotation="0" y="281.94"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="biography" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="280.05" y="198.54"/>
- <curve x1="257.29" x2="235.31" x3="235.31" y1="198.54" y2="179.07" y3="149.47"/>
- <curve x1="235.31" x2="254.32" x3="279.64" y1="122.6" y2="99.77" y3="99.77"/>
- <curve x1="303.94" x2="324.31" x3="324.31" y1="99.77" y2="121.99" y3="147.91"/>
- <curve x1="324.31" x2="302.64" x3="280.05" y1="179.45" y2="198.54" y3="198.54"/>
- <close/>
- <move x="189.33" y="298.25"/>
- <curve x1="192.09" x2="192.98" x3="199.86" y1="274.95" y2="250.09" y3="230.18"/>
- <curve x1="202.04" x2="205.41" x3="210.25" y1="224.42" y2="219.61" y3="215.99"/>
- <curve x1="214.9" x2="230.44" x3="233.4" y1="212.41" y2="203.68" y3="202.85"/>
- <curve x1="236.25" x2="239.66" x3="241.89" y1="201.75" y2="201.82" y3="203.62"/>
- <curve x1="264.9" x2="297.25" x3="318.29" y1="224.94" y2="222.51" y3="204"/>
- <curve x1="319.82" x2="323.06" x3="326.6" y1="202.52" y2="201.84" y3="203.08"/>
- <curve x1="333.49" x2="348.62" x3="349.96" y1="205.64" y2="214.82" y3="216.13"/>
- <curve x1="353.81" x2="356.5" x3="358.51" y1="218.89" y2="222.36" y3="226.25"/>
- <curve x1="357.1" x2="355.69" x3="354.32" y1="226.98" y2="227.78" y3="228.83"/>
- <curve x1="350.96" x2="347.24" x3="343.46" y1="226.28" y2="224.72" y3="224.42"/>
- <line x="311.07" y="224.42"/>
- <curve x1="302.93" x2="295.7" x3="295.06" y1="224.42" y2="231.27" y3="239.1"/>
- <curve x1="292.4" x2="289.02" x3="289.03" y1="241.27" y2="244.7" y3="251.37"/>
- <line x="289.03" y="298.25"/>
- <close/>
- <move x="318.7" y="262.99"/>
- <line x="318.7" y="257.07"/>
- <line x="342.43" y="257.07"/>
- <line x="342.43" y="262.99"/>
- <close/>
- <move x="318.7" y="277.83"/>
- <line x="318.7" y="271.9"/>
- <line x="342.43" y="271.9"/>
- <line x="342.43" y="277.83"/>
- <close/>
- <move x="318.7" y="292.66"/>
- <line x="318.7" y="286.74"/>
- <line x="342.43" y="286.74"/>
- <line x="342.43" y="292.66"/>
- <close/>
- <move x="366.22" y="262.99"/>
- <line x="366.22" y="257.07"/>
- <line x="389.95" y="257.07"/>
- <line x="389.95" y="262.99"/>
- <close/>
- <move x="366.22" y="277.83"/>
- <line x="366.22" y="271.9"/>
- <line x="389.95" y="271.9"/>
- <line x="389.95" y="277.83"/>
- <close/>
- <move x="366.22" y="292.66"/>
- <line x="366.22" y="286.74"/>
- <line x="389.95" y="286.74"/>
- <line x="389.95" y="292.66"/>
- <close/>
- <move x="397.39" y="239.21"/>
- <line x="368.75" y="239.21"/>
- <curve x1="363.66" x2="357.28" x3="357.28" y1="239.21" y2="243.98" y3="251.75"/>
- <line x="357.28" y="313.39"/>
- <curve x1="363" x2="363.78" x3="367.31" y1="311.03" y2="310.67" y3="310.42"/>
- <line x="398.83" y="310.44"/>
- <line x="398.83" y="240.84"/>
- <curve x1="398.83" x2="397.98" x3="397.39" y1="239.61" y2="239.19" y3="239.19"/>
- <close/>
- <move x="348.27" y="325.23"/>
- <curve x1="346.63" x2="345.41" x3="345.41" y1="325.23" y2="324.08" y3="322.28"/>
- <line x="303.59" y="322.28"/>
- <curve x1="300.44" x2="297.94" x3="297.94" y1="322.28" y2="319.57" y3="316.93"/>
- <line x="297.94" y="250.72"/>
- <curve x1="297.94" x2="300.56" x3="303.86" y1="247.99" y2="245.2" y3="245.2"/>
- <line x="303.86" y="240.31"/>
- <curve x1="303.86" x2="307.64" x3="310.76" y1="236.42" y2="233.34" y3="233.34"/>
- <line x="342.58" y="233.34"/>
- <curve x1="347.17" x2="351.9" x3="354.32" y1="233.42" y2="238.06" y3="242.21"/>
- <curve x1="357.94" x2="362.85" x3="365.98" y1="236.02" y2="233.36" y3="233.34"/>
- <line x="397.6" y="233.34"/>
- <curve x1="401.74" x2="404.76" x3="404.76" y1="233.34" y2="236.95" y3="240.48"/>
- <line x="404.76" y="245.2"/>
- <line x="405.77" y="245.25"/>
- <curve x1="408.49" x2="410.67" x3="410.67" y1="245.75" y2="248.11" y3="250.77"/>
- <line x="410.67" y="316.84"/>
- <curve x1="410.67" x2="407.79" x3="405.2" y1="320.09" y2="322.28" y3="322.28"/>
- <line x="363.21" y="322.28"/>
- <curve x1="363.2" x2="362.06" x3="360.49" y1="324.11" y2="325.24" y3="325.23"/>
- <close/>
- <move x="309.8" y="310.43"/>
- <line x="340.07" y="310.41"/>
- <curve x1="344.81" x2="346.42" x3="351.34" y1="310.5" y2="311.04" y3="313.39"/>
- <line x="351.34" y="250.44"/>
- <curve x1="351.34" x2="346.71" x3="339.34" y1="246.09" y2="239.21" y3="239.21"/>
- <line x="311.19" y="239.21"/>
- <curve x1="310.15" x2="309.8" x3="309.8" y1="239.21" y2="240.09" y3="240.77"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="blog" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="256.11" y="128.83"/>
- <curve x1="244.2" x2="236.28" x3="236.34" y1="128.83" y2="122.24" y3="111"/>
- <curve x1="236.34" x2="242.53" x3="251.48" y1="100.59" y2="93.31" y3="93.31"/>
- <curve x1="346.02" x2="423.41" x3="421.91" y1="89.82" y2="162.91" y3="254.04"/>
- <curve x1="421.73" x2="413.12" x3="403.79" y1="264.19" y2="269.43" y3="269.43"/>
- <curve x1="391.72" x2="384.15" x3="384.15" y1="269.43" y2="262.02" y3="252.69"/>
- <curve x1="384.15" x2="330.05" x3="256.11" y1="186.77" y2="128.83" y3="128.83"/>
- <close/>
- <move x="249.88" y="188.51"/>
- <curve x1="241.19" x2="235.88" x3="236.29" y1="187.35" y2="180.96" y3="170.56"/>
- <curve x1="236.72" x2="242.92" x3="253.13" y1="159.95" y2="153.82" y3="152.85"/>
- <curve x1="305.44" x2="356.79" x3="358.87" y1="155.09" y2="188.93" y3="251.56"/>
- <curve x1="358.87" x2="350.13" x3="339.22" y1="263.44" y2="269.45" y3="269.45"/>
- <curve x1="328.42" x2="320.86" x3="320.53" y1="269.45" y2="263.82" y3="252.44"/>
- <curve x1="319.39" x2="290.37" x3="249.88" y1="213.41" y2="189.33" y3="188.51"/>
- <close/>
- <move x="211.43" y="268.7"/>
- <curve x1="211.43" x2="221.62" x3="238.04" y1="281.38" y2="294.65" y3="294.65"/>
- <curve x1="255.47" x2="263.69" x3="263.69" y1="294.65" y2="279.14" y3="268.7"/>
- <curve x1="263.69" x2="254.31" x3="238.04" y1="257.13" y2="243.63" y3="243.63"/>
- <curve x1="223.07" x2="211.43" x3="211.43" y1="243.63" y2="254.73" y3="268.7"/>
- <close/>
- <move x="177.86" y="172.41"/>
- <curve x1="177.86" x2="185.54" x3="194.24" y1="159.3" y2="153.47" y3="153.47"/>
- <curve x1="203.49" x2="211.56" x3="211.56" y1="153.47" y2="159.61" y3="173.03"/>
- <line x="211.56" y="215.2"/>
- <curve x1="223.24" x2="233.56" x3="243.24" y1="210.37" y2="209.04" y3="209.52"/>
- <curve x1="276.09" x2="297.61" x3="297.61" y1="211.75" y2="243.59" y3="270.03"/>
- <curve x1="297.61" x2="270.01" x3="236.1" y1="300.8" y2="328.92" y3="328.92"/>
- <curve x1="212.55" x2="177.86" x3="177.86" y1="328.92" y2="307.85" y3="270.97"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="calendar" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="243.91" y="178.48"/>
- <line x="243.91" y="147.89"/>
- <line x="274.5" y="147.89"/>
- <line x="274.5" y="178.48"/>
- <close/>
- <move x="284.71" y="178.48"/>
- <line x="284.71" y="147.89"/>
- <line x="315.3" y="147.89"/>
- <line x="315.3" y="178.48"/>
- <close/>
- <move x="325.52" y="178.48"/>
- <line x="325.52" y="147.89"/>
- <line x="356.11" y="147.89"/>
- <line x="356.11" y="178.48"/>
- <close/>
- <move x="366.33" y="178.48"/>
- <line x="366.33" y="147.89"/>
- <line x="396.92" y="147.89"/>
- <line x="396.92" y="178.48"/>
- <close/>
- <move x="366.33" y="219.27"/>
- <line x="366.33" y="188.68"/>
- <line x="396.92" y="188.68"/>
- <line x="396.92" y="219.27"/>
- <close/>
- <move x="325.52" y="219.27"/>
- <line x="325.52" y="188.68"/>
- <line x="356.11" y="188.68"/>
- <line x="356.11" y="219.27"/>
- <close/>
- <move x="284.71" y="219.27"/>
- <line x="284.71" y="188.68"/>
- <line x="315.3" y="188.68"/>
- <line x="315.3" y="219.27"/>
- <close/>
- <move x="243.91" y="219.27"/>
- <line x="243.91" y="188.68"/>
- <line x="274.5" y="188.68"/>
- <line x="274.5" y="219.27"/>
- <close/>
- <move x="203.1" y="219.27"/>
- <line x="203.1" y="188.68"/>
- <line x="233.69" y="188.68"/>
- <line x="233.69" y="219.27"/>
- <close/>
- <move x="203.1" y="300.86"/>
- <line x="203.1" y="270.27"/>
- <line x="233.69" y="270.27"/>
- <line x="233.69" y="300.86"/>
- <close/>
- <move x="243.91" y="300.86"/>
- <line x="243.91" y="270.27"/>
- <line x="274.5" y="270.27"/>
- <line x="274.5" y="300.86"/>
- <close/>
- <move x="284.71" y="300.86"/>
- <line x="284.71" y="270.27"/>
- <line x="315.3" y="270.27"/>
- <line x="315.3" y="300.86"/>
- <close/>
- <move x="325.52" y="300.86"/>
- <line x="325.52" y="270.27"/>
- <line x="356.11" y="270.27"/>
- <line x="356.11" y="300.86"/>
- <close/>
- <move x="366.33" y="260.06"/>
- <line x="366.33" y="229.48"/>
- <line x="396.92" y="229.48"/>
- <line x="396.92" y="260.06"/>
- <close/>
- <move x="325.52" y="260.06"/>
- <line x="325.52" y="229.48"/>
- <line x="356.11" y="229.48"/>
- <line x="356.11" y="260.06"/>
- <close/>
- <move x="284.71" y="260.06"/>
- <line x="284.71" y="229.48"/>
- <line x="315.3" y="229.48"/>
- <line x="315.3" y="260.06"/>
- <close/>
- <move x="243.91" y="260.06"/>
- <line x="243.91" y="229.48"/>
- <line x="274.5" y="229.48"/>
- <line x="274.5" y="260.06"/>
- <close/>
- <move x="203.1" y="260.06"/>
- <line x="203.1" y="229.48"/>
- <line x="233.69" y="229.48"/>
- <line x="233.69" y="260.06"/>
- <close/>
- <move x="189.49" y="314.51"/>
- <line x="410.51" y="314.51"/>
- <line x="410.51" y="134.29"/>
- <line x="189.49" y="134.29"/>
- <close/>
- <move x="179.29" y="324.7"/>
- <line x="179.29" y="114.12"/>
- <curve x1="179.29" x2="186.19" x3="192.68" y1="105.7" y2="100.3" y3="100.3"/>
- <line x="407.24" y="100.3"/>
- <curve x1="415.04" x2="420.71" x3="420.71" y1="100.3" y2="106.95" y3="113.62"/>
- <line x="420.71" y="324.7"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="chart" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="328.17" y="129.08"/>
- <curve x1="371.92" x2="411.8" x3="411.8" y1="136.16" y2="175.06" y3="225.92"/>
- <curve x1="411.8" x2="364.36" x3="313.21" y1="276.56" y2="323.26" y3="323.26"/>
- <curve x1="296.14" x2="273.16" x3="256.25" y1="323.26" y2="314.96" y3="303.7"/>
- <line x="328.17" y="231.66"/>
- <close/>
- <move x="299.64" y="209.96"/>
- <line x="221.17" y="131.75"/>
- <curve x1="240.28" x2="269.65" x3="299.64" y1="114.94" y2="101.88" y3="100.6"/>
- <close/>
- <move x="213.88" y="304.57"/>
- <curve x1="180.79" x2="179.04" x3="214.5" y1="258.55" y2="211.51" y3="166.16"/>
- <line x="283.3" y="235.27"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="chat" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="236.11" y="277.34"/>
- <line x="215.08" y="277.34"/>
- <curve x1="203.78" x2="187.56" x3="187.56" y1="277.34" y2="260.97" y3="248.4"/>
- <line x="187.56" y="132.84"/>
- <curve x1="187.56" x2="203.51" x3="217.78" y1="116.34" y2="101.25" y3="101.25"/>
- <line x="379.52" y="101.25"/>
- <curve x1="396.32" x2="412.33" x3="412.33" y1="101.25" y2="116.2" y3="133.19"/>
- <line x="412.33" y="246.55"/>
- <curve x1="412.33" x2="401.17" x3="380.27" y1="258.56" y2="277.34" y3="277.34"/>
- <line x="315.52" y="277.34"/>
- <line x="261.65" y="322.05"/>
- <curve x1="257.92" x2="249.8" x3="244.44" y1="325.02" y2="326.08" y3="323.98"/>
- <curve x1="240.11" x2="235.81" x3="235.81" y1="322.05" y2="316.28" y3="311.61"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="cloud" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="174.78" y="316.01"/>
- <arc large-arc-flag="0" rx="51.99" ry="59.71" sweep-flag="1" x="178.63" x-axis-rotation="0" y="196.67"/>
- <arc large-arc-flag="0" rx="46.18" ry="53.04" sweep-flag="1" x="259.44" x-axis-rotation="0" y="165.73"/>
- <arc large-arc-flag="0" rx="84.66" ry="97.24" sweep-flag="1" x="421.06" x-axis-rotation="0" y="205.51"/>
- <arc large-arc-flag="1" rx="48.45" ry="55.65" sweep-flag="1" x="432.61" x-axis-rotation="0" y="316.01"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="contact" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="267.66" y="298.5"/>
- <line x="332.17" y="298.5"/>
- <line x="332.17" y="287.74"/>
- <curve x1="332.17" x2="337.23" x3="343.82" y1="281.82" y2="276.87" y3="276.87"/>
- <line x="374.57" y="276.87"/>
- <curve x1="380.35" x2="385.93" x3="385.93" y1="276.87" y2="281.36" y3="287.78"/>
- <line x="385.93" y="298.53"/>
- <line x="397.72" y="298.53"/>
- <curve x1="408.7" x2="418.4" x3="418.4" y1="298.53" y2="287.69" y3="276.15"/>
- <line x="418.4" y="149.59"/>
- <curve x1="418.4" x2="410.63" x3="394.48" y1="137.44" y2="126.21" y3="126.21"/>
- <line x="203.86" y="126.21"/>
- <curve x1="193.59" x2="181.54" x3="181.54" y1="126.21" y2="134.83" y3="148.81"/>
- <line x="181.54" y="277.31"/>
- <curve x1="181.54" x2="193.57" x3="200.9" y1="289.38" y2="298.16" y3="298.16"/>
- <line x="213.98" y="298.16"/>
- <line x="213.98" y="286.99"/>
- <curve x1="213.98" x2="218.46" x3="226.06" y1="283.08" y2="276.87" y3="276.87"/>
- <line x="256.01" y="276.87"/>
- <curve x1="263.79" x2="267.66" x3="267.66" y1="276.87" y2="282.63" y3="287.83"/>
- <close/>
- <move x="257.34" y="320.01"/>
- <curve x1="253.33" x2="246.17" x3="246.17" y1="320.01" y2="316.72" y3="307.83"/>
- <line x="246.17" y="298.4"/>
- <line x="235.58" y="298.4"/>
- <line x="235.58" y="309.11"/>
- <curve x1="235.58" x2="229.86" x3="225.13" y1="315.19" y2="320.01" y3="320.01"/>
- <line x="200.28" y="320.01"/>
- <curve x1="182.44" x2="160.43" x3="160.43" y1="320.01" y2="301.6" y3="280.5"/>
- <line x="160.43" y="145.76"/>
- <curve x1="160.43" x2="181.88" x3="202.7" y1="122.5" y2="105.06" y3="105.06"/>
- <line x="397.69" y="105.06"/>
- <curve x1="423.13" x2="439.36" x3="439.36" y1="105.06" y2="128.85" y3="144.17"/>
- <line x="439.36" y="277.47"/>
- <curve x1="439.36" x2="418.6" x3="397.91" y1="302.22" y2="320.01" y3="320.01"/>
- <line x="375.71" y="320.01"/>
- <curve x1="370.31" x2="364.4" x3="364.4" y1="320.01" y2="316.39" y3="307.14"/>
- <line x="364.4" y="298.16"/>
- <line x="353.67" y="298.16"/>
- <line x="353.67" y="307.14"/>
- <curve x1="353.67" x2="348.31" x3="341.82" y1="315.8" y2="320.01" y3="320.01"/>
- <close/>
- <move x="374.08" y="173.87"/>
- <line x="386.3" y="173.87"/>
- <line x="380.58" y="204.48"/>
- <curve x1="380.06" x2="378.89" x3="381.49" y1="206.67" y2="211.56" y3="211.56"/>
- <curve x1="386.95" x2="393.58" x3="393.58" y1="211.56" y2="205.77" y3="192"/>
- <curve x1="393.58" x2="379.28" x3="359.52" y1="171.41" y2="160.86" y3="160.86"/>
- <curve x1="337.96" x2="324.18" x3="324.18" y1="160.86" y2="175.92" y3="197.01"/>
- <curve x1="324.18" x2="339.77" x3="361.73" y1="219.53" y2="232.91" y3="232.91"/>
- <curve x1="371.48" x2="379.94" x3="386.3" y1="232.91" y2="230.08" y3="225.32"/>
- <line x="399.04" y="225.32"/>
- <curve x1="389.81" x2="376.55" x3="360.7" y1="237.94" y2="244.76" y3="244.76"/>
- <curve x1="333.02" x2="310.27" x3="310.27" y1="244.76" y2="224.94" y3="197.02"/>
- <curve x1="310.27" x2="332.49" x3="359.92" y1="169.61" y2="149.03" y3="149.03"/>
- <curve x1="382.79" x2="405.14" x3="405.14" y1="149.03" y2="164.09" y3="187.9"/>
- <curve x1="405.14" x2="380.71" x3="373.05" y1="217.36" y2="225.08" y3="225.08"/>
- <curve x1="368.23" x2="365.12" x3="364.98" y1="225.08" y2="222.89" y3="218.78"/>
- <line x="364.72" y="218.78"/>
- <curve x1="362.12" x2="358.09" x3="352.25" y1="222.25" y2="225.21" y3="225.21"/>
- <curve x1="341.06" x2="330.8" x3="330.8" y1="225.21" y2="214.66" y3="201.93"/>
- <curve x1="330.8" x2="341.07" x3="356.93" y1="186.87" y2="172.59" y3="172.59"/>
- <curve x1="363.55" x2="369.02" x3="372.9" y1="172.59" y2="174.77" y3="180.04"/>
- <close/>
- <move x="369.14" y="196.89"/>
- <curve x1="369.14" x2="365.12" x3="358.88" y1="190.72" y2="186.47" y3="186.47"/>
- <curve x1="351.35" x2="346.01" x3="346.01" y1="186.47" y2="193.17" y3="199.85"/>
- <curve x1="346.01" x2="349.53" x3="355.89" y1="205.77" y2="210.4" y3="210.4"/>
- <curve x1="363.95" x2="369.14" x3="369.14" y1="210.4" y2="204.23" y3="196.89"/>
- <close/>
- <move x="246.42" y="194.9"/>
- <curve x1="234.8" x2="224.43" x3="224.43" y1="194.9" y2="185.18" y3="170.28"/>
- <curve x1="224.43" x2="233.19" x3="246.01" y1="158.74" y2="146.89" y3="146.89"/>
- <curve x1="258.51" x2="267.69" x3="267.69" y1="146.89" y2="158.34" y3="170.84"/>
- <curve x1="267.69" x2="256.89" x3="246.42" y1="185.31" y2="194.9" y3="194.9"/>
- <close/>
- <move x="202.07" y="243.34"/>
- <curve x1="203.07" x2="204.43" x3="206.99" y1="232.69" y2="218.17" y3="210.8"/>
- <curve x1="208.15" x2="209.86" x3="212.63" y1="207.47" y2="205.07" y3="203.07"/>
- <curve x1="214.41" x2="220.77" x3="221.96" y1="201.73" y2="198.22" y3="197.65"/>
- <curve x1="224" x2="226.11" x3="227.91" y1="196.58" y2="196.02" y3="197.65"/>
- <curve x1="238.7" x2="253.64" x3="264.57" y1="207.2" y2="206.92" y3="197.68"/>
- <curve x1="265.84" x2="267.87" x3="269.18" y1="196.38" y2="196.72" y3="197.25"/>
- <curve x1="271.28" x2="277.99" x3="279.26" y1="198.04" y2="202" y3="202.82"/>
- <curve x1="282.98" x2="284.98" x3="286.46" y1="205.24" y2="208.48" y3="214.59"/>
- <curve x1="288.35" x2="289.48" x3="290.76" y1="222.81" y2="233.3" y3="243.34"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="contact us" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="234.81" y="100"/>
- <line x="260.73" y="160.48"/>
- <line x="236.97" y="190.72"/>
- <arc large-arc-flag="0" rx="172.79" ry="172.79" sweep-flag="0" x="329.85" x-axis-rotation="0" y="272.8"/>
- <line x="360.09" y="238.24"/>
- <line x="420.56" y="268.48"/>
- <line x="416.25" y="296.56"/>
- <arc large-arc-flag="0" rx="64.8" ry="64.8" sweep-flag="1" x="355.77" x-axis-rotation="0" y="324.63"/>
- <arc large-arc-flag="0" rx="237.59" ry="237.59" sweep-flag="1" x="179.52" x-axis-rotation="0" y="156.16"/>
- <arc large-arc-flag="0" rx="64.8" ry="64.8" sweep-flag="1" x="206.73" x-axis-rotation="0" y="100"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="document" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="193.48" y="297.56"/>
- <line x="193.48" y="126.54"/>
- <arc large-arc-flag="0" rx="29.06" ry="29.06" sweep-flag="1" x="217.4" x-axis-rotation="0" y="101.95"/>
- <line x="362.48" y="101.95"/>
- <line x="406.52" y="145.55"/>
- <line x="406.52" y="297.56"/>
- <arc large-arc-flag="0" rx="29.06" ry="29.06" sweep-flag="1" x="381.26" x-axis-rotation="0" y="323.05"/>
- <line x="218.07" y="323.05"/>
- <arc large-arc-flag="0" rx="29.06" ry="29.06" sweep-flag="1" x="193.48" x-axis-rotation="0" y="297.56"/>
- <close/>
- <move x="249.37" y="261.12"/>
- <line x="348.18" y="261.12"/>
- <line x="348.18" y="242.57"/>
- <line x="249.37" y="242.57"/>
- <close/>
- <move x="348.18" y="225.8"/>
- <line x="348.18" y="207.69"/>
- <line x="249.37" y="207.69"/>
- <line x="249.37" y="225.8"/>
- <close/>
- <move x="249.37" y="190.93"/>
- <line x="348.18" y="190.93"/>
- <line x="348.18" y="173.04"/>
- <line x="249.37" y="173.04"/>
- <close/>
- <move x="352.87" y="156.28"/>
- <line x="389.08" y="156.28"/>
- <line x="352.87" y="118.72"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="download" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="299.95" y="279.35"/>
- <line x="240.62" y="205.68"/>
- <line x="270.43" y="205.68"/>
- <line x="270.43" y="101.12"/>
- <line x="329.95" y="101.12"/>
- <line x="329.95" y="205.68"/>
- <line x="359.25" y="205.68"/>
- <close/>
- <move x="195.8" y="324.54"/>
- <line x="195.8" y="250.48"/>
- <line x="225.22" y="250.48"/>
- <line x="225.22" y="295.34"/>
- <line x="374.92" y="295.34"/>
- <line x="374.92" y="250.48"/>
- <line x="404.33" y="250.48"/>
- <line x="404.33" y="324.54"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="error" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="300.1" y="238.41"/>
- <line x="269.39" y="269"/>
- <line x="246.78" y="246.59"/>
- <line x="277.61" y="215.8"/>
- <line x="246.46" y="185.09"/>
- <line x="269.57" y="162.28"/>
- <line x="300.13" y="193.1"/>
- <line x="330.86" y="162.45"/>
- <line x="353.47" y="185.21"/>
- <line x="322.53" y="215.92"/>
- <line x="353.47" y="246.42"/>
- <line x="330.71" y="269.2"/>
- <close/>
- <move x="299.75" y="319.9"/>
- <curve x1="239.81" x2="192.65" x3="192.65" y1="319.9" y2="272.02" y3="211.38"/>
- <curve x1="192.65" x2="240.85" x3="301.12" y1="152.68" y2="105.03" y3="105.03"/>
- <curve x1="362.61" x2="407.46" x3="407.46" y1="105.03" y2="157.29" y3="211.48"/>
- <curve x1="407.46" x2="355.46" x3="299.75" y1="276.58" y2="319.9" y3="319.9"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="faq" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="328.51" y="234.95"/>
- <line x="347.82" y="234.95"/>
- <line x="347.82" y="220.18"/>
- <curve x1="347.76" x2="351.6" x3="356.16" y1="213.73" y2="210.35" y3="207.71"/>
- <curve x1="364.9" x2="370.56" x3="372.85" y1="202.81" y2="196.46" y3="188.01"/>
- <curve x1="375.08" x2="371.39" x3="363.28" y1="175.85" y2="166.1" y3="158.26"/>
- <curve x1="356.44" x2="349.23" x3="337.08" y1="151.67" y2="148.46" y3="148.2"/>
- <curve x1="326.47" x2="313.92" x3="304.8" y1="148.49" y2="150.96" y3="168.1"/>
- <curve x1="301.9" x2="300.85" x3="301.12" y1="173.94" y2="181.66" y3="191.85"/>
- <line x="320.08" y="191.85"/>
- <curve x1="320.06" x2="320.04" x3="320.57" y1="186.83" y2="182.8" y3="179.93"/>
- <curve x1="322.11" x2="329.19" x3="338.28" y1="171.59" y2="167.14" y3="167.48"/>
- <curve x1="344.35" x2="353.54" x3="353.22" y1="167.43" y2="171" y3="180.18"/>
- <curve x1="352.7" x2="349.82" x3="342.09" y1="187.99" y2="189.12" y3="194.41"/>
- <curve x1="335.31" x2="328.55" x3="328.51" y1="198.64" y2="202.43" y3="212.08"/>
- <close/>
- <move x="328.51" y="262.21"/>
- <line x="347.82" y="262.21"/>
- <line x="347.82" y="242.42"/>
- <line x="328.51" y="242.42"/>
- <close/>
- <move x="280.01" y="279.78"/>
- <curve x1="252.43" x2="234.83" x3="234.83" y1="278.59" y2="254.61" y3="234.44"/>
- <line x="234.83" y="177.09"/>
- <curve x1="234.83" x2="257.9" x3="280.92" y1="150.43" y2="130.66" y3="130.66"/>
- <line x="393.91" y="130.66"/>
- <curve x1="419.02" x2="439.57" x3="439.57" y1="130.66" y2="153.06" y3="176.04"/>
- <line x="439.57" y="234.83"/>
- <curve x1="439.57" x2="429.17" x3="411.21" y1="249.64" y2="268.06" y3="275.84"/>
- <line x="411.21" y="326.75"/>
- <line x="369.55" y="279.78"/>
- <close/>
- <move x="184.4" y="256.09"/>
- <line x="184.4" y="213.34"/>
- <curve x1="172.71" x2="160.66" x3="160.66" y1="208.81" y2="195.73" y3="177"/>
- <line x="160.66" y="138.99"/>
- <curve x1="160.66" x2="180.93" x3="200.67" y1="113.65" y2="98.73" y3="98.73"/>
- <line x="292.15" y="98.73"/>
- <curve x1="308.74" x2="318.9" x3="324.68" y1="98.92" y2="107.01" y3="114.47"/>
- <line x="280.62" y="114.47"/>
- <curve x1="255.21" x2="219.77" x3="219.77" y1="114.47" y2="135.64" y3="179.62"/>
- <line x="219.77" y="216.82"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="form" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="387.03" y="123.24"/>
- <line x="397.08" y="123.24"/>
- <line x="397.08" y="113.19"/>
- <line x="387.03" y="113.19"/>
- <close/>
- <move x="366.95" y="123.24"/>
- <line x="377" y="123.24"/>
- <line x="377" y="113.19"/>
- <line x="366.95" y="113.19"/>
- <close/>
- <move x="346.87" y="123.24"/>
- <line x="356.92" y="123.24"/>
- <line x="356.92" y="113.19"/>
- <line x="346.87" y="113.19"/>
- <close/>
- <move x="363.86" y="283.9"/>
- <line x="373.86" y="273.88"/>
- <line x="393.91" y="273.88"/>
- <curve x1="395.84" x2="397.1" x3="397.1" y1="273.88" y2="272.34" y3="270.76"/>
- <line x="397.1" y="250.55"/>
- <line x="407.13" y="240.45"/>
- <line x="407.13" y="271.13"/>
- <curve x1="407.13" x2="401.02" x3="394.43" y1="277.59" y2="283.9" y3="283.9"/>
- <close/>
- <move x="319.07" y="289.61"/>
- <line x="307.38" y="308.35"/>
- <line x="309.39" y="310.38"/>
- <line x="328.09" y="298.68"/>
- <close/>
- <move x="318.4" y="283.58"/>
- <line x="406.3" y="195.02"/>
- <curve x1="408.52" x2="411.83" x3="413.49" y1="193.11" y2="193.06" y3="194.52"/>
- <line x="422.87" y="203.88"/>
- <curve x1="424.54" x2="423.93" x3="422.45" y1="205.94" y2="209.13" y3="211.01"/>
- <line x="334.17" y="299.63"/>
- <line x="298.52" y="321.64"/>
- <curve x1="297.09" x2="295.41" x3="296.13" y1="322.54" y2="320.87" y3="319.26"/>
- <close/>
- <move x="266.5" y="163.39"/>
- <line x="202.9" y="163.39"/>
- <line x="202.9" y="156.71"/>
- <line x="266.5" y="156.71"/>
- <close/>
- <move x="333.75" y="253.78"/>
- <line x="202.9" y="253.78"/>
- <line x="202.9" y="176.79"/>
- <line x="380.35" y="176.79"/>
- <line x="380.35" y="206.95"/>
- <line x="373.65" y="213.66"/>
- <line x="373.65" y="183.47"/>
- <line x="209.6" y="183.47"/>
- <line x="209.6" y="247.09"/>
- <line x="340.39" y="247.09"/>
- <close/>
- <move x="306.21" y="283.9"/>
- <line x="188.88" y="283.9"/>
- <curve x1="182.41" x2="176.13" x3="176.13" y1="283.9" y2="277.74" y3="270.92"/>
- <line x="176.13" y="116.64"/>
- <curve x1="176.13" x2="183.46" x3="189.13" y1="108.05" y2="103.11" y3="103.11"/>
- <line x="393.74" y="103.11"/>
- <curve x1="400.9" x2="407.13" x3="407.13" y1="103.11" y2="108.95" y3="116.34"/>
- <line x="407.13" y="183.88"/>
- <curve x1="402.53" x2="399.63" x3="397.1" y1="184.86" y2="187.36" y3="190.18"/>
- <line x="397.1" y="136.6"/>
- <line x="186.15" y="136.6"/>
- <line x="186.15" y="270.8"/>
- <curve x1="186.43" x2="187.69" x3="189.22" y1="273.09" y2="273.71" y3="273.86"/>
- <line x="313.74" y="273.86"/>
- <line x="310.36" y="277.29"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="gallery" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="211.96" y="213.6"/>
- <curve x1="223.87" x2="230.04" x3="230.04" y1="213.6" y2="206.01" y3="195.64"/>
- <curve x1="230.04" x2="223.68" x3="211.96" y1="185.36" y2="176.82" y3="176.82"/>
- <curve x1="201.28" x2="193.49" x3="193.49" y1="176.82" y2="184.43" y3="195.64"/>
- <curve x1="193.49" x2="201.74" x3="211.96" y1="207.86" y2="213.6" y3="213.6"/>
- <close/>
- <move x="260.71" y="171.78"/>
- <curve x1="270.63" x2="279.22" x3="279.22" y1="171.78" y2="164.67" y3="153.66"/>
- <curve x1="279.22" x2="272.52" x3="261.45" y1="142.36" y2="134.56" y3="134.56"/>
- <curve x1="250.17" x2="241.97" x3="241.97" y1="134.56" y2="143.05" y3="153.45"/>
- <curve x1="241.97" x2="252.81" x3="260.71" y1="164.7" y2="171.78" y3="171.78"/>
- <close/>
- <move x="317.11" y="172.08"/>
- <curve x1="327.59" x2="335.46" x3="335.46" y1="172.08" y2="162.39" y3="154.01"/>
- <curve x1="335.46" x2="328.54" x3="317.11" y1="142.69" y2="134.38" y3="134.38"/>
- <curve x1="306.29" x2="298.88" x3="298.88" y1="134.38" y2="143.96" y3="154.01"/>
- <curve x1="298.88" x2="306.75" x3="317.11" y1="164.31" y2="172.08" y3="172.08"/>
- <close/>
- <move x="373.12" y="200.73"/>
- <curve x1="383.28" x2="392.15" x3="392.15" y1="200.73" y2="191.1" y3="181.43"/>
- <curve x1="392.15" x2="383.51" x3="373.12" y1="171.09" y2="162.45" y3="162.45"/>
- <curve x1="362.58" x2="354.2" x3="354.2" y1="162.45" y2="173.12" y3="181.43"/>
- <curve x1="354.2" x2="363.79" x3="373.12" y1="191.08" y2="200.73" y3="200.73"/>
- <close/>
- <move x="300.19" y="291.36"/>
- <curve x1="312.27" x2="321.31" x3="321.31" y1="291.36" y2="279.23" y3="269.61"/>
- <curve x1="321.31" x2="311.92" x3="300.19" y1="256.58" y2="246.74" y3="246.74"/>
- <curve x1="285.38" x2="277.69" x3="277.69" y1="246.74" y2="259.51" y3="269.61"/>
- <curve x1="277.69" x2="289.97" x3="300.19" y1="282.78" y2="291.36" y3="291.36"/>
- <close/>
- <move x="290.9" y="317.53"/>
- <curve x1="279.89" x2="264.7" x3="257.75" y1="316.17" y2="307.23" y3="296.34"/>
- <curve x1="253.9" x2="250.96" x3="249.77" y1="290.71" y2="281.01" y3="263.44"/>
- <curve x1="249.08" x2="239.53" x3="223.35" y1="249.21" y2="245.04" y3="241.75"/>
- <curve x1="216.48" x2="202.39" x3="194.18" y1="240.66" y2="241.93" y3="239.76"/>
- <curve x1="183.92" x2="167.05" x3="166.27" y1="235.71" y2="221.88" y3="196.38"/>
- <curve x1="166.45" x2="173.77" x3="200.67" y1="178.7" y2="160.06" y3="135.81"/>
- <curve x1="217.37" x2="246.52" x3="277.69" y1="120.9" y2="109.65" y3="107.14"/>
- <curve x1="317.63" x2="354.07" x3="385.38" y1="107.82" y2="114.96" y3="131.57"/>
- <curve x1="420.88" x2="433.49" x3="432.49" y1="154.67" y2="188.01" y3="220.31"/>
- <curve x1="429.96" x2="412.03" x3="383.13" y1="258.94" y2="281.34" y3="298.59"/>
- <curve x1="354.3" x2="320.56" x3="290.9" y1="313.12" y2="319.92" y3="317.53"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="game" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="186.15" y="117.56"/>
- <arc large-arc-flag="0" rx="95.42" ry="95.42" sweep-flag="1" x="226.87" x-axis-rotation="0" y="101.97"/>
- <arc large-arc-flag="0" rx="15.9" ry="15.9" sweep-flag="1" x="237.68" x-axis-rotation="0" y="106.43"/>
- <arc large-arc-flag="0" rx="79.52" ry="79.52" sweep-flag="0" x="266.31" x-axis-rotation="0" y="124.24"/>
- <arc large-arc-flag="0" rx="286.27" ry="286.27" sweep-flag="0" x="334.06" x-axis-rotation="0" y="124.24"/>
- <arc large-arc-flag="0" rx="95.42" ry="95.42" sweep-flag="0" x="362.69" x-axis-rotation="0" y="104.52"/>
- <arc large-arc-flag="0" rx="12.72" ry="12.72" sweep-flag="1" x="372.55" x-axis-rotation="0" y="101.97"/>
- <arc large-arc-flag="0" rx="95.42" ry="95.42" sweep-flag="1" x="415.17" x-axis-rotation="0" y="117.88"/>
- <arc large-arc-flag="0" rx="429.41" ry="429.41" sweep-flag="1" x="457.79" x-axis-rotation="0" y="266.42"/>
- <arc large-arc-flag="0" rx="111.33" ry="111.33" sweep-flag="1" x="453.97" x-axis-rotation="0" y="309.36"/>
- <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="421.85" x-axis-rotation="0" y="319.22"/>
- <arc large-arc-flag="0" rx="318.08" ry="318.08" sweep-flag="1" x="363.64" x-axis-rotation="0" y="272.78"/>
- <arc large-arc-flag="0" rx="69.98" ry="69.98" sweep-flag="0" x="333.42" x-axis-rotation="0" y="261.65"/>
- <arc large-arc-flag="0" rx="445.31" ry="445.31" sweep-flag="0" x="266.63" x-axis-rotation="0" y="261.65"/>
- <arc large-arc-flag="0" rx="57.25" ry="57.25" sweep-flag="0" x="234.82" x-axis-rotation="0" y="275.01"/>
- <arc large-arc-flag="0" rx="445.31" ry="445.31" sweep-flag="1" x="179.47" x-axis-rotation="0" y="319.54"/>
- <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="146.07" x-axis-rotation="0" y="307.77"/>
- <arc large-arc-flag="0" rx="127.23" ry="127.23" sweep-flag="1" x="145.12" x-axis-rotation="0" y="244.47"/>
- <arc large-arc-flag="0" rx="477.12" ry="477.12" sweep-flag="1" x="186.15" x-axis-rotation="0" y="117.56"/>
- <close/>
- <move x="189.65" y="190.08"/>
- <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="230.05" x-axis-rotation="0" y="229.52"/>
- <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="270.12" x-axis-rotation="0" y="190.08"/>
- <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="230.05" x-axis-rotation="0" y="148.73"/>
- <arc large-arc-flag="0" rx="41.35" ry="41.35" sweep-flag="0" x="189.65" x-axis-rotation="0" y="190.08"/>
- <close/>
- <move x="207.14" y="186.9"/>
- <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="230.05" x-axis-rotation="0" y="165.59"/>
- <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="252.31" x-axis-rotation="0" y="186.9"/>
- <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="230.05" x-axis-rotation="0" y="210.76"/>
- <arc large-arc-flag="0" rx="22.27" ry="22.27" sweep-flag="1" x="207.14" x-axis-rotation="0" y="186.9"/>
- <close/>
- <move x="341.37" y="198.67"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="356.32" x-axis-rotation="0" y="186.9"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="341.37" x-axis-rotation="0" y="172.59"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="329.6" x-axis-rotation="0" y="186.9"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="341.37" x-axis-rotation="0" y="198.67"/>
- <close/>
- <move x="358.55" y="215.53"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="226.66"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="384.63" x-axis-rotation="0" y="215.53"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="201.21"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="358.55" x-axis-rotation="0" y="215.53"/>
- <close/>
- <move x="371.59" y="171"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="384.63" x-axis-rotation="0" y="158.27"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="144.91"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="358.23" x-axis-rotation="0" y="158.27"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="371.59" x-axis-rotation="0" y="171"/>
- <close/>
- <move x="385.27" y="186.9"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="398.63" x-axis-rotation="0" y="198.67"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="411.99" x-axis-rotation="0" y="186.9"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="398.63" x-axis-rotation="0" y="172.59"/>
- <arc large-arc-flag="0" rx="14.31" ry="14.31" sweep-flag="0" x="385.27" x-axis-rotation="0" y="186.9"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="home" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="206.06" y="323.49"/>
- <line x="206.06" y="216.15"/>
- <line x="196.97" y="216.15"/>
- <curve x1="190.01" x2="187.05" x3="191.13" y1="215.9" y2="208.61" y3="203.61"/>
- <line x="291.98" y="105.42"/>
- <curve x1="298.68" x2="301.43" x3="307.36" y1="100.02" y2="100.57" y3="104.87"/>
- <line x="353.65" y="149.09"/>
- <line x="353.65" y="122.15"/>
- <curve x1="353.65" x2="356.13" x3="360.34" y1="119.16" y2="115.55" y3="115.55"/>
- <line x="380.65" y="115.55"/>
- <curve x1="383.99" x2="387.19" x3="387.19" y1="115.55" y2="118.24" y3="122.32"/>
- <line x="387.19" y="182.65"/>
- <line x="408.71" y="203.49"/>
- <curve x1="413.4" x2="409.27" x3="402.79" y1="209" y2="216.16" y3="216.16"/>
- <line x="393.89" y="216.16"/>
- <line x="393.89" y="323.49"/>
- <line x="323.46" y="323.49"/>
- <line x="323.46" y="242.98"/>
- <line x="276.49" y="242.98"/>
- <line x="276.49" y="323.49"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="info" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="314.67" y="171.67"/>
- <curve x1="306.18" x2="300.1" x3="300.1" y1="171.67" y2="165.05" y3="156.99"/>
- <curve x1="300.1" x2="306.02" x3="314.67" y1="149.45" y2="142.35" y3="142.35"/>
- <curve x1="321.52" x2="329.32" x3="329.32" y1="142.35" y2="148.14" y3="156.99"/>
- <curve x1="329.32" x2="322.74" x3="314.67" y1="165.37" y2="171.67" y3="171.67"/>
- <close/>
- <move x="318.97" y="257.4"/>
- <curve x1="315.04" x2="310.02" x3="303.42" y1="263.89" y2="271.54" y3="276.94"/>
- <curve x1="299.98" x2="294.82" x3="285.15" y1="279.61" y2="284.07" y3="283.42"/>
- <curve x1="278.55" x2="270.51" x3="273.2" y1="283.11" y2="277.38" y3="266.22"/>
- <line x="290.02" y="207.31"/>
- <curve x1="290.72" x2="290.81" x3="288.37" y1="204.44" y2="201.2" y3="199.29"/>
- <curve x1="287.19" x2="285.65" x3="284.93" y1="198.34" y2="197.66" y3="197.66"/>
- <line x="279.63" y="197.78"/>
- <line x="280.96" y="193.69"/>
- <line x="315.11" y="188.31"/>
- <line x="320.76" y="188.39"/>
- <line x="298.59" y="264.86"/>
- <curve x1="297.97" x2="298.71" x3="299.83" y1="267.57" y2="268.55" y3="269.53"/>
- <curve x1="302.21" x2="304.24" x3="306.36" y1="271.28" y2="269.19" y3="267.32"/>
- <curve x1="309.37" x2="312.33" x3="315.57" y1="264.55" y2="259.84" y3="255.39"/>
- <close/>
- <move x="299.96" y="300.24"/>
- <curve x1="346.98" x2="387.51" x3="387.51" y1="300.24" y2="265.15" y3="213.31"/>
- <curve x1="387.51" x2="349.21" x3="299.74" y1="160.89" y2="125" y3="125"/>
- <curve x1="257.48" x2="212.4" x3="212.4" y1="125" y2="156.39" y3="213.04"/>
- <curve x1="212.4" x2="251.24" x3="299.96" y1="262.89" y2="300.24" y3="300.24"/>
- <close/>
- <move x="299.6" y="319.36"/>
- <curve x1="237.28" x2="192.92" x3="192.92" y1="319.36" y2="265.7" y3="213.4"/>
- <curve x1="192.92" x2="245.63" x3="299.38" y1="151.5" y2="105.61" y3="105.61"/>
- <curve x1="361.19" x2="406.99" x3="406.99" y1="105.61" y2="156.98" y3="213.22"/>
- <curve x1="406.99" x2="359.31" x3="299.6" y1="269.6" y2="319.36" y3="319.36"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="jobs" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="348.48" y="263.87"/>
- <curve x1="357.96" x2="364.63" x3="364.63" y1="263.87" y2="255.66" y3="248.17"/>
- <line x="364.63" y="193.14"/>
- <curve x1="364.63" x2="357.8" x3="348.48" y1="182.48" y2="175.55" y3="175.55"/>
- <close/>
- <move x="284.54" y="175.55"/>
- <line x="284.54" y="159.57"/>
- <line x="316.36" y="159.57"/>
- <line x="316.36" y="175.55"/>
- <close/>
- <move x="260.37" y="263.87"/>
- <line x="340.53" y="263.87"/>
- <line x="340.53" y="175.55"/>
- <line x="324.6" y="175.55"/>
- <line x="324.6" y="159.63"/>
- <curve x1="324.6" x2="320.7" x3="317.05" y1="154.82" y2="151.51" y3="151.51"/>
- <line x="284.08" y="151.51"/>
- <curve x1="280.25" x2="276.43" x3="276.43" y1="151.51" y2="155.15" y3="159.24"/>
- <line x="276.43" y="175.55"/>
- <line x="260.37" y="175.55"/>
- <close/>
- <move x="252.48" y="175.55"/>
- <curve x1="242.95" x2="236.32" x3="236.32" y1="175.55" y2="183.54" y3="190.8"/>
- <line x="236.32" y="247.98"/>
- <curve x1="236.32" x2="245.04" x3="252.48" y1="257.42" y2="263.87" y3="263.87"/>
- <close/>
- <move x="300.3" y="325.04"/>
- <curve x1="236.02" x2="188.39" x3="188.39" y1="325.04" y2="271.27" y3="215.13"/>
- <curve x1="188.39" x2="238.92" x3="299.13" y1="149.98" y2="101.16" y3="101.16"/>
- <curve x1="365.03" x2="412.59" x3="412.59" y1="101.16" y2="153.29" y3="211.96"/>
- <curve x1="412.59" x2="359.03" x3="300.3" y1="277.21" y2="325.04" y3="325.04"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="log" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="365.74" y="210.31"/>
- <line x="312.98" y="263.08"/>
- <line x="311.52" y="261.67"/>
- <line x="299.71" y="273.43"/>
- <curve x1="298.14" x2="296.06" x3="293.93" y1="274.97" y2="275.67" y3="275.28"/>
- <line x="285.73" y="279.2"/>
- <curve x1="284.86" x2="284.24" x3="284.6" y1="279.57" y2="279.45" y3="278.24"/>
- <line x="288.57" y="269.88"/>
- <curve x1="288.23" x2="288.98" x3="290.45" y1="267.88" y2="265.6" y3="264.09"/>
- <line x="302.2" y="252.33"/>
- <line x="300.77" y="250.91"/>
- <line x="353.54" y="198.12"/>
- <close/>
- <move x="351.04" y="181.62"/>
- <line x="390.15" y="142.8"/>
- <curve x1="391.35" x2="393.47" x3="394.85" y1="141.49" y2="141.26" y3="142.52"/>
- <line x="400.55" y="148.23"/>
- <line x="403.8" y="144.97"/>
- <curve x1="407.77" x2="413.57" x3="418.14" y1="141.54" y2="141.67" y3="145.7"/>
- <curve x1="422.55" x2="421.82" x3="419" y1="150.79" y2="156.73" y3="159.91"/>
- <line x="371.49" y="207.45"/>
- <line x="356.44" y="192.38"/>
- <line x="396.63" y="152.53"/>
- <line x="392.66" y="148.6"/>
- <line x="363.93" y="177.31"/>
- <curve x1="363.95" x2="362.56" x3="361.08" y1="179.61" y2="181.72" y3="182.96"/>
- <curve x1="358.61" x2="356.76" x3="354.59" y1="184.8" y2="185.35" y3="185.21"/>
- <close/>
- <move x="225.39" y="207.08"/>
- <line x="225.39" y="196.33"/>
- <line x="322.28" y="196.33"/>
- <line x="322.28" y="207.08"/>
- <close/>
- <move x="225.39" y="235.79"/>
- <line x="225.39" y="225.04"/>
- <line x="311.51" y="225.04"/>
- <line x="300.92" y="235.79"/>
- <close/>
- <move x="272.04" y="282.47"/>
- <line x="225.39" y="282.47"/>
- <line x="225.39" y="271.7"/>
- <line x="272.04" y="271.7"/>
- <close/>
- <move x="368.96" y="222.59"/>
- <line x="368.96" y="325.56"/>
- <line x="178.72" y="325.56"/>
- <line x="178.72" y="99.44"/>
- <line x="311.51" y="99.44"/>
- <line x="364.81" y="152.71"/>
- <line x="349.91" y="167.6"/>
- <line x="304.35" y="167.6"/>
- <line x="304.35" y="110.19"/>
- <line x="189.48" y="110.19"/>
- <line x="189.48" y="314.8"/>
- <line x="358.18" y="314.8"/>
- <line x="358.18" y="233.39"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="login" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="164.68" y="262.83"/>
- <curve x1="165.85" x2="167.85" x3="170.23" y1="246.35" y2="229.03" y3="216.48"/>
- <curve x1="172.47" x2="175.21" x3="181.17" y1="206.31" y2="198.84" y3="194.05"/>
- <curve x1="183.39" x2="185.72" x3="188.06" y1="192.14" y2="190.83" y3="189.58"/>
- <curve x1="192.45" x2="197.22" x3="200.71" y1="187.09" y2="184.21" y3="182.67"/>
- <curve x1="203.89" x2="207.37" x3="209.35" y1="181.09" y2="181.22" y3="183.12"/>
- <curve x1="227.21" x2="252.79" x3="273.83" y1="198.36" y2="200.44" y3="182.69"/>
- <curve x1="277.2" x2="280.6" x3="283.35" y1="180.54" y2="181.97" y3="183.4"/>
- <curve x1="288.27" x2="292.72" x3="297.73" y1="185.94" y2="188.96" y3="191.92"/>
- <curve x1="306.53" x2="309.28" x3="311.07" y1="197.33" y2="204.79" y3="212.39"/>
- <curve x1="313.04" x2="314.7" x3="315.93" y1="220.04" y2="232.53" y3="241.85"/>
- <curve x1="312.33" x2="308.94" x3="308.81" y1="244.23" y2="249.02" y3="255.04"/>
- <line x="308.83" y="262.83"/>
- <close/>
- <move x="241.15" y="178.77"/>
- <curve x1="219.38" x2="203.88" x3="203.88" y1="178.77" y2="158" y3="137.42"/>
- <curve x1="203.88" x2="223.76" x3="240.92" y1="111.03" y2="95.39" y3="95.39"/>
- <curve x1="261.75" x2="278.78" x3="278.78" y1="95.39" y2="113.27" y3="138.28"/>
- <curve x1="278.78" x2="264.07" x3="241.15" y1="156.97" y2="178.77" y3="178.77"/>
- <close/>
- <move x="324.8" y="315.49"/>
- <curve x1="322.01" x2="319.07" x3="319.07" y1="315.49" y2="312.67" y3="309.5"/>
- <line x="319.07" y="254.7"/>
- <curve x1="319.07" x2="321.55" x3="325.06" y1="252.4" y2="249.06" y3="249.06"/>
- <line x="328.26" y="249.08"/>
- <line x="328.27" y="230.11"/>
- <curve x1="328.27" x2="342.27" x3="361.34" y1="213.91" y2="197.82" y3="197.82"/>
- <curve x1="382.54" x2="394.66" x3="394.66" y1="197.82" y2="215.59" y3="230.26"/>
- <line x="394.69" y="243.83"/>
- <curve x1="388.73" x2="384.25" x3="384.44" y1="249.13" y2="257.17" y3="267.85"/>
- <curve x1="384.96" x2="391.07" x3="397.48" y1="279.52" y2="287.44" y3="291.78"/>
- <line x="397.48" y="315.49"/>
- <close/>
- <move x="383" y="249.06"/>
- <line x="383" y="231.24"/>
- <curve x1="383" x2="374.06" x3="361.48" y1="219.76" y2="209.82" y3="209.82"/>
- <curve x1="350.56" x2="340.59" x3="340.59" y1="209.82" y2="219.27" y3="230.58"/>
- <line x="340.59" y="249.06"/>
- <close/>
- <move x="415.87" y="329.61"/>
- <line x="408.08" y="321.14"/>
- <line x="408.08" y="285.8"/>
- <curve x1="400.3" x2="395.03" x3="395.03" y1="283.07" y2="275.36" y3="267.47"/>
- <curve x1="395.03" x2="405.14" x3="415.06" y1="254.81" y2="246.93" y3="246.93"/>
- <curve x1="426.04" x2="435.32" x3="435.32" y1="246.93" y2="255.79" y3="267"/>
- <curve x1="435.32" x2="429.47" x3="422.58" y1="276.11" y2="283.25" y3="285.79"/>
- <line x="422.58" y="293.96"/>
- <line x="417.65" y="299.96"/>
- <line x="424.86" y="307.55"/>
- <line x="418.34" y="314.47"/>
- <line x="424.32" y="320.75"/>
- <close/>
- <move x="415.02" y="265.7"/>
- <curve x1="418.37" x2="420.47" x3="420.47" y1="265.7" y2="262.83" y3="260.35"/>
- <curve x1="420.47" x2="418.12" x3="415.04" y1="257.74" y2="255.08" y3="255.08"/>
- <curve x1="412" x2="409.86" x3="409.86" y1="255.08" y2="257.58" y3="260.38"/>
- <curve x1="409.86" x2="412.99" x3="415.02" y1="263.66" y2="265.7" y3="265.7"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="mail" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="440.82" y="319.66"/>
- <line x="159.15" y="319.66"/>
- <line x="159.15" y="105.34"/>
- <line x="440.85" y="105.34"/>
- <line x="440.85" y="319.66"/>
- <line x="440.82" y="319.66"/>
- <close/>
- <move x="192.49" y="299.82"/>
- <line x="407.51" y="299.82"/>
- <line x="336.76" y="226.76"/>
- <line x="323.37" y="240.38"/>
- <curve x1="317.58" x2="309.28" x3="300.55" y1="246.23" y2="249.58" y3="249.58"/>
- <curve x1="300.5" x2="300.47" x3="300.41" y1="249.58" y2="249.58" y3="249.58"/>
- <curve x1="291.66" x2="283.33" x3="277.57" y1="249.55" y2="246.12" y3="240.21"/>
- <line x="263.95" y="226.28"/>
- <line x="192.49" y="299.82"/>
- <line x="192.49" y="299.82"/>
- <close/>
- <move x="178.79" y="139.36"/>
- <line x="178.79" y="285.59"/>
- <line x="250.09" y="212.16"/>
- <line x="178.79" y="139.36"/>
- <line x="178.79" y="139.36"/>
- <close/>
- <move x="350.6" y="212.7"/>
- <line x="421.18" y="285.59"/>
- <line x="421.18" y="141"/>
- <line x="350.6" y="212.7"/>
- <line x="350.6" y="212.7"/>
- <close/>
- <move x="192.52" y="125.18"/>
- <line x="291.52" y="226.25"/>
- <curve x1="293.65" x2="296.92" x3="300.47" y1="228.44" y2="229.72" y3="229.72"/>
- <curve x1="300.5" x2="300.5" x3="300.53" y1="229.72" y2="229.72" y3="229.72"/>
- <curve x1="304.02" x2="307.35" x3="309.42" y1="229.72" y2="228.47" y3="226.37"/>
- <line x="409.05" y="125.18"/>
- <line x="192.52" y="125.18"/>
- <line x="192.52" y="125.18"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="map" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="348.67" y="241.38"/>
- <line x="351.79" y="226.73"/>
- <curve x1="357.45" x2="362.76" x3="367.93" y1="227.74" y2="229.79" y3="232.28"/>
- <line x="361.45" y="245.74"/>
- <curve x1="356.78" x2="352.68" x3="348.67" y1="243.17" y2="242.14" y3="241.38"/>
- <close/>
- <move x="321.56" y="243.25"/>
- <line x="317.26" y="229.35"/>
- <curve x1="321.67" x2="326.85" x3="333.9" y1="227.72" y2="226.38" y3="225.74"/>
- <line x="335.15" y="240.88"/>
- <curve x1="331.34" x2="326.86" x3="321.56" y1="241.11" y2="241.86" y3="243.25"/>
- <close/>
- <move x="294.95" y="256.71"/>
- <line x="287.54" y="243.68"/>
- <curve x1="291.49" x2="296.15" x3="301.43" y1="240.92" y2="238.16" y3="235.4"/>
- <line x="308.1" y="248.79"/>
- <curve x1="303.89" x2="299.5" x3="294.95" y1="251.09" y2="253.74" y3="256.71"/>
- <close/>
- <move x="263.54" y="268.86"/>
- <line x="260.74" y="254.09"/>
- <curve x1="264.67" x2="269.28" x3="274.2" y1="253.17" y2="251.67" y3="249.92"/>
- <line x="279.87" y="263.88"/>
- <curve x1="274.68" x2="269.23" x3="263.54" y1="266.05" y2="267.69" y3="268.86"/>
- <close/>
- <move x="229.02" y="268.05"/>
- <line x="233.26" y="253.53"/>
- <curve x1="237.2" x2="241.83" x3="246.59" y1="254.8" y2="255.24" y3="255.52"/>
- <line x="246.53" y="270.54"/>
- <curve x1="240.33" x2="234.56" x3="229.02" y1="270.72" y2="269.7" y3="268.05"/>
- <close/>
- <move x="310.31" y="168.47"/>
- <curve x1="324" x2="333.28" x3="333.28" y1="168.47" y2="157.23" y3="145.38"/>
- <curve x1="333.28" x2="322.81" x3="310.31" y1="132.84" y2="122.66" y3="122.66"/>
- <curve x1="295.9" x2="287.29" x3="287.29" y1="122.66" y2="135.21" y3="145.38"/>
- <curve x1="287.29" x2="297.6" x3="310.31" y1="157.93" y2="168.47" y3="168.47"/>
- <close/>
- <move x="310.16" y="235.16"/>
- <line x="274.39" y="158.18"/>
- <curve x1="271.35" x2="269.79" x3="281.43" y1="151.5" y2="135.15" y3="120.85"/>
- <curve x1="290.67" x2="301.38" x3="311.47" y1="110.87" y2="107.27" y3="107.64"/>
- <curve x1="323.71" x2="338.14" x3="344.31" y1="107.64" y2="116.16" y3="128.46"/>
- <curve x1="350.04" x2="349.22" x3="345.87" y1="140.51" y2="151.92" y3="158.99"/>
- <close/>
- <move x="186.28" y="320.82"/>
- <curve x1="180.02" x2="175.96" x3="178.16" y1="320.58" y2="318.38" y3="311.17"/>
- <line x="218.1" y="191.19"/>
- <curve x1="220.12" x2="224.08" x3="229.45" y1="184.89" y2="183.98" y3="183.98"/>
- <line x="269.91" y="183.74"/>
- <line x="277.47" y="198.76"/>
- <curve x1="275.47" x2="238.69" x3="238.69" y1="198.76" y2="198.82" y3="198.82"/>
- <curve x1="232.34" x2="230.18" x3="228.66" y1="198.82" y2="201.57" y3="206.8"/>
- <line x="216.12" y="244.68"/>
- <curve x1="217.24" x2="218.84" x3="220.79" y1="245.78" y2="246.88" y3="247.98"/>
- <line x="212.76" y="260.76"/>
- <line x="211.2" y="259.64"/>
- <line x="198.33" y="298.16"/>
- <curve x1="196.75" x2="198.98" x3="204.19" y1="302.65" y2="305.24" y3="305.24"/>
- <line x="389.54" y="305.36"/>
- <curve x1="393.52" x2="396.26" x3="395.09" y1="305.36" y2="303.29" y3="299.32"/>
- <line x="383.26" y="262.81"/>
- <line x="381.15" y="263.54"/>
- <curve x1="379.39" x2="376.79" x3="373.03" y1="260.77" y2="257.87" y3="254.16"/>
- <line x="378.41" y="248.14"/>
- <line x="363.88" y="204.8"/>
- <curve x1="362.72" x2="359.6" x3="355.15" y1="200.81" y2="198.75" y3="198.75"/>
- <line x="343.13" y="198.75"/>
- <line x="350.73" y="183.73"/>
- <line x="364" y="183.86"/>
- <curve x1="370.19" x2="373.67" x3="374.78" y1="183.86" y2="186.92" y3="190.65"/>
- <line x="414.38" y="309.29"/>
- <curve x1="416.97" x2="412.36" x3="403.67" y1="317.3" y2="320.55" y3="320.55"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="news" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="292.25" y="252.43"/>
- <line x="347.61" y="252.43"/>
- <line x="347.61" y="268.17"/>
- <line x="292.25" y="268.17"/>
- <close/>
- <move x="292.25" y="220.62"/>
- <line x="363.54" y="220.62"/>
- <line x="363.54" y="236.28"/>
- <line x="292.25" y="236.28"/>
- <close/>
- <move x="292.25" y="188.81"/>
- <line x="363.54" y="188.81"/>
- <line x="363.54" y="204.36"/>
- <line x="292.25" y="204.36"/>
- <close/>
- <move x="204.5" y="172.6"/>
- <line x="204.5" y="156.8"/>
- <line x="363.54" y="156.8"/>
- <line x="363.54" y="172.6"/>
- <close/>
- <move x="204.5" y="268.17"/>
- <line x="204.5" y="188.81"/>
- <line x="275.88" y="188.81"/>
- <line x="275.88" y="268.17"/>
- <close/>
- <move x="385.25" y="300.11"/>
- <curve x1="381.87" x2="379.82" x3="379.82" y1="296.43" y2="291.57" y3="284.13"/>
- <line x="379.82" y="124.96"/>
- <line x="188.42" y="124.96"/>
- <line x="188.42" y="281.76"/>
- <curve x1="188.42" x2="193.85" x3="206.02" y1="293.52" y2="300.11" y3="300.11"/>
- <close/>
- <move x="203.78" y="315.86"/>
- <curve x1="184.33" x2="172.7" x3="172.7" y1="315.86" y2="301.49" y3="283.88"/>
- <line x="172.7" y="109.02"/>
- <line x="395.49" y="109.02"/>
- <line x="395.49" y="140.93"/>
- <line x="427.24" y="140.93"/>
- <line x="427.24" y="284.18"/>
- <curve x1="427.24" x2="419.77" x3="400.86" y1="300.89" y2="315.86" y3="315.86"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="page" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="payment" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="300.06" y="170.93"/>
- <line x="300.06" y="153.93"/>
- <line x="273.4" y="153.93"/>
- <line x="327.39" y="100.04"/>
- <line x="381.09" y="153.93"/>
- <line x="354.52" y="153.93"/>
- <line x="354.52" y="170.93"/>
- <close/>
- <move x="400.78" y="207.92"/>
- <line x="400.78" y="201.48"/>
- <curve x1="400.78" x2="398.71" x3="393.7" y1="197.42" y2="193.21" y3="193.21"/>
- <line x="264.57" y="193.21"/>
- <curve x1="260.3" x2="257.1" x3="257.1" y1="193.21" y2="197.29" y3="200.92"/>
- <line x="257.1" y="207.92"/>
- <close/>
- <move x="257.1" y="235.17"/>
- <line x="257.1" y="272.56"/>
- <curve x1="257.1" x2="260.34" x3="264.94" y1="278.21" y2="281.57" y3="281.57"/>
- <line x="391.41" y="281.57"/>
- <curve x1="397.67" x2="400.8" x3="400.78" y1="281.57" y2="278.89" y3="272.84"/>
- <line x="400.78" y="235.17"/>
- <close/>
- <move x="264.15" y="292.05"/>
- <curve x1="257.95" x2="247.01" x3="247.01" y1="292.05" y2="285.06" y3="275.27"/>
- <line x="247.01" y="199.33"/>
- <curve x1="247.01" x2="254.61" x3="265.55" y1="191.36" y2="182.73" y3="182.73"/>
- <line x="392.45" y="182.73"/>
- <curve x1="401.82" x2="410.75" x3="410.75" y1="182.73" y2="189.44" y3="198.82"/>
- <line x="410.75" y="274.97"/>
- <curve x1="410.75" x2="401.34" x3="391.07" y1="285.41" y2="292.05" y3="292.05"/>
- <close/>
- <move x="345.23" y="303.48"/>
- <line x="337.47" y="317.49"/>
- <curve x1="333.29" x2="321.88" x3="311.23" y1="323.97" y2="328.54" y3="321.6"/>
- <line x="279.84" y="303.48"/>
- <close/>
- <move x="235.57" y="278.07"/>
- <line x="202.5" y="259.01"/>
- <curve x1="193.02" x2="190.57" x3="196.34" y1="253.51" y2="242.97" y3="232.86"/>
- <line x="231.83" y="171.31"/>
- <curve x1="237.37" x2="249.06" x3="255.56" y1="162.02" y2="159.43" y3="163.09"/>
- <line x="268.73" y="171.26"/>
- <line x="261.81" y="171.26"/>
- <curve x1="249.09" x2="235.57" x3="235.57" y1="171.26" y2="183.64" y3="198.77"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="photo" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="372.53" y="188.28"/>
- <curve x1="360.17" x2="348.38" x3="348.38" y1="188.28" y2="177.89" y3="163.51"/>
- <curve x1="348.38" x2="358.91" x3="372.71" y1="151.57" y2="139.98" y3="139.98"/>
- <curve x1="383.06" x2="396.59" x3="396.59" y1="139.98" y2="148.37" y3="164.31"/>
- <curve x1="396.59" x2="384.47" x3="372.53" y1="178.15" y2="188.28" y3="188.28"/>
- <close/>
- <move x="203.3" y="284.99"/>
- <line x="251.7" y="156.02"/>
- <line x="316.05" y="236.75"/>
- <line x="348.36" y="212.54"/>
- <line x="396.8" y="284.99"/>
- <close/>
- <move x="187.15" y="301.26"/>
- <line x="412.92" y="301.26"/>
- <line x="412.92" y="123.8"/>
- <line x="187.15" y="123.8"/>
- <close/>
- <move x="171.06" y="317.22"/>
- <line x="171.06" y="107.81"/>
- <line x="428.96" y="107.81"/>
- <line x="428.96" y="317.22"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="portfolio" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="261.8" y="137.95"/>
- <line x="261.8" y="130.02"/>
- <curve x1="261.8" x2="270.52" x3="276.35" y1="121.18" y2="115.98" y3="115.98"/>
- <line x="324" y="115.98"/>
- <curve x1="333.62" x2="338.27" x3="338.27" y1="115.98" y2="124.89" y3="129.44"/>
- <line x="338.27" y="137.95"/>
- <line x="325.95" y="137.95"/>
- <line x="325.95" y="131.04"/>
- <curve x1="325.95" x2="324.96" x3="323.27" y1="129.39" y2="128.39" y3="128.39"/>
- <line x="276.57" y="128.39"/>
- <curve x1="275.02" x2="274.11" x3="274.11" y1="128.39" y2="129.32" y3="131.11"/>
- <line x="274.11" y="137.95"/>
- <close/>
- <move x="291.13" y="243.89"/>
- <line x="291.13" y="210.63"/>
- <line x="308.97" y="210.63"/>
- <line x="308.97" y="243.89"/>
- <close/>
- <move x="191.43" y="160.24"/>
- <curve x1="191.43" x2="198" x3="206.71" y1="151.87" y2="145.43" y3="145.43"/>
- <line x="394.78" y="145.43"/>
- <curve x1="402.55" x2="408.57" x3="408.57" y1="145.43" y2="153.38" y3="159.42"/>
- <line x="408.57" y="195.51"/>
- <curve x1="408.57" x2="392" x3="376.68" y1="208.75" y2="223.47" y3="223.47"/>
- <line x="316.26" y="223.47"/>
- <line x="316.26" y="212.51"/>
- <curve x1="316.26" x2="311.41" x3="308.19" y1="206.11" y2="203.25" y3="203.25"/>
- <line x="292.88" y="203.25"/>
- <curve x1="288.24" x2="283.71" x3="283.71" y1="203.25" y2="206.73" y3="211.24"/>
- <line x="283.71" y="223.47"/>
- <line x="220.36" y="223.47"/>
- <curve x1="210.47" x2="191.43" x3="191.43" y1="223.47" y2="210.73" y3="194.7"/>
- <close/>
- <move x="206.53" y="308.98"/>
- <curve x1="197.97" x2="191.43" x3="191.43" y1="308.98" y2="303.18" y3="292.82"/>
- <line x="191.43" y="214.42"/>
- <curve x1="197.72" x2="211.06" x3="223.08" y1="223.47" y2="230.93" y3="230.93"/>
- <line x="283.71" y="230.93"/>
- <line x="283.71" y="242.72"/>
- <curve x1="283.71" x2="287.92" x3="292.59" y1="247.24" y2="251.24" y3="251.24"/>
- <line x="308.16" y="251.24"/>
- <curve x1="312.6" x2="316.26" x3="316.26" y1="251.24" y2="246.87" y3="243"/>
- <line x="316.26" y="230.93"/>
- <line x="376.09" y="230.93"/>
- <curve x1="385.66" x2="401.05" x3="408.57" y1="230.93" y2="225.68" y3="214.08"/>
- <line x="408.57" y="294.19"/>
- <curve x1="408.57" x2="399.24" x3="394.41" y1="304.84" y2="308.98" y3="308.98"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="post" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="281.09" y="304.6"/>
- <line x="189.21" y="304.6"/>
- <line x="189.21" y="101.71"/>
- <line x="392.1" y="101.71"/>
- <line x="392.1" y="198.04"/>
- <line x="372.52" y="198.04"/>
- <line x="372.52" y="120.4"/>
- <line x="207.68" y="120.4"/>
- <line x="207.9" y="285.91"/>
- <line x="281.31" y="285.91"/>
- <close/>
- <move x="226.14" y="267.89"/>
- <line x="226.14" y="212.5"/>
- <line x="281.31" y="212.5"/>
- <line x="281.31" y="267.89"/>
- <close/>
- <move x="281.09" y="193.81"/>
- <line x="226.14" y="193.81"/>
- <line x="226.14" y="138.64"/>
- <line x="281.09" y="138.64"/>
- <close/>
- <move x="300" y="138.64"/>
- <line x="355.39" y="138.64"/>
- <line x="355.39" y="193.81"/>
- <line x="300" y="193.81"/>
- <close/>
- <move x="410.79" y="212.5"/>
- <line x="410.79" y="323.29"/>
- <line x="300" y="323.29"/>
- <line x="300" y="212.5"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="pricing" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="374.47" y="183.43"/>
- <curve x1="386.54" x2="396.68" x3="396.68" y1="183.43" y2="172.66" y3="160.78"/>
- <curve x1="396.68" x2="386" x3="374.47" y1="148.96" y2="138.4" y3="138.4"/>
- <curve x1="360.04" x2="351.47" x3="351.47" y1="138.4" y2="149.69" y3="160.08"/>
- <curve x1="351.47" x2="362.48" x3="374.47" y1="174.19" y2="183.43" y3="183.43"/>
- <close/>
- <move x="224.11" y="243.32"/>
- <curve x1="215.97" x2="216.84" x3="226.45" y1="234.66" y2="220.33" y3="211.07"/>
- <line x="312.15" y="125.62"/>
- <curve x1="322.74" x2="338.53" x3="352.77" y1="114.83" y2="108.6" y3="108.6"/>
- <line x="401.31" y="108.6"/>
- <curve x1="415.89" x2="426.56" x3="426.56" y1="108.6" y2="118.23" y3="131.26"/>
- <line x="426.56" y="182.02"/>
- <curve x1="426.56" x2="420.94" x3="411.75" y1="193.67" y2="209.99" y3="220.27"/>
- <line x="324.68" y="307.52"/>
- <curve x1="313.75" x2="301.26" x3="290.83" y1="319.16" y2="319.22" y3="309.99"/>
- <close/>
- <move x="271.82" y="313.66"/>
- <curve x1="261.8" x2="250.71" x3="245.67" y1="319.18" y2="315.63" y3="309.88"/>
- <line x="179.88" y="244.07"/>
- <curve x1="169" x2="174.52" x3="179.96" y1="233.2" y2="217.81" y3="212.69"/>
- <line x="268.46" y="124.35"/>
- <curve x1="279.12" x2="297.5" x3="306.39" y1="113.55" y2="109.18" y3="108.53"/>
- <line x="193.8" y="221.06"/>
- <curve x1="188.52" x2="188.48" x3="192.66" y1="225.92" y2="230.84" y3="234.77"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="print" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="270.7" y="279.7"/>
- <line x="270.68" y="272.81"/>
- <line x="332.74" y="272.81"/>
- <line x="332.74" y="279.7"/>
- <close/>
- <move x="170.72" y="279.73"/>
- <line x="170.72" y="215.46"/>
- <curve x1="170.72" x2="184.38" x3="199.53" y1="199.59" y2="186.65" y3="186.65"/>
- <line x="239.67" y="186.65"/>
- <line x="239.67" y="117.65"/>
- <curve x1="239.67" x2="247.03" x3="253.03" y1="109.13" y2="103.91" y3="103.91"/>
- <line x="350.28" y="103.91"/>
- <curve x1="357.96" x2="363.78" x3="363.78" y1="103.91" y2="110.59" y3="117.65"/>
- <line x="363.78" y="186.65"/>
- <line x="401.29" y="186.65"/>
- <curve x1="416.17" x2="429.28" x3="429.28" y1="186.65" y2="200.01" y3="214.99"/>
- <line x="429.28" y="279.73"/>
- <line x="363.78" y="279.73"/>
- <line x="363.78" y="307.46"/>
- <curve x1="363.78" x2="357.24" x3="350.63" y1="314.9" y2="321.09" y3="321.09"/>
- <line x="253.19" y="321.09"/>
- <curve x1="246.68" x2="239.67" x3="239.67" y1="321.09" y2="315.49" y3="307.66"/>
- <line x="239.67" y="279.73"/>
- <close/>
- <move x="196.64" y="221.13"/>
- <curve x1="201.95" x2="205.21" x3="205.21" y1="221.13" y2="216.68" y3="212.59"/>
- <curve x1="205.21" x2="201.14" x3="196.45" y1="207.29" y2="203.89" y3="203.89"/>
- <curve x1="193.03" x2="187.94" x3="187.96" y1="203.89" y2="206.39" y3="212.83"/>
- <curve x1="187.96" x2="191.46" x3="196.64" y1="216.94" y2="221.13" y3="221.13"/>
- <close/>
- <move x="250.01" y="310.77"/>
- <line x="353.43" y="310.77"/>
- <line x="353.43" y="262.5"/>
- <line x="250.01" y="262.5"/>
- <close/>
- <move x="270.7" y="296.94"/>
- <line x="270.68" y="290.05"/>
- <line x="332.74" y="290.05"/>
- <line x="332.74" y="296.94"/>
- <close/>
- <move x="250.01" y="186.65"/>
- <line x="353.43" y="186.65"/>
- <line x="353.43" y="114.25"/>
- <line x="250.01" y="114.25"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="products" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="311.39" y="233.76"/>
- <curve x1="311.39" x2="314.59" x3="323.04" y1="224.32" y2="219.78" y3="215.82"/>
- <line x="393.49" y="179.35"/>
- <curve x1="396.06" x2="400.37" x3="400.37" y1="178.06" y2="178.42" y3="181.02"/>
- <line x="400.37" y="267.77"/>
- <curve x1="400.37" x2="395.79" x3="392.71" y1="271.91" y2="276.64" y3="278.17"/>
- <line x="319.66" y="320.15"/>
- <curve x1="314.35" x2="311.39" x3="311.39" y1="323.74" y2="320.43" y3="315.69"/>
- <close/>
- <move x="209.66" y="158.08"/>
- <curve x1="204.85" x2="206.37" x3="209.93" y1="155.55" y2="151.7" y3="149.87"/>
- <line x="292.42" y="106.84"/>
- <curve x1="297.49" x2="304.53" x3="308.9" y1="103.85" y2="104.29" y3="106.54"/>
- <line x="391.92" y="149.94"/>
- <curve x1="395.6" x2="396.58" x3="392.27" y1="151.9" y2="155.43" y3="157.78"/>
- <line x="309.56" y="200.93"/>
- <curve x1="305.12" x2="296.98" x3="291.72" y1="203.93" y2="204.16" y3="200.79"/>
- <close/>
- <move x="209.49" y="278.53"/>
- <curve x1="204.38" x2="200.46" x3="200.46" y1="275.87" y2="270.34" y3="263.06"/>
- <line x="200.46" y="184.8"/>
- <curve x1="200.46" x2="203.5" x3="208.63" y1="179.4" y2="177.05" y3="179.68"/>
- <line x="280.74" y="216.92"/>
- <curve x1="287.71" x2="290.24" x3="290.24" y1="220.01" y2="226.46" y3="230.89"/>
- <line x="290.24" y="316.94"/>
- <curve x1="290.24" x2="286.06" x3="282.33" y1="321.04" y2="322.83" y3="320.32"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="profile" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="203.47" y="323.67"/>
- <arc large-arc-flag="0" rx="725.77" ry="725.77" sweep-flag="1" x="209.28" x-axis-rotation="0" y="275.28"/>
- <arc large-arc-flag="0" rx="120.96" ry="120.96" sweep-flag="1" x="217.26" x-axis-rotation="0" y="241.42"/>
- <arc large-arc-flag="0" rx="31.45" ry="31.45" sweep-flag="1" x="227.66" x-axis-rotation="0" y="229.08"/>
- <arc large-arc-flag="0" rx="96.77" ry="96.77" sweep-flag="1" x="251.86" x-axis-rotation="0" y="218.43"/>
- <arc large-arc-flag="0" rx="9.68" ry="9.68" sweep-flag="1" x="262.02" x-axis-rotation="0" y="221.34"/>
- <arc large-arc-flag="0" rx="48.38" ry="48.38" sweep-flag="0" x="300.73" x-axis-rotation="0" y="236.34"/>
- <arc large-arc-flag="0" rx="48.38" ry="48.38" sweep-flag="0" x="338.22" x-axis-rotation="0" y="221.34"/>
- <arc large-arc-flag="0" rx="12.1" ry="12.1" sweep-flag="1" x="350.08" x-axis-rotation="0" y="218.43"/>
- <arc large-arc-flag="0" rx="120.96" ry="120.96" sweep-flag="1" x="373.06" x-axis-rotation="0" y="229.56"/>
- <arc large-arc-flag="0" rx="36.29" ry="36.29" sweep-flag="1" x="386.12" x-axis-rotation="0" y="249.88"/>
- <arc large-arc-flag="0" rx="241.92" ry="241.92" sweep-flag="1" x="392.17" x-axis-rotation="0" y="284.96"/>
- <line x="396.53" y="323.67"/>
- <close/>
- <move x="301.21" y="209.24"/>
- <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="252.34" x-axis-rotation="0" y="156.74"/>
- <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="301.21" x-axis-rotation="0" y="101.34"/>
- <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="347.66" x-axis-rotation="0" y="156.74"/>
- <arc large-arc-flag="0" rx="47.9" ry="53.71" sweep-flag="1" x="301.21" x-axis-rotation="0" y="209.24"/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="references" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="405.21" y="232.66"/>
- <line x="438.94" y="232.66"/>
- <line x="438.94" y="215.65"/>
- <line x="405.21" y="215.65"/>
- <close/>
- <move x="405.21" y="283.33"/>
- <line x="438.94" y="283.33"/>
- <line x="438.94" y="266.39"/>
- <line x="405.21" y="266.39"/>
- <close/>
- <move x="354.42" y="232.66"/>
- <line x="354.42" y="215.65"/>
- <line x="320.42" y="215.65"/>
- <line x="320.42" y="232.66"/>
- <close/>
- <move x="320.42" y="283.33"/>
- <line x="354.42" y="283.33"/>
- <line x="354.42" y="266.39"/>
- <line x="320.42" y="266.39"/>
- <close/>
- <move x="230.2" y="235.67"/>
- <line x="238.72" y="221.07"/>
- <line x="209.67" y="203.82"/>
- <line x="200.96" y="218.41"/>
- <close/>
- <move x="204.55" y="279.49"/>
- <line x="213.03" y="264.84"/>
- <line x="184.1" y="247.74"/>
- <line x="175.39" y="262.42"/>
- <close/>
- <move x="388.32" y="317.28"/>
- <line x="388.32" y="114.06"/>
- <line x="456.14" y="114.06"/>
- <line x="456.14" y="317.28"/>
- <close/>
- <move x="201.93" y="317.24"/>
- <line x="143.65" y="282.87"/>
- <line x="246.46" y="107.73"/>
- <line x="303.66" y="141.35"/>
- <line x="303.66" y="114.06"/>
- <line x="371.16" y="114.06"/>
- <line x="371.16" y="317.28"/>
- <line x="303.66" y="317.28"/>
- <line x="303.66" y="143.68"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="script" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="357.26" y="182.33"/>
- <line x="357.26" y="155.65"/>
- <line x="430.73" y="204.91"/>
- <line x="430.73" y="223.38"/>
- <line x="357.26" y="270.99"/>
- <line x="357.26" y="245.54"/>
- <line x="411.03" y="214.76"/>
- <close/>
- <move x="260.39" y="307.11"/>
- <line x="315.8" y="117.89"/>
- <line x="337.97" y="117.89"/>
- <line x="282.56" y="307.11"/>
- <close/>
- <move x="243.15" y="273.04"/>
- <line x="169.27" y="225.02"/>
- <line x="169.27" y="206.96"/>
- <line x="243.15" y="156.88"/>
- <line x="243.15" y="182.74"/>
- <line x="189.38" y="215.58"/>
- <line x="243.15" y="246.36"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="search" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="332.27" y="240.53"/>
- <curve x1="357.62" x2="391.14" x3="391.14" y1="240.53" y2="218.64" y3="181.54"/>
- <curve x1="391.14" x2="359.87" x3="332.27" y1="143.58" y2="120.69" y3="120.69"/>
- <curve x1="295.67" x2="271.29" x3="271.29" y1="120.69" y2="148.7" y3="181.54"/>
- <curve x1="271.29" x2="302.21" x3="332.27" y1="216.85" y2="240.53" y3="240.53"/>
- <close/>
- <move x="224.73" y="311.49"/>
- <curve x1="216.45" x2="205.57" x3="199.65" y1="318.99" y2="318.47" y3="312.13"/>
- <curve x1="193.84" x2="194.22" x3="200.64" y1="305.22" y2="295.52" y3="288.1"/>
- <line x="251" y="237.68"/>
- <curve x1="255.32" x2="261.77" x3="266.75" y1="234.01" y2="231.56" y3="232.67"/>
- <line x="273.91" y="225.48"/>
- <curve x1="265.72" x2="259" x3="258.52" y1="214.22" y2="201.32" y3="181.54"/>
- <curve x1="258.52" x2="286.7" x3="332.27" y1="144.95" y2="108" y3="108"/>
- <curve x1="372.27" x2="404.45" x3="404.45" y1="108" y2="141.09" y3="181.54"/>
- <curve x1="404.45" x2="370.55" x3="332.27" y1="221.68" y2="253.52" y3="253.52"/>
- <curve x1="316.09" x2="300.78" x3="286.91" y1="253.2" y2="248.97" y3="238.23"/>
- <line x="279.74" y="245.43"/>
- <curve x1="280.21" x2="278.84" x3="275.26" y1="251.02" y2="256" y3="260.22"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="security" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="356.55" y="184"/>
- <curve x1="358.37" x2="358.91" x3="356.23" y1="182.26" y2="177.85" y3="175.05"/>
- <line x="348.11" y="166.79"/>
- <curve x1="346.14" x2="340.94" x3="339.13" y1="164.72" y2="165.12" y3="167.04"/>
- <line x="291.73" y="214.37"/>
- <line x="267.16" y="189.82"/>
- <curve x1="264.91" x2="260.58" x3="257.71" y1="187.65" y2="187.07" y3="189.83"/>
- <line x="250.16" y="197.3"/>
- <curve x1="247.58" x2="247.52" x3="250.11" y1="199.65" y2="204.77" y3="207.24"/>
- <line x="286.08" y="243.16"/>
- <curve x1="289.78" x2="294.3" x3="297.56" y1="246.98" y2="246.61" y3="243.17"/>
- <close/>
- <move x="299.56" y="320.65"/>
- <curve x1="279.81" x2="256.43" x3="239.54" y1="315.33" y2="302.74" y3="285.22"/>
- <curve x1="220.73" x2="207.78" x3="204.38" y1="267.25" y2="246.06" y3="198.82"/>
- <curve x1="203.21" x2="203.33" x3="206.14" y1="180.03" y2="159.64" y3="135.93"/>
- <curve x1="206.73" x2="208.2" x3="212.66" y1="131.92" y2="129.98" y3="128.79"/>
- <line x="300.09" y="104.38"/>
- <line x="386.55" y="128.35"/>
- <curve x1="391.67" x2="393.12" x3="394.04" y1="129.63" y2="130.7" y3="136.63"/>
- <curve x1="396.18" x2="397.13" x3="395.93" y1="152.69" y2="177.56" y3="193.45"/>
- <curve x1="393.47" x2="384.07" x3="363.45" y1="236.48" y2="260.66" y3="282.14"/>
- <curve x1="347.09" x2="325.18" x3="299.56" y1="299.52" y2="314.38" y3="320.65"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="services" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="258.27" y="267.7"/>
- <curve x1="278.8" x2="293.53" x3="293.53" y1="267.7" y2="250.27" y3="233.12"/>
- <curve x1="293.53" x2="278.29" x3="257.28" y1="213.14" y2="196.86" y3="196.86"/>
- <curve x1="241.91" x2="222.74" x3="222.74" y1="196.86" y2="209.58" y3="232.84"/>
- <curve x1="222.74" x2="235.61" x3="258.27" y1="248.23" y2="267.7" y3="267.7"/>
- <close/>
- <move x="207.46" y="313.23"/>
- <line x="212.69" y="278.34"/>
- <line x="210.68" y="276.12"/>
- <line x="176.1" y="280.93"/>
- <line x="164.97" y="253.67"/>
- <line x="193.84" y="232.36"/>
- <line x="193.87" y="229.94"/>
- <line x="165.86" y="208.71"/>
- <line x="177.17" y="181.58"/>
- <line x="212.58" y="186.91"/>
- <line x="214.33" y="185.17"/>
- <line x="209.54" y="150.32"/>
- <line x="236.78" y="139.2"/>
- <line x="257.77" y="167.57"/>
- <line x="260.72" y="167.68"/>
- <line x="281.76" y="139.95"/>
- <line x="308.81" y="151.39"/>
- <line x="303.69" y="185.77"/>
- <line x="306.22" y="188.29"/>
- <line x="340.18" y="183.64"/>
- <line x="351.17" y="210.87"/>
- <line x="323.62" y="231.37"/>
- <line x="323.57" y="235.43"/>
- <line x="350.42" y="255.88"/>
- <line x="339.11" y="283.01"/>
- <line x="305.12" y="277.96"/>
- <line x="302.19" y="280.75"/>
- <line x="306.73" y="314.27"/>
- <line x="279.5" y="325.37"/>
- <line x="258.87" y="297.46"/>
- <line x="255.28" y="297.35"/>
- <line x="234.49" y="324.64"/>
- <close/>
- <move x="386.18" y="167.21"/>
- <curve x1="396.97" x2="404.72" x3="404.72" y1="167.21" y2="158.04" y3="149.02"/>
- <curve x1="404.72" x2="396.71" x3="385.66" y1="138.52" y2="129.96" y3="129.96"/>
- <curve x1="377.57" x2="367.49" x3="367.49" y1="129.96" y2="136.64" y3="148.87"/>
- <curve x1="367.49" x2="374.26" x3="386.18" y1="156.97" y2="167.21" y3="167.21"/>
- <close/>
- <move x="359.46" y="191.15"/>
- <line x="362.21" y="172.8"/>
- <line x="361.15" y="171.64"/>
- <line x="342.96" y="174.17"/>
- <line x="337.11" y="159.83"/>
- <line x="352.3" y="148.63"/>
- <line x="352.31" y="147.35"/>
- <line x="337.58" y="136.19"/>
- <line x="343.53" y="121.92"/>
- <line x="362.15" y="124.72"/>
- <line x="363.07" y="123.81"/>
- <line x="360.55" y="105.48"/>
- <line x="374.88" y="99.63"/>
- <line x="385.91" y="114.55"/>
- <line x="387.46" y="114.61"/>
- <line x="398.53" y="100.03"/>
- <line x="412.76" y="106.04"/>
- <line x="410.06" y="124.12"/>
- <line x="411.39" y="125.45"/>
- <line x="429.25" y="123"/>
- <line x="435.03" y="137.32"/>
- <line x="420.55" y="148.1"/>
- <line x="420.52" y="150.24"/>
- <line x="434.63" y="160.99"/>
- <line x="428.69" y="175.26"/>
- <line x="410.82" y="172.61"/>
- <line x="409.27" y="174.07"/>
- <line x="411.66" y="191.7"/>
- <line x="397.34" y="197.53"/>
- <line x="386.49" y="182.86"/>
- <line x="384.6" y="182.8"/>
- <line x="373.67" y="197.15"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="settings" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="213.01" y="228.31"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="213.01" x-axis-rotation="0" y="196.61"/>
- <line x="187.36" y="185.65"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="183.87" x-axis-rotation="0" y="178.89"/>
- <line x="194.36" y="154.18"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="202.52" x-axis-rotation="0" y="152.31"/>
- <line x="227.23" y="162.1"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="249.61" x-axis-rotation="0" y="139.96"/>
- <line x="239.82" y="114.78"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="243.08" x-axis-rotation="0" y="105.92"/>
- <line x="265.93" y="96.59"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="273.39" x-axis-rotation="0" y="99.86"/>
- <line x="284.11" y="125.5"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="315.82" x-axis-rotation="0" y="125.5"/>
- <line x="326.54" y="100.56"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="334" x-axis-rotation="0" y="96.59"/>
- <line x="358.25" y="106.85"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="361.04" x-axis-rotation="0" y="113.15"/>
- <line x="350.32" y="139.49"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="372.7" x-axis-rotation="0" y="162.1"/>
- <line x="397.88" y="151.85"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="406.27" x-axis-rotation="0" y="155.58"/>
- <line x="415.13" y="176.56"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="412.8" x-axis-rotation="0" y="185.65"/>
- <line x="387.15" y="195.91"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="387.15" x-axis-rotation="0" y="228.55"/>
- <line x="412.33" y="239.04"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="416.06" x-axis-rotation="0" y="246.5"/>
- <line x="405.8" y="270.28"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="397.88" x-axis-rotation="0" y="272.84"/>
- <line x="372.93" y="262.82"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="350.32" x-axis-rotation="0" y="285.66"/>
- <line x="360.34" y="309.91"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="358.25" x-axis-rotation="0" y="318.07"/>
- <line x="332.6" y="328.56"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="326.54" x-axis-rotation="0" y="324.83"/>
- <line x="316.28" y="299.65"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="284.34" x-axis-rotation="0" y="299.65"/>
- <line x="273.39" y="324.36"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="265.69" x-axis-rotation="0" y="327.86"/>
- <line x="241.21" y="318.07"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="238.88" x-axis-rotation="0" y="311.77"/>
- <line x="249.61" y="285.66"/>
- <arc large-arc-flag="0" rx="88.59" ry="88.59" sweep-flag="1" x="226.99" x-axis-rotation="0" y="262.82"/>
- <line x="202.98" y="272.61"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="193.89" x-axis-rotation="0" y="270.28"/>
- <line x="184.8" y="246.96"/>
- <arc large-arc-flag="0" rx="6.99" ry="6.99" sweep-flag="1" x="188.06" x-axis-rotation="0" y="238.8"/>
- <close/>
- <move x="238.18" y="212.46"/>
- <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="299.96" x-axis-rotation="0" y="274.24"/>
- <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="361.74" x-axis-rotation="0" y="212.46"/>
- <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="299.96" x-axis-rotation="0" y="150.68"/>
- <arc large-arc-flag="0" rx="61.78" ry="61.78" sweep-flag="0" x="238.18" x-axis-rotation="0" y="212.46"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="shopping" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="268.59" y="212.71"/>
- <line x="360.08" y="212.71"/>
- <line x="378.52" y="156.94"/>
- <line x="253.01" y="156.94"/>
- <close/>
- <move x="259.37" y="239.91"/>
- <curve x1="251.52" x2="246.52" x3="244.04" y1="239.91" y2="235.04" y3="224.8"/>
- <line x="217.24" y="129.39"/>
- <line x="202.66" y="129.39"/>
- <curve x1="195.65" x2="189.2" x3="189.2" y1="129.39" y2="122.9" y3="115"/>
- <curve x1="189.2" x2="195.23" x3="203.03" y1="108.93" y2="101.72" y3="101.72"/>
- <line x="227.3" y="101.72"/>
- <curve x1="233.87" x2="239.27" x3="240.42" y1="101.72" y2="107.59" y3="112.13"/>
- <line x="245.17" y="129.61"/>
- <line x="397.97" y="129.61"/>
- <curve x1="405.95" x2="412.65" x3="410.3" y1="129.61" y2="138.34" y3="146.84"/>
- <line x="383.3" y="227.85"/>
- <curve x1="380.8" x2="376.64" x3="365.96" y1="235.59" y2="239.91" y3="239.91"/>
- <close/>
- <move x="355.78" y="323.51"/>
- <curve x1="342.41" x2="327.42" x3="327.42" y1="323.51" y2="312.29" y3="296.47"/>
- <curve x1="327.42" x2="340.19" x3="355.78" y1="280.59" y2="267.8" y3="267.8"/>
- <curve x1="370.97" x2="383.13" x3="383.13" y1="267.8" y2="282.42" y3="296.47"/>
- <curve x1="383.13" x2="373.01" x3="355.78" y1="308.34" y2="323.51" y3="323.51"/>
- <close/>
- <move x="271.83" y="323.26"/>
- <curve x1="259.09" x2="244.41" x3="244.41" y1="323.26" y2="311.75" y3="296.47"/>
- <curve x1="244.41" x2="257.66" x3="271.83" y1="279.71" y2="267.93" y3="267.93"/>
- <curve x1="286.03" x2="300.25" x3="300.25" y1="267.93" y2="279.51" y3="296.47"/>
- <curve x1="300.25" x2="287.86" x3="271.83" y1="309.95" y2="323.26" y3="323.26"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="sitemap" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="182.94" y="314.3"/>
- <curve x1="175.81" x2="168.02" x3="168.02" y1="314.3" y2="308.45" y3="299.2"/>
- <line x="168.02" y="125.6"/>
- <curve x1="168.02" x2="175.71" x3="182.58" y1="116.8" y2="110.7" y3="110.7"/>
- <line x="417.26" y="110.7"/>
- <curve x1="424.44" x2="431.98" x3="431.98" y1="110.7" y2="116.94" y3="125.49"/>
- <line x="431.98" y="299.29"/>
- <curve x1="431.98" x2="424.3" x3="417.41" y1="308.26" y2="314.3" y3="314.3"/>
- <close/>
- <move x="390.51" y="242.67"/>
- <line x="371.64" y="242.67"/>
- <line x="371.64" y="212.5"/>
- <line x="303.77" y="212.5"/>
- <line x="303.77" y="189.87"/>
- <line x="330.17" y="189.87"/>
- <line x="330.17" y="148.4"/>
- <line x="269.83" y="148.4"/>
- <line x="269.83" y="189.87"/>
- <line x="296.23" y="189.87"/>
- <line x="296.23" y="212.5"/>
- <line x="228.36" y="212.5"/>
- <line x="228.36" y="242.67"/>
- <line x="209.51" y="242.67"/>
- <line x="209.51" y="276.6"/>
- <line x="254.75" y="276.6"/>
- <line x="254.75" y="242.67"/>
- <line x="235.89" y="242.67"/>
- <line x="235.89" y="220.04"/>
- <line x="296.23" y="220.04"/>
- <line x="296.23" y="242.67"/>
- <line x="277.39" y="242.67"/>
- <line x="277.39" y="276.6"/>
- <line x="322.63" y="276.6"/>
- <line x="322.63" y="242.67"/>
- <line x="303.77" y="242.67"/>
- <line x="303.77" y="220.04"/>
- <line x="364.11" y="220.04"/>
- <line x="364.11" y="242.67"/>
- <line x="345.26" y="242.67"/>
- <line x="345.26" y="276.6"/>
- <line x="390.51" y="276.6"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="slideshow" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="275.32" y="318.84"/>
- <line x="275.32" y="105.89"/>
- <line x="411.62" y="140.3"/>
- <line x="411.62" y="284.8"/>
- <close/>
- <move x="230.96" y="309.06"/>
- <line x="230.96" y="115.69"/>
- <line x="263.59" y="126.84"/>
- <line x="263.59" y="298.15"/>
- <close/>
- <move x="188.39" y="299.77"/>
- <line x="188.39" y="125.03"/>
- <line x="219.95" y="135.87"/>
- <line x="219.95" y="289.11"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="sports" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="367.35" y="158.73"/>
- <curve x1="352.45" x2="341.07" x3="341.07" y1="158.73" y2="147.56" y3="132.45"/>
- <curve x1="341.07" x2="350.71" x3="367.6" y1="120.06" y2="106.58" y3="106.58"/>
- <curve x1="382.16" x2="393.16" x3="393.16" y1="106.58" y2="118.56" y3="132.45"/>
- <curve x1="393.16" x2="378.63" x3="367.35" y1="150.27" y2="158.73" y3="158.73"/>
- <close/>
- <move x="318.9" y="260.02"/>
- <line x="271.31" y="235.83"/>
- <curve x1="261.48" x2="262.75" x3="267.92" y1="230.84" y2="220.45" y3="215.29"/>
- <line x="314.72" y="165.23"/>
- <line x="297.53" y="146.55"/>
- <line x="258.75" y="155.71"/>
- <curve x1="254.39" x2="247.29" x3="245.53" y1="156.87" y2="154.24" y3="147.3"/>
- <curve x1="243.47" x2="249.42" x3="253.16" y1="139.81" y2="134.34" y3="133.42"/>
- <line x="297.84" y="122.93"/>
- <curve x1="304.16" x2="307.25" x3="310.18" y1="121.09" y2="123.16" y3="126.23"/>
- <line x="375.97" y="188.9"/>
- <line x="397.91" y="168.45"/>
- <curve x1="403.52" x2="410.05" x3="414.84" y1="163.46" y2="163.98" y3="168.71"/>
- <curve x1="419.22" x2="417.92" x3="414.84" y1="173.92" y2="181.16" y3="184.22"/>
- <line x="384.12" y="212.87"/>
- <curve x1="379.73" x2="373.13" x3="368.48" y1="217.11" y2="216.95" y3="212.87"/>
- <line x="342.79" y="191.05"/>
- <line x="308.21" y="228.02"/>
- <line x="341.24" y="244.77"/>
- <curve x1="347.48" x2="349.4" x3="346.24" y1="248.26" y2="255.74" y3="261.04"/>
- <line x="313.75" y="313.69"/>
- <curve x1="311.58" x2="304.94" x3="298.33" y1="317.24" y2="321.07" y3="317.66"/>
- <curve x1="291.83" x2="290.21" x3="293.79" y1="314.22" y2="306.53" y3="300.65"/>
- <close/>
- <move x="274.18" y="245.45"/>
- <line x="253.2" y="271.87"/>
- <curve x1="251.46" x2="247.99" x3="245.65" y1="274.37" y2="276.16" y3="276.43"/>
- <line x="195.92" y="286.12"/>
- <curve x1="189.24" x2="183.46" x3="182.51" y1="287.24" y2="281.58" y3="276.09"/>
- <curve x1="181.86" x2="185.59" x3="191.19" y1="270.65" y2="263.87" y3="262.75"/>
- <line x="237.07" y="253.98"/>
- <line x="256.85" y="228.83"/>
- <curve x1="259.37" x2="264.27" x3="274.18" y1="238.03" y2="241.36" y3="245.45"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="success" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="283.92" y="217.58"/>
- <line x="260.23" y="193.7"/>
- <curve x1="254.72" x2="247.19" x3="242.06" y1="188.33" y2="188.09" y3="192.54"/>
- <line x="231.51" y="203.28"/>
- <curve x1="227.07" x2="227.31" x3="230.99" y1="207.6" y2="215.53" y3="219.76"/>
- <line x="273.38" y="262.57"/>
- <curve x1="280.61" x2="289.83" x3="294.1" y1="271.21" y2="267.95" y3="263.1"/>
- <line x="368.83" y="188.37"/>
- <curve x1="372.43" x2="373.64" x3="367.69" y1="184.29" y2="176.76" y3="170.56"/>
- <line x="357.73" y="161.13"/>
- <curve x1="352.03" x2="345.15" x3="340.45" y1="156.02" y2="156.89" y3="161.31"/>
- <close/>
- <move x="301.09" y="320.23"/>
- <curve x1="238.25" x2="192.13" x3="192.13" y1="320.23" y2="270.75" y3="212.74"/>
- <curve x1="192.13" x2="238.92" x3="301.09" y1="153.69" y2="104.6" y3="104.6"/>
- <curve x1="359.85" x2="407.83" x3="407.83" y1="104.6" y2="153.68" y3="212.74"/>
- <curve x1="407.83" x2="355.05" x3="301.09" y1="276.36" y2="320.23" y3="320.23"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="text" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="185.04" y="120.67"/>
- <arc large-arc-flag="0" rx="31.33" ry="31.33" sweep-flag="1" x="212.75" x-axis-rotation="0" y="93.2"/>
- <line x="367.24" y="93.2"/>
- <line x="414.96" y="140.68"/>
- <line x="414.96" y="302.16"/>
- <arc large-arc-flag="0" rx="31.33" ry="31.33" sweep-flag="1" x="385.68" x-axis-rotation="0" y="331.8"/>
- <line x="212.75" y="331.8"/>
- <arc large-arc-flag="0" rx="31.33" ry="31.33" sweep-flag="1" x="185.04" x-axis-rotation="0" y="304.99"/>
- <close/>
- <move x="203.84" y="300.71"/>
- <arc large-arc-flag="0" rx="12.05" ry="12.05" sweep-flag="0" x="213.48" x-axis-rotation="0" y="312.52"/>
- <line x="386.04" y="312.52"/>
- <arc large-arc-flag="0" rx="12.05" ry="12.05" sweep-flag="0" x="395.44" x-axis-rotation="0" y="300.71"/>
- <line x="395.44" y="151.77"/>
- <line x="356.88" y="151.77"/>
- <line x="356.88" y="112.72"/>
- <line x="213.48" y="112.72"/>
- <arc large-arc-flag="0" rx="12.05" ry="12.05" sweep-flag="0" x="204.32" x-axis-rotation="0" y="123.81"/>
- <close/>
- <move x="245.29" y="169.6"/>
- <line x="351.82" y="169.6"/>
- <line x="351.82" y="189.36"/>
- <line x="245.29" y="189.36"/>
- <close/>
- <move x="245.29" y="207.2"/>
- <line x="351.82" y="207.2"/>
- <line x="351.82" y="226.96"/>
- <line x="245.29" y="226.96"/>
- <close/>
- <move x="245.29" y="244.8"/>
- <line x="351.82" y="244.8"/>
- <line x="351.82" y="264.8"/>
- <line x="245.29" y="264.8"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="upload" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- <move x="195.8" y="324.54"/>
- <line x="195.8" y="250.48"/>
- <line x="225.22" y="250.48"/>
- <line x="225.22" y="295.34"/>
- <line x="374.92" y="295.34"/>
- <line x="374.92" y="250.48"/>
- <line x="404.33" y="250.48"/>
- <line x="404.33" y="324.54"/>
- <close/>
- <move x="359.25" y="175.09"/>
- <line x="329.95" y="175.09"/>
- <line x="329.95" y="279.65"/>
- <line x="270.43" y="279.65"/>
- <line x="270.43" y="175.09"/>
- <line x="240.62" y="175.09"/>
- <line x="299.95" y="101.42"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="user" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="199.52" y="328.22"/>
- <arc large-arc-flag="0" rx="755.47" ry="755.47" sweep-flag="1" x="205.57" x-axis-rotation="0" y="277.85"/>
- <arc large-arc-flag="0" rx="125.91" ry="125.91" sweep-flag="1" x="213.88" x-axis-rotation="0" y="242.6"/>
- <arc large-arc-flag="0" rx="32.74" ry="32.74" sweep-flag="1" x="224.7" x-axis-rotation="0" y="229.76"/>
- <arc large-arc-flag="0" rx="100.73" ry="100.73" sweep-flag="1" x="249.89" x-axis-rotation="0" y="218.68"/>
- <arc large-arc-flag="0" rx="10.07" ry="10.07" sweep-flag="1" x="260.46" x-axis-rotation="0" y="221.7"/>
- <arc large-arc-flag="0" rx="50.36" ry="50.36" sweep-flag="0" x="300.76" x-axis-rotation="0" y="237.31"/>
- <arc large-arc-flag="0" rx="50.36" ry="50.36" sweep-flag="0" x="339.79" x-axis-rotation="0" y="221.7"/>
- <arc large-arc-flag="0" rx="12.59" ry="12.59" sweep-flag="1" x="352.13" x-axis-rotation="0" y="218.68"/>
- <arc large-arc-flag="0" rx="125.91" ry="125.91" sweep-flag="1" x="376.05" x-axis-rotation="0" y="230.26"/>
- <arc large-arc-flag="0" rx="37.77" ry="37.77" sweep-flag="1" x="389.65" x-axis-rotation="0" y="251.41"/>
- <arc large-arc-flag="0" rx="251.82" ry="251.82" sweep-flag="1" x="395.94" x-axis-rotation="0" y="287.93"/>
- <line x="400.48" y="328.22"/>
- <close/>
- <move x="301.26" y="209.11"/>
- <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="250.39" x-axis-rotation="0" y="154.46"/>
- <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="301.26" x-axis-rotation="0" y="96.79"/>
- <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="349.61" x-axis-rotation="0" y="154.46"/>
- <arc large-arc-flag="0" rx="49.86" ry="55.9" sweep-flag="1" x="301.26" x-axis-rotation="0" y="209.11"/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="video" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="267.13" y="258.58"/>
- <line x="347.12" y="212.68"/>
- <line x="267.13" y="167.1"/>
- <close/>
- <move x="196.75" y="306.21"/>
- <curve x1="189.45" x2="183.68" x3="183.68" y1="306.21" y2="299.35" y3="293.08"/>
- <line x="183.68" y="131.99"/>
- <curve x1="183.68" x2="190.48" x3="196.72" y1="124.6" y2="118.79" y3="118.79"/>
- <line x="402.51" y="118.79"/>
- <curve x1="411.75" x2="416.32" x3="416.32" y1="118.79" y2="126.55" y3="131.94"/>
- <line x="416.32" y="292.89"/>
- <curve x1="416.32" x2="410.24" x3="403" y1="299.84" y2="306.21" y3="306.21"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="10" x-axis-rotation="0" y="345"/>
- <line x="590" y="345"/>
- <arc large-arc-flag="0" rx="5" ry="5" sweep-flag="0" x="595" x-axis-rotation="0" y="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- <shape aspect="variable" h="350" name="warning" strokewidth="inherit" w="600">
- <connections>
- <constraint name="N1" perimeter="0" x="0.25" y="0"/>
- <constraint name="N" perimeter="0" x="0.5" y="0"/>
- <constraint name="N2" perimeter="0" x="0.75" y="0"/>
- <constraint name="E1" perimeter="0" x="1" y="0.25"/>
- <constraint name="E" perimeter="0" x="1" y="0.5"/>
- <constraint name="E2" perimeter="0" x="1" y="0.75"/>
- <constraint name="S1" perimeter="0" x="0.25" y="1"/>
- <constraint name="S" perimeter="0" x="0.5" y="1"/>
- <constraint name="S2" perimeter="0" x="0.75" y="1"/>
- <constraint name="W1" perimeter="0" x="0" y="0.25"/>
- <constraint name="W" perimeter="0" x="0" y="0.5"/>
- <constraint name="W1" perimeter="0" x="0" y="0.75"/>
- <constraint name="NW" perimeter="0" x="0.005" y="0.005"/>
- <constraint name="NE" perimeter="0" x="0.995" y="0.005"/>
- <constraint name="SE" perimeter="0" x="0.995" y="0.995"/>
- <constraint name="SW" perimeter="0" x="0.005" y="0.995"/>
- </connections>
- <background>
- <path>
- <move x="10" y="350"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="0" x-axis-rotation="0" y="340"/>
- <line x="0" y="10"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="10" x-axis-rotation="0" y="0"/>
- <line x="590" y="0"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="600" x-axis-rotation="0" y="10"/>
- <line x="600" y="340"/>
- <arc large-arc-flag="0" rx="10" ry="10" sweep-flag="1" x="590" x-axis-rotation="0" y="350"/>
- <close/>
- </path>
- </background>
- <foreground>
- <fillstroke/>
- <fillcolor color="#ffffff"/>
- <alpha alpha="0.5"/>
- <path>
- <move x="317.94" y="176.81"/>
- <curve x1="318.34" x2="313.14" x3="302.34" y1="172.14" y2="164.49" y3="164.49"/>
- <curve x1="291.86" x2="284.66" x3="285.54" y1="164.49" y2="172.14" y3="177.28"/>
- <line x="290.84" y="240.51"/>
- <curve x1="291.24" x2="295.92" x3="301.87" y1="246.42" y2="250.98" y3="250.98"/>
- <curve x1="308.74" x2="313.14" x3="313.34" y1="250.98" y2="246.03" y3="240.13"/>
- <close/>
- <move x="301.89" y="290.78"/>
- <curve x1="311.89" x2="318.1" x3="318.1" y1="290.78" y2="282.69" y3="275.13"/>
- <curve x1="318.1" x2="312.75" x3="301.89" y1="267.93" y2="259.09" y3="259.09"/>
- <curve x1="292.78" x2="286.23" x3="286.23" y1="259.09" y2="266.8" y3="275.13"/>
- <curve x1="286.23" x2="293.03" x3="301.89" y1="283.02" y2="290.78" y3="290.78"/>
- <close/>
- <move x="199.36" y="308.42"/>
- <curve x1="193.71" x2="191.35" x3="194.52" y1="308.42" y2="303.62" y3="297.79"/>
- <line x="297.13" y="117.18"/>
- <curve x1="298.58" x2="303.33" x3="304.83" y1="114.27" y2="113.93" y3="117.02"/>
- <line x="404.88" y="296.34"/>
- <curve x1="408.31" x2="405.93" x3="400.28" y1="301.81" y2="308.42" y3="308.42"/>
- <close/>
- <move x="5" y="80"/>
- <line x="5" y="340"/>
- <curve x1="5" x2="7.24" x3="10" y1="342.76" y2="345" y3="345"/>
- <line x="590" y="345"/>
- <curve x1="592.76" x2="595" x3="595" y1="345" y2="342.76" y3="340"/>
- <line x="595" y="80"/>
- <close/>
- </path>
- <fill/>
- </foreground>
- </shape>
- </shapes>
|