sports.xml 264 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035
  1. <shapes name="mxGraph.signs.sports">
  2. <shape name="Amphiteater" h="99.12" w="95.85" aspect="variable" strokewidth="inherit">
  3. <connections>
  4. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  5. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  6. <constraint x="0.23" y="0.5" perimeter="0" name="W"/>
  7. <constraint x="0.77" y="0.5" perimeter="0" name="E"/>
  8. <constraint x="0" y="0.85" perimeter="0" name="SW"/>
  9. <constraint x="1" y="0.85" perimeter="0" name="SE"/>
  10. </connections>
  11. <background>
  12. <path>
  13. <move x="47.88" y="12.1"/>
  14. <curve x1="51.23" y1="12.1" x2="53.98" y2="9.39" x3="53.98" y3="6.06"/>
  15. <curve x1="53.98" y1="2.7" x2="51.22" y2="0" x3="47.88" y3="0"/>
  16. <curve x1="44.51" y1="0" x2="41.78" y2="2.71" x3="41.78" y3="6.07"/>
  17. <curve x1="41.77" y1="9.4" x2="44.5" y2="12.1" x3="47.88" y3="12.1"/>
  18. <close/>
  19. <move x="57.62" y="14.05"/>
  20. <line x="38.03" y="14.05"/>
  21. <curve x1="33.71" y1="14.05" x2="30.22" y2="17.56" x3="30.22" y3="21.92"/>
  22. <line x="30.22" y="36.41"/>
  23. <curve x1="30.22" y1="40.02" x2="35.03" y2="40.02" x3="35.03" y3="36.41"/>
  24. <line x="35.03" y="22.43"/>
  25. <line x="40.02" y="22.43"/>
  26. <line x="40.02" y="40.06"/>
  27. <curve x1="42.57" y1="40.67" x2="45.18" y2="41.13" x3="47.93" y3="41.13"/>
  28. <curve x1="50.66" y1="41.13" x2="53.24" y2="40.68" x3="55.78" y3="40.09"/>
  29. <line x="55.78" y="22.43"/>
  30. <line x="60.73" y="22.43"/>
  31. <line x="60.73" y="36.41"/>
  32. <curve x1="60.73" y1="40.04" x2="65.54" y2="40.04" x3="65.54" y3="36.41"/>
  33. <line x="65.54" y="22.01"/>
  34. <curve x1="65.55" y1="18.02" x2="62.39" y2="14.05" x3="57.62" y3="14.05"/>
  35. <close/>
  36. <move x="70.99" y="45.71"/>
  37. <curve x1="64.42" y1="50.18" x2="56.42" y2="52.8" x3="47.84" y3="52.8"/>
  38. <curve x1="39.31" y1="52.8" x2="31.41" y2="50.21" x3="24.81" y3="45.83"/>
  39. <line x="19.64" y="53.45"/>
  40. <curve x1="27.69" y1="58.86" x2="37.4" y2="62" x3="47.84" y3="62"/>
  41. <curve x1="58.35" y1="62" x2="68.11" y2="58.83" x3="76.18" y3="53.38"/>
  42. <line x="70.99" y="45.71"/>
  43. <close/>
  44. <move x="80.87" y="61.42"/>
  45. <curve x1="71.47" y1="67.77" x2="60.11" y2="71.46" x3="47.89" y3="71.46"/>
  46. <curve x1="35.71" y1="71.46" x2="24.4" y2="67.81" x3="15.03" y3="61.53"/>
  47. <line x="9.81" y="68.99"/>
  48. <curve x1="20.66" y1="76.29" x2="33.78" y2="80.56" x3="47.89" y3="80.56"/>
  49. <curve x1="62.02" y1="80.56" x2="75.15" y2="76.27" x3="86.04" y3="68.97"/>
  50. <line x="80.87" y="61.42"/>
  51. <close/>
  52. <move x="90.68" y="77"/>
  53. <curve x1="78.45" y1="85.23" x2="63.74" y2="90.02" x3="47.86" y3="90.02"/>
  54. <curve x1="32.01" y1="90.02" x2="17.29" y2="85.23" x3="5.09" y3="77.04"/>
  55. <line x="0" y="84.61"/>
  56. <curve x1="13.64" y1="93.77" x2="30.13" y2="99.12" x3="47.86" y3="99.12"/>
  57. <curve x1="65.62" y1="99.12" x2="82.15" y2="93.73" x3="95.85" y3="84.51"/>
  58. <line x="90.68" y="77"/>
  59. <close/>
  60. </path>
  61. </background>
  62. <foreground>
  63. <fillstroke/>
  64. </foreground>
  65. </shape>
  66. <shape name="Archery" h="98.4" w="72.93" aspect="variable" strokewidth="inherit">
  67. <connections>
  68. <constraint x="0.33" y="0.135" perimeter="0" name="N"/>
  69. <constraint x="0.33" y="1" perimeter="0" name="S"/>
  70. <constraint x="0.235" y="0.5" perimeter="0" name="W"/>
  71. <constraint x="0.885" y="0.5" perimeter="0" name="E"/>
  72. <constraint x="0.01" y="0.3" perimeter="0" name="NW"/>
  73. <constraint x="0" y="1" perimeter="0" name="SW"/>
  74. <constraint x="0.75" y="0" perimeter="0" name="NE"/>
  75. <constraint x="0.76" y="1" perimeter="0" name="SE"/>
  76. </connections>
  77. <background>
  78. <path>
  79. <move x="54.66" y="62.8"/>
  80. <line x="55.29" y="63.68"/>
  81. <curve x1="71.99" y1="45.36" x2="72.93" y2="17.03" x3="54.77" y3="0"/>
  82. <line x="54.41" y="0.34"/>
  83. <line x="30.1" y="29.52"/>
  84. <line x="0.76" y="29.52"/>
  85. <line x="0.76" y="34.78"/>
  86. <line x="16.01" y="36.53"/>
  87. <line x="17.79" y="54.62"/>
  88. <line x="0" y="98.4"/>
  89. <line x="8.64" y="97.83"/>
  90. <line x="27.96" y="63.96"/>
  91. <line x="47.03" y="97.83"/>
  92. <line x="55.17" y="98.4"/>
  93. <line x="37.88" y="54.62"/>
  94. <line x="38.86" y="44.68"/>
  95. <line x="54.66" y="62.8"/>
  96. <line x="54.66" y="62.8"/>
  97. <line x="54.66" y="62.8"/>
  98. <close/>
  99. <move x="55.56" y="61.05"/>
  100. <line x="38.95" y="41.6"/>
  101. <line x="39.66" y="36.53"/>
  102. <line x="63.81" y="34.78"/>
  103. <curve x1="62.81" y1="44.45" x2="60.38" y2="53.56" x3="55.56" y3="61.05"/>
  104. <line x="55.56" y="61.05"/>
  105. <line x="55.56" y="61.05"/>
  106. <close/>
  107. <move x="32.74" y="29.4"/>
  108. <line x="55.33" y="2.63"/>
  109. <curve x1="60.65" y1="9.6" x2="63.32" y2="19.28" x3="63.81" y3="29.53"/>
  110. <line x="32.74" y="29.4"/>
  111. <line x="32.74" y="29.4"/>
  112. <line x="32.74" y="29.4"/>
  113. <close/>
  114. <move x="23.9" y="13.18"/>
  115. <curve x1="27.61" y1="13.18" x2="30.63" y2="16.16" x3="30.63" y3="19.8"/>
  116. <curve x1="30.63" y1="23.44" x2="27.6" y2="26.42" x3="23.9" y3="26.42"/>
  117. <curve x1="20.2" y1="26.42" x2="17.17" y2="23.44" x3="17.17" y3="19.8"/>
  118. <curve x1="17.17" y1="16.15" x2="20.19" y2="13.18" x3="23.9" y3="13.18"/>
  119. <line x="23.9" y="13.18"/>
  120. <line x="23.9" y="13.18"/>
  121. <close/>
  122. </path>
  123. </background>
  124. <foreground>
  125. <fillstroke/>
  126. </foreground>
  127. </shape>
  128. <shape name="Baseball" h="99.5" w="58.63" aspect="variable" strokewidth="inherit">
  129. <connections>
  130. <constraint x="0.57" y="0" perimeter="0" name="N"/>
  131. <constraint x="0.64" y="0.995" perimeter="0" name="S"/>
  132. <constraint x="0.48" y="0.5" perimeter="0" name="W"/>
  133. <constraint x="0.8" y="0.5" perimeter="0" name="E"/>
  134. <constraint x="0.08" y="0.25" perimeter="0" name="NW"/>
  135. <constraint x="0.37" y="0.995" perimeter="0" name="SW"/>
  136. <constraint x="0.91" y="0.995" perimeter="0" name="SE"/>
  137. </connections>
  138. <background>
  139. <path>
  140. <move x="37.61" y="26.93"/>
  141. <curve x1="41.71" y1="26.93" x2="45.06" y2="23.59" x3="45.06" y3="19.48"/>
  142. <curve x1="45.06" y1="15.38" x2="41.72" y2="12.03" x3="37.61" y3="12.03"/>
  143. <curve x1="33.49" y1="12.03" x2="30.16" y2="15.37" x3="30.16" y3="19.48"/>
  144. <curve x1="30.16" y1="23.59" x2="33.49" y2="26.93" x3="37.61" y3="26.93"/>
  145. <close/>
  146. <move x="57.84" y="91.93"/>
  147. <line x="46.85" y="58.59"/>
  148. <line x="46.85" y="31.91"/>
  149. <curve x1="46.85" y1="28.41" x2="43.35" y2="28.57" x3="43.35" y3="28.57"/>
  150. <line x="32.13" y="28.57"/>
  151. <line x="29.17" y="28.57"/>
  152. <curve x1="29.17" y1="28.57" x2="28.57" y2="28.48" x3="27.35" y3="29.48"/>
  153. <line x="19.08" y="34.3"/>
  154. <line x="10.46" y="25.66"/>
  155. <curve x1="9.05" y1="24" x2="6.57" y2="23.75" x3="4.89" y3="25.15"/>
  156. <curve x1="3.2" y1="26.56" x2="3.11" y2="29.11" x3="4.52" y3="30.79"/>
  157. <line x="15.52" y="41.8"/>
  158. <curve x1="16.26" y1="42.59" x2="17.3" y2="43.13" x3="18.47" y3="43.13"/>
  159. <curve x1="19.32" y1="43.13" x2="20.11" y2="42.86" x3="20.78" y3="42.41"/>
  160. <line x="28.03" y="38.42"/>
  161. <line x="28.03" y="57.99"/>
  162. <line x="16.93" y="91.87"/>
  163. <curve x1="16.12" y1="94.82" x2="17.87" y2="97.84" x3="20.83" y3="98.64"/>
  164. <curve x1="23.78" y1="99.43" x2="26.82" y2="97.67" x3="27.6" y3="94.73"/>
  165. <line x="37.29" y="65.49"/>
  166. <line x="47.16" y="94.79"/>
  167. <curve x1="47.96" y1="97.75" x2="50.98" y2="99.5" x3="53.93" y3="98.69"/>
  168. <curve x1="56.88" y1="97.9" x2="58.63" y2="94.88" x3="57.84" y3="91.93"/>
  169. <close/>
  170. <move x="2.57" y="34.56"/>
  171. <curve x1="2.95" y1="34.94" x2="3.58" y2="34.95" x3="3.98" y3="34.56"/>
  172. <line x="4.11" y="34.45"/>
  173. <curve x1="4.48" y1="34.06" x2="4.5" y2="33.43" x3="4.11" y3="33.04"/>
  174. <line x="1.96" y="30.83"/>
  175. <curve x1="1.57" y1="30.44" x2="0.93" y2="30.44" x3="0.53" y3="30.82"/>
  176. <line x="0.42" y="30.94"/>
  177. <curve x1="0.03" y1="31.33" x2="0" y2="31.96" x3="0.4" y3="32.35"/>
  178. <line x="2.57" y="34.56"/>
  179. <close/>
  180. <move x="23.17" y="9.58"/>
  181. <line x="10.46" y="23.31"/>
  182. <line x="11.99" y="24.88"/>
  183. <line x="26.17" y="12.66"/>
  184. <line x="35.6" y="3.98"/>
  185. <curve x1="35.97" y1="3.55" x2="36.22" y2="3.01" x3="36.22" y3="2.42"/>
  186. <curve x1="36.22" y1="1.11" x2="35.16" y2="0.03" x3="33.87" y3="0.01"/>
  187. <curve x1="33.23" y1="0" x2="32.68" y2="0.25" x3="32.24" y3="0.62"/>
  188. <line x="23.17" y="9.58"/>
  189. <close/>
  190. </path>
  191. </background>
  192. <foreground>
  193. <fillstroke/>
  194. </foreground>
  195. </shape>
  196. <shape name="Binoculars" h="98.44" w="98.88" aspect="variable" strokewidth="inherit">
  197. <connections>
  198. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  199. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  200. <constraint x="0.045" y="0.5" perimeter="0" name="W"/>
  201. <constraint x="0.955" y="0.5" perimeter="0" name="E"/>
  202. <constraint x="0.22" y="0" perimeter="0" name="NW"/>
  203. <constraint x="0.01" y="0.99" perimeter="0" name="SW"/>
  204. <constraint x="0.78" y="0" perimeter="0" name="NE"/>
  205. <constraint x="0.99" y="0.99" perimeter="0" name="SE"/>
  206. </connections>
  207. <background>
  208. <path>
  209. <move x="40.48" y="0"/>
  210. <line x="21.67" y="0"/>
  211. <line x="21.67" y="13.61"/>
  212. <line x="40.48" y="13.61"/>
  213. <line x="40.48" y="0"/>
  214. <close/>
  215. <move x="61.71" y="58.74"/>
  216. <curve x1="59.93" y1="58.74" x2="58.49" y2="57.28" x3="58.49" y3="55.48"/>
  217. <line x="58.49" y="17.87"/>
  218. <line x="86.91" y="17.87"/>
  219. <line x="98.88" y="69.18"/>
  220. <line x="98.82" y="72.5"/>
  221. <line x="98.82" y="95.18"/>
  222. <curve x1="98.82" y1="96.92" x2="97.43" y2="98.35" x3="95.69" y3="98.35"/>
  223. <line x="68.06" y="98.35"/>
  224. <curve x1="66.32" y1="98.35" x2="64.93" y2="96.92" x3="64.93" y3="95.18"/>
  225. <line x="64.93" y="58.74"/>
  226. <line x="61.93" y="58.74"/>
  227. <close/>
  228. <move x="37.17" y="58.81"/>
  229. <curve x1="38.95" y1="58.81" x2="40.39" y2="57.37" x3="40.39" y3="55.57"/>
  230. <line x="40.39" y="17.93"/>
  231. <line x="12" y="17.93"/>
  232. <line x="0" y="69.24"/>
  233. <line x="0.06" y="72.59"/>
  234. <line x="0.06" y="95.27"/>
  235. <curve x1="0.06" y1="97.01" x2="1.47" y2="98.44" x3="3.19" y3="98.44"/>
  236. <line x="30.81" y="98.44"/>
  237. <curve x1="32.56" y1="98.44" x2="33.97" y2="97.01" x3="33.97" y3="95.27"/>
  238. <line x="33.97" y="58.81"/>
  239. <line x="36.92" y="58.81"/>
  240. <close/>
  241. <move x="54.3" y="17.93"/>
  242. <line x="44.56" y="17.93"/>
  243. <line x="44.56" y="52.87"/>
  244. <line x="54.3" y="52.87"/>
  245. <line x="54.3" y="17.93"/>
  246. <close/>
  247. <move x="77.31" y="0"/>
  248. <line x="58.48" y="0"/>
  249. <line x="58.48" y="13.61"/>
  250. <line x="77.3" y="13.61"/>
  251. <line x="77.3" y="0"/>
  252. <close/>
  253. </path>
  254. </background>
  255. <foreground>
  256. <fillstroke/>
  257. </foreground>
  258. </shape>
  259. <shape name="Boardwalk" h="98.89" w="96.67" aspect="variable" strokewidth="inherit">
  260. <connections>
  261. <constraint x="0.53" y="0" perimeter="0" name="N"/>
  262. <constraint x="0.53" y="1" perimeter="0" name="S"/>
  263. <constraint x="0.37" y="0.5" perimeter="0" name="W"/>
  264. <constraint x="0.62" y="0.5" perimeter="0" name="E"/>
  265. <constraint x="0" y="0.84" perimeter="0" name="SW"/>
  266. <constraint x="1" y="0.84" perimeter="0" name="SE"/>
  267. </connections>
  268. <foreground>
  269. <path>
  270. <move x="50.51" y="12.21"/>
  271. <curve x1="53.87" y1="12.48" x2="56.79" y2="10.02" x3="57.07" y3="6.71"/>
  272. <curve x1="57.33" y1="3.4" x2="54.83" y2="0.52" x3="51.46" y3="0.25"/>
  273. <curve x1="48.13" y1="0" x2="45.19" y2="2.47" x3="44.93" y3="5.78"/>
  274. <curve x1="44.65" y1="9.06" x2="47.15" y2="11.96" x3="50.51" y3="12.21"/>
  275. <close/>
  276. </path>
  277. <fillstroke/>
  278. <path>
  279. <move x="45.35" y="14.68"/>
  280. <curve x1="46.55" y1="13.86" x2="48.01" y2="13.31" x3="49.63" y3="13.45"/>
  281. <curve x1="51.71" y1="13.61" x2="53.43" y2="14.89" x3="54.47" y3="16.44"/>
  282. <line x="60.61" y="28.46"/>
  283. <line x="68.99" y="34.15"/>
  284. <curve x1="69.71" y1="34.7" x2="70.15" y2="35.57" x3="70.05" y3="36.52"/>
  285. <curve x1="69.94" y1="38" x2="68.62" y2="39.12" x3="67.11" y3="38.99"/>
  286. <curve x1="66.65" y1="38.97" x2="66.28" y2="38.78" x3="65.86" y3="38.6"/>
  287. <line x="56.72" y="32.39"/>
  288. <curve x1="56.44" y1="32.16" x2="56.21" y2="31.89" x3="56.03" y3="31.59"/>
  289. <line x="53.74" y="27.09"/>
  290. <line x="50.98" y="39.06"/>
  291. <line x="61.77" y="51.65"/>
  292. <curve x1="62.03" y1="52.04" x2="62.19" y2="52.49" x3="62.28" y3="52.95"/>
  293. <line x="65.2" y="68.14"/>
  294. <curve x1="65.18" y1="68.48" x2="65.22" y2="68.69" x3="65.2" y3="68.96"/>
  295. <curve x1="65.04" y1="71.22" x2="63.05" y2="72.87" x3="60.78" y3="72.71"/>
  296. <curve x1="58.9" y1="72.55" x2="57.52" y2="71.18" x3="57.08" y3="69.49"/>
  297. <line x="54.32" y="55.26"/>
  298. <line x="45.54" y="45.78"/>
  299. <line x="43.5" y="55.01"/>
  300. <curve x1="43.43" y1="55.44" x2="42.85" y2="56.36" x3="42.69" y3="56.72"/>
  301. <line x="34.26" y="70.72"/>
  302. <curve x1="33.43" y1="72" x2="32.01" y2="72.82" x3="30.42" y3="72.68"/>
  303. <curve x1="28.13" y1="72.52" x2="26.44" y2="70.56" x3="26.62" y3="68.32"/>
  304. <curve x1="26.67" y1="67.68" x2="26.94" y2="67.02" x3="27.18" y3="66.56"/>
  305. <line x="35" y="53.61"/>
  306. <line x="41.53" y="25.08"/>
  307. <line x="37.27" y="28.47"/>
  308. <line x="35" y="38.63"/>
  309. <curve x1="34.7" y1="39.93" x2="33.5" y2="41.01" x3="32.08" y3="40.89"/>
  310. <curve x1="30.55" y1="40.78" x2="29.44" y2="39.47" x3="29.56" y3="37.97"/>
  311. <curve x1="29.56" y1="37.86" x2="29.58" y2="37.74" x3="29.61" y3="37.6"/>
  312. <line x="32.3" y="25.74"/>
  313. <curve x1="32.46" y1="25.24" x2="32.74" y2="24.78" x3="33.13" y3="24.44"/>
  314. <line x="45.35" y="14.68"/>
  315. <close/>
  316. </path>
  317. <fillstroke/>
  318. <rect x="16.85" y="87.84" w="7.92" h="11.05"/>
  319. <fillstroke/>
  320. <rect x="71.86" y="87.84" w="7.92" h="11.05"/>
  321. <fillstroke/>
  322. <rect x="0" y="78.02" w="9.65" h="5.28"/>
  323. <fillstroke/>
  324. <rect x="74.33" y="78.02" w="9.65" h="5.28"/>
  325. <fillstroke/>
  326. <rect x="87.02" y="78.02" w="9.65" h="5.28"/>
  327. <fillstroke/>
  328. <rect x="61.95" y="78.02" w="9.65" h="5.28"/>
  329. <fillstroke/>
  330. <rect x="49.56" y="78.02" w="9.66" h="5.28"/>
  331. <fillstroke/>
  332. <rect x="37.17" y="78.02" w="9.63" h="5.28"/>
  333. <fillstroke/>
  334. <rect x="24.79" y="78.02" w="9.63" h="5.28"/>
  335. <fillstroke/>
  336. <rect x="12.4" y="78.02" w="9.63" h="5.28"/>
  337. <fillstroke/>
  338. </foreground>
  339. </shape>
  340. <shape name="Boat Launch" h="52.27" w="98.81" aspect="variable" strokewidth="inherit">
  341. <connections>
  342. <constraint x="0.43" y="0" perimeter="0" name="N"/>
  343. <constraint x="0.43" y="1" perimeter="0" name="S"/>
  344. <constraint x="0" y="0.53" perimeter="0" name="W"/>
  345. <constraint x="0.92" y="0.5" perimeter="0" name="E"/>
  346. <constraint x="0.095" y="0.05" perimeter="0" name="NW"/>
  347. <constraint x="0" y="1" perimeter="0" name="SW"/>
  348. <constraint x="1" y="0.955" perimeter="0" name="SE"/>
  349. </connections>
  350. <background>
  351. <path>
  352. <move x="53.73" y="39.62"/>
  353. <curve x1="57.74" y1="38.69" x2="60.72" y2="35.06" x3="60.72" y3="30.73"/>
  354. <curve x1="60.72" y1="25.69" x2="56.68" y2="21.61" x3="51.71" y3="21.61"/>
  355. <curve x1="46.73" y1="21.61" x2="42.69" y2="25.69" x3="42.69" y3="30.73"/>
  356. <curve x1="42.69" y1="33.66" x2="44.05" y2="36.26" x3="46.17" y3="37.93"/>
  357. <line x="0" y="27.6"/>
  358. <line x="0" y="52.23"/>
  359. <line x="50.57" y="52.27"/>
  360. <curve x1="52.84" y1="52.27" x2="54.84" y2="51.07" x3="55.97" y3="49.27"/>
  361. <curve x1="57.11" y1="51.07" x2="59.1" y2="52.27" x3="61.37" y3="52.27"/>
  362. <curve x1="63.64" y1="52.27" x2="65.64" y2="51.07" x3="66.78" y3="49.27"/>
  363. <curve x1="67.91" y1="51.07" x2="69.91" y2="52.27" x3="72.18" y3="52.27"/>
  364. <curve x1="74.45" y1="52.27" x2="76.45" y2="51.07" x3="77.58" y3="49.27"/>
  365. <curve x1="78.72" y1="51.07" x2="80.71" y2="52.27" x3="82.98" y3="52.27"/>
  366. <curve x1="85.25" y1="52.27" x2="87.25" y2="51.07" x3="88.38" y3="49.27"/>
  367. <curve x1="89.51" y1="51.07" x2="91.51" y2="52.27" x3="93.78" y3="52.27"/>
  368. <curve x1="95.82" y1="52.27" x2="97.64" y2="51.3" x3="98.81" y3="49.8"/>
  369. <line x="53.73" y="39.62"/>
  370. <close/>
  371. <move x="46.99" y="30.73"/>
  372. <curve x1="46.99" y1="28.1" x2="49.1" y2="25.96" x3="51.71" y3="25.96"/>
  373. <curve x1="54.32" y1="25.96" x2="56.43" y2="28.1" x3="56.43" y3="30.73"/>
  374. <curve x1="56.43" y1="33.37" x2="54.32" y2="35.5" x3="51.71" y3="35.5"/>
  375. <curve x1="49.11" y1="35.5" x2="46.99" y2="33.36" x3="46.99" y3="30.73"/>
  376. <close/>
  377. <move x="91.9" y="36.3"/>
  378. <line x="61.64" y="29.64"/>
  379. <curve x1="61.68" y1="30" x2="61.7" y2="30.36" x3="61.7" y3="30.73"/>
  380. <curve x1="61.7" y1="31.63" x2="61.58" y2="32.49" x3="61.37" y3="33.31"/>
  381. <line x="91.14" y="39.86"/>
  382. <line x="91.9" y="36.3"/>
  383. <move x="4.49" y="17.06"/>
  384. <line x="3.72" y="20.62"/>
  385. <line x="41.87" y="29.02"/>
  386. <curve x1="42.08" y1="27.78" x2="42.51" y2="26.61" x3="43.13" y3="25.56"/>
  387. <line x="4.49" y="17.06"/>
  388. <move x="33.25" y="7.91"/>
  389. <line x="43.66" y="1.95"/>
  390. <line x="42.57" y="0"/>
  391. <line x="30" y="7.2"/>
  392. <line x="9.27" y="2.66"/>
  393. <curve x1="9.41" y1="15.71" x2="23.55" y2="19.5" x3="23.55" y3="19.5"/>
  394. <line x="44.28" y="23.97"/>
  395. <curve x1="46.11" y1="21.91" x2="48.76" y2="20.62" x3="51.7" y3="20.62"/>
  396. <curve x1="56.14" y1="20.62" x2="59.91" y2="23.56" x3="61.2" y3="27.61"/>
  397. <line x="87.34" y="33.24"/>
  398. <line x="93.86" y="21.17"/>
  399. <line x="33.25" y="7.91"/>
  400. </path>
  401. </background>
  402. <foreground>
  403. <fillstroke/>
  404. </foreground>
  405. </shape>
  406. <shape name="Camper 1" h="79.83" w="99.25" aspect="variable" strokewidth="inherit">
  407. <connections>
  408. <constraint x="0.55" y="0.305" perimeter="0" name="N"/>
  409. <constraint x="0.55" y="0.99" perimeter="0" name="S"/>
  410. <constraint x="0.1" y="0.6" perimeter="0" name="W"/>
  411. <constraint x="1" y="0.6" perimeter="0" name="E"/>
  412. <constraint x="0.11" y="0.4" perimeter="0" name="NW"/>
  413. <constraint x="0" y="0.87" perimeter="0" name="SW"/>
  414. <constraint x="0.995" y="0.4" perimeter="0" name="NE"/>
  415. <constraint x="0.99" y="0.85" perimeter="0" name="SE"/>
  416. </connections>
  417. <background>
  418. <path>
  419. <move x="97.15" y="30.17"/>
  420. <curve x1="47.46" y1="17.75" x2="15.37" y2="29.17" x3="15.37" y3="29.17"/>
  421. <curve x1="10.07" y1="30.79" x2="10.29" y2="33.42" x3="10.29" y3="33.42"/>
  422. <line x="10.29" y="66.92"/>
  423. <line x="0.5" y="66.92"/>
  424. <line x="0.5" y="69.52"/>
  425. <line x="42.21" y="69.58"/>
  426. <curve x1="42.21" y1="62.77" x2="47.67" y2="57.1" x3="54.4" y3="57.1"/>
  427. <curve x1="61.12" y1="57.1" x2="66.58" y2="62.63" x3="66.58" y3="69.43"/>
  428. <curve x1="66.58" y1="69.52" x2="66.59" y2="69.6" x3="66.59" y3="69.68"/>
  429. <line x="95.41" y="69.68"/>
  430. <curve x1="98.88" y1="69.3" x2="99.25" y2="64.41" x3="99.25" y3="64.41"/>
  431. <line x="99.25" y="34.05"/>
  432. <curve x1="99.25" y1="30.54" x2="97.15" y2="30.17" x3="97.15" y3="30.17"/>
  433. <close/>
  434. <move x="37.55" y="45.71"/>
  435. <line x="21.44" y="45.71"/>
  436. <line x="21.44" y="35.06"/>
  437. <line x="37.55" y="35.06"/>
  438. <line x="37.55" y="45.71"/>
  439. <close/>
  440. <move x="85.5" y="45.71"/>
  441. <line x="55.39" y="45.71"/>
  442. <line x="55.39" y="35.06"/>
  443. <line x="85.5" y="35.06"/>
  444. <line x="85.5" y="45.71"/>
  445. <close/>
  446. </path>
  447. </background>
  448. <foreground>
  449. <fillstroke/>
  450. <path>
  451. <move x="6.33" y="71.32"/>
  452. <curve x1="4.01" y1="71.32" x2="2.12" y2="73.22" x3="2.12" y3="75.57"/>
  453. <curve x1="2.12" y1="77.92" x2="4" y2="79.83" x3="6.33" y3="79.83"/>
  454. <curve x1="8.64" y1="79.83" x2="10.54" y2="77.93" x3="10.54" y3="75.57"/>
  455. <curve x1="10.54" y1="73.23" x2="8.64" y2="71.32" x3="6.33" y3="71.32"/>
  456. <close/>
  457. </path>
  458. <fillstroke/>
  459. <path>
  460. <move x="6.33" y="75.57"/>
  461. </path>
  462. <fillstroke/>
  463. <path>
  464. <move x="54.4" y="59.69"/>
  465. <curve x1="49.09" y1="59.69" x2="44.78" y2="64.05" x3="44.78" y3="69.43"/>
  466. <curve x1="44.78" y1="74.82" x2="49.08" y2="79.18" x3="54.4" y3="79.18"/>
  467. <curve x1="59.72" y1="79.18" x2="64.02" y2="74.82" x3="64.02" y3="69.43"/>
  468. <curve x1="64.02" y1="64.05" x2="59.72" y2="59.69" x3="54.4" y3="59.69"/>
  469. <close/>
  470. <move x="54.4" y="74.06"/>
  471. <curve x1="51.88" y1="74.06" x2="49.82" y2="71.99" x3="49.82" y3="69.43"/>
  472. <curve x1="49.82" y1="66.89" x2="51.87" y2="64.82" x3="54.4" y3="64.82"/>
  473. <curve x1="56.92" y1="64.82" x2="58.96" y2="66.89" x3="58.96" y3="69.43"/>
  474. <curve x1="58.96" y1="71.99" x2="56.92" y2="74.06" x3="54.4" y3="74.06"/>
  475. <close/>
  476. </path>
  477. <fillstroke/>
  478. </foreground>
  479. </shape>
  480. <shape name="Camper 2" h="59.47" w="98.81" aspect="variable" strokewidth="inherit">
  481. <connections>
  482. <constraint x="0.5" y="0.88" perimeter="0" name="S"/>
  483. <constraint x="0.02" y="0.72" perimeter="0" name="W"/>
  484. <constraint x="0.98" y="0.72" perimeter="0" name="E"/>
  485. <constraint x="0.385" y="0" perimeter="0" name="NW"/>
  486. <constraint x="0.06" y="0.91" perimeter="0" name="SW"/>
  487. <constraint x="0.77" y="0" perimeter="0" name="NE"/>
  488. <constraint x="0.94" y="0.91" perimeter="0" name="SE"/>
  489. </connections>
  490. <background>
  491. <path>
  492. <move x="40.79" y="22.67"/>
  493. <curve x1="42.62" y1="22.67" x2="44.12" y2="21.15" x3="44.12" y3="19.3"/>
  494. <line x="44.12" y="13.68"/>
  495. <curve x1="44.12" y1="11.83" x2="42.63" y2="10.31" x3="40.79" y3="10.31"/>
  496. <line x="15.72" y="10.31"/>
  497. <curve x1="13.89" y1="10.31" x2="12.39" y2="11.83" x3="12.39" y3="13.68"/>
  498. <line x="12.39" y="19.3"/>
  499. <curve x1="12.39" y1="21.15" x2="13.88" y2="22.67" x3="15.72" y3="22.67"/>
  500. <line x="40.79" y="22.67"/>
  501. <close/>
  502. <move x="73.87" y="22.65"/>
  503. <curve x1="75.72" y1="22.65" x2="77.2" y2="21.13" x3="77.2" y3="19.28"/>
  504. <line x="77.2" y="13.68"/>
  505. <curve x1="77.2" y1="11.83" x2="75.72" y2="10.31" x3="73.87" y3="10.31"/>
  506. <line x="62.3" y="10.31"/>
  507. <curve x1="60.47" y1="10.31" x2="58.97" y2="11.83" x3="58.97" y3="13.68"/>
  508. <line x="58.97" y="19.28"/>
  509. <curve x1="58.97" y1="21.13" x2="60.46" y2="22.65" x3="62.3" y3="22.65"/>
  510. <line x="73.87" y="22.65"/>
  511. <close/>
  512. <move x="30.85" y="49.38"/>
  513. <line x="11.91" y="49.38"/>
  514. <curve x1="5.34" y1="49.38" x2="0.02" y2="43.99" x3="0.02" y3="37.35"/>
  515. <line x="0" y="16.33"/>
  516. <curve x1="0" y1="7.31" x2="7.22" y2="0" x3="16.13" y3="0"/>
  517. <line x="70.97" y="0"/>
  518. <curve x1="79.87" y1="0" x2="87.11" y2="7.31" x3="87.11" y3="16.33"/>
  519. <line x="87.13" y="46"/>
  520. <line x="95.53" y="46"/>
  521. <curve x1="97.34" y1="46" x2="98.81" y2="47.52" x3="98.81" y3="49.36"/>
  522. <line x="56.21" y="49.36"/>
  523. <curve x1="55.8" y1="42.61" x2="50.3" y2="37.27" x3="43.53" y3="37.27"/>
  524. <curve x1="36.76" y1="37.27" x2="31.27" y2="42.61" x3="30.85" y3="49.38"/>
  525. <close/>
  526. <move x="43.54" y="54.21"/>
  527. <curve x1="45.74" y1="54.21" x2="47.52" y2="52.42" x3="47.52" y3="50.19"/>
  528. <curve x1="47.52" y1="47.96" x2="45.74" y2="46.16" x3="43.54" y3="46.16"/>
  529. <curve x1="41.35" y1="46.16" x2="39.57" y2="47.96" x3="39.57" y3="50.19"/>
  530. <curve x1="39.57" y1="52.42" x2="41.34" y2="54.21" x3="43.54" y3="54.21"/>
  531. <move x="34.38" y="50.2"/>
  532. <curve x1="34.38" y1="45.07" x2="38.47" y2="40.93" x3="43.53" y3="40.93"/>
  533. <curve x1="48.59" y1="40.93" x2="52.68" y2="45.08" x3="52.68" y3="50.2"/>
  534. <curve x1="52.68" y1="55.32" x2="48.6" y2="59.47" x3="43.53" y3="59.47"/>
  535. <curve x1="38.47" y1="59.47" x2="34.38" y2="55.31" x3="34.38" y3="50.2"/>
  536. </path>
  537. </background>
  538. <foreground>
  539. <fillstroke/>
  540. </foreground>
  541. </shape>
  542. <shape name="Campfire" h="98.88" w="92.95" aspect="variable" strokewidth="inherit">
  543. <connections>
  544. <constraint x="0.41" y="0" perimeter="0" name="N"/>
  545. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  546. <constraint x="0.195" y="0.54" perimeter="0" name="W"/>
  547. <constraint x="0.8" y="0.53" perimeter="0" name="E"/>
  548. <constraint x="0.03" y="0.97" perimeter="0" name="SW"/>
  549. <constraint x="0.97" y="0.97" perimeter="0" name="SE"/>
  550. </connections>
  551. <background>
  552. <path>
  553. <move x="8.32" y="73.66"/>
  554. <line x="0" y="73.66"/>
  555. <line x="0" y="89.86"/>
  556. <curve x1="0" y1="94.82" x2="4.51" y2="98.88" x3="10.06" y3="98.88"/>
  557. <line x="82.89" y="98.88"/>
  558. <curve x1="88.43" y1="98.88" x2="92.95" y2="94.83" x3="92.95" y3="89.87"/>
  559. <line x="92.95" y="73.66"/>
  560. <line x="84.62" y="73.66"/>
  561. <line x="84.62" y="88.14"/>
  562. <curve x1="84.62" y1="89.96" x2="82.97" y2="91.43" x3="80.94" y3="91.43"/>
  563. <line x="11.99" y="91.43"/>
  564. <curve x1="9.95" y1="91.43" x2="8.32" y2="89.95" x3="8.32" y3="88.14"/>
  565. <line x="8.32" y="73.66"/>
  566. <close/>
  567. <move x="74.47" y="84.49"/>
  568. <line x="74.47" y="71.73"/>
  569. <line x="18.4" y="53.21"/>
  570. <line x="18.4" y="65.99"/>
  571. <close/>
  572. <move x="31.34" y="53.23"/>
  573. <curve x1="29.41" y1="51.08" x2="16.59" y2="36.43" x3="29.52" y3="23.76"/>
  574. <curve x1="40.3" y1="13.18" x2="41.87" y2="4.31" x3="38.24" y3="0"/>
  575. <curve x1="38.24" y1="0" x2="65.67" y2="11.15" x3="49.54" y3="37"/>
  576. <curve x1="46.78" y1="41.39" x2="39.88" y2="46.57" x3="43.49" y3="57.26"/>
  577. <line x="31.34" y="53.23"/>
  578. <close/>
  579. <move x="48.18" y="56.74"/>
  580. <curve x1="47.59" y1="54.57" x2="44.96" y2="49.85" x3="52.98" y3="40.45"/>
  581. <curve x1="57.27" y1="35.44" x2="58.88" y2="28.02" x3="59.27" y3="25.23"/>
  582. <curve x1="59.27" y1="25.23" x2="73.48" y2="33.28" x3="59.34" y3="52.99"/>
  583. <line x="48.18" y="56.74"/>
  584. <close/>
  585. <move x="51.2" y="59.76"/>
  586. <line x="74.47" y="52.08"/>
  587. <line x="74.47" y="64.84"/>
  588. <line x="70.52" y="66.13"/>
  589. <close/>
  590. <move x="41.68" y="77.95"/>
  591. <line x="18.4" y="85.62"/>
  592. <line x="18.4" y="72.85"/>
  593. <line x="22.36" y="71.58"/>
  594. <close/>
  595. </path>
  596. </background>
  597. <foreground>
  598. <fillstroke/>
  599. </foreground>
  600. </shape>
  601. <shape name="Campground" h="84.09" w="99.13" aspect="variable" strokewidth="inherit">
  602. <connections>
  603. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  604. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  605. <constraint x="0.285" y="0.5" perimeter="0" name="W"/>
  606. <constraint x="0.715" y="0.5" perimeter="0" name="E"/>
  607. <constraint x="0" y="1" perimeter="0" name="SW"/>
  608. <constraint x="1" y="1" perimeter="0" name="SE"/>
  609. </connections>
  610. <background>
  611. <path>
  612. <move x="87.62" y="75.66"/>
  613. <line x="49.56" y="0"/>
  614. <line x="11.5" y="75.66"/>
  615. <line x="0" y="75.66"/>
  616. <line x="0" y="84.09"/>
  617. <line x="99.13" y="84.09"/>
  618. <line x="99.13" y="75.66"/>
  619. <line x="87.62" y="75.66"/>
  620. <close/>
  621. <move x="33.4" y="75.66"/>
  622. <line x="49.56" y="44.19"/>
  623. <line x="65.72" y="75.65"/>
  624. <line x="33.4" y="75.65"/>
  625. <close/>
  626. </path>
  627. </background>
  628. <foreground>
  629. <fillstroke/>
  630. </foreground>
  631. </shape>
  632. <shape name="Canoe 1" h="87.71" w="98.87" aspect="variable" strokewidth="inherit">
  633. <connections>
  634. <constraint x="0.34" y="0" perimeter="0" name="N"/>
  635. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  636. <constraint x="0" y="0.555" perimeter="0" name="W"/>
  637. <constraint x="0.96" y="0.555" perimeter="0" name="E"/>
  638. <constraint x="0" y="1" perimeter="0" name="SW"/>
  639. <constraint x="1" y="1" perimeter="0" name="SE"/>
  640. </connections>
  641. <background>
  642. <path>
  643. <move x="33.85" y="18.55"/>
  644. <curve x1="38.93" y1="18.55" x2="43.02" y2="14.39" x3="43.02" y3="9.27"/>
  645. <curve x1="43.02" y1="4.15" x2="38.93" y2="0" x3="33.85" y3="0"/>
  646. <curve x1="28.79" y1="0" x2="24.68" y2="4.15" x3="24.68" y3="9.27"/>
  647. <curve x1="24.69" y1="14.39" x2="28.79" y2="18.55" x3="33.85" y3="18.55"/>
  648. <close/>
  649. <move x="0.02" y="69.26"/>
  650. <curve x1="2.17" y1="69.26" x2="4.23" y2="68.76" x3="6.08" y3="67.92"/>
  651. <curve x1="7.98" y1="67.03" x2="10.12" y2="66.51" x3="12.35" y3="66.51"/>
  652. <curve x1="14.58" y1="66.51" x2="16.72" y2="67.03" x3="18.61" y3="67.92"/>
  653. <curve x1="20.47" y1="68.76" x2="22.55" y2="69.25" x3="24.72" y3="69.25"/>
  654. <curve x1="26.88" y1="69.25" x2="28.95" y2="68.76" x3="30.8" y3="67.92"/>
  655. <curve x1="32.69" y1="67.03" x2="34.83" y2="66.51" x3="37.07" y3="66.51"/>
  656. <curve x1="39.3" y1="66.51" x2="41.43" y2="67.03" x3="43.34" y3="67.92"/>
  657. <curve x1="45.18" y1="68.76" x2="47.27" y2="69.25" x3="49.42" y3="69.25"/>
  658. <curve x1="51.57" y1="69.25" x2="53.66" y2="68.76" x3="55.5" y3="67.92"/>
  659. <curve x1="57.41" y1="67.03" x2="59.54" y2="66.51" x3="61.78" y3="66.51"/>
  660. <curve x1="64.01" y1="66.51" x2="66.14" y2="67.03" x3="68.04" y3="67.92"/>
  661. <curve x1="69.9" y1="68.76" x2="71.98" y2="69.25" x3="74.14" y3="69.25"/>
  662. <curve x1="76.31" y1="69.25" x2="78.37" y2="68.76" x3="80.24" y3="67.92"/>
  663. <curve x1="82.13" y1="67.03" x2="84.27" y2="66.51" x3="86.5" y3="66.51"/>
  664. <curve x1="88.41" y1="66.51" x2="90.26" y2="66.88" x3="91.94" y3="67.54"/>
  665. <curve x1="94.66" y1="64.53" x2="96.35" y2="60.52" x3="96.35" y3="56.13"/>
  666. <curve x1="96.35" y1="46.79" x2="88.87" y2="39.22" x3="79.64" y3="39.22"/>
  667. <line x="77.77" y="39.42"/>
  668. <curve x1="75.72" y1="47.85" x2="67.38" y2="48.21" x3="67.38" y3="48.21"/>
  669. <line x="29.25" y="48.21"/>
  670. <line x="26.06" y="46.31"/>
  671. <line x="33.75" y="33.26"/>
  672. <line x="42.17" y="38.18"/>
  673. <curve x1="47.21" y1="41.49" x2="49.84" y2="36.85" x3="49.84" y3="36.85"/>
  674. <line x="58.28" y="22.93"/>
  675. <curve x1="61.95" y1="16.88" x2="54.16" y2="12.03" x3="50.52" y3="18.1"/>
  676. <line x="44.61" y="27.86"/>
  677. <line x="30.56" y="20"/>
  678. <curve x1="20.83" y1="14.51" x2="16.7" y2="23.6" x3="16.7" y3="23.6"/>
  679. <line x="5.67" y="42.72"/>
  680. <curve x1="3.79" y1="46.69" x2="5.47" y2="48.4" x3="5.47" y3="48.4"/>
  681. <line x="0.02" y="48.39"/>
  682. <line x="0.02" y="69.26"/>
  683. <close/>
  684. <move x="98.87" y="87.71"/>
  685. <curve x1="96.71" y1="87.71" x2="94.64" y2="87.22" x3="92.8" y3="86.38"/>
  686. <curve x1="90.89" y1="85.49" x2="88.76" y2="84.97" x3="86.52" y3="84.97"/>
  687. <curve x1="84.29" y1="84.97" x2="82.15" y2="85.49" x3="80.26" y3="86.38"/>
  688. <curve x1="78.4" y1="87.22" x2="76.33" y2="87.71" x3="74.16" y3="87.71"/>
  689. <curve x1="72" y1="87.71" x2="69.93" y2="87.22" x3="68.06" y3="86.38"/>
  690. <curve x1="66.16" y1="85.49" x2="64.03" y2="84.97" x3="61.8" y3="84.97"/>
  691. <curve x1="59.56" y1="84.97" x2="57.43" y2="85.49" x3="55.52" y3="86.38"/>
  692. <curve x1="53.68" y1="87.22" x2="51.59" y2="87.71" x3="49.44" y3="87.71"/>
  693. <curve x1="47.29" y1="87.71" x2="45.2" y2="87.22" x3="43.36" y3="86.38"/>
  694. <curve x1="41.45" y1="85.49" x2="39.32" y2="84.97" x3="37.09" y3="84.97"/>
  695. <curve x1="34.85" y1="84.97" x2="32.7" y2="85.49" x3="30.82" y3="86.38"/>
  696. <curve x1="28.97" y1="87.22" x2="26.89" y2="87.71" x3="24.74" y3="87.71"/>
  697. <curve x1="22.57" y1="87.71" x2="20.5" y2="87.22" x3="18.63" y3="86.38"/>
  698. <curve x1="16.74" y1="85.49" x2="14.6" y2="84.97" x3="12.37" y3="84.97"/>
  699. <curve x1="10.14" y1="84.97" x2="8" y2="85.49" x3="6.1" y3="86.38"/>
  700. <curve x1="4.23" y1="87.23" x2="2.15" y2="87.71" x3="0" y3="87.71"/>
  701. <line x="0" y="78.49"/>
  702. <curve x1="2.16" y1="78.49" x2="4.23" y2="77.99" x3="6.08" y3="77.15"/>
  703. <curve x1="7.98" y1="76.26" x2="10.12" y2="75.74" x3="12.35" y3="75.74"/>
  704. <curve x1="14.58" y1="75.74" x2="16.72" y2="76.26" x3="18.61" y3="77.15"/>
  705. <curve x1="20.47" y1="77.99" x2="22.55" y2="78.49" x3="24.72" y3="78.49"/>
  706. <curve x1="26.88" y1="78.49" x2="28.95" y2="77.99" x3="30.8" y3="77.15"/>
  707. <curve x1="32.69" y1="76.26" x2="34.83" y2="75.74" x3="37.07" y3="75.74"/>
  708. <curve x1="39.3" y1="75.74" x2="41.43" y2="76.26" x3="43.34" y3="77.15"/>
  709. <curve x1="45.18" y1="77.99" x2="47.27" y2="78.49" x3="49.42" y3="78.49"/>
  710. <curve x1="51.57" y1="78.49" x2="53.66" y2="77.99" x3="55.5" y3="77.15"/>
  711. <curve x1="57.41" y1="76.26" x2="59.54" y2="75.74" x3="61.78" y3="75.74"/>
  712. <curve x1="64.01" y1="75.74" x2="66.14" y2="76.26" x3="68.04" y3="77.15"/>
  713. <curve x1="69.9" y1="77.99" x2="71.98" y2="78.49" x3="74.14" y3="78.49"/>
  714. <curve x1="76.31" y1="78.49" x2="78.37" y2="77.99" x3="80.24" y3="77.15"/>
  715. <curve x1="82.13" y1="76.26" x2="84.27" y2="75.74" x3="86.5" y3="75.74"/>
  716. <curve x1="88.74" y1="75.74" x2="90.87" y2="76.26" x3="92.78" y3="77.15"/>
  717. <curve x1="94.62" y1="77.99" x2="96.7" y2="78.49" x3="98.85" y3="78.49"/>
  718. <line x="98.85" y="87.71"/>
  719. <close/>
  720. </path>
  721. </background>
  722. <foreground>
  723. <fillstroke/>
  724. </foreground>
  725. </shape>
  726. <shape name="Canoe 2" h="49.49" w="103.33" aspect="variable" strokewidth="inherit">
  727. <connections>
  728. <constraint x="0.5" y="0.92" perimeter="0" name="S"/>
  729. <constraint x="0.02" y="0.82" perimeter="0" name="W"/>
  730. <constraint x="0.98" y="0.82" perimeter="0" name="E"/>
  731. <constraint x="0.385" y="0.335" perimeter="0" name="NW"/>
  732. <constraint x="0.06" y="0.94" perimeter="0" name="SW"/>
  733. <constraint x="0.77" y="0.335" perimeter="0" name="NE"/>
  734. <constraint x="0.94" y="0.94" perimeter="0" name="SE"/>
  735. </connections>
  736. <background>
  737. <path>
  738. <move x="79.94" y="0"/>
  739. <curve x1="77.31" y1="0" x2="75.17" y2="2.14" x3="75.17" y3="4.81"/>
  740. <curve x1="75.17" y1="7.48" x2="77.31" y2="9.64" x3="79.94" y3="9.64"/>
  741. <curve x1="82.57" y1="9.64" x2="84.71" y2="7.48" x3="84.71" y3="4.81"/>
  742. <curve x1="84.71" y1="2.14" x2="82.57" y2="0" x3="79.94" y3="0"/>
  743. <close/>
  744. <move x="39.92" y="0"/>
  745. <curve x1="37.29" y1="0" x2="35.15" y2="2.14" x3="35.15" y3="4.81"/>
  746. <curve x1="35.15" y1="7.48" x2="37.29" y2="9.64" x3="39.92" y3="9.64"/>
  747. <curve x1="42.55" y1="9.64" x2="44.69" y2="7.48" x3="44.69" y3="4.81"/>
  748. <curve x1="44.7" y1="2.14" x2="42.56" y2="0" x3="39.92" y3="0"/>
  749. <close/>
  750. <move x="100.38" y="32.77"/>
  751. <curve x1="100.38" y1="32.77" x2="99.08" y2="27.26" x3="94.3" y3="22.32"/>
  752. <curve x1="94.3" y1="22.32" x2="94" y2="28.99" x3="70.23" y3="31.44"/>
  753. <curve x1="69.39" y1="30.44" x2="68.84" y2="28.74" x3="72.34" y3="27.05"/>
  754. <line x="79.62" y="29.57"/>
  755. <curve x1="79.62" y1="29.57" x2="81.14" y2="29.46" x3="80.49" y3="27.82"/>
  756. <line x="75.81" y="25.17"/>
  757. <curve x1="75.81" y1="25.17" x2="74.83" y2="23.63" x3="75.7" y3="23.09"/>
  758. <curve x1="76.57" y1="22.54" x2="77.33" y2="21.32" x3="77.33" y3="21.32"/>
  759. <curve x1="77.33" y1="21.32" x2="78.52" y2="20.55" x3="79.83" y3="20.99"/>
  760. <curve x1="81.14" y1="21.43" x2="82" y2="20.54" x3="82.66" y3="19.89"/>
  761. <line x="86.47" y="15.91"/>
  762. <curve x1="86.47" y1="15.91" x2="88.42" y2="14.27" x3="89.29" y3="14.39"/>
  763. <curve x1="90.16" y1="14.49" x2="89.5" y2="11.84" x3="89.5" y3="11.84"/>
  764. <curve x1="89.5" y1="11.84" x2="85.48" y2="13.72" x3="83.3" y3="15.59"/>
  765. <curve x1="83.3" y1="15.59" x2="81.68" y2="17.02" x3="80.48" y3="15.26"/>
  766. <curve x1="80.48" y1="15.26" x2="76.35" y2="10.74" x3="75.04" y3="10.19"/>
  767. <curve x1="75.04" y1="10.19" x2="73.62" y2="8.88" x3="71.78" y3="10.54"/>
  768. <curve x1="71.78" y1="10.54" x2="66.23" y2="14.04" x3="62.21" y3="20.54"/>
  769. <curve x1="62.21" y1="20.54" x2="57.91" y2="27.22" x3="58.74" y3="32.19"/>
  770. <curve x1="56.52" y1="32.27" x2="54.16" y2="32.31" x3="51.66" y3="32.32"/>
  771. <curve x1="42.64" y1="32.28" x2="35.53" y2="31.8" x3="29.93" y3="31.06"/>
  772. <curve x1="29.29" y1="30.04" x2="29.21" y2="28.54" x3="32.31" y3="27.04"/>
  773. <line x="39.59" y="29.56"/>
  774. <curve x1="39.59" y1="29.56" x2="41.11" y2="29.45" x3="40.46" y3="27.81"/>
  775. <line x="35.78" y="25.16"/>
  776. <curve x1="35.78" y1="25.16" x2="34.8" y2="23.62" x3="35.67" y3="23.08"/>
  777. <curve x1="36.54" y1="22.53" x2="37.3" y2="21.31" x3="37.3" y3="21.31"/>
  778. <curve x1="37.3" y1="21.31" x2="38.49" y2="20.54" x3="39.8" y3="20.98"/>
  779. <curve x1="41.11" y1="21.42" x2="41.97" y2="20.53" x3="42.63" y3="19.88"/>
  780. <line x="46.44" y="15.9"/>
  781. <curve x1="46.44" y1="15.9" x2="48.39" y2="14.26" x3="49.26" y3="14.38"/>
  782. <curve x1="50.13" y1="14.48" x2="49.47" y2="11.83" x3="49.47" y3="11.83"/>
  783. <curve x1="49.47" y1="11.83" x2="45.45" y2="13.71" x3="43.27" y3="15.58"/>
  784. <curve x1="43.27" y1="15.58" x2="41.65" y2="17.01" x3="40.45" y3="15.25"/>
  785. <curve x1="40.45" y1="15.25" x2="36.32" y2="10.73" x3="35.01" y3="10.18"/>
  786. <curve x1="35.01" y1="10.18" x2="33.59" y2="8.87" x3="31.75" y3="10.53"/>
  787. <curve x1="31.75" y1="10.53" x2="26.2" y2="14.03" x3="22.18" y3="20.53"/>
  788. <curve x1="22.18" y1="20.53" x2="19.53" y2="24.64" x3="18.79" y3="28.81"/>
  789. <curve x1="9.18" y1="25.92" x2="9.02" y2="22.3" x3="9.02" y3="22.3"/>
  790. <curve x1="4.23" y1="27.24" x2="2.93" y2="32.75" x3="2.93" y3="32.75"/>
  791. <curve x1="0" y1="41.23" x2="7.39" y2="45.84" x3="7.39" y3="45.84"/>
  792. <curve x1="13.04" y1="49.49" x2="15.81" y2="43.59" x3="15.81" y3="43.59"/>
  793. <curve x1="17.06" y1="45.39" x2="19.3" y2="47.95" x3="21.84" y3="47.95"/>
  794. <curve x1="24.34" y1="47.95" x2="26.52" y2="45.38" x3="27.78" y3="43.62"/>
  795. <curve x1="29.05" y1="45.33" x2="31.15" y2="47.8" x3="33.62" y3="47.8"/>
  796. <curve x1="36.25" y1="47.8" x2="38.48" y2="45.27" x3="39.69" y3="43.34"/>
  797. <curve x1="40.95" y1="45.17" x2="43.11" y2="47.8" x3="45.66" y3="47.8"/>
  798. <curve x1="48.21" y1="47.8" x2="50.37" y2="45.28" x3="51.62" y3="43.46"/>
  799. <curve x1="52.87" y1="45.27" x2="55.01" y2="47.87" x3="57.57" y3="47.87"/>
  800. <curve x1="60.08" y1="47.87" x2="62.21" y2="45.39" x3="63.47" y3="43.63"/>
  801. <curve x1="64.74" y1="45.38" x2="66.86" y2="47.94" x3="69.36" y3="47.94"/>
  802. <curve x1="72" y1="47.94" x2="74.26" y2="45.36" x3="75.48" y3="43.42"/>
  803. <curve x1="76.73" y1="45.23" x2="78.91" y2="47.86" x3="81.47" y3="47.86"/>
  804. <curve x1="83.96" y1="47.86" x2="86.17" y2="45.33" x3="87.44" y3="43.6"/>
  805. <curve x1="87.44" y1="43.6" x2="90.22" y2="49.48" x3="95.88" y3="45.83"/>
  806. <curve x1="95.93" y1="45.86" x2="103.33" y2="41.25" x3="100.38" y3="32.77"/>
  807. <close/>
  808. </path>
  809. </background>
  810. <foreground>
  811. <fillstroke/>
  812. </foreground>
  813. </shape>
  814. <shape name="Chair Lift" h="98.4" w="84.36" aspect="variable" strokewidth="inherit">
  815. <connections>
  816. <constraint x="0.39" y="0" perimeter="0" name="N"/>
  817. <constraint x="0.5" y="0.88" perimeter="0" name="S"/>
  818. <constraint x="0.02" y="0.5" perimeter="0" name="W"/>
  819. <constraint x="0.59" y="0.5" perimeter="0" name="E"/>
  820. <constraint x="0.12" y="0.18" perimeter="0" name="NW"/>
  821. <constraint x="0.08" y="1" perimeter="0" name="SW"/>
  822. <constraint x="0.99" y="0.67" perimeter="0" name="SE"/>
  823. </connections>
  824. <background>
  825. <path>
  826. <move x="78.57" y="74.14"/>
  827. <curve x1="82.33" y1="72.91" x2="84.36" y2="68.9" x3="83.11" y3="65.16"/>
  828. <line x="80.39" y="66.03"/>
  829. <curve x1="81.13" y1="68.28" x2="79.9" y2="70.68" x3="77.66" y3="71.43"/>
  830. <line x="6.06" y="95.7"/>
  831. <line x="6.98" y="98.4"/>
  832. <line x="78.57" y="74.14"/>
  833. <close/>
  834. <move x="12.63" y="32.2"/>
  835. <curve x1="16.56" y1="31.05" x2="18.81" y2="26.94" x3="17.66" y3="23.02"/>
  836. <curve x1="16.52" y1="19.1" x2="12.38" y2="16.86" x3="8.45" y3="18.01"/>
  837. <curve x1="4.51" y1="19.15" x2="2.24" y2="23.27" x3="3.4" y3="27.19"/>
  838. <curve x1="4.55" y1="31.1" x2="8.67" y2="33.35" x3="12.63" y3="32.2"/>
  839. <move x="9.59" y="42.46"/>
  840. <curve x1="5.67" y1="35.02" x2="16.92" y2="29" x3="21.06" y3="36.21"/>
  841. <line x="29.15" y="51.48"/>
  842. <line x="44.52" y="47.14"/>
  843. <curve x1="47.06" y1="46.42" x2="50.57" y2="49.18" x3="50.57" y3="52.43"/>
  844. <line x="50.66" y="74.19"/>
  845. <curve x1="50.68" y1="79.59" x2="42.61" y2="79.61" x3="42.61" y3="74.14"/>
  846. <curve x1="42.6" y1="69.08" x2="42.46" y2="58.28" x3="42.46" y3="58.28"/>
  847. <line x="26.41" y="63.07"/>
  848. <curve x1="22.91" y1="64.08" x2="20" y2="62.34" x3="18.62" y3="59.76"/>
  849. <line x="9.59" y="42.46"/>
  850. <close/>
  851. <move x="34.45" y="45.9"/>
  852. <line x="34.45" y="0"/>
  853. <line x="31.23" y="0"/>
  854. <line x="31.23" y="46.79"/>
  855. <line x="34.45" y="45.9"/>
  856. <close/>
  857. <move x="2.21" y="52.38"/>
  858. <curve x1="0" y1="48.06" x2="5.69" y2="45.19" x3="7.9" y3="49.51"/>
  859. <line x="14.84" y="63.04"/>
  860. <curve x1="16.35" y1="65.84" x2="19.3" y2="67.74" x3="22.7" y3="67.74"/>
  861. <curve x1="23.76" y1="67.74" x2="24.75" y2="67.47" x3="25.72" y3="67.27"/>
  862. <line x="34.47" y="64.71"/>
  863. <curve x1="39.11" y1="63.32" x2="40.91" y2="69.41" x3="36.23" y3="70.77"/>
  864. <line x="27.02" y="73.44"/>
  865. <curve x1="25.65" y1="73.86" x2="24.16" y2="74.08" x3="22.63" y3="74.08"/>
  866. <curve x1="16.71" y1="74.08" x2="11.59" y2="70.75" x3="9.06" y3="65.87"/>
  867. <line x="2.21" y="52.38"/>
  868. <close/>
  869. </path>
  870. </background>
  871. <foreground>
  872. <fillstroke/>
  873. </foreground>
  874. </shape>
  875. <shape name="Climbing" h="99.3" w="99.41" aspect="variable" strokewidth="inherit">
  876. <connections>
  877. <constraint x="0.38" y="0" perimeter="0" name="N"/>
  878. <constraint x="0.5" y="0.98" perimeter="0" name="S"/>
  879. <constraint x="0.105" y="0.5" perimeter="0" name="W"/>
  880. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  881. <constraint x="0.15" y="0.12" perimeter="0" name="NW"/>
  882. <constraint x="0.04" y="0.99" perimeter="0" name="SW"/>
  883. <constraint x="1" y="0.04" perimeter="0" name="NE"/>
  884. <constraint x="0.99" y="0.96" perimeter="0" name="SE"/>
  885. </connections>
  886. <background>
  887. <path>
  888. <move x="11.55" y="42.39"/>
  889. <curve x1="11.1" y1="43.31" x2="10.78" y2="44.33" x3="10.6" y3="45.42"/>
  890. <curve x1="10.53" y1="45.97" x2="10.47" y2="46.51" x3="10.47" y3="47.06"/>
  891. <line x="10.87" y="72.07"/>
  892. <line x="2.19" y="90.67"/>
  893. <curve x1="1.89" y1="91.22" x2="1.67" y2="91.86" x3="1.57" y3="92.53"/>
  894. <curve x1="1.1" y1="95.61" x2="3.22" y2="98.46" x3="6.31" y3="98.93"/>
  895. <curve x1="8.7" y1="99.3" x2="11" y2="98.09" x3="12.1" y3="96.08"/>
  896. <line x="21.65" y="75.73"/>
  897. <curve x1="21.85" y1="75.26" x2="22.02" y2="74.76" x3="22.1" y3="74.22"/>
  898. <curve x1="22.12" y1="73.97" x2="22.15" y2="73.7" x3="22.15" y3="73.45"/>
  899. <line x="22.08" y="58"/>
  900. <line x="36.74" y="64.37"/>
  901. <line x="39.11" y="79.48"/>
  902. <curve x1="39.58" y1="81.69" x2="41.4" y2="83.45" x3="43.77" y3="83.82"/>
  903. <curve x1="46.86" y1="84.27" x2="49.73" y2="82.16" x3="50.2" y3="79.1"/>
  904. <curve x1="50.27" y1="78.58" x2="50.27" y2="78.06" x3="50.22" y3="77.56"/>
  905. <line x="47.33" y="59.34"/>
  906. <curve x1="46.98" y1="57.58" x2="45.81" y2="56.06" x3="44.16" y3="55.29"/>
  907. <line x="31.04" y="49.48"/>
  908. <line x="39.39" y="35.01"/>
  909. <line x="43.53" y="40.25"/>
  910. <curve x1="43.95" y1="40.72" x2="44.5" y2="41.12" x3="45.13" y3="41.37"/>
  911. <line x="60.92" y="45.96"/>
  912. <curve x1="63.01" y1="46.41" x2="65.16" y2="45.31" x3="65.98" y3="43.3"/>
  913. <curve x1="66.9" y1="41.02" x2="65.8" y2="38.44" x3="63.54" y3="37.52"/>
  914. <curve x1="63.47" y1="37.5" x2="63.39" y2="37.47" x3="63.32" y3="37.45"/>
  915. <line x="49.6" y="33.43"/>
  916. <line x="39.28" y="21.1"/>
  917. <curve x1="37.73" y1="19.46" x2="35.66" y2="18.3" x3="33.27" y3="17.92"/>
  918. <curve x1="29.08" y1="17.3" x2="25.12" y2="19.28" x3="23.02" y3="22.66"/>
  919. <line x="11.55" y="42.39"/>
  920. <close/>
  921. <move x="56.83" y="78.24"/>
  922. <line x="55.83" y="85.73"/>
  923. <line x="28.68" y="92.31"/>
  924. <line x="28.93" y="96.95"/>
  925. <line x="95.17" y="96.95"/>
  926. <curve x1="97.51" y1="96.95" x2="99.41" y2="95.06" x3="99.41" y3="92.73"/>
  927. <line x="99.33" y="3.9"/>
  928. <line x="90.25" y="1.79"/>
  929. <line x="85.04" y="25.14"/>
  930. <line x="76.34" y="28.79"/>
  931. <line x="68.61" y="50.33"/>
  932. <line x="75.94" y="66.8"/>
  933. <line x="73.87" y="73.13"/>
  934. <line x="56.83" y="78.24"/>
  935. <close/>
  936. <move x="38.38" y="16.83"/>
  937. <curve x1="43.04" y1="16.83" x2="46.83" y2="13.06" x3="46.83" y3="8.42"/>
  938. <curve x1="46.83" y1="3.78" x2="43.04" y2="0" x3="38.38" y3="0"/>
  939. <curve x1="33.72" y1="0" x2="29.93" y2="3.77" x3="29.93" y3="8.41"/>
  940. <curve x1="29.93" y1="13.06" x2="33.72" y2="16.83" x3="38.38" y3="16.83"/>
  941. <close/>
  942. <move x="21.57" y="18.14"/>
  943. <curve x1="22.22" y1="17" x2="21.84" y2="15.51" x3="20.67" y3="14.86"/>
  944. <line x="16.58" y="12.48"/>
  945. <curve x1="15.41" y1="11.83" x2="13.94" y2="12.21" x3="13.26" y3="13.37"/>
  946. <line x="0.65" y="35.04"/>
  947. <curve x1="0" y1="36.18" x2="0.38" y2="37.65" x3="1.55" y3="38.32"/>
  948. <line x="5.67" y="40.68"/>
  949. <curve x1="6.82" y1="41.35" x2="8.29" y2="40.95" x3="8.96" y3="39.81"/>
  950. <line x="21.57" y="18.14"/>
  951. <close/>
  952. </path>
  953. </background>
  954. <foreground>
  955. <fillstroke/>
  956. </foreground>
  957. </shape>
  958. <shape name="Cross Country Skiing 1" h="94.12" w="98.87" aspect="variable" strokewidth="inherit">
  959. <connections>
  960. <constraint x="0.5" y="0.14" perimeter="0" name="N"/>
  961. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  962. <constraint x="0" y="0.59" perimeter="0" name="W"/>
  963. <constraint x="0.9" y="0.5" perimeter="0" name="E"/>
  964. <constraint x="0" y="0.35" perimeter="0" name="NW"/>
  965. <constraint x="0.16" y="1" perimeter="0" name="SW"/>
  966. <constraint x="0.74" y="0" perimeter="0" name="NE"/>
  967. <constraint x="0.98" y="0.98" perimeter="0" name="SE"/>
  968. </connections>
  969. <background>
  970. <path>
  971. <move x="95.78" y="86.32"/>
  972. <curve x1="95.77" y1="88.89" x2="93.67" y2="90.96" x3="91.14" y3="90.95"/>
  973. <line x="15.73" y="90.95"/>
  974. <line x="15.73" y="94.1"/>
  975. <line x="91.13" y="94.1"/>
  976. <curve x1="95.38" y1="94.12" x2="98.85" y2="90.68" x3="98.87" y3="86.36"/>
  977. <line x="95.78" y="86.32"/>
  978. <close/>
  979. <move x="73.24" y="15.33"/>
  980. <curve x1="77.42" y1="15.33" x2="80.81" y2="11.89" x3="80.81" y3="7.66"/>
  981. <curve x1="80.81" y1="3.43" x2="77.42" y2="0" x3="73.24" y3="0"/>
  982. <curve x1="69.06" y1="0" x2="65.66" y2="3.43" x3="65.66" y3="7.66"/>
  983. <curve x1="65.66" y1="11.89" x2="69.05" y2="15.33" x3="73.24" y3="15.33"/>
  984. <close/>
  985. <move x="25.21" y="81.3"/>
  986. <line x="0" y="55.72"/>
  987. <line x="0.01" y="60.19"/>
  988. <line x="23.47" y="84.01"/>
  989. <curve x1="26.17" y1="86.96" x2="30.78" y2="83.55" x3="30.78" y3="83.55"/>
  990. <line x="28.57" y="81.15"/>
  991. <curve x1="28.57" y1="81.15" x2="26.39" y2="82.6" x3="25.26" y3="81.36"/>
  992. <line x="25.21" y="81.3"/>
  993. <close/>
  994. <move x="95.76" y="25.62"/>
  995. <line x="98.7" y="26.87"/>
  996. <line x="69.41" y="86.5"/>
  997. <line x="66.17" y="86.5"/>
  998. <close/>
  999. <move x="47.15" y="21.02"/>
  1000. <line x="35.37" y="34.78"/>
  1001. <curve x1="34.68" y1="35.65" x2="33.61" y2="36.19" x3="32.43" y3="36.19"/>
  1002. <curve x1="30.32" y1="36.19" x2="28.62" y2="34.47" x3="28.62" y3="32.34"/>
  1003. <curve x1="28.62" y1="31.19" x2="29.11" y2="30.16" x3="29.91" y3="29.45"/>
  1004. <line x="42.62" y="14.65"/>
  1005. <curve x1="43.32" y1="13.8" x2="44.38" y2="13.25" x3="45.56" y3="13.25"/>
  1006. <line x="63.96" y="13.24"/>
  1007. <curve x1="65.31" y1="13.24" x2="66.52" y2="13.79" x3="67.42" y3="14.66"/>
  1008. <line x="79.15" y="26.52"/>
  1009. <line x="88.87" y="16.71"/>
  1010. <curve x1="89.55" y1="16.13" x2="90.44" y2="15.78" x3="91.4" y3="15.78"/>
  1011. <curve x1="93.58" y1="15.78" x2="95.34" y2="17.57" x3="95.34" y3="19.76"/>
  1012. <curve x1="95.34" y1="20.72" x2="95.02" y2="21.59" x3="94.46" y3="22.28"/>
  1013. <line x="82.71" y="34.23"/>
  1014. <curve x1="79.15" y1="37.82" x2="76.29" y2="34.77" x3="76.29" y3="34.77"/>
  1015. <line x="69.1" y="27.46"/>
  1016. <line x="57.86" y="40.61"/>
  1017. <line x="68.16" y="51.03"/>
  1018. <curve x1="68.16" y1="51.03" x2="70.33" y2="53.07" x3="69.09" y3="57.13"/>
  1019. <line x="63.32" y="83.15"/>
  1020. <curve x1="62.86" y1="85.41" x2="60.88" y2="87.11" x3="58.52" y3="87.11"/>
  1021. <curve x1="55.81" y1="87.11" x2="53.62" y2="84.89" x3="53.62" y3="82.16"/>
  1022. <curve x1="53.62" y1="81.73" x2="53.66" y2="81.31" x3="53.78" y3="80.92"/>
  1023. <line x="58.52" y="59.57"/>
  1024. <line x="46.82" y="48.05"/>
  1025. <line x="36.75" y="59.4"/>
  1026. <curve x1="36.75" y1="59.4" x2="35.12" y2="61.44" x3="30.8" y3="61.28"/>
  1027. <line x="10.39" y="61.31"/>
  1028. <curve x1="8.11" y1="61.36" x2="6.04" y2="59.77" x3="5.52" y3="57.44"/>
  1029. <curve x1="4.92" y1="54.77" x2="6.55" y2="52.16" x3="9.19" y3="51.56"/>
  1030. <curve x1="9.6" y1="51.46" x2="10.02" y2="51.43" x3="10.42" y3="51.44"/>
  1031. <line x="27.98" y="51.49"/>
  1032. <line x="53.94" y="21.05"/>
  1033. <line x="47.15" y="21.02"/>
  1034. <close/>
  1035. </path>
  1036. </background>
  1037. <foreground>
  1038. <fillstroke/>
  1039. <rect x="0.22" y="33.06" w="25.8" h="3.12"/>
  1040. <fillstroke/>
  1041. </foreground>
  1042. </shape>
  1043. <shape name="Cross Country Skiing 2" h="92.25" w="99.94" aspect="variable" strokewidth="inherit">
  1044. <connections>
  1045. <constraint x="0.5" y="0.2" perimeter="0" name="N"/>
  1046. <constraint x="0.5" y="0.94" perimeter="0" name="S"/>
  1047. <constraint x="0.245" y="0.5" perimeter="0" name="W"/>
  1048. <constraint x="0.905" y="0.5" perimeter="0" name="E"/>
  1049. <constraint x="0" y="0.94" perimeter="0" name="SW"/>
  1050. <constraint x="0.74" y="0" perimeter="0" name="NE"/>
  1051. <constraint x="0.99" y="0.8" perimeter="0" name="SE"/>
  1052. </connections>
  1053. <background>
  1054. <path>
  1055. <move x="73.76" y="15.33"/>
  1056. <curve x1="77.98" y1="15.33" x2="81.38" y2="11.89" x3="81.38" y3="7.67"/>
  1057. <curve x1="81.37" y1="3.43" x2="77.97" y2="0" x3="73.76" y3="0"/>
  1058. <curve x1="69.57" y1="0" x2="66.16" y2="3.44" x3="66.16" y3="7.67"/>
  1059. <curve x1="66.15" y1="11.89" x2="69.57" y2="15.33" x3="73.76" y3="15.33"/>
  1060. <close/>
  1061. <move x="99.24" y="71.75"/>
  1062. <curve x1="98.45" y1="70.16" x2="96.56" y2="70.74" x3="96.56" y3="70.74"/>
  1063. <curve x1="93.21" y1="74.02" x2="87.48" y2="73.72" x3="87.48" y3="73.72"/>
  1064. <line x="84.36" y="73.72"/>
  1065. <line x="91.82" y="39.03"/>
  1066. <line x="93.62" y="39.33"/>
  1067. <line x="94.41" y="34.35"/>
  1068. <line x="91.15" y="33.46"/>
  1069. <line x="63.39" y="13.83"/>
  1070. <curve x1="63.39" y1="13.83" x2="60.73" y2="11.76" x3="57.66" y3="14.14"/>
  1071. <line x="36.73" y="26.18"/>
  1072. <line x="27.25" y="40.09"/>
  1073. <line x="28.11" y="40.63"/>
  1074. <line x="9.1" y="72.54"/>
  1075. <line x="6.62" y="71.03"/>
  1076. <line x="5.47" y="72.89"/>
  1077. <line x="7.97" y="74.42"/>
  1078. <line x="6.4" y="77.05"/>
  1079. <line x="8.52" y="78.34"/>
  1080. <line x="10.09" y="75.71"/>
  1081. <line x="12.63" y="77.26"/>
  1082. <line x="13.78" y="75.4"/>
  1083. <line x="11.22" y="73.83"/>
  1084. <line x="30.21" y="41.97"/>
  1085. <line x="30.9" y="42.41"/>
  1086. <line x="42.16" y="30.26"/>
  1087. <line x="51.74" y="25.78"/>
  1088. <curve x1="51.74" y1="25.78" x2="45.22" y2="35.63" x3="41.86" y3="49.15"/>
  1089. <line x="35.4" y="73.72"/>
  1090. <line x="31.21" y="73.72"/>
  1091. <line x="29.63" y="77.42"/>
  1092. <line x="34.43" y="77.42"/>
  1093. <line x="32.97" y="82.97"/>
  1094. <line x="1.58" y="82.97"/>
  1095. <line x="0" y="86.66"/>
  1096. <line x="61.71" y="86.66"/>
  1097. <curve x1="70.31" y1="86.37" x2="69.61" y2="80.98" x3="69.61" y3="80.98"/>
  1098. <curve x1="68.82" y1="79.4" x2="66.95" y2="79.99" x3="66.95" y3="79.99"/>
  1099. <curve x1="63.58" y1="83.28" x2="57.86" y2="82.97" x3="57.86" y3="82.97"/>
  1100. <line x="38.67" y="82.97"/>
  1101. <line x="41.04" y="77.42"/>
  1102. <line x="81.05" y="77.42"/>
  1103. <line x="78.97" y="87.13"/>
  1104. <line x="76.08" y="86.48"/>
  1105. <line x="75.58" y="88.63"/>
  1106. <line x="78.5" y="89.29"/>
  1107. <line x="77.97" y="91.73"/>
  1108. <line x="80.37" y="92.25"/>
  1109. <line x="80.89" y="89.84"/>
  1110. <line x="83.75" y="90.48"/>
  1111. <line x="84.25" y="88.33"/>
  1112. <line x="81.35" y="87.68"/>
  1113. <line x="83.55" y="77.42"/>
  1114. <line x="91.33" y="77.42"/>
  1115. <curve x1="99.94" y1="77.11" x2="99.24" y2="71.75" x3="99.24" y3="71.75"/>
  1116. <close/>
  1117. <move x="42.63" y="73.72"/>
  1118. <line x="52.53" y="50.65"/>
  1119. <line x="64.87" y="55.73"/>
  1120. <line x="66.01" y="73.72"/>
  1121. <line x="42.63" y="73.72"/>
  1122. <close/>
  1123. <move x="81.84" y="73.72"/>
  1124. <line x="71.36" y="73.72"/>
  1125. <line x="73.37" y="52.54"/>
  1126. <line x="57.76" y="41.2"/>
  1127. <curve x1="57.76" y1="41.2" x2="57.28" y2="40.5" x3="58.07" y3="40.1"/>
  1128. <line x="70.41" y="28.77"/>
  1129. <line x="89.46" y="38.27"/>
  1130. <line x="81.84" y="73.72"/>
  1131. <close/>
  1132. </path>
  1133. </background>
  1134. <foreground>
  1135. <fillstroke/>
  1136. </foreground>
  1137. </shape>
  1138. <shape name="Cycling" h="84.79" w="98.66" aspect="variable" strokewidth="inherit">
  1139. <connections>
  1140. <constraint x="0.6" y="0" perimeter="0" name="N"/>
  1141. <constraint x="0.5" y="0.83" perimeter="0" name="S"/>
  1142. <constraint x="0.27" y="0.35" perimeter="0" name="W"/>
  1143. <constraint x="0.78" y="0.35" perimeter="0" name="E"/>
  1144. <constraint x="0.2" y="1" perimeter="0" name="SW"/>
  1145. <constraint x="0.8" y="1" perimeter="0" name="SE"/>
  1146. </connections>
  1147. <background>
  1148. <path>
  1149. <move x="19.95" y="80.86"/>
  1150. <curve x1="28.93" y1="80.86" x2="36.23" y2="73.47" x3="36.23" y3="64.35"/>
  1151. <curve x1="36.23" y1="55.26" x2="28.94" y2="47.87" x3="19.95" y3="47.87"/>
  1152. <curve x1="10.99" y1="47.87" x2="3.7" y2="55.26" x3="3.7" y3="64.35"/>
  1153. <curve x1="3.7" y1="73.48" x2="10.99" y2="80.86" x3="19.95" y3="80.86"/>
  1154. <close/>
  1155. <move x="0" y="64.36"/>
  1156. <curve x1="0" y1="53.19" x2="8.95" y2="44.15" x3="19.95" y3="44.15"/>
  1157. <curve x1="30.98" y1="44.15" x2="39.93" y2="53.19" x3="39.93" y3="64.36"/>
  1158. <curve x1="39.93" y1="75.54" x2="30.99" y2="84.59" x3="19.95" y3="84.59"/>
  1159. <curve x1="8.95" y1="84.59" x2="0" y2="75.54" x3="0" y3="64.36"/>
  1160. <close/>
  1161. <move x="78.71" y="81.05"/>
  1162. <curve x1="87.67" y1="81.05" x2="94.96" y2="73.67" x3="94.96" y3="64.56"/>
  1163. <curve x1="94.96" y1="55.45" x2="87.67" y2="48.08" x3="78.71" y3="48.08"/>
  1164. <curve x1="69.73" y1="48.08" x2="62.44" y2="55.46" x3="62.44" y3="64.56"/>
  1165. <curve x1="62.44" y1="73.68" x2="69.73" y2="81.05" x3="78.71" y3="81.05"/>
  1166. <close/>
  1167. <move x="58.74" y="64.56"/>
  1168. <curve x1="58.74" y1="53.38" x2="67.69" y2="44.34" x3="78.71" y3="44.34"/>
  1169. <curve x1="89.71" y1="44.34" x2="98.66" y2="53.38" x3="98.66" y3="64.56"/>
  1170. <curve x1="98.66" y1="75.74" x2="89.71" y2="84.79" x3="78.71" y3="84.79"/>
  1171. <curve x1="67.69" y1="84.79" x2="58.74" y2="75.74" x3="58.74" y3="64.56"/>
  1172. <close/>
  1173. <move x="58.79" y="15.2"/>
  1174. <curve x1="62.93" y1="15.2" x2="66.3" y2="11.81" x3="66.3" y3="7.61"/>
  1175. <curve x1="66.3" y1="3.41" x2="62.93" y2="0" x3="58.79" y3="0"/>
  1176. <curve x1="54.65" y1="0" x2="51.28" y2="3.41" x3="51.28" y3="7.61"/>
  1177. <curve x1="51.28" y1="11.81" x2="54.65" y2="15.2" x3="58.79" y3="15.2"/>
  1178. <close/>
  1179. <move x="59.1" y="33.66"/>
  1180. <curve x1="58.01" y1="33.68" x2="56.84" y2="33.13" x3="55.98" y3="31.75"/>
  1181. <line x="51.11" y="24.02"/>
  1182. <line x="41.05" y="34.12"/>
  1183. <line x="50.38" y="39.09"/>
  1184. <curve x1="54.21" y1="40.95" x2="53.64" y2="44.37" x3="53.64" y3="44.37"/>
  1185. <line x="53.64" y="65.77"/>
  1186. <curve x1="53.64" y1="68.19" x2="51.71" y2="70.17" x3="49.32" y3="70.17"/>
  1187. <curve x1="46.93" y1="70.17" x2="45" y2="68.19" x3="45" y3="65.77"/>
  1188. <line x="45" y="48.64"/>
  1189. <line x="28.82" y="39.53"/>
  1190. <curve x1="26.89" y1="38.44" x2="25.58" y2="36.35" x3="25.58" y3="33.97"/>
  1191. <curve x1="25.58" y1="32.33" x2="26.18" y2="30.83" x3="27.2" y3="29.7"/>
  1192. <line x="43.06" y="13.59"/>
  1193. <curve x1="45.03" y1="11.33" x2="47.78" y2="11.69" x3="47.78" y3="11.69"/>
  1194. <curve x1="51.1" y1="11.69" x2="52.85" y2="14.63" x3="52.85" y3="14.63"/>
  1195. <line x="61.09" y="27.72"/>
  1196. <line x="73.61" y="27.7"/>
  1197. <curve x1="78.11" y1="27.7" x2="78.11" y2="33.65" x3="73.61" y3="33.65"/>
  1198. <line x="59.1" y="33.65"/>
  1199. <close/>
  1200. </path>
  1201. </background>
  1202. <foreground>
  1203. <fillstroke/>
  1204. </foreground>
  1205. </shape>
  1206. <shape name="Dirt Bike" h="94.75" w="99.25" aspect="variable" strokewidth="inherit">
  1207. <connections>
  1208. <constraint x="0.44" y="0" perimeter="0" name="N"/>
  1209. <constraint x="0.42" y="0.85" perimeter="0" name="S"/>
  1210. <constraint x="0" y="0.55" perimeter="0" name="W"/>
  1211. <constraint x="0.9" y="0.5" perimeter="0" name="E"/>
  1212. <constraint x="0.165" y="1" perimeter="0" name="SW"/>
  1213. <constraint x="0.84" y="1" perimeter="0" name="SE"/>
  1214. </connections>
  1215. <background>
  1216. <path>
  1217. <move x="54.76" y="8.5"/>
  1218. <curve x1="53.51" y1="3.62" x2="49.09" y2="0" x3="43.85" y3="0"/>
  1219. <curve x1="37.6" y1="0" x2="32.55" y2="5.06" x3="32.55" y3="11.34"/>
  1220. <curve x1="32.55" y1="12.4" x2="32.67" y2="13.37" x3="32.94" y3="14.32"/>
  1221. <line x="37.47" y="14.32"/>
  1222. <curve x1="37.81" y1="15.11" x2="38.16" y2="15.56" x3="38.16" y3="15.56"/>
  1223. <curve x1="39.52" y1="17.53" x2="41.8" y2="18.82" x3="44.36" y3="18.82"/>
  1224. <curve x1="48.54" y1="18.82" x2="51.94" y2="15.4" x3="51.94" y3="11.19"/>
  1225. <curve x1="51.94" y1="10.22" x2="52.18" y2="9.35" x3="51.78" y3="8.51"/>
  1226. <line x="54.76" y="8.51"/>
  1227. <line x="54.76" y="8.5"/>
  1228. <close/>
  1229. <move x="54.45" y="76.34"/>
  1230. <curve x1="53.26" y1="77.56" x2="51.63" y2="78.48" x3="49.78" y3="78.48"/>
  1231. <line x="49.78" y="53.76"/>
  1232. <line x="66.76" y="48.85"/>
  1233. <line x="71.01" y="57.29"/>
  1234. <line x="54.45" y="76.34"/>
  1235. <close/>
  1236. <move x="40.2" y="19.79"/>
  1237. <curve x1="39.08" y1="18.53" x2="37.46" y2="17.74" x3="35.64" y3="17.74"/>
  1238. <curve x1="33.71" y1="17.74" x2="31.98" y2="18.64" x3="30.87" y3="20.05"/>
  1239. <line x="17.4" y="40.79"/>
  1240. <curve x1="16.85" y1="41.71" x2="16.54" y2="42.79" x3="16.54" y3="43.94"/>
  1241. <curve x1="16.54" y1="46.08" x2="17.61" y2="47.95" x3="19.24" y3="49.06"/>
  1242. <line x="37.32" y="59.17"/>
  1243. <line x="37.32" y="76.37"/>
  1244. <curve x1="37.32" y1="78.81" x2="39.27" y2="80.78" x3="41.69" y3="80.78"/>
  1245. <curve x1="44.09" y1="80.78" x2="46.05" y2="78.8" x3="46.05" y3="76.37"/>
  1246. <line x="46.05" y="54.88"/>
  1247. <curve x1="46.05" y1="54.88" x2="46.63" y2="51.46" x3="42.77" y3="49.59"/>
  1248. <line x="31.5" y="43.65"/>
  1249. <line x="39.71" y="31.01"/>
  1250. <line x="44.07" y="37.9"/>
  1251. <curve x1="44.94" y1="39.29" x2="46.11" y2="39.83" x3="47.19" y3="39.81"/>
  1252. <line x="58.39" y="39.77"/>
  1253. <curve x1="62.95" y1="39.77" x2="62.95" y2="33.81" x3="58.39" y3="33.83"/>
  1254. <line x="49.31" y="33.83"/>
  1255. <line x="40.2" y="19.79"/>
  1256. <close/>
  1257. <move x="89.73" y="47.98"/>
  1258. <curve x1="89.91" y1="48.15" x2="90.02" y2="48.38" x3="90.02" y3="48.67"/>
  1259. <curve x1="90.02" y1="49.21" x2="89.57" y2="49.66" x3="89.03" y3="49.66"/>
  1260. <curve x1="88.88" y1="49.66" x2="88.79" y2="49.66" x3="88.67" y3="49.62"/>
  1261. <curve x1="86.73" y1="48.78" x2="85.5" y2="48.27" x3="83.26" y3="48.27"/>
  1262. <curve x1="81.77" y1="48.27" x2="79.94" y2="48.79" x3="77.81" y3="50.52"/>
  1263. <line x="75.84" y="46.6"/>
  1264. <curve x1="78.29" y1="45.86" x2="80.31" y2="45.2" x3="82.4" y3="45.2"/>
  1265. <curve x1="85.77" y1="45.2" x2="87.54" y2="45.9" x3="89.73" y3="47.98"/>
  1266. <close/>
  1267. <move x="14.57" y="50.99"/>
  1268. <line x="33.54" y="61.53"/>
  1269. <line x="33.58" y="65.76"/>
  1270. <line x="11.92" y="53.74"/>
  1271. <curve x1="10.35" y1="52.93" x2="8.24" y2="52.45" x3="6.75" y3="52.45"/>
  1272. <curve x1="4.51" y1="52.45" x2="3.28" y2="52.97" x3="1.35" y3="53.8"/>
  1273. <curve x1="1.23" y1="53.84" x2="1.13" y2="53.84" x3="0.99" y3="53.84"/>
  1274. <curve x1="0.46" y1="53.85" x2="0" y2="53.4" x3="0" y3="52.86"/>
  1275. <curve x1="0" y1="52.57" x2="0.11" y2="52.34" x3="0.29" y3="52.16"/>
  1276. <curve x1="2.48" y1="50.08" x2="4.72" y2="49.39" x3="8.08" y3="49.39"/>
  1277. <curve x1="9.79" y1="49.39" x2="11.89" y2="49.59" x3="14.57" y3="50.99"/>
  1278. <close/>
  1279. <move x="16.33" y="89.76"/>
  1280. <curve x1="22.51" y1="89.76" x2="27.51" y2="84.72" x3="27.51" y3="78.48"/>
  1281. <curve x1="27.51" y1="72.24" x2="22.51" y2="67.2" x3="16.33" y3="67.2"/>
  1282. <curve x1="10.15" y1="67.2" x2="5.15" y2="72.25" x3="5.15" y3="78.48"/>
  1283. <curve x1="5.15" y1="84.71" x2="10.15" y2="89.76" x3="16.33" y3="89.76"/>
  1284. <close/>
  1285. <move x="0.19" y="78.48"/>
  1286. <curve x1="0.19" y1="69.5" x2="7.42" y2="62.2" x3="16.33" y3="62.2"/>
  1287. <curve x1="25.26" y1="62.2" x2="32.49" y2="69.5" x3="32.49" y3="78.48"/>
  1288. <curve x1="32.49" y1="87.46" x2="25.26" y2="94.75" x3="16.33" y3="94.75"/>
  1289. <curve x1="7.42" y1="94.75" x2="0.19" y2="87.46" x3="0.19" y3="78.48"/>
  1290. <close/>
  1291. <move x="83.09" y="89.76"/>
  1292. <curve x1="89.28" y1="89.76" x2="94.29" y2="84.71" x3="94.29" y3="78.48"/>
  1293. <curve x1="94.29" y1="72.24" x2="89.28" y2="67.2" x3="83.09" y3="67.2"/>
  1294. <curve x1="76.93" y1="67.2" x2="71.92" y2="72.25" x3="71.92" y3="78.48"/>
  1295. <curve x1="71.92" y1="84.71" x2="76.93" y2="89.76" x3="83.09" y3="89.76"/>
  1296. <close/>
  1297. <move x="66.96" y="78.48"/>
  1298. <curve x1="66.96" y1="69.5" x2="74.17" y2="62.2" x3="83.09" y3="62.2"/>
  1299. <curve x1="92.01" y1="62.2" x2="99.25" y2="69.5" x3="99.25" y3="78.48"/>
  1300. <curve x1="99.25" y1="87.46" x2="92.01" y2="94.75" x3="83.09" y3="94.75"/>
  1301. <curve x1="74.18" y1="94.75" x2="66.96" y2="87.46" x3="66.96" y3="78.48"/>
  1302. <close/>
  1303. <move x="79.54" y="59.88"/>
  1304. <line x="71.7" y="44.07"/>
  1305. <curve x1="70.68" y1="42.17" x2="68.66" y2="40.87" x3="66.37" y3="40.87"/>
  1306. <line x="61.25" y="40.87"/>
  1307. <curve x1="60.24" y1="40.87" x2="59.44" y2="41.71" x3="59.44" y3="42.71"/>
  1308. <curve x1="59.44" y1="43.73" x2="60.24" y2="44.53" x3="61.25" y3="44.53"/>
  1309. <line x="66.37" y="44.51"/>
  1310. <curve x1="67.24" y1="44.51" x2="68.2" y2="45.1" x3="68.56" y3="45.95"/>
  1311. <line x="75.95" y="61.13"/>
  1312. <line x="79.54" y="59.88"/>
  1313. <close/>
  1314. </path>
  1315. </background>
  1316. <foreground>
  1317. <fillstroke/>
  1318. </foreground>
  1319. </shape>
  1320. <shape name="Diving" h="99.63" w="94.31" aspect="variable" strokewidth="inherit">
  1321. <connections>
  1322. <constraint x="0.5" y="0.42" perimeter="0" name="N"/>
  1323. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  1324. <constraint x="0.2" y="0.5" perimeter="0" name="W"/>
  1325. <constraint x="0.64" y="0.5" perimeter="0" name="E"/>
  1326. <constraint x="0" y="1" perimeter="0" name="SW"/>
  1327. <constraint x="0.95" y="0.02" perimeter="0" name="NE"/>
  1328. <constraint x="1" y="1" perimeter="0" name="SE"/>
  1329. </connections>
  1330. <background>
  1331. <path>
  1332. <move x="94.3" y="99.63"/>
  1333. <curve x1="92.23" y1="99.63" x2="90.26" y2="99.16" x3="88.51" y3="98.37"/>
  1334. <curve x1="86.7" y1="97.53" x2="84.65" y2="97.04" x3="82.52" y3="97.04"/>
  1335. <curve x1="80.38" y1="97.04" x2="78.36" y2="97.53" x3="76.53" y3="98.37"/>
  1336. <curve x1="74.77" y1="99.16" x2="72.8" y2="99.63" x3="70.73" y3="99.63"/>
  1337. <curve x1="68.66" y1="99.63" x2="66.69" y2="99.16" x3="64.94" y3="98.37"/>
  1338. <curve x1="63.1" y1="97.53" x2="61.09" y2="97.04" x3="58.95" y3="97.04"/>
  1339. <curve x1="56.81" y1="97.04" x2="54.77" y2="97.53" x3="52.96" y3="98.37"/>
  1340. <curve x1="51.2" y1="99.16" x2="49.23" y2="99.63" x3="47.16" y3="99.63"/>
  1341. <curve x1="45.1" y1="99.63" x2="43.12" y2="99.16" x3="41.34" y3="98.37"/>
  1342. <curve x1="39.54" y1="97.53" x2="37.49" y2="97.04" x3="35.38" y3="97.04"/>
  1343. <curve x1="33.24" y1="97.04" x2="31.2" y2="97.53" x3="29.39" y3="98.37"/>
  1344. <curve x1="27.63" y1="99.16" x2="25.66" y2="99.63" x3="23.6" y3="99.63"/>
  1345. <curve x1="21.53" y1="99.63" x2="19.56" y2="99.16" x3="17.78" y3="98.37"/>
  1346. <curve x1="15.98" y1="97.53" x2="13.93" y2="97.04" x3="11.82" y3="97.04"/>
  1347. <curve x1="9.68" y1="97.04" x2="7.64" y2="97.53" x3="5.83" y3="98.37"/>
  1348. <curve x1="4.07" y1="99.16" x2="2.07" y2="99.63" x3="0" y3="99.63"/>
  1349. <line x="0" y="90.93"/>
  1350. <curve x1="2.07" y1="90.93" x2="4.07" y2="90.46" x3="5.83" y3="89.66"/>
  1351. <curve x1="7.63" y1="88.84" x2="9.68" y2="88.35" x3="11.82" y3="88.35"/>
  1352. <curve x1="13.93" y1="88.35" x2="15.98" y2="88.84" x3="17.78" y3="89.66"/>
  1353. <curve x1="19.56" y1="90.46" x2="21.53" y2="90.93" x3="23.6" y3="90.93"/>
  1354. <curve x1="25.66" y1="90.93" x2="27.63" y2="90.46" x3="29.39" y3="89.66"/>
  1355. <curve x1="31.19" y1="88.84" x2="33.24" y2="88.35" x3="35.38" y3="88.35"/>
  1356. <curve x1="37.5" y1="88.35" x2="39.54" y2="88.84" x3="41.34" y3="89.66"/>
  1357. <curve x1="43.12" y1="90.46" x2="45.09" y2="90.93" x3="47.16" y3="90.93"/>
  1358. <curve x1="49.23" y1="90.93" x2="51.2" y2="90.46" x3="52.97" y3="89.66"/>
  1359. <curve x1="54.77" y1="88.84" x2="56.82" y2="88.35" x3="58.96" y3="88.35"/>
  1360. <curve x1="61.1" y1="88.35" x2="63.11" y2="88.84" x3="64.95" y3="89.66"/>
  1361. <curve x1="66.7" y1="90.46" x2="68.68" y2="90.93" x3="70.74" y3="90.93"/>
  1362. <curve x1="72.81" y1="90.93" x2="74.78" y2="90.46" x3="76.55" y3="89.66"/>
  1363. <curve x1="78.38" y1="88.84" x2="80.4" y2="88.35" x3="82.54" y3="88.35"/>
  1364. <curve x1="84.67" y1="88.35" x2="86.71" y2="88.84" x3="88.52" y3="89.66"/>
  1365. <curve x1="90.28" y1="90.46" x2="92.25" y2="90.93" x3="94.31" y3="90.93"/>
  1366. <line x="94.31" y="99.63"/>
  1367. <close/>
  1368. <move x="26.69" y="56.97"/>
  1369. <curve x1="31.08" y1="56.97" x2="34.65" y2="53.4" x3="34.65" y3="49.01"/>
  1370. <curve x1="34.65" y1="44.63" x2="31.08" y2="41.08" x3="26.69" y3="41.08"/>
  1371. <curve x1="22.31" y1="41.08" x2="18.75" y2="44.62" x3="18.75" y3="49.01"/>
  1372. <curve x1="18.74" y1="53.4" x2="22.32" y2="56.97" x3="26.69" y3="56.97"/>
  1373. <move x="27.82" y="84.46"/>
  1374. <curve x1="26.57" y1="86.59" x2="23.83" y2="87.32" x3="21.7" y3="86.04"/>
  1375. <curve x1="19.56" y1="84.8" x2="18.84" y2="82.05" x3="20.08" y3="79.93"/>
  1376. <line x="38.53" y="48.18"/>
  1377. <curve x1="39.2" y1="46.98" x2="40.19" y2="45.99" x3="41.37" y3="45.35"/>
  1378. <line x="65.09" y="30.98"/>
  1379. <line x="81.18" y="3.59"/>
  1380. <curve x1="82.71" y1="0.92" x2="86.12" y2="0" x3="88.79" y3="1.52"/>
  1381. <curve x1="91.44" y1="3.07" x2="92.36" y2="6.47" x3="90.83" y3="9.12"/>
  1382. <line x="71.54" y="41.95"/>
  1383. <curve x1="70.88" y1="43.14" x2="69.89" y2="44.13" x3="68.69" y3="44.78"/>
  1384. <line x="40.71" y="62.17"/>
  1385. <line x="27.82" y="84.46"/>
  1386. <close/>
  1387. </path>
  1388. </background>
  1389. <foreground>
  1390. <fillstroke/>
  1391. </foreground>
  1392. </shape>
  1393. <shape name="Downhill Skiing 1" h="97.55" w="99.83" aspect="variable" strokewidth="inherit">
  1394. <connections>
  1395. <constraint x="0.5" y="0.015" perimeter="0" name="N"/>
  1396. <constraint x="0.5" y="0.75" perimeter="0" name="S"/>
  1397. <constraint x="0.08" y="0.5" perimeter="0" name="W"/>
  1398. <constraint x="0.89" y="0.5" perimeter="0" name="E"/>
  1399. <constraint x="0.98" y="0.22" perimeter="0" name="NE"/>
  1400. <constraint x="0.985" y="0.945" perimeter="0" name="SE"/>
  1401. </connections>
  1402. <background>
  1403. <path>
  1404. <move x="90.99" y="35.24"/>
  1405. <curve x1="95.56" y1="35.24" x2="99.25" y2="31.51" x3="99.25" y3="26.91"/>
  1406. <curve x1="99.25" y1="22.32" x2="95.56" y2="18.61" x3="90.99" y3="18.61"/>
  1407. <curve x1="86.44" y1="18.61" x2="82.74" y2="22.32" x3="82.74" y3="26.91"/>
  1408. <curve x1="82.74" y1="31.5" x2="86.44" y2="35.24" x3="90.99" y3="35.24"/>
  1409. <close/>
  1410. <move x="86.92" y="95.17"/>
  1411. <curve x1="90.91" y1="97.55" x2="96.05" y2="96.25" x3="98.43" y3="92.22"/>
  1412. <line x="95.54" y="90.48"/>
  1413. <curve x1="94.13" y1="92.89" x2="91.03" y2="93.65" x3="88.66" y3="92.22"/>
  1414. <line x="1.71" y="40.79"/>
  1415. <line x="0" y="43.72"/>
  1416. <line x="86.92" y="95.17"/>
  1417. <close/>
  1418. <move x="55.44" y="3.4"/>
  1419. <curve x1="50.42" y1="0" x2="43.63" y2="1.34" x3="40.24" y3="6.42"/>
  1420. <curve x1="38.38" y1="9.2" x2="37.86" y2="12.71" x3="38.78" y3="15.56"/>
  1421. <line x="44.56" y="34.62"/>
  1422. <line x="27.13" y="40.22"/>
  1423. <curve x1="24.95" y1="41.1" x2="23.27" y2="43.17" x3="22.97" y3="45.7"/>
  1424. <curve x1="22.52" y1="49.41" x2="25.26" y2="51.87" x3="28.96" y3="52.31"/>
  1425. <curve x1="29.8" y1="52.41" x2="30.36" y2="52.16" x3="31.14" y3="51.97"/>
  1426. <line x="54.94" y="44.03"/>
  1427. <curve x1="56.68" y1="43.39" x2="58.6" y2="41.65" x3="58.78" y3="40.12"/>
  1428. <curve x1="58.91" y1="39.02" x2="59.27" y2="38.08" x3="59.04" y3="37.42"/>
  1429. <line x="55.42" y="24.38"/>
  1430. <line x="69.72" y="32.95"/>
  1431. <line x="71.45" y="45.45"/>
  1432. <curve x1="71.6" y1="47.64" x2="72.58" y2="49.21" x3="74.25" y3="50.14"/>
  1433. <line x="92.95" y="61.15"/>
  1434. <curve x1="95" y1="62.28" x2="97.58" y2="61.52" x3="98.7" y3="59.43"/>
  1435. <curve x1="99.83" y1="57.37" x2="99.07" y2="54.74" x3="97.02" y3="53.61"/>
  1436. <line x="82.23" y="44.91"/>
  1437. <line x="80.52" y="22.63"/>
  1438. <curve x1="80.26" y1="19.96" x2="78.83" y2="17.57" x3="76.73" y3="16.1"/>
  1439. <line x="55.44" y="3.4"/>
  1440. <close/>
  1441. </path>
  1442. </background>
  1443. <foreground>
  1444. <fillstroke/>
  1445. </foreground>
  1446. </shape>
  1447. <shape name="Downhill Skiing 2" h="84.89" w="99.22" aspect="variable" strokewidth="inherit">
  1448. <connections>
  1449. <constraint x="0.5" y="0.1" perimeter="0" name="N"/>
  1450. <constraint x="0.5" y="0.955" perimeter="0" name="S"/>
  1451. <constraint x="0.235" y="0.585" perimeter="0" name="W"/>
  1452. <constraint x="0.95" y="0.5" perimeter="0" name="E"/>
  1453. <constraint x="0" y="0.9" perimeter="0" name="SW"/>
  1454. <constraint x="0.96" y="0.08" perimeter="0" name="NE"/>
  1455. <constraint x="0.98" y="0.935" perimeter="0" name="SE"/>
  1456. </connections>
  1457. <background>
  1458. <path>
  1459. <move x="89.18" y="4.93"/>
  1460. <curve x1="84.27" y1="4.93" x2="80.27" y2="8.97" x3="80.27" y3="13.94"/>
  1461. <curve x1="80.27" y1="18.9" x2="84.27" y2="22.94" x3="89.18" y3="22.94"/>
  1462. <curve x1="94.09" y1="22.94" x2="98.07" y2="18.9" x3="98.07" y3="13.94"/>
  1463. <curve x1="98.07" y1="8.97" x2="94.09" y2="4.93" x3="89.18" y3="4.93"/>
  1464. <close/>
  1465. <move x="60.16" y="60.84"/>
  1466. <curve x1="60.16" y1="60.84" x2="61.48" y2="59.89" x3="63.42" y3="60.32"/>
  1467. <line x="63.5" y="60.33"/>
  1468. <line x="77.89" y="63.61"/>
  1469. <curve x1="77.89" y1="63.61" x2="78.93" y2="63.49" x3="80.71" y3="66.65"/>
  1470. <curve x1="80.71" y1="66.65" x2="80.93" y2="68.02" x3="82.7" y3="67.39"/>
  1471. <curve x1="82.7" y1="67.39" x2="83" y2="67.39" x3="83.64" y3="67.8"/>
  1472. <curve x1="83.64" y1="67.8" x2="86.98" y2="69.17" x3="87.28" y3="67.39"/>
  1473. <line x="98.87" y="27.52"/>
  1474. <curve x1="98.87" y1="27.52" x2="99.22" y2="23.13" x3="96.72" y3="23.13"/>
  1475. <curve x1="94.58" y1="25.07" x2="91.76" y2="26.26" x3="88.65" y3="26.26"/>
  1476. <curve x1="82" y1="26.26" x2="76.62" y2="20.82" x3="76.62" y3="14.12"/>
  1477. <curve x1="76.62" y1="11.77" x2="77.29" y2="9.55" x3="78.43" y3="7.7"/>
  1478. <curve x1="78.43" y1="7.7" x2="78.33" y2="7.37" x3="77.59" y3="6.22"/>
  1479. <curve x1="77.59" y1="6.22" x2="75.49" y2="3.78" x3="76.12" y3="2.52"/>
  1480. <curve x1="76.12" y1="2.52" x2="76.65" y2="0" x3="74.45" y3="0.83"/>
  1481. <line x="52.66" y="6.02"/>
  1482. <curve x1="52.66" y1="6.02" x2="49.56" y2="6.83" x3="49.58" y3="9.08"/>
  1483. <curve x1="49.58" y1="9.08" x2="49.27" y2="11.27" x3="51.85" y3="12.44"/>
  1484. <line x="59.96" y="15.51"/>
  1485. <curve x1="59.96" y1="15.51" x2="62.46" y2="16.44" x3="60.9" y3="17.51"/>
  1486. <line x="47.66" y="27.74"/>
  1487. <curve x1="47.66" y1="27.74" x2="44.84" y2="29.53" x3="45.05" y3="32.8"/>
  1488. <curve x1="45.05" y1="32.8" x2="43.72" y2="46.7" x3="42.9" y3="52.68"/>
  1489. <line x="31.98" y="50.15"/>
  1490. <line x="32.45" y="48.09"/>
  1491. <curve x1="32.63" y1="47.26" x2="32.18" y2="46.44" x3="31.44" y3="46.26"/>
  1492. <curve x1="30.69" y1="46.08" x2="29.93" y2="46.62" x3="29.74" y3="47.45"/>
  1493. <line x="29.27" y="49.52"/>
  1494. <line x="24.93" y="48.51"/>
  1495. <line x="23.32" y="49.51"/>
  1496. <line x="24.36" y="51.2"/>
  1497. <line x="28.66" y="52.2"/>
  1498. <line x="28.17" y="54.34"/>
  1499. <curve x1="27.99" y1="55.18" x2="28.44" y2="56" x3="29.18" y3="56.17"/>
  1500. <curve x1="29.93" y1="56.34" x2="30.69" y2="55.82" x3="30.88" y3="54.98"/>
  1501. <line x="31.37" y="52.83"/>
  1502. <line x="42.35" y="55.39"/>
  1503. <curve x1="42.17" y1="55.64" x2="41.77" y2="56.16" x3="41.31" y3="56.61"/>
  1504. <line x="22.84" y="74.56"/>
  1505. <line x="0.42" y="72.55"/>
  1506. <line x="0" y="76.55"/>
  1507. <line x="83.32" y="84.16"/>
  1508. <curve x1="83.32" y1="84.16" x2="90.92" y2="84.89" x3="97.4" y3="79.09"/>
  1509. <line x="97" y="73.6"/>
  1510. <curve x1="97" y1="73.6" x2="90.83" y2="81.1" x3="83.75" y3="80.15"/>
  1511. <curve x1="76.67" y1="79.19" x2="35.88" y2="75.81" x3="35.88" y3="75.81"/>
  1512. <line x="46.83" y="68.43"/>
  1513. <curve x1="46.83" y1="68.43" x2="46.94" y2="68.53" x3="47.67" y3="67.05"/>
  1514. <line x="70.71" y="8.42"/>
  1515. <line x="73.53" y="9.51"/>
  1516. <line x="51.39" y="66.05"/>
  1517. <line x="60.16" y="60.84"/>
  1518. <close/>
  1519. <move x="63" y="56.11"/>
  1520. <line x="67.68" y="39.53"/>
  1521. <curve x1="68" y1="37.64" x2="70.29" y2="37.23" x3="70.29" y3="37.23"/>
  1522. <line x="84.16" y="34.37"/>
  1523. <curve x1="86.65" y1="33.7" x2="86.15" y2="35.65" x3="86.15" y3="35.65"/>
  1524. <line x="83.75" y="60.54"/>
  1525. <curve x1="83.57" y1="62.08" x2="82.71" y2="61.79" x3="82.71" y3="61.79"/>
  1526. <line x="64.46" y="57.7"/>
  1527. <curve x1="62.35" y1="57.31" x2="63" y2="56.11" x3="63" y3="56.11"/>
  1528. <close/>
  1529. </path>
  1530. </background>
  1531. <foreground>
  1532. <fillstroke/>
  1533. </foreground>
  1534. </shape>
  1535. <shape name="Exercise" h="94.11" w="99.35" aspect="variable" strokewidth="inherit">
  1536. <connections>
  1537. <constraint x="0.45" y="0" perimeter="0" name="N"/>
  1538. <constraint x="0.5" y="0.85" perimeter="0" name="S"/>
  1539. <constraint x="0.15" y="0.5" perimeter="0" name="W"/>
  1540. <constraint x="0.805" y="0.5" perimeter="0" name="E"/>
  1541. <constraint x="0.28" y="0.3" perimeter="0" name="NW"/>
  1542. <constraint x="0.21" y="0.99" perimeter="0" name="SW"/>
  1543. <constraint x="0.98" y="0.01" perimeter="0" name="NE"/>
  1544. <constraint x="0.765" y="0.955" perimeter="0" name="SE"/>
  1545. </connections>
  1546. <background>
  1547. <path>
  1548. <move x="70.42" y="17.52"/>
  1549. <curve x1="74.28" y1="17.52" x2="77.4" y2="14.35" x3="77.4" y3="10.44"/>
  1550. <curve x1="77.4" y1="6.55" x2="74.28" y2="3.38" x3="70.42" y3="3.38"/>
  1551. <curve x1="66.59" y1="3.38" x2="63.46" y2="6.55" x3="63.46" y3="10.44"/>
  1552. <curve x1="63.47" y1="14.35" x2="66.59" y2="17.52" x3="70.42" y3="17.52"/>
  1553. <close/>
  1554. <move x="75.61" y="19.1"/>
  1555. <line x="65.44" y="19.1"/>
  1556. <line x="48.11" y="1.52"/>
  1557. <curve x1="46.76" y1="0.08" x2="44.51" y2="0.01" x3="43.08" y3="1.4"/>
  1558. <curve x1="41.66" y1="2.77" x2="41.59" y2="5.06" x3="42.94" y3="6.5"/>
  1559. <line x="61.05" y="24.89"/>
  1560. <line x="61.05" y="85.85"/>
  1561. <curve x1="61.05" y1="88.06" x2="62.8" y2="89.83" x3="64.95" y3="89.83"/>
  1562. <curve x1="67.13" y1="89.83" x2="68.88" y2="88.06" x3="68.88" y3="85.85"/>
  1563. <line x="68.88" y="52.79"/>
  1564. <line x="72.05" y="52.79"/>
  1565. <line x="72.07" y="85.85"/>
  1566. <curve x1="72.07" y1="88.06" x2="73.84" y2="89.83" x3="76" y3="89.83"/>
  1567. <curve x1="78.16" y1="89.83" x2="79.9" y2="88.06" x3="79.9" y3="85.85"/>
  1568. <line x="79.88" y="24.89"/>
  1569. <line x="98" y="6.5"/>
  1570. <curve x1="99.35" y1="5.06" x2="99.28" y2="2.77" x3="97.86" y3="1.4"/>
  1571. <curve x1="96.44" y1="0" x2="94.19" y2="0.07" x3="92.83" y3="1.52"/>
  1572. <line x="75.61" y="19.1"/>
  1573. <close/>
  1574. <move x="38.76" y="45.99"/>
  1575. <curve x1="37.7" y1="44.9" x2="36.26" y2="44.24" x3="34.65" y3="44.24"/>
  1576. <line x="20.06" y="44.24"/>
  1577. <curve x1="18.45" y1="44.24" x2="17.01" y2="44.89" x3="15.97" y3="45.99"/>
  1578. <line x="1.35" y="60.82"/>
  1579. <curve x1="0" y1="62.26" x2="0.04" y2="64.55" x3="1.46" y3="65.92"/>
  1580. <curve x1="2.88" y1="67.29" x2="5.16" y2="67.25" x3="6.49" y3="65.8"/>
  1581. <line x="17.83" y="54.3"/>
  1582. <line x="17.83" y="69.67"/>
  1583. <line x="5.11" y="69.67"/>
  1584. <curve x1="2.77" y1="69.67" x2="0.89" y2="71.58" x3="0.89" y3="73.95"/>
  1585. <curve x1="0.89" y1="75.18" x2="1.35" y2="76.28" x3="2.18" y3="77.07"/>
  1586. <line x="16.51" y="91.6"/>
  1587. <curve x1="17.77" y1="93.49" x2="20.25" y2="94.09" x3="22.23" y3="92.93"/>
  1588. <curve x1="24.32" y1="91.72" x2="25.01" y2="89.04" x3="23.81" y3="86.95"/>
  1589. <line x="15.64" y="78.68"/>
  1590. <line x="15.8" y="78.7"/>
  1591. <line x="39.28" y="78.7"/>
  1592. <line x="31.08" y="86.97"/>
  1593. <curve x1="29.91" y1="89.07" x2="30.6" y2="91.74" x3="32.66" y3="92.95"/>
  1594. <curve x1="34.63" y1="94.11" x2="37.14" y2="93.51" x3="38.4" y3="91.62"/>
  1595. <line x="52.73" y="77.09"/>
  1596. <curve x1="53.56" y1="76.3" x2="54.01" y2="75.2" x3="54.01" y3="73.97"/>
  1597. <curve x1="54.01" y1="71.59" x2="52.13" y2="69.69" x3="49.79" y3="69.69"/>
  1598. <line x="37.09" y="69.69"/>
  1599. <line x="37.09" y="54.49"/>
  1600. <line x="48.23" y="65.83"/>
  1601. <curve x1="49.58" y1="67.27" x2="51.84" y2="67.32" x3="53.26" y3="65.95"/>
  1602. <curve x1="54.68" y1="64.58" x2="54.73" y2="62.3" x3="53.37" y3="60.85"/>
  1603. <line x="38.76" y="45.99"/>
  1604. <close/>
  1605. <move x="27.5" y="42.73"/>
  1606. <curve x1="31.35" y1="42.73" x2="34.45" y2="39.56" x3="34.45" y3="35.67"/>
  1607. <curve x1="34.45" y1="31.76" x2="31.35" y2="28.61" x3="27.5" y3="28.61"/>
  1608. <curve x1="23.67" y1="28.61" x2="20.54" y2="31.75" x3="20.54" y3="35.67"/>
  1609. <curve x1="20.54" y1="39.56" x2="23.67" y2="42.73" x3="27.5" y3="42.73"/>
  1610. <close/>
  1611. </path>
  1612. </background>
  1613. <foreground>
  1614. <fillstroke/>
  1615. </foreground>
  1616. </shape>
  1617. <shape name="Firewood" h="90.61" w="101.21" aspect="variable" strokewidth="inherit">
  1618. <connections>
  1619. <constraint x="0.51" y="0.115" perimeter="0" name="N"/>
  1620. <constraint x="0.5" y="0.97" perimeter="0" name="S"/>
  1621. <constraint x="0.305" y="0.5" perimeter="0" name="W"/>
  1622. <constraint x="0.93" y="0.34" perimeter="0" name="E"/>
  1623. <constraint x="0" y="0.95" perimeter="0" name="SW"/>
  1624. <constraint x="0.605" y="0" perimeter="0" name="NE"/>
  1625. <constraint x="0.93" y="0.94" perimeter="0" name="SE"/>
  1626. </connections>
  1627. <background>
  1628. <path>
  1629. <move x="66.93" y="25.05"/>
  1630. <line x="51.37" y="10.61"/>
  1631. <line x="61.11" y="0"/>
  1632. <line x="94.29" y="30.84"/>
  1633. <curve x1="87.22" y1="38.77" x2="80.56" y2="44.06" x3="69.95" y3="45.12"/>
  1634. <line x="66.93" y="25.05"/>
  1635. <close/>
  1636. <move x="71.08" y="75.32"/>
  1637. <curve x1="71.18" y1="77" x2="71.6" y2="78.68" x3="72.33" y3="80.31"/>
  1638. <curve x1="75.58" y1="87.46" x2="83.94" y2="90.61" x3="91.02" y3="87.33"/>
  1639. <curve x1="98.1" y1="84.05" x2="101.21" y2="75.64" x3="97.99" y3="68.5"/>
  1640. <curve x1="95.96" y1="64.04" x2="91.92" y2="61.14" x3="87.46" y3="60.4"/>
  1641. <line x="85.16" y="74.4"/>
  1642. <line x="71.08" y="75.32"/>
  1643. <close/>
  1644. <move x="82" y="72.12"/>
  1645. <line x="72.82" y="59.52"/>
  1646. <curve x1="69.47" y1="62" x2="67.1" y2="65.85" x3="66.59" y3="70.32"/>
  1647. <line x="82" y="72.12"/>
  1648. <close/>
  1649. <move x="42.01" y="33.52"/>
  1650. <line x="44.31" y="24.4"/>
  1651. <line x="51.22" y="16.81"/>
  1652. <line x="61.73" y="26.59"/>
  1653. <line x="16.95" y="75.32"/>
  1654. <curve x1="13.36" y1="79.17" x2="10.65" y2="83.85" x3="9.16" y3="89.08"/>
  1655. <line x="0" y="86.16"/>
  1656. <curve x1="1.85" y1="79.78" x2="5.13" y2="74.03" x3="9.48" y3="69.2"/>
  1657. <line x="42.01" y="33.52"/>
  1658. <close/>
  1659. <move x="57.87" y="75.58"/>
  1660. <curve x1="61.51" y1="78.44" x2="63.85" y2="82.91" x3="63.85" y3="87.92"/>
  1661. <line x="48.34" y="87.92"/>
  1662. <line x="57.87" y="75.58"/>
  1663. <close/>
  1664. </path>
  1665. </background>
  1666. <foreground>
  1667. <fillstroke/>
  1668. </foreground>
  1669. </shape>
  1670. <shape name="Fishing 1" h="93.34" w="100.03" aspect="variable" strokewidth="inherit">
  1671. <connections>
  1672. <constraint x="0.5" y="0.165" perimeter="0" name="N"/>
  1673. <constraint x="0.5" y="0.9" perimeter="0" name="S"/>
  1674. <constraint x="0.01" y="0.5" perimeter="0" name="W"/>
  1675. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  1676. <constraint x="1" y="0.015" perimeter="0" name="NE"/>
  1677. <constraint x="1" y="1" perimeter="0" name="SE"/>
  1678. </connections>
  1679. <background>
  1680. <path>
  1681. <move x="59.71" y="63.44"/>
  1682. <curve x1="61.95" y1="63.44" x2="63.75" y2="61.61" x3="63.75" y3="59.34"/>
  1683. <curve x1="63.75" y1="57.08" x2="61.95" y2="55.24" x3="59.71" y3="55.24"/>
  1684. <curve x1="57.47" y1="55.24" x2="55.64" y2="57.08" x3="55.64" y3="59.34"/>
  1685. <curve x1="55.64" y1="61.61" x2="57.46" y2="63.44" x3="59.71" y3="63.44"/>
  1686. <close/>
  1687. <move x="99.9" y="92.98"/>
  1688. <curve x1="75.86" y1="93.34" x2="50.73" y2="88.7" x3="31.5" y3="73.09"/>
  1689. <line x="31.5" y="73.09"/>
  1690. <curve x1="31.38" y1="72.98" x2="31.33" y2="72.83" x3="31.33" y3="72.65"/>
  1691. <curve x1="31.33" y1="72.28" x2="31.63" y2="71.99" x3="31.97" y3="71.99"/>
  1692. <line x="50.93" y="72.02"/>
  1693. <curve x1="51.84" y1="72.02" x2="52.61" y2="71.26" x3="52.61" y3="70.33"/>
  1694. <curve x1="52.61" y1="69.63" x2="52.29" y2="69.15" x3="51.55" y3="68.77"/>
  1695. <line x="34.41" y="60.51"/>
  1696. <curve x1="34.09" y1="60.31" x2="33.87" y2="59.95" x3="33.87" y3="59.54"/>
  1697. <curve x1="33.87" y1="59.23" x2="33.99" y2="58.95" x3="34.19" y3="58.74"/>
  1698. <line x="34.19" y="58.74"/>
  1699. <curve x1="34.19" y1="58.74" x2="55.07" y2="40.1" x3="99.9" y3="40.51"/>
  1700. <line x="99.9" y="92.98"/>
  1701. <close/>
  1702. <move x="90.24" y="0.04"/>
  1703. <curve x1="75.4" y1="0.21" x2="60.86" y2="6.6" x3="44.57" y3="20.1"/>
  1704. <curve x1="43.96" y1="19.93" x2="42.62" y2="19.57" x3="42.62" y3="19.57"/>
  1705. <curve x1="40.03" y1="19.57" x2="37.92" y2="21.69" x3="37.92" y3="24.29"/>
  1706. <curve x1="37.92" y1="24.29" x2="38.11" y2="25.17" x3="38.22" y3="25.72"/>
  1707. <curve x1="37.72" y1="26.19" x2="25.05" y2="38.2" x3="25.05" y3="38.2"/>
  1708. <line x="13.84" y="48.87"/>
  1709. <curve x1="12.79" y1="49.84" x2="11.43" y2="50.33" x3="10.01" y3="50.26"/>
  1710. <curve x1="8.59" y1="50.19" x2="7.29" y2="49.57" x3="6.35" y3="48.52"/>
  1711. <curve x1="5.43" y1="47.49" x2="4.98" y2="46.2" x3="4.98" y3="44.92"/>
  1712. <curve x1="4.98" y1="43.46" x2="5.56" y2="42.01" x3="6.7" y3="40.96"/>
  1713. <curve x1="6.7" y1="40.96" x2="7.54" y2="40.49" x3="8.19" y3="40.12"/>
  1714. <curve x1="8.33" y1="41.09" x2="8.72" y2="44.05" x3="8.72" y3="44.05"/>
  1715. <line x="17.86" y="32.3"/>
  1716. <line x="7.77" y="35.76"/>
  1717. <curve x1="5.11" y1="36.68" x2="4.02" y2="38.03" x3="3.98" y3="38.09"/>
  1718. <curve x1="0.29" y1="41.47" x2="0" y2="47.38" x3="3.41" y3="51.2"/>
  1719. <curve x1="6.84" y1="55.02" x2="12.71" y2="55.3" x3="16.48" y3="51.84"/>
  1720. <line x="16.58" y="51.72"/>
  1721. <line x="27.2" y="41.51"/>
  1722. <curve x1="27.2" y1="41.51" x2="40.31" y2="28.98" x3="40.74" y3="28.57"/>
  1723. <curve x1="41.37" y1="28.74" x2="42.61" y2="29.06" x3="42.61" y3="29.06"/>
  1724. <curve x1="45.19" y1="29.06" x2="47.28" y2="26.94" x3="47.28" y3="24.32"/>
  1725. <curve x1="47.28" y1="24.32" x2="47.16" y2="23.63" x3="47.06" y3="23.13"/>
  1726. <curve x1="62.84" y1="10.01" x2="76.63" y2="3.8" x3="90.44" y3="3.64"/>
  1727. <curve x1="93.28" y1="3.61" x2="95.54" y2="3.99" x3="99.27" y3="4.79"/>
  1728. <line x="100.03" y="4.96"/>
  1729. <line x="100.03" y="1.23"/>
  1730. <line x="99.54" y="1.12"/>
  1731. <curve x1="95.69" y1="0.29" x2="93.16" y2="0" x3="90.24" y3="0.04"/>
  1732. <close/>
  1733. </path>
  1734. </background>
  1735. <foreground>
  1736. <fillstroke/>
  1737. </foreground>
  1738. </shape>
  1739. <shape name="Fishing 2" h="117.64" w="98.87" aspect="variable" strokewidth="inherit">
  1740. <connections>
  1741. <constraint x="0.5" y="0.455" perimeter="0" name="N"/>
  1742. <constraint x="0.5" y="0.83" perimeter="0" name="S"/>
  1743. <constraint x="0.01" y="0.51" perimeter="0" name="W"/>
  1744. <constraint x="1" y="0.59" perimeter="0" name="E"/>
  1745. <constraint x="0" y="0.78" perimeter="0" name="SW"/>
  1746. <constraint x="0.935" y="0" perimeter="0" name="NE"/>
  1747. <constraint x="1" y="0.7" perimeter="0" name="SE"/>
  1748. </connections>
  1749. <background>
  1750. <path>
  1751. <move x="98.37" y="20.24"/>
  1752. <curve x1="98.37" y1="17.35" x2="96.44" y2="15.01" x3="93.83" y3="14.22"/>
  1753. <line x="93.83" y="0"/>
  1754. <line x="90.32" y="0"/>
  1755. <line x="90.32" y="14.22"/>
  1756. <curve x1="87.71" y1="15" x2="85.77" y2="17.34" x3="85.77" y3="20.24"/>
  1757. <curve x1="85.77" y1="23.14" x2="87.71" y2="25.48" x3="90.32" y3="26.25"/>
  1758. <line x="90.32" y="37.52"/>
  1759. <line x="90.32" y="40.6"/>
  1760. <line x="90.32" y="43.87"/>
  1761. <curve x1="90.32" y1="43.87" x2="90.27" y2="45.24" x3="88.73" y3="45.24"/>
  1762. <curve x1="87.09" y1="45.21" x2="87.17" y2="43.87" x3="87.17" y3="43.87"/>
  1763. <line x="87.17" y="41.72"/>
  1764. <curve x1="87.17" y1="41.72" x2="87.09" y2="39" x3="85.56" y3="39"/>
  1765. <curve x1="84.03" y1="39" x2="84.03" y2="41.72" x3="84.03" y3="41.72"/>
  1766. <line x="84.03" y="43.74"/>
  1767. <curve x1="84.03" y1="43.74" x2="84.14" y2="48.81" x3="88.81" y3="48.81"/>
  1768. <curve x1="93.75" y1="48.81" x2="93.82" y2="43.61" x3="93.82" y3="43.61"/>
  1769. <line x="93.82" y="43.58"/>
  1770. <line x="93.82" y="40.59"/>
  1771. <line x="93.82" y="39.7"/>
  1772. <line x="93.82" y="26.24"/>
  1773. <curve x1="96.44" y1="25.47" x2="98.37" y2="23.14" x3="98.37" y3="20.24"/>
  1774. <close/>
  1775. <move x="92.07" y="22.96"/>
  1776. <curve x1="90.59" y1="22.96" x2="89.38" y2="21.74" x3="89.38" y3="20.24"/>
  1777. <curve x1="89.38" y1="18.75" x2="90.58" y2="17.54" x3="92.07" y3="17.54"/>
  1778. <curve x1="93.56" y1="17.54" x2="94.76" y2="18.76" x3="94.76" y3="20.24"/>
  1779. <curve x1="94.75" y1="21.74" x2="93.55" y2="22.96" x3="92.07" y3="22.96"/>
  1780. <close/>
  1781. <move x="93.5" y="76.82"/>
  1782. <line x="98.64" y="69.5"/>
  1783. <curve x1="98.64" y1="69.5" x2="62.97" y2="30.38" x3="18.89" y3="70.46"/>
  1784. <line x="0.94" y="60.05"/>
  1785. <line x="8.88" y="75.41"/>
  1786. <line x="0" y="91.95"/>
  1787. <line x="19.06" y="82.84"/>
  1788. <curve x1="65.2" y1="117.64" x2="98.87" y2="82.48" x3="98.87" y3="82.48"/>
  1789. <line x="93.5" y="76.82"/>
  1790. <close/>
  1791. <move x="85.77" y="74.38"/>
  1792. <curve x1="83.49" y1="74.38" x2="81.65" y2="72.49" x3="81.65" y3="70.2"/>
  1793. <curve x1="81.65" y1="67.88" x2="83.49" y2="66.02" x3="85.77" y3="66.02"/>
  1794. <curve x1="88.06" y1="66.02" x2="89.91" y2="67.88" x3="89.91" y3="70.2"/>
  1795. <curve x1="89.92" y1="72.5" x2="88.06" y2="74.38" x3="85.77" y3="74.38"/>
  1796. <close/>
  1797. </path>
  1798. </background>
  1799. <foreground>
  1800. <fillstroke/>
  1801. </foreground>
  1802. </shape>
  1803. <shape name="Fishing Pier" h="98.97" w="94.56" aspect="variable" strokewidth="inherit">
  1804. <connections>
  1805. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  1806. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  1807. <constraint x="0" y="0.43" perimeter="0" name="W"/>
  1808. <constraint x="0.945" y="0.5" perimeter="0" name="E"/>
  1809. <constraint x="0" y="1" perimeter="0" name="SW"/>
  1810. <constraint x="0.935" y="0" perimeter="0" name="NE"/>
  1811. <constraint x="1" y="1" perimeter="0" name="SE"/>
  1812. </connections>
  1813. <background>
  1814. <path>
  1815. <move x="47.2" y="13.59"/>
  1816. <curve x1="50.84" y1="13.59" x2="53.78" y2="10.66" x3="53.78" y3="7.02"/>
  1817. <curve x1="53.78" y1="3.4" x2="50.83" y2="0.44" x3="47.2" y3="0.44"/>
  1818. <curve x1="43.55" y1="0.44" x2="40.61" y2="3.4" x3="40.61" y3="7.02"/>
  1819. <curve x1="40.61" y1="10.66" x2="43.55" y2="13.59" x3="47.2" y3="13.59"/>
  1820. <move x="88.73" y="89.01"/>
  1821. <curve x1="86.92" y1="88.17" x2="84.88" y2="87.67" x3="82.74" y3="87.67"/>
  1822. <curve x1="80.63" y1="87.67" x2="78.59" y2="88.16" x3="76.74" y3="89.01"/>
  1823. <curve x1="74.98" y1="89.78" x2="73.01" y2="90.25" x3="70.94" y3="90.25"/>
  1824. <curve x1="68.87" y1="90.25" x2="66.87" y2="89.78" x3="65.1" y3="89.01"/>
  1825. <curve x1="63.29" y1="88.17" x2="61.25" y2="87.67" x3="59.1" y3="87.67"/>
  1826. <curve x1="56.97" y1="87.67" x2="54.92" y2="88.16" x3="53.11" y3="89.01"/>
  1827. <curve x1="51.33" y1="89.78" x2="49.35" y2="90.25" x3="47.28" y3="90.25"/>
  1828. <curve x1="45.21" y1="90.25" x2="43.23" y2="89.78" x3="41.45" y3="89.01"/>
  1829. <curve x1="39.63" y1="88.17" x2="37.59" y2="87.67" x3="35.46" y3="87.67"/>
  1830. <curve x1="33.34" y1="87.67" x2="31.3" y2="88.16" x3="29.47" y3="89.01"/>
  1831. <curve x1="27.7" y1="89.78" x2="25.73" y2="90.25" x3="23.67" y3="90.25"/>
  1832. <curve x1="21.6" y1="90.25" x2="19.6" y2="89.78" x3="17.84" y3="89.01"/>
  1833. <curve x1="16.02" y1="88.17" x2="13.98" y2="87.67" x3="11.84" y3="87.67"/>
  1834. <curve x1="9.7" y1="87.67" x2="7.65" y2="88.16" x3="5.85" y3="89.01"/>
  1835. <curve x1="4.05" y1="89.78" x2="2.08" y2="90.25" x3="0" y3="90.25"/>
  1836. <line x="0" y="98.97"/>
  1837. <curve x1="2.07" y1="98.97" x2="4.04" y2="98.53" x3="5.84" y3="97.73"/>
  1838. <curve x1="7.64" y1="96.88" x2="9.69" y2="96.38" x3="11.83" y3="96.38"/>
  1839. <curve x1="13.96" y1="96.38" x2="16.01" y2="96.87" x3="17.83" y3="97.73"/>
  1840. <curve x1="19.59" y1="98.53" x2="21.59" y2="98.97" x3="23.66" y3="98.97"/>
  1841. <curve x1="25.72" y1="98.97" x2="27.69" y2="98.53" x3="29.46" y3="97.73"/>
  1842. <curve x1="31.29" y1="96.88" x2="33.34" y2="96.38" x3="35.45" y3="96.38"/>
  1843. <curve x1="37.58" y1="96.38" x2="39.63" y2="96.87" x3="41.44" y3="97.73"/>
  1844. <curve x1="43.22" y1="98.52" x2="45.2" y2="98.97" x3="47.27" y3="98.97"/>
  1845. <curve x1="49.34" y1="98.97" x2="51.31" y2="98.53" x3="53.1" y3="97.73"/>
  1846. <curve x1="54.92" y1="96.88" x2="56.96" y2="96.38" x3="59.09" y3="96.38"/>
  1847. <curve x1="61.23" y1="96.38" x2="63.28" y2="96.87" x3="65.09" y3="97.73"/>
  1848. <curve x1="66.86" y1="98.53" x2="68.86" y2="98.97" x3="70.93" y3="98.97"/>
  1849. <curve x1="73" y1="98.97" x2="74.98" y2="98.53" x3="76.73" y3="97.73"/>
  1850. <curve x1="78.57" y1="96.88" x2="80.62" y2="96.38" x3="82.73" y3="96.38"/>
  1851. <curve x1="84.87" y1="96.38" x2="86.92" y2="96.87" x3="88.72" y3="97.73"/>
  1852. <curve x1="90.51" y1="98.52" x2="92.49" y2="98.97" x3="94.56" y3="98.97"/>
  1853. <line x="94.56" y="90.25"/>
  1854. <curve x1="92.49" y1="90.25" x2="90.52" y2="89.78" x3="88.73" y3="89.01"/>
  1855. <move x="88.62" y="0.18"/>
  1856. <curve x1="88.15" y1="0" x2="87.63" y2="0.11" x3="87.26" y3="0.47"/>
  1857. <line x="63.28" y="24.45"/>
  1858. <curve x1="62.9" y1="24.28" x2="62.5" y2="24.19" x3="62.05" y3="24.19"/>
  1859. <line x="52.95" y="24.19"/>
  1860. <curve x1="51.4" y1="22.61" x2="43.18" y2="14.4" x3="43.18" y3="14.4"/>
  1861. <curve x1="42.76" y1="13.98" x2="42.22" y2="13.74" x3="41.67" y3="13.59"/>
  1862. <curve x1="39.78" y1="11.95" x2="36.94" y2="11.98" x3="35.13" y3="13.78"/>
  1863. <line x="20.92" y="27.98"/>
  1864. <curve x1="20.38" y1="28.52" x2="20.05" y2="29.27" x3="20.05" y3="30.07"/>
  1865. <line x="20.05" y="40.5"/>
  1866. <line x="0.07" y="40.5"/>
  1867. <line x="0.07" y="43.81"/>
  1868. <line x="20.05" y="43.81"/>
  1869. <line x="20.05" y="67.1"/>
  1870. <curve x1="20.05" y1="70.03" x2="22.42" y2="72.4" x3="25.35" y3="72.4"/>
  1871. <curve x1="28.26" y1="72.4" x2="30.69" y2="70.03" x3="30.69" y3="67.1"/>
  1872. <line x="30.69" y="43.81"/>
  1873. <line x="46.79" y="43.81"/>
  1874. <line x="46.79" y="74.69"/>
  1875. <line x="0.07" y="74.69"/>
  1876. <line x="0.07" y="80.32"/>
  1877. <line x="50.11" y="80.32"/>
  1878. <line x="50.11" y="43.81"/>
  1879. <line x="55.84" y="43.81"/>
  1880. <line x="55.84" y="40.5"/>
  1881. <line x="30.69" y="40.5"/>
  1882. <line x="30.69" y="37.54"/>
  1883. <line x="43.94" y="24.28"/>
  1884. <line x="49.34" y="29.68"/>
  1885. <curve x1="49.93" y1="30.29" x2="50.76" y2="30.62" x3="51.63" y3="30.62"/>
  1886. <line x="62.04" y="30.62"/>
  1887. <curve x1="63.82" y1="30.62" x2="65.27" y2="29.19" x3="65.27" y3="27.41"/>
  1888. <curve x1="65.27" y1="26.99" x2="65.17" y2="26.58" x3="65.03" y3="26.21"/>
  1889. <line x="86.9" y="4.37"/>
  1890. <line x="86.9" y="80.41"/>
  1891. <line x="89.4" y="80.41"/>
  1892. <line x="89.4" y="1.36"/>
  1893. <curve x1="89.4" y1="0.84" x2="89.09" y2="0.4" x3="88.62" y3="0.18"/>
  1894. </path>
  1895. </background>
  1896. <foreground>
  1897. <fillstroke/>
  1898. </foreground>
  1899. </shape>
  1900. <shape name="Fish Cleaning" h="63.51" w="98.87" aspect="variable" strokewidth="inherit">
  1901. <connections>
  1902. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  1903. <constraint x="0.5" y="0.79" perimeter="0" name="S"/>
  1904. <constraint x="0.015" y="0.51" perimeter="0" name="W"/>
  1905. <constraint x="1" y="0.39" perimeter="0" name="E"/>
  1906. <constraint x="0" y="0" perimeter="0" name="NW"/>
  1907. <constraint x="0" y="0.625" perimeter="0" name="SW"/>
  1908. <constraint x="0.98" y="0.02" perimeter="0" name="NE"/>
  1909. <constraint x="1" y="0.77" perimeter="0" name="SE"/>
  1910. </connections>
  1911. <background>
  1912. <path>
  1913. <move x="17" y="35.05"/>
  1914. <curve x1="18.8" y1="35.05" x2="20.33" y2="33.54" x3="20.33" y3="31.72"/>
  1915. <curve x1="20.33" y1="29.89" x2="18.8" y2="28.38" x3="17" y3="28.38"/>
  1916. <curve x1="15.21" y1="28.38" x2="13.67" y2="29.89" x3="13.67" y3="31.72"/>
  1917. <curve x1="13.67" y1="33.55" x2="15.21" y2="35.05" x3="17" y3="35.05"/>
  1918. <move x="0.1" y="39.98"/>
  1919. <line x="0.1" y="39.98"/>
  1920. <curve x1="0.05" y1="39.93" x2="0" y2="39.83" x3="0" y3="39.73"/>
  1921. <curve x1="0" y1="39.54" x2="0.17" y2="39.39" x3="0.36" y3="39.39"/>
  1922. <line x="10.89" y="39.39"/>
  1923. <curve x1="11.4" y1="39.39" x2="11.81" y2="38.97" x3="11.81" y3="38.46"/>
  1924. <curve x1="11.81" y1="38.06" x2="11.64" y2="37.79" x3="11.25" y3="37.57"/>
  1925. <line x="1.72" y="32.98"/>
  1926. <curve x1="1.55" y1="32.88" x2="1.42" y2="32.69" x3="1.42" y3="32.44"/>
  1927. <curve x1="1.42" y1="32.28" x2="1.47" y2="32.13" x3="1.59" y3="32"/>
  1928. <curve x1="1.59" y1="32" x2="26.6" y2="9.65" x3="81.98" y3="31.31"/>
  1929. <line x="97.18" y="23.81"/>
  1930. <curve x1="97.33" y1="23.73" x2="97.5" y2="23.68" x3="97.66" y3="23.68"/>
  1931. <curve x1="98.32" y1="23.68" x2="98.85" y2="24.22" x3="98.85" y3="24.89"/>
  1932. <curve x1="98.85" y1="25.1" x2="98.77" y2="25.31" x3="98.68" y3="25.49"/>
  1933. <line x="89.71" y="36.78"/>
  1934. <line x="98.68" y="48.04"/>
  1935. <curve x1="98.78" y1="48.24" x2="98.85" y2="48.44" x3="98.85" y3="48.68"/>
  1936. <curve x1="98.85" y1="49.32" x2="98.32" y2="49.86" x3="97.66" y3="49.86"/>
  1937. <curve x1="97.5" y1="49.86" x2="97.32" y2="49.81" x3="97.18" y3="49.73"/>
  1938. <line x="81.98" y="42.23"/>
  1939. <curve x1="81.99" y1="42.24" x2="29.05" y2="63.51" x3="0.1" y3="39.98"/>
  1940. <move x="64.24" y="0"/>
  1941. <line x="64.24" y="11.79"/>
  1942. <line x="93.04" y="11.79"/>
  1943. <curve x1="96.25" y1="11.79" x2="98.87" y2="9.15" x3="98.87" y3="5.9"/>
  1944. <curve x1="98.87" y1="2.62" x2="96.25" y2="0" x3="93.04" y3="0"/>
  1945. <line x="64.24" y="0"/>
  1946. <close/>
  1947. <move x="10.08" y="8.47"/>
  1948. <line x="12.74" y="7.34"/>
  1949. <line x="14.4" y="10.21"/>
  1950. <line x="17.09" y="8.25"/>
  1951. <line x="19.01" y="10.97"/>
  1952. <line x="21.58" y="8.86"/>
  1953. <line x="23.66" y="11.43"/>
  1954. <line x="26.09" y="9.2"/>
  1955. <line x="28.29" y="11.66"/>
  1956. <line x="30.62" y="9.29"/>
  1957. <line x="32.96" y="11.66"/>
  1958. <line x="35.29" y="9.29"/>
  1959. <line x="37.6" y="11.66"/>
  1960. <line x="39.95" y="9.29"/>
  1961. <line x="42.28" y="11.66"/>
  1962. <line x="44.61" y="9.29"/>
  1963. <line x="46.94" y="11.66"/>
  1964. <line x="49.26" y="9.29"/>
  1965. <line x="51.59" y="11.66"/>
  1966. <line x="53.92" y="9.29"/>
  1967. <line x="56.25" y="11.66"/>
  1968. <line x="58.57" y="9.29"/>
  1969. <line x="60.93" y="11.66"/>
  1970. <line x="60.93" y="0.02"/>
  1971. <line x="0" y="0.02"/>
  1972. <line x="0" y="0.07"/>
  1973. <curve x1="2.79" y1="3.46" x2="6.21" y2="6.34" x3="10.08" y3="8.47"/>
  1974. </path>
  1975. </background>
  1976. <foreground>
  1977. <fillstroke/>
  1978. </foreground>
  1979. </shape>
  1980. <shape name="Golf" h="99.01" w="63.61" aspect="variable" strokewidth="inherit">
  1981. <connections>
  1982. <constraint x="0.5" y="0.315" perimeter="0" name="N"/>
  1983. <constraint x="0.5" y="0.71" perimeter="0" name="S"/>
  1984. <constraint x="0.26" y="0.5" perimeter="0" name="W"/>
  1985. <constraint x="0.91" y="0.5" perimeter="0" name="E"/>
  1986. <constraint x="0.095" y="0" perimeter="0" name="NW"/>
  1987. <constraint x="0.25" y="1" perimeter="0" name="SW"/>
  1988. <constraint x="0.96" y="0.19" perimeter="0" name="NE"/>
  1989. </connections>
  1990. <background>
  1991. <path>
  1992. <move x="54.71" y="16.7"/>
  1993. <curve x1="49.99" y1="16.7" x2="46.18" y2="20.48" x3="46.18" y3="25.14"/>
  1994. <curve x1="46.18" y1="29.79" x2="49.99" y2="33.56" x3="54.71" y3="33.56"/>
  1995. <curve x1="59.41" y1="33.56" x2="63.23" y2="29.79" x3="63.23" y3="25.14"/>
  1996. <curve x1="63.23" y1="20.48" x2="59.41" y2="16.7" x3="54.71" y3="16.7"/>
  1997. <close/>
  1998. <move x="46.23" y="36.51"/>
  1999. <curve x1="46.23" y1="36.51" x2="39" y2="24.84" x3="29.94" y3="32.54"/>
  2000. <line x="9.76" y="13.05"/>
  2001. <line x="13.02" y="5.26"/>
  2002. <line x="6.17" y="0"/>
  2003. <line x="1.96" y="11.32"/>
  2004. <line x="1.83" y="11.43"/>
  2005. <line x="1.89" y="11.5"/>
  2006. <line x="1.83" y="11.67"/>
  2007. <line x="2.18" y="11.81"/>
  2008. <line x="26.81" y="35.85"/>
  2009. <curve x1="20.27" y1="43.89" x2="6.7" y2="64.16" x3="2.98" y3="72.58"/>
  2010. <curve x1="0" y1="79.28" x2="0" y2="83.06" x3="0" y3="83.06"/>
  2011. <line x="1.71" y="99.01"/>
  2012. <line x="23.3" y="99.01"/>
  2013. <line x="24.6" y="88.22"/>
  2014. <curve x1="24.6" y1="88.22" x2="24.18" y2="81.8" x3="26.3" y3="77.62"/>
  2015. <curve x1="28.42" y1="73.41" x2="46.84" y2="53.7" x3="46.84" y3="53.7"/>
  2016. <line x="59.8" y="60.02"/>
  2017. <line x="63.61" y="56.25"/>
  2018. <line x="46.23" y="36.51"/>
  2019. <close/>
  2020. </path>
  2021. </background>
  2022. <foreground>
  2023. <fillstroke/>
  2024. </foreground>
  2025. </shape>
  2026. <shape name="Golfing" h="99.46" w="55.23" aspect="variable" strokewidth="inherit">
  2027. <connections>
  2028. <constraint x="0.5" y="0.115" perimeter="0" name="N"/>
  2029. <constraint x="0.59" y="0.985" perimeter="0" name="S"/>
  2030. <constraint x="0.335" y="0.5" perimeter="0" name="W"/>
  2031. <constraint x="0.645" y="0.5" perimeter="0" name="E"/>
  2032. <constraint x="0.17" y="0" perimeter="0" name="NW"/>
  2033. <constraint x="0.03" y="0.98" perimeter="0" name="SW"/>
  2034. <constraint x="0.995" y="0.32" perimeter="0" name="NE"/>
  2035. </connections>
  2036. <background>
  2037. <path>
  2038. <move x="17.17" y="16.64"/>
  2039. <curve x1="13.05" y1="16.64" x2="9.73" y2="19.89" x3="9.73" y3="23.89"/>
  2040. <curve x1="9.73" y1="27.9" x2="13.05" y2="31.14" x3="17.17" y3="31.14"/>
  2041. <curve x1="21.26" y1="31.14" x2="24.59" y2="27.9" x3="24.59" y3="23.89"/>
  2042. <curve x1="24.59" y1="19.89" x2="21.27" y2="16.64" x3="17.17" y3="16.64"/>
  2043. <close/>
  2044. <move x="54.87" y="30.98"/>
  2045. <curve x1="54.59" y1="29.41" x2="53.29" y2="28.53" x3="53.22" y3="28.47"/>
  2046. <line x="9.54" y="0"/>
  2047. <line x="5.48" y="5.81"/>
  2048. <curve x1="4.72" y1="6.96" x2="5.05" y2="8.48" x3="6.21" y3="9.22"/>
  2049. <curve x1="7.36" y1="9.97" x2="8.9" y2="9.67" x3="9.66" y3="8.52"/>
  2050. <line x="12.04" y="5.16"/>
  2051. <line x="47.52" y="28.3"/>
  2052. <line x="18.45" y="33.47"/>
  2053. <curve x1="16.39" y1="33.81" x2="14.9" y2="35.85" x3="15.36" y3="37.84"/>
  2054. <line x="21.69" y="62.01"/>
  2055. <line x="1.22" y="92.35"/>
  2056. <curve x1="0" y1="94.42" x2="0.74" y2="97.07" x3="2.85" y3="98.26"/>
  2057. <curve x1="4.99" y1="99.46" x2="7.69" y2="98.73" x3="8.92" y3="96.66"/>
  2058. <curve x1="8.92" y1="96.66" x2="30.26" y2="64.94" x3="30.34" y3="64.74"/>
  2059. <curve x1="30.34" y1="64.74" x2="31.44" y2="69.14" x3="31.44" y3="69.16"/>
  2060. <line x="28.24" y="92.95"/>
  2061. <curve x1="27.84" y1="95.32" x2="29.46" y2="97.53" x3="31.88" y3="97.93"/>
  2062. <curve x1="34.3" y1="98.33" x2="36.59" y2="96.74" x3="37" y3="94.39"/>
  2063. <line x="40.31" y="69.91"/>
  2064. <curve x1="40.41" y1="69.28" x2="40.28" y2="67.91" x3="40.14" y3="67.31"/>
  2065. <line x="32.84" y="38.65"/>
  2066. <line x="51.83" y="35.27"/>
  2067. <curve x1="53.86" y1="34.92" x2="55.23" y2="32.99" x3="54.87" y3="30.98"/>
  2068. <close/>
  2069. </path>
  2070. </background>
  2071. <foreground>
  2072. <fillstroke/>
  2073. </foreground>
  2074. </shape>
  2075. <shape name="Gondola" h="89.38" w="99.12" aspect="variable" strokewidth="inherit">
  2076. <connections>
  2077. <constraint x="0.57" y="0.01" perimeter="0" name="N"/>
  2078. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  2079. <constraint x="0.22" y="0.55" perimeter="0" name="W"/>
  2080. <constraint x="0.81" y="0.55" perimeter="0" name="E"/>
  2081. <constraint x="0" y="0.43" perimeter="0" name="NW"/>
  2082. <constraint x="0.23" y="0.99" perimeter="0" name="SW"/>
  2083. <constraint x="1" y="0" perimeter="0" name="NE"/>
  2084. <constraint x="0.8" y="0.99" perimeter="0" name="SE"/>
  2085. </connections>
  2086. <background>
  2087. <path>
  2088. <move x="99.12" y="3.41"/>
  2089. <line x="99.12" y="0"/>
  2090. <line x="0" y="38.23"/>
  2091. <line x="0" y="41.66"/>
  2092. <close/>
  2093. <move x="43.48" y="16.96"/>
  2094. <curve x1="46.44" y1="16.96" x2="48.86" y2="14.49" x3="48.86" y3="11.45"/>
  2095. <curve x1="48.86" y1="8.42" x2="46.44" y2="5.97" x3="43.48" y3="5.97"/>
  2096. <curve x1="40.5" y1="5.97" x2="38.08" y2="8.41" x3="38.08" y3="11.45"/>
  2097. <curve x1="38.08" y1="14.49" x2="40.5" y2="16.96" x3="43.48" y3="16.96"/>
  2098. <close/>
  2099. <move x="76.87" y="45.46"/>
  2100. <line x="52.85" y="45.46"/>
  2101. <line x="52.85" y="25.6"/>
  2102. <line x="49.49" y="26.96"/>
  2103. <line x="49.49" y="45.46"/>
  2104. <line x="25.25" y="45.46"/>
  2105. <curve x1="23.35" y1="45.46" x2="21.8" y2="47.04" x3="21.8" y3="48.98"/>
  2106. <line x="21.8" y="85.86"/>
  2107. <curve x1="21.8" y1="87.8" x2="23.35" y2="89.38" x3="25.25" y3="89.38"/>
  2108. <line x="76.87" y="89.38"/>
  2109. <curve x1="78.77" y1="89.38" x2="80.32" y2="87.8" x3="80.32" y3="85.86"/>
  2110. <line x="80.32" y="48.98"/>
  2111. <curve x1="80.32" y1="47.04" x2="78.77" y2="45.46" x3="76.87" y3="45.46"/>
  2112. <close/>
  2113. <move x="40.22" y="65.49"/>
  2114. <curve x1="40.22" y1="66.54" x2="39.4" y2="67.41" x3="38.37" y3="67.41"/>
  2115. <line x="27.01" y="67.41"/>
  2116. <curve x1="25.98" y1="67.41" x2="25.14" y2="66.55" x3="25.14" y3="65.49"/>
  2117. <line x="25.14" y="53.94"/>
  2118. <curve x1="25.14" y1="52.89" x2="25.99" y2="52.02" x3="27.01" y3="52.02"/>
  2119. <line x="38.37" y="52.02"/>
  2120. <curve x1="39.4" y1="52.02" x2="40.22" y2="52.88" x3="40.22" y3="53.94"/>
  2121. <line x="40.22" y="65.49"/>
  2122. <close/>
  2123. <move x="58.69" y="65.35"/>
  2124. <curve x1="58.69" y1="66.41" x2="57.85" y2="67.24" x3="56.81" y3="67.24"/>
  2125. <line x="45.48" y="67.24"/>
  2126. <curve x1="44.44" y1="67.24" x2="43.6" y2="66.41" x3="43.6" y3="65.35"/>
  2127. <line x="43.6" y="53.77"/>
  2128. <curve x1="43.6" y1="52.72" x2="44.44" y2="51.89" x3="45.48" y3="51.89"/>
  2129. <line x="56.81" y="51.89"/>
  2130. <curve x1="57.85" y1="51.89" x2="58.69" y2="52.72" x3="58.69" y3="53.77"/>
  2131. <line x="58.69" y="65.35"/>
  2132. <close/>
  2133. <move x="77.01" y="65.35"/>
  2134. <curve x1="77.01" y1="66.41" x2="76.19" y2="67.24" x3="75.15" y3="67.24"/>
  2135. <line x="63.8" y="67.24"/>
  2136. <curve x1="62.77" y1="67.24" x2="61.92" y2="66.41" x3="61.92" y3="65.35"/>
  2137. <line x="61.92" y="53.77"/>
  2138. <curve x1="61.92" y1="52.72" x2="62.77" y2="51.89" x3="63.8" y3="51.89"/>
  2139. <line x="75.15" y="51.89"/>
  2140. <curve x1="76.19" y1="51.89" x2="77.01" y2="52.72" x3="77.01" y3="53.77"/>
  2141. <line x="77.01" y="65.35"/>
  2142. <close/>
  2143. <move x="56.35" y="12.06"/>
  2144. <curve x1="59.32" y1="12.06" x2="61.74" y2="9.59" x3="61.74" y3="6.55"/>
  2145. <curve x1="61.74" y1="3.51" x2="59.32" y2="1.04" x3="56.35" y3="1.04"/>
  2146. <curve x1="53.39" y1="1.04" x2="50.97" y2="3.51" x3="50.97" y3="6.55"/>
  2147. <curve x1="50.97" y1="9.59" x2="53.39" y2="12.06" x3="56.35" y3="12.06"/>
  2148. <close/>
  2149. </path>
  2150. </background>
  2151. <foreground>
  2152. <fillstroke/>
  2153. </foreground>
  2154. </shape>
  2155. <shape name="Hang Gliding" h="66.77" w="99.12" aspect="variable" strokewidth="inherit">
  2156. <connections>
  2157. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  2158. <constraint x="0.5" y="0.685" perimeter="0" name="S"/>
  2159. <constraint x="0" y="0.03" perimeter="0" name="NW"/>
  2160. <constraint x="0.15" y="0.995" perimeter="0" name="SW"/>
  2161. <constraint x="0.995" y="0.05" perimeter="0" name="NE"/>
  2162. <constraint x="0.75" y="0.69" perimeter="0" name="SE"/>
  2163. </connections>
  2164. <background>
  2165. <path>
  2166. <move x="56.91" y="34.76"/>
  2167. <curve x1="59.47" y1="35.66" x2="62.25" y2="34.29" x3="63.14" y3="31.67"/>
  2168. <curve x1="64.03" y1="29.04" x2="62.67" y2="26.19" x3="60.11" y3="25.28"/>
  2169. <curve x1="57.55" y1="24.36" x2="54.77" y2="25.75" x3="53.88" y3="28.38"/>
  2170. <curve x1="53.01" y1="30.99" x2="54.35" y2="33.86" x3="56.91" y3="34.76"/>
  2171. <close/>
  2172. <move x="97.05" y="2.04"/>
  2173. <curve x1="97.05" y1="2.04" x2="80.49" y2="0" x3="46.09" y3="0"/>
  2174. <curve x1="20.72" y1="0.01" x2="0" y2="2.04" x3="0" y3="2.04"/>
  2175. <curve x1="0" y1="2.04" x2="8.59" y2="5.92" x3="7.1" y3="17.95"/>
  2176. <curve x1="7.1" y1="17.95" x2="19.43" y2="16.45" x3="24.6" y3="27.28"/>
  2177. <line x="47.76" y="20.08"/>
  2178. <line x="46.24" y="35.92"/>
  2179. <line x="36.45" y="38.38"/>
  2180. <curve x1="35.58" y1="38.58" x2="34.85" y2="39.02" x3="34.25" y3="39.57"/>
  2181. <line x="12.76" y="60.84"/>
  2182. <curve x1="11.49" y1="62.07" x2="11.46" y2="64.15" x3="12.69" y3="65.42"/>
  2183. <curve x1="13.89" y1="66.72" x2="15.92" y2="66.77" x3="17.16" y3="65.54"/>
  2184. <line x="33.34" y="49.56"/>
  2185. <line x="53.15" y="44.59"/>
  2186. <line x="53.01" y="44.63"/>
  2187. <line x="56.31" y="43.77"/>
  2188. <line x="59.34" y="47.31"/>
  2189. <curve x1="59.81" y1="47.83" x2="60.47" y2="48.16" x3="61.19" y3="48.16"/>
  2190. <line x="71.86" y="48.2"/>
  2191. <curve x1="73.2" y1="48.2" x2="74.31" y2="47.08" x3="74.31" y3="45.69"/>
  2192. <line x="74.31" y="45.69"/>
  2193. <curve x1="74.31" y1="44.48" x2="73.49" y2="43.54" x3="72.39" y3="43.26"/>
  2194. <line x="64.45" y="14.91"/>
  2195. <line x="97.54" y="4.62"/>
  2196. <curve x1="99.12" y1="3.92" x2="98.99" y2="2.26" x3="97.05" y3="2.04"/>
  2197. <close/>
  2198. <move x="70" y="43.14"/>
  2199. <curve x1="67.57" y1="43.14" x2="63.52" y2="43.12" x3="62.3" y3="43.12"/>
  2200. <curve x1="61.14" y1="41.77" x2="56.55" y2="36.46" x3="56.55" y3="36.46"/>
  2201. <curve x1="56.49" y1="36.36" x2="56.37" y2="36.34" x3="56.31" y3="36.28"/>
  2202. <curve x1="55.15" y1="34.88" x2="53.3" y2="34.17" x3="51.46" y3="34.62"/>
  2203. <line x="48.59" y="35.35"/>
  2204. <line x="50.12" y="19.35"/>
  2205. <line x="62.25" y="15.58"/>
  2206. <line x="70" y="43.14"/>
  2207. <close/>
  2208. </path>
  2209. </background>
  2210. <foreground>
  2211. <fillstroke/>
  2212. </foreground>
  2213. </shape>
  2214. <shape name="Hiker" h="98.89" w="63.72" aspect="variable" strokewidth="inherit">
  2215. <connections>
  2216. <constraint x="0.46" y="0" perimeter="0" name="N"/>
  2217. <constraint x="0.59" y="1" perimeter="0" name="S"/>
  2218. <constraint x="0.21" y="0.5" perimeter="0" name="W"/>
  2219. <constraint x="0.935" y="0.5" perimeter="0" name="E"/>
  2220. <constraint x="0.1" y="0.13" perimeter="0" name="NW"/>
  2221. <constraint x="0.13" y="1" perimeter="0" name="SW"/>
  2222. <constraint x="0.98" y="0.25" perimeter="0" name="NE"/>
  2223. <constraint x="0.76" y="1" perimeter="0" name="SE"/>
  2224. </connections>
  2225. <background>
  2226. <path>
  2227. <move x="30" y="15.55"/>
  2228. <curve x1="34.34" y1="15.55" x2="37.85" y2="12.06" x3="37.85" y3="7.77"/>
  2229. <curve x1="37.85" y1="3.48" x2="34.34" y2="0" x3="30" y3="0"/>
  2230. <curve x1="25.66" y1="0" x2="22.13" y2="3.47" x3="22.13" y3="7.76"/>
  2231. <curve x1="22.13" y1="12.05" x2="25.66" y2="15.55" x3="30" y3="15.55"/>
  2232. <close/>
  2233. <move x="16.72" y="16.84"/>
  2234. <curve x1="17.02" y1="15.65" x2="16.26" y2="14.45" x3="15.07" y3="14.15"/>
  2235. <line x="8.52" y="12.59"/>
  2236. <curve x1="7.29" y1="12.32" x2="6.08" y2="13.03" x3="5.8" y3="14.22"/>
  2237. <line x="0.3" y="36.74"/>
  2238. <curve x1="0" y1="37.93" x2="0.74" y2="39.13" x3="1.95" y3="39.43"/>
  2239. <line x="8.52" y="40.99"/>
  2240. <curve x1="9.7" y1="41.29" x2="10.94" y2="40.55" x3="11.21" y3="39.36"/>
  2241. <line x="16.72" y="16.84"/>
  2242. <close/>
  2243. <move x="46.95" y="96.95"/>
  2244. <curve x1="46.95" y1="97" x2="46.93" y2="97.04" x3="46.93" y3="97.06"/>
  2245. <curve x1="46.93" y1="98.05" x2="47.74" y2="98.85" x3="48.74" y3="98.85"/>
  2246. <curve x1="49.65" y1="98.85" x2="50.41" y2="98.16" x3="50.53" y3="97.29"/>
  2247. <line x="63.72" y="26.54"/>
  2248. <curve x1="63.72" y1="26.49" x2="63.72" y2="26.45" x3="63.72" y3="26.4"/>
  2249. <curve x1="63.72" y1="25.44" x2="62.93" y2="24.63" x3="61.93" y3="24.63"/>
  2250. <curve x1="61.02" y1="24.63" x2="60.33" y2="25.32" x3="60.14" y3="26.19"/>
  2251. <line x="46.95" y="96.95"/>
  2252. <close/>
  2253. <move x="3.06" y="92.31"/>
  2254. <curve x1="2.99" y1="92.68" x2="2.97" y2="93.05" x3="2.97" y3="93.41"/>
  2255. <curve x1="2.97" y1="96.45" x2="5.43" y2="98.88" x3="8.5" y3="98.88"/>
  2256. <curve x1="11.01" y1="98.88" x2="13.12" y2="97.23" x3="13.8" y3="94.98"/>
  2257. <line x="23.3" y="56.11"/>
  2258. <line x="32.36" y="94.76"/>
  2259. <curve x1="32.94" y1="97.15" x2="35.12" y2="98.89" x3="37.7" y3="98.89"/>
  2260. <curve x1="40.77" y1="98.89" x2="43.23" y2="96.46" x3="43.23" y3="93.43"/>
  2261. <curve x1="43.23" y1="93.02" x2="43.18" y2="92.63" x3="43.11" y3="92.24"/>
  2262. <line x="30.67" y="40.88"/>
  2263. <line x="31.72" y="36.36"/>
  2264. <line x="32.53" y="39.92"/>
  2265. <curve x1="33.27" y1="42.24" x2="35.41" y2="42.47" x3="35.41" y3="42.47"/>
  2266. <line x="48.21" y="45.68"/>
  2267. <curve x1="48.47" y1="45.73" x2="48.72" y2="45.75" x3="48.98" y3="45.75"/>
  2268. <curve x1="51.07" y1="45.75" x2="52.76" y2="44.1" x3="52.76" y3="42.03"/>
  2269. <curve x1="52.76" y1="40.26" x2="51.53" y2="38.77" x3="49.86" y3="38.38"/>
  2270. <line x="38.78" y="35.62"/>
  2271. <line x="35.74" y="23.4"/>
  2272. <curve x1="34.3" y1="16.58" x2="27.7" y2="16.74" x3="27.7" y3="16.74"/>
  2273. <curve x1="21.29" y1="16.58" x2="19.69" y2="23.24" x3="19.69" y3="23.24"/>
  2274. <line x="3.06" y="92.31"/>
  2275. <close/>
  2276. </path>
  2277. </background>
  2278. <foreground>
  2279. <fillstroke/>
  2280. </foreground>
  2281. </shape>
  2282. <shape name="Hiking" h="93.74" w="98.87" aspect="variable" strokewidth="inherit">
  2283. <connections>
  2284. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  2285. <constraint x="0.01" y="0.5" perimeter="0" name="W"/>
  2286. <constraint x="0.905" y="0.5" perimeter="0" name="E"/>
  2287. <constraint x="0.2" y="0" perimeter="0" name="NW"/>
  2288. <constraint x="0.23" y="0.99" perimeter="0" name="SW"/>
  2289. <constraint x="0.7" y="0.095" perimeter="0" name="NE"/>
  2290. <constraint x="0.95" y="1" perimeter="0" name="SE"/>
  2291. </connections>
  2292. <background>
  2293. <path>
  2294. <move x="69.49" y="8.82"/>
  2295. <curve x1="65.62" y1="8.82" x2="62.64" y2="11.95" x3="62.64" y3="15.75"/>
  2296. <curve x1="62.64" y1="19.66" x2="65.62" y2="22.79" x3="69.49" y3="22.79"/>
  2297. <curve x1="73.24" y1="22.79" x2="76.34" y2="19.66" x3="76.34" y3="15.75"/>
  2298. <curve x1="76.33" y1="11.95" x2="73.24" y2="8.82" x3="69.49" y3="8.82"/>
  2299. <close/>
  2300. <move x="88.6" y="54.3"/>
  2301. <curve x1="90.03" y1="51.06" x2="89.7" y2="44.47" x3="88.27" y3="37.76"/>
  2302. <curve x1="88.38" y1="37.98" x2="88.93" y2="39.55" x3="89.04" y3="39.66"/>
  2303. <curve x1="91.36" y1="41.56" x2="94.01" y2="40.67" x3="95.22" y3="37.31"/>
  2304. <curve x1="92.68" y1="31.61" x2="90.14" y2="25.91" x3="87.6" y3="20.21"/>
  2305. <curve x1="85.5" y1="19.88" x2="83.51" y2="20.55" x3="81.41" y3="22.22"/>
  2306. <curve x1="82.41" y1="24.57" x2="83.29" y2="26.91" x3="84.17" y3="29.26"/>
  2307. <line x="80.52" y="24.79"/>
  2308. <line x="74.33" y="22.89"/>
  2309. <line x="70.35" y="24.23"/>
  2310. <curve x1="70.02" y1="24.56" x2="69.68" y2="25.01" x3="69.47" y3="25.35"/>
  2311. <curve x1="66.49" y1="29.82" x2="64.83" y2="34.51" x3="63.94" y3="39.32"/>
  2312. <curve x1="59.96" y1="41.89" x2="56.21" y2="44.24" x3="52.34" y3="46.81"/>
  2313. <curve x1="51.45" y1="47.37" x2="50.57" y2="47.93" x3="49.8" y3="48.49"/>
  2314. <line x="51.24" y="52.63"/>
  2315. <line x="52.34" y="52.29"/>
  2316. <line x="53.22" y="51.95"/>
  2317. <line x="65.48" y="73.85"/>
  2318. <line x="61.2" y="91.84"/>
  2319. <line x="68.82" y="93.74"/>
  2320. <line x="69.49" y="91.62"/>
  2321. <line x="71.37" y="86.03"/>
  2322. <line x="76.12" y="93.51"/>
  2323. <line x="78.88" y="92.95"/>
  2324. <line x="72.69" y="80.88"/>
  2325. <line x="75.23" y="69.71"/>
  2326. <line x="80.42" y="64.01"/>
  2327. <line x="93.79" y="93.51"/>
  2328. <line x="98.87" y="90.17"/>
  2329. <line x="88.6" y="54.3"/>
  2330. <close/>
  2331. <move x="69.49" y="61.89"/>
  2332. <curve x1="68.38" y1="64.13" x2="67.39" y2="66.36" x3="66.39" y3="68.71"/>
  2333. <line x="56.34" y="50.95"/>
  2334. <line x="68.16" y="46.37"/>
  2335. <line x="69.49" y="44.25"/>
  2336. <line x="71.37" y="41.23"/>
  2337. <curve x1="72.81" y1="44.13" x2="74.35" y2="46.93" x3="75.79" y3="49.72"/>
  2338. <curve x1="73.57" y1="53.74" x2="71.47" y2="57.76" x3="69.49" y3="61.89"/>
  2339. <close/>
  2340. <move x="20.98" y="0"/>
  2341. <curve x1="17" y1="0" x2="13.69" y2="3.35" x3="13.69" y3="7.37"/>
  2342. <curve x1="13.69" y1="11.51" x2="17" y2="14.74" x3="20.98" y3="14.74"/>
  2343. <curve x1="24.96" y1="14.74" x2="28.27" y2="11.5" x3="28.27" y3="7.37"/>
  2344. <curve x1="28.28" y1="3.35" x2="24.96" y2="0" x3="20.98" y3="0"/>
  2345. <close/>
  2346. <move x="42.64" y="48.93"/>
  2347. <curve x1="43.86" y1="47.14" x2="44.52" y2="44.91" x3="44.63" y3="42.34"/>
  2348. <curve x1="44.3" y1="39.32" x2="43.19" y2="35.97" x3="42.2" y3="32.84"/>
  2349. <curve x1="41.21" y1="30.83" x2="42.09" y2="32.84" x3="42.86" y3="33.06"/>
  2350. <curve x1="46.18" y1="34.18" x2="48.05" y2="33.06" x3="49.05" y3="30.49"/>
  2351. <curve x1="45.96" y1="23.56" x2="43.3" y2="16.75" x3="40.1" y3="9.93"/>
  2352. <curve x1="37.56" y1="10.04" x2="35.57" y2="10.94" x3="34.25" y3="12.5"/>
  2353. <line x="38.56" y="24.46"/>
  2354. <curve x1="36.02" y1="18.54" x2="32.7" y2="14.4" x3="27.18" y3="14.51"/>
  2355. <curve x1="25.19" y1="14.51" x2="23.09" y2="15.52" x3="20.99" y3="17.64"/>
  2356. <curve x1="20.88" y1="17.75" x2="20.77" y2="17.86" x3="20.66" y3="17.97"/>
  2357. <curve x1="18.89" y1="23.11" x2="17.12" y2="28.36" x3="15.36" y3="33.5"/>
  2358. <line x="0" y="44.13"/>
  2359. <line x="2.1" y="48.38"/>
  2360. <line x="4.42" y="47.6"/>
  2361. <line x="18.01" y="71.06"/>
  2362. <line x="14.24" y="90.84"/>
  2363. <line x="20.98" y="92.63"/>
  2364. <line x="22.42" y="92.97"/>
  2365. <line x="24.74" y="83.25"/>
  2366. <line x="30.04" y="91.85"/>
  2367. <line x="34.02" y="91.52"/>
  2368. <line x="25.84" y="76.77"/>
  2369. <line x="27.5" y="68.5"/>
  2370. <line x="34.02" y="60.57"/>
  2371. <line x="49.6" y="93.52"/>
  2372. <line x="52.36" y="91.17"/>
  2373. <line x="54.79" y="89.05"/>
  2374. <line x="42.64" y="48.93"/>
  2375. <close/>
  2376. <move x="20.98" y="60.33"/>
  2377. <line x="18.99" y="64.58"/>
  2378. <line x="7.95" y="46.03"/>
  2379. <line x="20.88" y="39.44"/>
  2380. <curve x1="20.88" y1="39.33" x2="20.99" y2="39.22" x3="20.99" y3="39.22"/>
  2381. <curve x1="21.76" y1="37.99" x2="22.54" y2="36.87" x3="23.2" y3="35.76"/>
  2382. <curve x1="25.63" y1="38.78" x2="27.29" y2="41.91" x3="28.17" y3="44.92"/>
  2383. <line x="20.98" y="60.33"/>
  2384. <close/>
  2385. </path>
  2386. </background>
  2387. <foreground>
  2388. <fillstroke/>
  2389. </foreground>
  2390. </shape>
  2391. <shape name="Horseback Trail" h="99.36" w="99.7" aspect="variable" strokewidth="inherit">
  2392. <connections>
  2393. <constraint x="0.385" y="0" perimeter="0" name="N"/>
  2394. <constraint x="0.35" y="0.995" perimeter="0" name="S"/>
  2395. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  2396. <constraint x="0.74" y="0.5" perimeter="0" name="E"/>
  2397. <constraint x="0.115" y="0.995" perimeter="0" name="SW"/>
  2398. <constraint x="0.84" y="0.09" perimeter="0" name="NE"/>
  2399. <constraint x="0.62" y="0.995" perimeter="0" name="SE"/>
  2400. </connections>
  2401. <background>
  2402. <path>
  2403. <move x="38.53" y="13.85"/>
  2404. <curve x1="42.35" y1="13.85" x2="45.43" y2="10.75" x3="45.43" y3="6.94"/>
  2405. <curve x1="45.43" y1="3.1" x2="42.35" y2="0" x3="38.53" y3="0"/>
  2406. <curve x1="34.73" y1="0" x2="31.65" y2="3.1" x3="31.65" y3="6.94"/>
  2407. <curve x1="31.65" y1="10.75" x2="34.73" y2="13.85" x3="38.53" y3="13.85"/>
  2408. <move x="89.75" y="33.81"/>
  2409. <line x="82.44" y="32.4"/>
  2410. <line x="78.19" y="40.89"/>
  2411. <curve x1="78.88" y1="41.06" x2="79.59" y2="41.13" x3="80.32" y3="41.13"/>
  2412. <curve x1="84.87" y1="41.13" x2="88.66" y2="38.03" x3="89.75" y3="33.81"/>
  2413. <move x="0" y="48.14"/>
  2414. <curve x1="0" y1="42.51" x2="4.53" y2="37.94" x3="10.13" y3="37.94"/>
  2415. <line x="31.51" y="37.94"/>
  2416. <line x="31.51" y="22.51"/>
  2417. <curve x1="31.51" y1="18.67" x2="34.59" y2="15.57" x3="38.41" y3="15.57"/>
  2418. <curve x1="42.23" y1="15.57" x2="45.31" y2="18.67" x3="45.31" y3="22.51"/>
  2419. <line x="45.31" y="24.89"/>
  2420. <line x="55.49" y="27.51"/>
  2421. <curve x1="57.27" y1="27.92" x2="58.41" y2="29.7" x3="58" y3="31.49"/>
  2422. <curve x1="57.6" y1="33.3" x2="55.82" y2="34.42" x3="54.01" y3="34.02"/>
  2423. <line x="45.3" y="31.97"/>
  2424. <line x="45.3" y="37.93"/>
  2425. <line x="55.55" y="37.93"/>
  2426. <line x="83.61" y="8.77"/>
  2427. <line x="82.78" y="16.35"/>
  2428. <line x="96.59" y="25.58"/>
  2429. <curve x1="98.87" y1="26.89" x2="99.7" y2="29.85" x3="98.39" y3="32.15"/>
  2430. <curve x1="97.37" y1="33.97" x2="95.33" y2="34.86" x3="93.41" y3="34.5"/>
  2431. <line x="92.3" y="34.29"/>
  2432. <curve x1="90.97" y1="39.7" x2="86.11" y2="43.68" x3="80.34" y3="43.68"/>
  2433. <curve x1="79.2" y1="43.68" x2="78.09" y2="43.51" x3="77.04" y3="43.23"/>
  2434. <line x="66.57" y="64.7"/>
  2435. <line x="66.57" y="94.18"/>
  2436. <curve x1="66.57" y1="96.71" x2="64.51" y2="98.76" x3="61.99" y3="98.76"/>
  2437. <curve x1="59.48" y1="98.76" x2="57.44" y2="96.71" x3="57.44" y3="94.18"/>
  2438. <line x="57.44" y="64.04"/>
  2439. <line x="34.35" y="64.04"/>
  2440. <line x="30.22" y="71.15"/>
  2441. <line x="38.86" y="91.85"/>
  2442. <curve x1="40.12" y1="94.07" x2="39.33" y2="96.86" x3="37.15" y3="98.1"/>
  2443. <curve x1="34.94" y1="99.36" x2="32.17" y2="98.58" x3="30.91" y3="96.36"/>
  2444. <line x="20.83" y="72.48"/>
  2445. <line x="20.83" y="64.87"/>
  2446. <line x="16.32" y="72"/>
  2447. <line x="16.32" y="94.17"/>
  2448. <curve x1="16.32" y1="96.7" x2="14.28" y2="98.75" x3="11.76" y3="98.75"/>
  2449. <curve x1="9.24" y1="98.75" x2="7.18" y2="96.7" x3="7.18" y3="94.17"/>
  2450. <line x="7.18" y="68.57"/>
  2451. <line x="10.95" y="62.63"/>
  2452. <line x="10.95" y="42.54"/>
  2453. <line x="7.2" y="48.31"/>
  2454. <line x="7.2" y="65.05"/>
  2455. <line x="0" y="65.05"/>
  2456. <line x="0" y="48.14"/>
  2457. <close/>
  2458. </path>
  2459. </background>
  2460. <foreground>
  2461. <fillstroke/>
  2462. </foreground>
  2463. </shape>
  2464. <shape name="Ice Fishing" h="99.13" w="99.12" aspect="variable" strokewidth="inherit">
  2465. <connections>
  2466. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  2467. <constraint x="0.5" y="0.905" perimeter="0" name="S"/>
  2468. <constraint x="0.135" y="0.5" perimeter="0" name="W"/>
  2469. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  2470. <constraint x="0" y="0" perimeter="0" name="NW"/>
  2471. <constraint x="1" y="0" perimeter="0" name="NE"/>
  2472. <constraint x="1" y="1" perimeter="0" name="SE"/>
  2473. </connections>
  2474. <background>
  2475. <path>
  2476. <move x="59.92" y="69.29"/>
  2477. <curve x1="62.11" y1="69.29" x2="63.89" y2="67.44" x3="63.89" y3="65.19"/>
  2478. <curve x1="63.89" y1="62.92" x2="62.12" y2="61.1" x3="59.92" y3="61.1"/>
  2479. <curve x1="57.75" y1="61.1" x2="55.98" y2="62.92" x3="55.98" y3="65.19"/>
  2480. <curve x1="55.99" y1="67.44" x2="57.76" y2="69.29" x3="59.92" y3="69.29"/>
  2481. <move x="99.12" y="98.77"/>
  2482. <curve x1="75.7" y1="99.13" x2="51.19" y2="94.49" x3="32.4" y3="78.92"/>
  2483. <curve x1="32.31" y1="78.79" x2="32.24" y2="78.66" x3="32.24" y3="78.47"/>
  2484. <curve x1="32.24" y1="78.11" x2="32.52" y2="77.82" x3="32.89" y3="77.82"/>
  2485. <line x="51.36" y="77.84"/>
  2486. <curve x1="52.27" y1="77.84" x2="52.98" y2="77.09" x3="52.98" y3="76.15"/>
  2487. <curve x1="52.98" y1="75.45" x2="52.67" y2="74.98" x3="51.97" y3="74.61"/>
  2488. <line x="35.27" y="66.35"/>
  2489. <curve x1="34.94" y1="66.16" x2="34.74" y2="65.8" x3="34.74" y3="65.38"/>
  2490. <curve x1="34.74" y1="65.06" x2="34.86" y2="64.78" x3="35.05" y3="64.59"/>
  2491. <curve x1="35.05" y1="64.59" x2="55.43" y2="45.97" x3="99.12" y3="46.39"/>
  2492. <line x="99.12" y="98.77"/>
  2493. <close/>
  2494. <move x="17.6" y="0"/>
  2495. <line x="0" y="0"/>
  2496. <line x="0" y="14.77"/>
  2497. <line x="17.61" y="14.77"/>
  2498. <line x="17.61" y="0"/>
  2499. <close/>
  2500. <move x="99.12" y="0"/>
  2501. <line x="36.47" y="0"/>
  2502. <line x="36.47" y="14.59"/>
  2503. <line x="99.12" y="14.59"/>
  2504. <line x="99.12" y="0"/>
  2505. <close/>
  2506. <move x="25.9" y="22.55"/>
  2507. <curve x1="24.35" y1="23.07" x2="23.23" y2="24.61" x3="23.23" y3="26.41"/>
  2508. <curve x1="23.23" y1="28.19" x2="24.38" y2="29.73" x3="25.9" y3="30.3"/>
  2509. <line x="25.9" y="55.54"/>
  2510. <curve x1="25.9" y1="58.8" x2="23.39" y2="61.41" x3="20.24" y3="61.41"/>
  2511. <curve x1="17.11" y1="61.41" x2="14.59" y2="58.8" x3="14.59" y3="55.54"/>
  2512. <curve x1="14.59" y1="54.74" x2="14.74" y2="53.98" x3="15.03" y3="53.27"/>
  2513. <line x="15.26" y="53.47"/>
  2514. <line x="17.26" y="55.35"/>
  2515. <line x="16.01" y="43.86"/>
  2516. <line x="12.76" y="51.61"/>
  2517. <curve x1="11.78" y1="54" x2="12.01" y2="55.54" x3="12.01" y3="55.54"/>
  2518. <curve x1="12.01" y1="60.24" x2="15.69" y2="64.07" x3="20.24" y3="64.07"/>
  2519. <curve x1="24.81" y1="64.07" x2="28.48" y2="60.24" x3="28.48" y3="55.54"/>
  2520. <line x="28.48" y="30.25"/>
  2521. <curve x1="30.02" y1="29.69" x2="31.13" y2="28.16" x3="31.13" y3="26.41"/>
  2522. <curve x1="31.13" y1="24.62" x2="30.02" y2="23.08" x3="28.48" y3="22.5"/>
  2523. <line x="28.48" y="0"/>
  2524. <line x="25.91" y="0"/>
  2525. <line x="25.91" y="22.55"/>
  2526. <close/>
  2527. </path>
  2528. </background>
  2529. <foreground>
  2530. <fillstroke/>
  2531. </foreground>
  2532. </shape>
  2533. <shape name="Ice Skating" h="100.3" w="95.69" aspect="variable" strokewidth="inherit">
  2534. <connections>
  2535. <constraint x="0.5" y="0.15" perimeter="0" name="N"/>
  2536. <constraint x="0.24" y="0.19" perimeter="0" name="NW"/>
  2537. <constraint x="0.2" y="0.98" perimeter="0" name="SW"/>
  2538. <constraint x="0.97" y="0.02" perimeter="0" name="NE"/>
  2539. <constraint x="0.92" y="0.98" perimeter="0" name="SE"/>
  2540. </connections>
  2541. <background>
  2542. <path>
  2543. <move x="86.61" y="18.15"/>
  2544. <curve x1="91.61" y1="18.15" x2="95.69" y2="14.08" x3="95.69" y3="9.07"/>
  2545. <curve x1="95.69" y1="4.05" x2="91.61" y2="0" x3="86.61" y3="0"/>
  2546. <curve x1="81.6" y1="0" x2="77.53" y2="4.05" x3="77.53" y3="9.07"/>
  2547. <curve x1="77.53" y1="14.09" x2="81.6" y2="18.15" x3="86.61" y3="18.15"/>
  2548. <move x="60.85" y="95.59"/>
  2549. <line x="84.27" y="95.59"/>
  2550. <curve x1="84.27" y1="95.59" x2="86.05" y2="95.77" x3="86.05" y3="93.92"/>
  2551. <line x="86.05" y="92.08"/>
  2552. <line x="89.5" y="92.08"/>
  2553. <curve x1="89.5" y1="92.08" x2="90.3" y2="98.42" x3="85.57" y3="99.02"/>
  2554. <line x="60.85" y="99.02"/>
  2555. <line x="60.85" y="95.59"/>
  2556. <close/>
  2557. <move x="2.4" y="77.45"/>
  2558. <line x="18.98" y="94.03"/>
  2559. <curve x1="18.98" y1="94.03" x2="20.09" y2="95.4" x3="21.4" y3="94.1"/>
  2560. <line x="22.72" y="92.78"/>
  2561. <line x="25.15" y="95.24"/>
  2562. <curve x1="25.15" y1="95.24" x2="21.23" y2="100.3" x3="17.47" y3="97.38"/>
  2563. <line x="0" y="79.89"/>
  2564. <line x="2.4" y="77.45"/>
  2565. <close/>
  2566. <move x="66.36" y="71.69"/>
  2567. <line x="66.39" y="88.13"/>
  2568. <curve x1="66.39" y1="91.22" x2="68.89" y2="93.73" x3="71.98" y3="93.73"/>
  2569. <curve x1="74.8" y1="93.73" x2="77.56" y2="90.46" x3="77.56" y3="88.13"/>
  2570. <line x="77.56" y="65.25"/>
  2571. <curve x1="77.56" y1="63.66" x2="76.89" y2="62.21" x3="75.82" y3="61.19"/>
  2572. <line x="62.42" y="47.81"/>
  2573. <line x="80.2" y="30.01"/>
  2574. <curve x1="83.54" y1="25.82" x2="81.78" y2="20.82" x3="81.78" y3="20.82"/>
  2575. <curve x1="79.94" y1="15.27" x2="73.64" y2="15.08" x3="73.64" y3="15.08"/>
  2576. <line x="27.81" y="15.07"/>
  2577. <curve x1="25.37" y1="15.07" x2="23.38" y2="17.05" x3="23.38" y3="19.5"/>
  2578. <curve x1="23.38" y1="21.96" x2="25.37" y2="23.93" x3="27.81" y3="23.93"/>
  2579. <line x="59.45" y="23.98"/>
  2580. <line x="46.13" y="37.26"/>
  2581. <curve x1="44.23" y1="39.22" x2="43.26" y2="41.42" x3="43.26" y3="44.28"/>
  2582. <curve x1="43.26" y1="47.04" x2="44.36" y2="49.51" x3="46.19" y3="51.3"/>
  2583. <line x="66.36" y="71.69"/>
  2584. <close/>
  2585. <move x="43.34" y="53.81"/>
  2586. <curve x1="42.92" y1="53.4" x2="42.54" y2="52.94" x3="42.18" y3="52.47"/>
  2587. <line x="15.74" y="79"/>
  2588. <curve x1="13.73" y1="80.61" x2="13.09" y2="83.43" x3="14.28" y3="85.8"/>
  2589. <curve x1="15.67" y1="88.5" x2="18.99" y2="89.58" x3="21.7" y3="88.19"/>
  2590. <curve x1="22.07" y1="87.99" x2="22.41" y2="87.76" x3="22.72" y3="87.51"/>
  2591. <line x="49.87" y="60.3"/>
  2592. <line x="43.34" y="53.81"/>
  2593. <close/>
  2594. </path>
  2595. </background>
  2596. <foreground>
  2597. <fillstroke/>
  2598. </foreground>
  2599. </shape>
  2600. <shape name="Indoor Swimming" h="89.37" w="99.38" aspect="variable" strokewidth="inherit">
  2601. <connections>
  2602. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  2603. <constraint x="0.5" y="0.97" perimeter="0" name="S"/>
  2604. <constraint x="0.045" y="0.66" perimeter="0" name="W"/>
  2605. <constraint x="0.97" y="0.59" perimeter="0" name="E"/>
  2606. <constraint x="0" y="0.175" perimeter="0" name="NW"/>
  2607. <constraint x="0.03" y="1" perimeter="0" name="SW"/>
  2608. <constraint x="1" y="0.175" perimeter="0" name="NE"/>
  2609. <constraint x="0.965" y="0.99" perimeter="0" name="SE"/>
  2610. </connections>
  2611. <background>
  2612. <path>
  2613. <move x="49.68" y="0"/>
  2614. <line x="0" y="15.76"/>
  2615. <line x="0" y="22.89"/>
  2616. <line x="49.68" y="7.14"/>
  2617. <line x="99.38" y="22.89"/>
  2618. <line x="99.38" y="15.76"/>
  2619. <close/>
  2620. <move x="96" y="71.54"/>
  2621. <curve x1="95.19" y1="71.79" x2="94.14" y2="71.74" x3="92.77" y3="71.44"/>
  2622. <curve x1="91.37" y1="71.12" x2="90.1" y2="69.61" x3="87.79" y3="69.69"/>
  2623. <curve x1="85.41" y1="69.77" x2="82.06" y2="71.94" x3="78.82" y3="71.94"/>
  2624. <curve x1="75.53" y1="71.87" x2="71.84" y2="69.6" x3="68.48" y3="69.6"/>
  2625. <curve x1="65.14" y1="69.62" x2="62.1" y2="71.98" x3="58.89" y3="72.05"/>
  2626. <curve x1="55.62" y1="72.06" x2="52.37" y2="69.85" x3="49.17" y3="69.8"/>
  2627. <curve x1="45.93" y1="69.72" x2="42.86" y2="71.76" x3="39.83" y3="71.74"/>
  2628. <curve x1="36.85" y1="71.68" x2="34.2" y2="69.5" x3="31.24" y3="69.6"/>
  2629. <curve x1="28.2" y1="69.72" x2="24.87" y2="72.11" x3="21.9" y3="72.26"/>
  2630. <curve x1="18.9" y1="72.31" x2="16.19" y2="70.04" x3="13.55" y3="70.01"/>
  2631. <curve x1="10.88" y1="69.96" x2="7.89" y2="71.67" x3="6.09" y3="72.06"/>
  2632. <curve x1="4.29" y1="72.41" x2="3.15" y2="72.44" x3="2.73" y3="72.17"/>
  2633. <line x="2.73" y="78.51"/>
  2634. <curve x1="3.16" y1="78.78" x2="4.3" y2="78.75" x3="6.09" y3="78.4"/>
  2635. <curve x1="7.89" y1="78.02" x2="10.88" y2="76.31" x3="13.55" y3="76.36"/>
  2636. <curve x1="16.2" y1="76.38" x2="18.91" y2="78.66" x3="21.9" y3="78.61"/>
  2637. <curve x1="24.87" y1="78.49" x2="28.2" y2="76.04" x3="31.24" y3="75.96"/>
  2638. <curve x1="34.2" y1="75.84" x2="36.85" y2="78.06" x3="39.83" y3="78.11"/>
  2639. <curve x1="42.86" y1="78.13" x2="45.93" y2="76.1" x3="49.17" y3="76.16"/>
  2640. <curve x1="52.37" y1="76.21" x2="55.62" y2="78.42" x3="58.89" y3="78.41"/>
  2641. <curve x1="62.1" y1="78.34" x2="65.14" y2="75.98" x3="68.48" y3="75.96"/>
  2642. <curve x1="71.84" y1="75.95" x2="75.53" y2="78.26" x3="78.81" y3="78.31"/>
  2643. <curve x1="82.05" y1="78.31" x2="85.41" y2="76.15" x3="87.78" y3="76.06"/>
  2644. <curve x1="90.1" y1="75.95" x2="91.37" y2="77.48" x3="92.76" y3="77.79"/>
  2645. <curve x1="94.13" y1="78.09" x2="95.18" y2="78.14" x3="95.99" y3="77.89"/>
  2646. <line x="95.99" y="71.54"/>
  2647. <close/>
  2648. <move x="42.66" y="68.17"/>
  2649. <line x="68.41" y="54.19"/>
  2650. <line x="68.41" y="54.19"/>
  2651. <curve x1="66.39" y1="49.67" x2="64.95" y2="46.26" x3="64.12" y3="43.83"/>
  2652. <curve x1="63.26" y1="41.41" x2="62.9" y2="40.88" x3="63.39" y3="39.73"/>
  2653. <curve x1="63.89" y1="38.55" x2="63.2" y2="38.37" x3="66.97" y3="36.8"/>
  2654. <curve x1="70.74" y1="35.17" x2="82.02" y2="30.51" x3="85.7" y3="30.28"/>
  2655. <curve x1="89.3" y1="30.09" x2="89.16" y2="34.13" x3="88.56" y3="35.49"/>
  2656. <curve x1="87.91" y1="36.82" x2="84.55" y2="37.15" x3="82.01" y3="38.21"/>
  2657. <curve x1="79.43" y1="39.21" x2="76.6" y2="40.34" x3="73.32" y3="41.58"/>
  2658. <line x="73.32" y="41.58"/>
  2659. <line x="85.1" y="67.96"/>
  2660. <line x="85.1" y="67.96"/>
  2661. <curve x1="83.58" y1="69.29" x2="81.57" y2="69.8" x3="78.84" y3="69.6"/>
  2662. <curve x1="76.07" y1="69.33" x2="72.38" y2="66.65" x3="68.93" y3="66.63"/>
  2663. <curve x1="65.5" y1="66.64" x2="61.58" y2="69.63" x3="58.44" y3="69.69"/>
  2664. <curve x1="55.29" y1="69.68" x2="52.79" y2="67.09" x3="50.16" y3="66.83"/>
  2665. <curve x1="47.52" y1="66.58" x2="45.03" y2="67.02" x3="42.66" y3="68.17"/>
  2666. <line x="42.66" y="68.17"/>
  2667. <close/>
  2668. <move x="88.93" y="45.34"/>
  2669. <curve x1="92.9" y1="45.34" x2="96.12" y2="48.76" x3="96.12" y3="52.98"/>
  2670. <curve x1="96.12" y1="57.2" x2="92.9" y2="60.62" x3="88.93" y3="60.62"/>
  2671. <curve x1="84.96" y1="60.62" x2="81.74" y2="57.2" x3="81.74" y3="52.98"/>
  2672. <curve x1="81.74" y1="48.76" x2="84.96" y2="45.34" x3="88.93" y3="45.34"/>
  2673. <move x="25.28" y="68.68"/>
  2674. <curve x1="22.23" y1="68.11" x2="19.12" y2="67.22" x3="15.74" y3="66.02"/>
  2675. <curve x1="12.34" y1="64.75" x2="6.54" y2="63.05" x3="5.17" y3="61.39"/>
  2676. <curve x1="3.8" y1="59.68" x2="4.8" y2="56.26" x3="7.57" y3="56.1"/>
  2677. <curve x1="10.35" y1="55.94" x2="15.87" y2="58.45" x3="21.6" y3="60.54"/>
  2678. <curve x1="27.3" y1="62.6" x2="33.81" y2="65.17" x3="41.5" y3="68.39"/>
  2679. <line x="41.5" y="68.39"/>
  2680. <curve x1="40.55" y1="68.92" x2="39.3" y2="69.08" x3="37.71" y3="68.84"/>
  2681. <curve x1="36.09" y1="68.56" x2="34.04" y2="67.05" x3="31.96" y3="67"/>
  2682. <curve x1="29.86" y1="66.97" x2="27.67" y2="67.54" x3="25.28" y3="68.68"/>
  2683. <line x="25.28" y="68.68"/>
  2684. <close/>
  2685. <move x="96" y="82.15"/>
  2686. <curve x1="95.19" y1="82.38" x2="94.14" y2="82.34" x3="92.77" y3="82.04"/>
  2687. <curve x1="91.37" y1="81.73" x2="90.1" y2="80.2" x3="87.79" y3="80.3"/>
  2688. <curve x1="85.41" y1="80.38" x2="82.06" y2="82.55" x3="78.82" y3="82.55"/>
  2689. <curve x1="75.53" y1="82.48" x2="71.84" y2="80.21" x3="68.49" y3="80.21"/>
  2690. <curve x1="65.15" y1="80.23" x2="62.11" y2="82.59" x3="58.9" y3="82.66"/>
  2691. <curve x1="55.63" y1="82.67" x2="52.38" y2="80.46" x3="49.18" y3="80.41"/>
  2692. <curve x1="45.94" y1="80.32" x2="42.87" y2="82.37" x3="39.84" y3="82.35"/>
  2693. <curve x1="36.86" y1="82.29" x2="34.21" y2="80.11" x3="31.25" y3="80.21"/>
  2694. <curve x1="28.21" y1="80.33" x2="24.88" y2="82.72" x3="21.91" y3="82.86"/>
  2695. <curve x1="18.91" y1="82.91" x2="16.2" y2="80.63" x3="13.56" y3="80.61"/>
  2696. <curve x1="10.89" y1="80.57" x2="7.9" y2="82.27" x3="6.1" y3="82.65"/>
  2697. <curve x1="4.3" y1="83.02" x2="3.16" y2="83.01" x3="2.74" y3="82.75"/>
  2698. <line x="2.74" y="89.09"/>
  2699. <curve x1="3.17" y1="89.35" x2="4.31" y2="89.37" x3="6.1" y3="88.99"/>
  2700. <curve x1="7.9" y1="88.61" x2="10.89" y2="86.9" x3="13.56" y3="86.95"/>
  2701. <curve x1="16.21" y1="86.97" x2="18.92" y2="89.24" x3="21.91" y3="89.2"/>
  2702. <curve x1="24.88" y1="89.05" x2="28.21" y2="86.66" x3="31.25" y3="86.54"/>
  2703. <curve x1="34.21" y1="86.44" x2="36.86" y2="88.62" x3="39.84" y3="88.68"/>
  2704. <curve x1="42.87" y1="88.7" x2="45.94" y2="86.66" x3="49.18" y3="86.74"/>
  2705. <curve x1="52.38" y1="86.79" x2="55.63" y2="89" x3="58.9" y3="88.99"/>
  2706. <curve x1="62.11" y1="88.92" x2="65.15" y2="86.56" x3="68.49" y3="86.54"/>
  2707. <curve x1="71.85" y1="86.54" x2="75.54" y2="88.81" x3="78.82" y3="88.88"/>
  2708. <curve x1="82.06" y1="88.88" x2="85.42" y2="86.72" x3="87.79" y3="86.63"/>
  2709. <curve x1="90.11" y1="86.55" x2="91.38" y2="88.05" x3="92.77" y3="88.38"/>
  2710. <curve x1="94.14" y1="88.68" x2="95.19" y2="88.73" x3="96" y3="88.48"/>
  2711. <line x="96" y="82.15"/>
  2712. <close/>
  2713. </path>
  2714. </background>
  2715. <foreground>
  2716. <fillstroke/>
  2717. </foreground>
  2718. </shape>
  2719. <shape name="Jet Ski" h="86.34" w="99.5" aspect="variable" strokewidth="inherit">
  2720. <connections>
  2721. <constraint x="0.31" y="0.005" perimeter="0" name="N"/>
  2722. <constraint x="0.5" y="0.995" perimeter="0" name="S"/>
  2723. <constraint x="0.095" y="0.64" perimeter="0" name="W"/>
  2724. <constraint x="0.995" y="0.65" perimeter="0" name="E"/>
  2725. <constraint x="0" y="1" perimeter="0" name="SW"/>
  2726. <constraint x="0.955" y="1" perimeter="0" name="SE"/>
  2727. </connections>
  2728. <background>
  2729. <path>
  2730. <move x="31.93" y="16.59"/>
  2731. <curve x1="36.33" y1="16.07" x2="39.45" y2="12.03" x3="38.93" y3="7.59"/>
  2732. <curve x1="38.41" y1="3.15" x2="34.41" y2="0" x3="30.02" y3="0.52"/>
  2733. <curve x1="25.61" y1="1.07" x2="22.5" y2="5.08" x3="23.02" y3="9.53"/>
  2734. <curve x1="23.57" y1="13.96" x2="27.52" y2="17.12" x3="31.93" y3="16.59"/>
  2735. <move x="97.82" y="54.75"/>
  2736. <curve x1="97.39" y1="54.53" x2="64.72" y2="37.77" x3="64.72" y3="37.77"/>
  2737. <line x="56.42" y="26.98"/>
  2738. <line x="56.32" y="26.86"/>
  2739. <curve x1="55.2" y1="25.8" x2="53.44" y2="25.9" x3="52.4" y3="27.05"/>
  2740. <line x="52.4" y="27.07"/>
  2741. <curve x1="51.67" y1="27.93" x2="51.52" y2="29.2" x3="52.09" y3="30.23"/>
  2742. <line x="58.24" y="38.25"/>
  2743. <line x="58.26" y="38.32"/>
  2744. <line x="53.15" y="50.14"/>
  2745. <line x="39.6" y="46.73"/>
  2746. <line x="39.01" y="41.83"/>
  2747. <line x="50.15" y="40.47"/>
  2748. <curve x1="50.65" y1="40.45" x2="51.17" y2="40.3" x3="51.64" y3="40.04"/>
  2749. <curve x1="53.48" y1="39.06" x2="54.19" y2="36.74" x3="53.22" y3="34.88"/>
  2750. <curve x1="52.46" y1="33.44" x2="50.94" y2="32.68" x3="49.45" y3="32.85"/>
  2751. <line x="38.1" y="34.23"/>
  2752. <line x="37.1" y="25.73"/>
  2753. <curve x1="36.56" y1="21.32" x2="32.56" y2="18.14" x3="28.18" y3="18.66"/>
  2754. <curve x1="23.79" y1="19.21" x2="20.65" y2="23.25" x3="21.17" y3="27.69"/>
  2755. <line x="23.53" y="47.34"/>
  2756. <curve x1="23.82" y1="49.85" x2="25.3" y2="52.02" x3="27.26" y3="53.28"/>
  2757. <line x="9.45" y="55.44"/>
  2758. <line x="3.89" y="69.34"/>
  2759. <curve x1="4.11" y1="69.25" x2="4.34" y2="69.22" x3="4.53" y3="69.13"/>
  2760. <curve x1="6.83" y1="68.05" x2="9.37" y2="67.48" x3="11.88" y3="67.48"/>
  2761. <curve x1="14.4" y1="67.48" x2="16.93" y2="68.05" x3="19.19" y3="69.11"/>
  2762. <curve x1="20.63" y1="69.77" x2="22.22" y2="70.11" x3="23.75" y3="70.11"/>
  2763. <curve x1="25.3" y1="70.11" x2="26.86" y2="69.77" x3="28.28" y3="69.13"/>
  2764. <curve x1="30.57" y1="68.05" x2="33.1" y2="67.48" x3="35.63" y3="67.48"/>
  2765. <curve x1="38.14" y1="67.48" x2="40.67" y2="68.05" x3="42.92" y3="69.11"/>
  2766. <curve x1="44.39" y1="69.77" x2="45.97" y2="70.11" x3="47.51" y3="70.11"/>
  2767. <curve x1="49.07" y1="70.11" x2="50.61" y2="69.77" x3="52.05" y3="69.13"/>
  2768. <curve x1="54.34" y1="68.05" x2="56.89" y2="67.48" x3="59.4" y3="67.48"/>
  2769. <curve x1="61.91" y1="67.48" x2="64.44" y2="68.05" x3="66.69" y3="69.11"/>
  2770. <curve x1="67.23" y1="69.34" x2="67.83" y2="69.52" x3="68.41" y3="69.68"/>
  2771. <curve x1="77.51" y1="67.27" x2="93.64" y2="62.61" x3="97.99" y3="58.67"/>
  2772. <curve x1="99.25" y1="57.52" x2="99.5" y2="55.59" x3="97.82" y3="54.75"/>
  2773. <move x="0" y="86.34"/>
  2774. <curve x1="2.08" y1="86.34" x2="4.09" y2="85.86" x3="5.86" y3="85.05"/>
  2775. <curve x1="7.69" y1="84.19" x2="9.74" y2="83.69" x3="11.89" y3="83.69"/>
  2776. <curve x1="14.05" y1="83.69" x2="16.08" y2="84.19" x3="17.93" y3="85.05"/>
  2777. <curve x1="19.7" y1="85.86" x2="21.68" y2="86.34" x3="23.76" y3="86.34"/>
  2778. <curve x1="25.83" y1="86.34" x2="27.82" y2="85.86" x3="29.61" y3="85.05"/>
  2779. <curve x1="31.44" y1="84.19" x2="33.5" y2="83.69" x3="35.64" y3="83.69"/>
  2780. <curve x1="37.77" y1="83.69" x2="39.83" y2="84.19" x3="41.67" y3="85.05"/>
  2781. <curve x1="43.45" y1="85.86" x2="45.44" y2="86.34" x3="47.52" y3="86.34"/>
  2782. <curve x1="49.6" y1="86.34" x2="51.59" y2="85.86" x3="53.38" y3="85.05"/>
  2783. <curve x1="55.21" y1="84.19" x2="57.26" y2="83.69" x3="59.4" y3="83.69"/>
  2784. <curve x1="61.53" y1="83.69" x2="63.59" y2="84.19" x3="65.4" y3="85.05"/>
  2785. <curve x1="67.2" y1="85.86" x2="69.19" y2="86.34" x3="71.27" y3="86.34"/>
  2786. <curve x1="73.36" y1="86.34" x2="75.34" y2="85.86" x3="77.11" y3="85.05"/>
  2787. <curve x1="78.96" y1="84.19" x2="81" y2="83.69" x3="83.14" y3="83.69"/>
  2788. <curve x1="85.29" y1="83.69" x2="87.35" y2="84.19" x3="89.16" y3="85.05"/>
  2789. <curve x1="90.94" y1="85.86" x2="92.95" y2="86.34" x3="95.04" y3="86.34"/>
  2790. <line x="95.04" y="77.48"/>
  2791. <curve x1="92.95" y1="77.48" x2="90.94" y2="77" x3="89.16" y3="76.19"/>
  2792. <curve x1="87.35" y1="75.33" x2="85.29" y2="74.85" x3="83.14" y3="74.85"/>
  2793. <curve x1="81.01" y1="74.85" x2="78.96" y2="75.33" x3="77.11" y3="76.19"/>
  2794. <curve x1="75.34" y1="77" x2="73.36" y2="77.48" x3="71.27" y3="77.48"/>
  2795. <curve x1="69.19" y1="77.48" x2="67.2" y2="77" x3="65.4" y3="76.19"/>
  2796. <curve x1="63.59" y1="75.33" x2="61.53" y2="74.85" x3="59.4" y3="74.85"/>
  2797. <curve x1="57.26" y1="74.85" x2="55.2" y2="75.33" x3="53.38" y3="76.19"/>
  2798. <curve x1="51.58" y1="77" x2="49.6" y2="77.48" x3="47.52" y3="77.48"/>
  2799. <curve x1="45.44" y1="77.48" x2="43.45" y2="77" x3="41.67" y3="76.19"/>
  2800. <curve x1="39.83" y1="75.33" x2="37.77" y2="74.85" x3="35.64" y3="74.85"/>
  2801. <curve x1="33.5" y1="74.85" x2="31.44" y2="75.33" x3="29.61" y3="76.19"/>
  2802. <curve x1="27.82" y1="77" x2="25.83" y2="77.48" x3="23.76" y3="77.48"/>
  2803. <curve x1="21.68" y1="77.48" x2="19.69" y2="77" x3="17.93" y3="76.19"/>
  2804. <curve x1="16.08" y1="75.33" x2="14.05" y2="74.85" x3="11.89" y3="74.85"/>
  2805. <curve x1="9.74" y1="74.85" x2="7.69" y2="75.33" x3="5.86" y3="76.19"/>
  2806. <curve x1="4.09" y1="77" x2="2.08" y2="77.48" x3="0" y3="77.48"/>
  2807. <line x="0" y="86.34"/>
  2808. <close/>
  2809. </path>
  2810. </background>
  2811. <foreground>
  2812. <fillstroke/>
  2813. </foreground>
  2814. </shape>
  2815. <shape name="Kayak" h="99.58" w="99.73" aspect="variable" strokewidth="inherit">
  2816. <connections>
  2817. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  2818. <constraint x="0.5" y="0.73" perimeter="0" name="S"/>
  2819. <constraint x="0.025" y="0.5" perimeter="0" name="W"/>
  2820. <constraint x="0.98" y="0.5" perimeter="0" name="E"/>
  2821. <constraint x="0.02" y="0.98" perimeter="0" name="SW"/>
  2822. <constraint x="0.98" y="0.02" perimeter="0" name="NE"/>
  2823. <constraint x="0.97" y="0.73" perimeter="0" name="SE"/>
  2824. </connections>
  2825. <background>
  2826. <path>
  2827. <move x="85.11" y="61.51"/>
  2828. <curve x1="82.98" y1="61.51" x2="80.93" y2="62" x3="79.13" y3="62.84"/>
  2829. <curve x1="77.35" y1="63.61" x2="75.38" y2="64.08" x3="73.31" y3="64.08"/>
  2830. <curve x1="71.25" y1="64.08" x2="69.27" y2="63.61" x3="67.49" y3="62.84"/>
  2831. <curve x1="65.68" y1="62" x2="63.64" y2="61.51" x3="61.51" y3="61.51"/>
  2832. <curve x1="59.4" y1="61.51" x2="57.36" y2="62" x3="55.53" y3="62.84"/>
  2833. <curve x1="53.77" y1="63.61" x2="51.8" y2="64.08" x3="49.73" y3="64.08"/>
  2834. <curve x1="47.66" y1="64.08" x2="45.67" y2="63.61" x3="43.91" y3="62.84"/>
  2835. <curve x1="42.1" y1="62" x2="40.06" y2="61.51" x3="37.93" y3="61.51"/>
  2836. <curve x1="35.8" y1="61.51" x2="33.75" y2="62" x3="31.95" y3="62.84"/>
  2837. <curve x1="30.17" y1="63.61" x2="28.2" y2="64.08" x3="26.13" y3="64.08"/>
  2838. <curve x1="24.07" y1="64.08" x2="22.09" y2="63.61" x3="20.31" y3="62.84"/>
  2839. <curve x1="18.5" y1="62" x2="16.48" y2="61.51" x3="14.35" y3="61.51"/>
  2840. <curve x1="12.22" y1="61.51" x2="10.17" y2="62" x3="8.37" y3="62.84"/>
  2841. <curve x1="6.59" y1="63.61" x2="4.61" y2="64.08" x3="2.55" y3="64.08"/>
  2842. <line x="2.55" y="72.77"/>
  2843. <curve x1="4.61" y1="72.77" x2="6.59" y2="72.3" x3="8.37" y3="71.53"/>
  2844. <curve x1="10.18" y1="70.69" x2="12.22" y2="70.2" x3="14.35" y3="70.2"/>
  2845. <curve x1="16.48" y1="70.2" x2="18.5" y2="70.69" x3="20.31" y3="71.53"/>
  2846. <curve x1="21.81" y1="72.19" x2="23.48" y2="72.56" x3="25.19" y3="72.68"/>
  2847. <line x="17.96" y="79.87"/>
  2848. <curve x1="15.66" y1="78.44" x2="12.61" y2="78.7" x3="10.61" y3="80.69"/>
  2849. <line x="2.3" y="88.95"/>
  2850. <curve x1="0" y1="91.24" x2="0" y2="94.97" x3="2.3" y3="97.29"/>
  2851. <curve x1="4.62" y1="99.58" x2="8.36" y2="99.58" x3="10.66" y3="97.29"/>
  2852. <line x="18.95" y="89.02"/>
  2853. <curve x1="20.83" y1="87.15" x2="21.16" y2="84.34" x3="19.98" y3="82.11"/>
  2854. <line x="29.96" y="72.18"/>
  2855. <curve x1="30.64" y1="71.97" x2="31.3" y2="71.81" x3="31.93" y3="71.52"/>
  2856. <curve x1="33.74" y1="70.68" x2="35.78" y2="70.19" x3="37.91" y3="70.19"/>
  2857. <curve x1="40.04" y1="70.19" x2="42.09" y2="70.68" x3="43.89" y3="71.52"/>
  2858. <curve x1="45.65" y1="72.29" x2="47.64" y2="72.76" x3="49.71" y3="72.76"/>
  2859. <curve x1="51.77" y1="72.76" x2="53.75" y2="72.29" x3="55.51" y3="71.52"/>
  2860. <curve x1="57.34" y1="70.68" x2="59.38" y2="70.19" x3="61.49" y3="70.19"/>
  2861. <curve x1="63.63" y1="70.19" x2="65.67" y2="70.68" x3="67.47" y3="71.52"/>
  2862. <curve x1="69.25" y1="72.29" x2="71.23" y2="72.76" x3="73.29" y3="72.76"/>
  2863. <curve x1="75.36" y1="72.76" x2="77.33" y2="72.29" x3="79.11" y3="71.52"/>
  2864. <curve x1="80.92" y1="70.68" x2="82.96" y2="70.19" x3="85.09" y3="70.19"/>
  2865. <curve x1="87.23" y1="70.19" x2="89.25" y2="70.68" x3="91.07" y3="71.52"/>
  2866. <curve x1="92.83" y1="72.29" x2="94.83" y2="72.76" x3="96.89" y3="72.76"/>
  2867. <line x="96.89" y="64.07"/>
  2868. <curve x1="94.82" y1="64.07" x2="92.83" y2="63.6" x3="91.07" y3="62.83"/>
  2869. <curve x1="89.26" y1="62" x2="87.24" y2="61.51" x3="85.11" y3="61.51"/>
  2870. <close/>
  2871. <move x="89.12" y="19.02"/>
  2872. <line x="97.41" y="10.76"/>
  2873. <curve x1="99.73" y1="8.44" x2="99.73" y2="4.72" x3="97.41" y3="2.42"/>
  2874. <curve x1="95.11" y1="0.1" x2="91.35" y2="0.1" x3="89.05" y3="2.42"/>
  2875. <line x="80.76" y="10.68"/>
  2876. <curve x1="78.76" y1="12.67" x2="78.51" y2="15.71" x3="79.96" y3="17.98"/>
  2877. <line x="69.66" y="28.28"/>
  2878. <line x="49.19" y="20.72"/>
  2879. <curve x1="48.65" y1="20.42" x2="48.09" y2="20.16" x3="47.45" y3="19.97"/>
  2880. <curve x1="42.99" y1="18.64" x2="38.27" y2="21.16" x3="36.93" y3="25.61"/>
  2881. <line x="30.64" y="46.63"/>
  2882. <curve x1="30.55" y1="46.88" x2="30.52" y2="47.09" x3="30.5" y3="47.3"/>
  2883. <line x="2.54" y="47.3"/>
  2884. <line x="2.54" y="58.59"/>
  2885. <curve x1="4.07" y1="58.59" x2="5.64" y2="58.24" x3="7.02" y3="57.63"/>
  2886. <curve x1="9.3" y1="56.58" x2="11.83" y2="56.01" x3="14.32" y3="56.01"/>
  2887. <curve x1="16.81" y1="56.01" x2="19.32" y2="56.57" x3="21.55" y3="57.6"/>
  2888. <curve x1="23.03" y1="58.26" x2="24.55" y2="58.58" x3="26.1" y3="58.58"/>
  2889. <curve x1="27.67" y1="58.58" x2="29.2" y2="58.25" x3="30.61" y3="57.62"/>
  2890. <curve x1="32.91" y1="56.57" x2="35.42" y2="56" x3="37.91" y3="56"/>
  2891. <curve x1="40.42" y1="56" x2="42.89" y2="56.54" x3="45.16" y3="57.59"/>
  2892. <curve x1="46.59" y1="58.25" x2="48.16" y2="58.57" x3="49.71" y3="58.57"/>
  2893. <curve x1="51.26" y1="58.57" x2="52.78" y2="58.24" x3="54.22" y3="57.61"/>
  2894. <curve x1="56.5" y1="56.56" x2="59.03" y2="55.99" x3="61.5" y3="55.99"/>
  2895. <curve x1="64.04" y1="55.99" x2="66.48" y2="56.53" x3="68.75" y3="57.58"/>
  2896. <curve x1="70.21" y1="58.24" x2="71.78" y2="58.56" x3="73.3" y3="58.56"/>
  2897. <curve x1="74.85" y1="58.56" x2="76.4" y2="58.23" x3="77.81" y3="57.6"/>
  2898. <curve x1="80.09" y1="56.55" x2="82.62" y2="55.98" x3="85.11" y3="55.98"/>
  2899. <curve x1="85.53" y1="55.98" x2="87.25" y2="56.11" x3="88.94" y3="54.98"/>
  2900. <curve x1="91.94" y1="53.67" x2="93.07" y2="52.92" x3="95.7" y3="51.32"/>
  2901. <curve x1="97.86" y1="50" x2="99.64" y2="47.12" x3="94.95" y3="47.27"/>
  2902. <curve x1="93.64" y1="47.32" x2="54.86" y2="47.27" x3="54.86" y3="47.27"/>
  2903. <line x="66.74" y="35.43"/>
  2904. <line x="68.34" y="36.04"/>
  2905. <curve x1="70.36" y1="36.77" x2="72.61" y2="35.74" x3="73.36" y3="33.72"/>
  2906. <curve x1="73.88" y1="32.29" x2="73.48" y2="30.75" x3="72.49" y3="29.72"/>
  2907. <line x="82.21" y="19.99"/>
  2908. <curve x1="84.43" y1="21.2" x2="87.24" y2="20.9" x3="89.12" y3="19.02"/>
  2909. <close/>
  2910. <move x="50.58" y="47.31"/>
  2911. <line x="48.07" y="47.31"/>
  2912. <line x="53.14" y="30.46"/>
  2913. <line x="63.61" y="34.32"/>
  2914. <line x="50.58" y="47.31"/>
  2915. <close/>
  2916. <move x="50.51" y="9.67"/>
  2917. <line x="49.43" y="11.96"/>
  2918. <curve x1="48.73" y1="13.39" x2="47.27" y2="14.37" x3="45.6" y3="14.37"/>
  2919. <line x="43.06" y="14.37"/>
  2920. <curve x1="44.52" y1="16.43" x2="46.91" y2="17.76" x3="49.61" y3="17.76"/>
  2921. <curve x1="54.02" y1="17.76" x2="57.61" y2="14.2" x3="57.61" y3="9.8"/>
  2922. <line x="57.61" y="9.39"/>
  2923. <line x="50.87" y="9.39"/>
  2924. <curve x1="50.72" y1="9.39" x2="50.56" y2="9.51" x3="50.51" y3="9.67"/>
  2925. <close/>
  2926. <move x="45.61" y="12.36"/>
  2927. <curve x1="46.48" y1="12.36" x2="47.25" y2="11.84" x3="47.6" y3="11.1"/>
  2928. <line x="48.66" y="8.81"/>
  2929. <curve x1="49.06" y1="7.94" x2="49.9" y2="7.36" x3="50.89" y3="7.36"/>
  2930. <line x="59.15" y="7.36"/>
  2931. <curve x1="58.07" y1="3.11" x2="54.2" y2="0" x3="49.62" y3="0"/>
  2932. <curve x1="44.2" y1="0" x2="39.81" y2="4.38" x3="39.81" y3="9.81"/>
  2933. <curve x1="39.81" y1="10.68" x2="39.91" y2="11.54" x3="40.14" y3="12.36"/>
  2934. <line x="45.61" y="12.36"/>
  2935. <close/>
  2936. </path>
  2937. </background>
  2938. <foreground>
  2939. <fillstroke/>
  2940. </foreground>
  2941. </shape>
  2942. <shape name="Life Jacket" h="99" w="100.49" aspect="variable" strokewidth="inherit">
  2943. <connections>
  2944. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  2945. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  2946. <constraint x="0.01" y="0.5" perimeter="0" name="W"/>
  2947. <constraint x="0.99" y="0.5" perimeter="0" name="E"/>
  2948. <constraint x="0.115" y="0.02" perimeter="0" name="NW"/>
  2949. <constraint x="0.02" y="0.98" perimeter="0" name="SW"/>
  2950. <constraint x="0.885" y="0.02" perimeter="0" name="NE"/>
  2951. <constraint x="0.98" y="0.98" perimeter="0" name="SE"/>
  2952. </connections>
  2953. <background>
  2954. <path>
  2955. <move x="46.55" y="69.38"/>
  2956. <line x="46.55" y="92.83"/>
  2957. <curve x1="46.55" y1="92.83" x2="47.37" y2="99" x3="39.41" y3="99"/>
  2958. <line x="7.97" y="99"/>
  2959. <curve x1="0" y1="99" x2="0.83" y2="92.83" x3="0.83" y3="92.83"/>
  2960. <line x="0.83" y="69.38"/>
  2961. <line x="46.55" y="69.38"/>
  2962. <close/>
  2963. <move x="32.05" y="2.85"/>
  2964. <curve x1="30.95" y1="1.13" x2="28.99" y2="0" x3="26.74" y3="0"/>
  2965. <line x="16.61" y="0.02"/>
  2966. <curve x1="13.05" y1="0.02" x2="10.16" y2="2.82" x3="10.16" y3="6.28"/>
  2967. <curve x1="10.16" y1="7.5" x2="10.54" y2="8.62" x3="11.15" y3="9.57"/>
  2968. <line x="11.21" y="9.66"/>
  2969. <curve x1="14.21" y1="13.81" x2="15.95" y2="18.81" x3="15.95" y3="24.21"/>
  2970. <curve x1="15.95" y1="33.39" x2="10.9" y2="41.45" x3="3.36" y3="45.85"/>
  2971. <line x="3.27" y="45.88"/>
  2972. <curve x1="1.83" y1="46.78" x2="0.85" y2="48.32" x3="0.85" y3="50.15"/>
  2973. <line x="0.85" y="57.59"/>
  2974. <line x="46.57" y="57.59"/>
  2975. <line x="46.57" y="30.24"/>
  2976. <curve x1="46.57" y1="30.24" x2="46.63" y2="27.71" x3="44.87" y3="24.59"/>
  2977. <line x="32.05" y="2.85"/>
  2978. <close/>
  2979. <move x="68.46" y="2.85"/>
  2980. <curve x1="69.58" y1="1.13" x2="71.54" y2="0" x3="73.77" y3="0"/>
  2981. <line x="83.93" y="0.02"/>
  2982. <curve x1="87.48" y1="0.02" x2="90.37" y2="2.82" x3="90.37" y3="6.28"/>
  2983. <curve x1="90.37" y1="7.5" x2="90.02" y2="8.62" x3="89.41" y3="9.57"/>
  2984. <line x="89.31" y="9.67"/>
  2985. <curve x1="86.34" y1="13.82" x2="84.57" y2="18.82" x3="84.57" y3="24.22"/>
  2986. <curve x1="84.57" y1="33.4" x2="89.62" y2="41.46" x3="97.19" y3="45.86"/>
  2987. <line x="97.25" y="45.89"/>
  2988. <curve x1="98.73" y1="46.79" x2="99.7" y2="48.33" x3="99.7" y3="50.16"/>
  2989. <line x="99.7" y="57.6"/>
  2990. <line x="53.93" y="57.6"/>
  2991. <line x="53.93" y="30.24"/>
  2992. <curve x1="53.93" y1="30.24" x2="53.9" y2="27.71" x3="55.65" y3="24.59"/>
  2993. <line x="68.46" y="2.85"/>
  2994. <close/>
  2995. <move x="99.68" y="69.38"/>
  2996. <line x="99.68" y="92.83"/>
  2997. <curve x1="99.68" y1="92.83" x2="100.49" y2="99" x3="92.52" y3="99"/>
  2998. <line x="61.09" y="99"/>
  2999. <curve x1="53.11" y1="99" x2="53.93" y2="92.83" x3="53.93" y3="92.83"/>
  3000. <line x="53.93" y="69.38"/>
  3001. <line x="99.68" y="69.38"/>
  3002. <close/>
  3003. <move x="54.12" y="65.69"/>
  3004. <curve x1="55.31" y1="65.69" x2="56.3" y2="64.75" x3="56.3" y3="63.57"/>
  3005. <curve x1="56.3" y1="62.44" x2="55.31" y2="61.5" x3="54.12" y3="61.5"/>
  3006. <line x="46.82" y="61.5"/>
  3007. <curve x1="45.62" y1="61.5" x2="44.68" y2="62.44" x3="44.68" y3="63.57"/>
  3008. <curve x1="44.68" y1="64.74" x2="45.62" y2="65.69" x3="46.82" y3="65.69"/>
  3009. <line x="54.12" y="65.69"/>
  3010. <close/>
  3011. </path>
  3012. </background>
  3013. <foreground>
  3014. <fillstroke/>
  3015. </foreground>
  3016. </shape>
  3017. <shape name="Motorboat 1" h="49.12" w="99.25" aspect="variable" strokewidth="inherit">
  3018. <connections>
  3019. <constraint x="0.45" y="0" perimeter="0" name="N"/>
  3020. <constraint x="0.5" y="0.99" perimeter="0" name="S"/>
  3021. <constraint x="0.05" y="0.5" perimeter="0" name="W"/>
  3022. <constraint x="0.99" y="0.5" perimeter="0" name="E"/>
  3023. <constraint x="0" y="0.2" perimeter="0" name="NW"/>
  3024. <constraint x="0.07" y="1" perimeter="0" name="SW"/>
  3025. <constraint x="0.925" y="0.12" perimeter="0" name="NE"/>
  3026. <constraint x="1" y="1" perimeter="0" name="SE"/>
  3027. </connections>
  3028. <background>
  3029. <path>
  3030. <move x="99.25" y="49.12"/>
  3031. <curve x1="97.23" y1="49.12" x2="95.27" y2="48.66" x3="93.55" y3="47.87"/>
  3032. <curve x1="91.78" y1="47.03" x2="89.78" y2="46.55" x3="87.71" y3="46.55"/>
  3033. <curve x1="85.62" y1="46.55" x2="83.62" y2="47.04" x3="81.85" y3="47.87"/>
  3034. <curve x1="80.1" y1="48.66" x2="78.17" y2="49.12" x3="76.15" y3="49.12"/>
  3035. <curve x1="74.15" y1="49.12" x2="72.2" y2="48.66" x3="70.47" y3="47.87"/>
  3036. <curve x1="68.7" y1="47.03" x2="66.7" y2="46.55" x3="64.61" y3="46.55"/>
  3037. <curve x1="62.54" y1="46.55" x2="60.54" y2="47.04" x3="58.77" y3="47.87"/>
  3038. <curve x1="57.02" y1="48.66" x2="55.09" y2="49.12" x3="53.07" y3="49.12"/>
  3039. <curve x1="51.05" y1="49.12" x2="49.12" y2="48.66" x3="47.39" y3="47.87"/>
  3040. <curve x1="45.62" y1="47.03" x2="43.62" y2="46.55" x3="41.53" y3="46.55"/>
  3041. <curve x1="39.44" y1="46.55" x2="37.46" y2="47.04" x3="35.69" y3="47.87"/>
  3042. <curve x1="33.94" y1="48.66" x2="32.01" y2="49.12" x3="29.99" y3="49.12"/>
  3043. <curve x1="27.97" y1="49.12" x2="26.06" y2="48.66" x3="24.33" y3="47.87"/>
  3044. <curve x1="22.54" y1="47.03" x2="20.56" y2="46.55" x3="18.47" y3="46.55"/>
  3045. <curve x1="16.38" y1="46.55" x2="14.4" y2="47.04" x3="12.61" y3="47.87"/>
  3046. <curve x1="10.89" y1="48.66" x2="8.96" y2="49.12" x3="6.93" y3="49.12"/>
  3047. <line x="6.93" y="40.52"/>
  3048. <curve x1="8.95" y1="40.52" x2="10.88" y2="40.06" x3="12.61" y3="39.27"/>
  3049. <curve x1="14.4" y1="38.46" x2="16.38" y2="37.97" x3="18.47" y3="37.97"/>
  3050. <curve x1="20.56" y1="37.97" x2="22.54" y2="38.46" x3="24.33" y3="39.27"/>
  3051. <curve x1="26.05" y1="40.06" x2="27.96" y2="40.52" x3="29.99" y3="40.52"/>
  3052. <curve x1="32.02" y1="40.52" x2="33.94" y2="40.06" x3="35.69" y3="39.27"/>
  3053. <curve x1="37.46" y1="38.46" x2="39.44" y2="37.97" x3="41.53" y3="37.97"/>
  3054. <curve x1="43.62" y1="37.97" x2="45.62" y2="38.46" x3="47.39" y3="39.27"/>
  3055. <curve x1="49.11" y1="40.06" x2="51.05" y2="40.52" x3="53.07" y3="40.52"/>
  3056. <curve x1="55.09" y1="40.52" x2="57.02" y2="40.06" x3="58.77" y3="39.27"/>
  3057. <curve x1="60.54" y1="38.46" x2="62.54" y2="37.97" x3="64.61" y3="37.97"/>
  3058. <curve x1="66.7" y1="37.97" x2="68.7" y2="38.46" x3="70.47" y3="39.27"/>
  3059. <curve x1="72.19" y1="40.06" x2="74.15" y2="40.52" x3="76.15" y3="40.52"/>
  3060. <curve x1="78.17" y1="40.52" x2="80.1" y2="40.06" x3="81.85" y3="39.27"/>
  3061. <curve x1="83.62" y1="38.46" x2="85.62" y2="37.97" x3="87.71" y3="37.97"/>
  3062. <curve x1="89.78" y1="37.97" x2="91.78" y2="38.46" x3="93.55" y3="39.27"/>
  3063. <curve x1="95.27" y1="40.06" x2="97.23" y2="40.52" x3="99.25" y3="40.52"/>
  3064. <line x="99.25" y="49.12"/>
  3065. <close/>
  3066. <move x="76.03" y="13.19"/>
  3067. <line x="92.81" y="14.51"/>
  3068. <line x="91.55" y="5.86"/>
  3069. <line x="79.23" y="4.98"/>
  3070. <curve x1="75.9" y1="4.82" x2="76.38" y2="8.18" x3="76.38" y3="8.18"/>
  3071. <line x="76.03" y="13.19"/>
  3072. <close/>
  3073. <move x="44.91" y="11.22"/>
  3074. <curve x1="47.99" y1="11.22" x2="50.47" y2="8.72" x3="50.47" y3="5.61"/>
  3075. <curve x1="50.47" y1="2.5" x2="47.99" y2="0" x3="44.91" y3="0"/>
  3076. <curve x1="41.83" y1="0" x2="39.35" y2="2.51" x3="39.35" y3="5.61"/>
  3077. <curve x1="39.35" y1="8.71" x2="41.83" y2="11.22" x3="44.91" y3="11.22"/>
  3078. <close/>
  3079. <move x="10.57" y="32.85"/>
  3080. <curve x1="11.28" y1="32.64" x2="11.97" y2="32.36" x3="12.62" y3="32.06"/>
  3081. <curve x1="14.41" y1="31.22" x2="16.39" y2="30.74" x3="18.48" y3="30.74"/>
  3082. <curve x1="20.57" y1="30.74" x2="22.55" y2="31.23" x3="24.34" y3="32.06"/>
  3083. <curve x1="26.06" y1="32.85" x2="27.97" y2="33.31" x3="30" y3="33.31"/>
  3084. <curve x1="32.03" y1="33.31" x2="33.95" y2="32.85" x3="35.7" y3="32.06"/>
  3085. <curve x1="37.47" y1="31.22" x2="39.45" y2="30.74" x3="41.54" y3="30.74"/>
  3086. <curve x1="43.63" y1="30.74" x2="45.63" y2="31.23" x3="47.4" y3="32.06"/>
  3087. <curve x1="49.12" y1="32.85" x2="51.06" y2="33.31" x3="53.08" y3="33.31"/>
  3088. <curve x1="55.1" y1="33.31" x2="57.03" y2="32.85" x3="58.78" y3="32.06"/>
  3089. <curve x1="60.55" y1="31.22" x2="62.55" y2="30.74" x3="64.62" y3="30.74"/>
  3090. <curve x1="66.71" y1="30.74" x2="68.71" y2="31.23" x3="70.48" y3="32.06"/>
  3091. <curve x1="72.2" y1="32.85" x2="74.16" y2="33.31" x3="76.16" y3="33.31"/>
  3092. <curve x1="78.18" y1="33.31" x2="80.11" y2="32.85" x3="81.86" y3="32.06"/>
  3093. <curve x1="83.63" y1="31.22" x2="85.63" y2="30.74" x3="87.72" y3="30.74"/>
  3094. <curve x1="89.79" y1="30.74" x2="91.79" y2="31.23" x3="93.56" y3="32.06"/>
  3095. <curve x1="95.28" y1="32.85" x2="97.21" y2="33.31" x3="99.24" y3="33.31"/>
  3096. <line x="97.36" y="17.97"/>
  3097. <line x="27.6" y="12.08"/>
  3098. <line x="38.13" y="1.37"/>
  3099. <line x="33.51" y="0.95"/>
  3100. <line x="22.98" y="11.69"/>
  3101. <line x="0.13" y="9.79"/>
  3102. <curve x1="0" y1="17.65" x2="8.69" y2="30.71" x3="10.57" y3="32.85"/>
  3103. <line x="10.57" y="32.85"/>
  3104. <close/>
  3105. </path>
  3106. </background>
  3107. <foreground>
  3108. <fillstroke/>
  3109. </foreground>
  3110. </shape>
  3111. <shape name="Motorboat 2" h="36.58" w="99.51" aspect="variable" strokewidth="inherit">
  3112. <connections>
  3113. <constraint x="0.5" y="0.01" perimeter="0" name="N"/>
  3114. <constraint x="0.5" y="0.99" perimeter="0" name="S"/>
  3115. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  3116. <constraint x="0.975" y="0.5" perimeter="0" name="E"/>
  3117. <constraint x="0.07" y="0.99" perimeter="0" name="SW"/>
  3118. <constraint x="0.83" y="0.99" perimeter="0" name="SE"/>
  3119. </connections>
  3120. <background>
  3121. <path>
  3122. <move x="98.89" y="14.61"/>
  3123. <line x="73.69" y="15.28"/>
  3124. <line x="64.55" y="0"/>
  3125. <line x="32.82" y="0.58"/>
  3126. <line x="32.82" y="5.51"/>
  3127. <line x="40.29" y="5.3"/>
  3128. <line x="46.39" y="15.87"/>
  3129. <line x="1" y="16.98"/>
  3130. <curve x1="1" y1="16.98" x2="0" y2="16.92" x3="0.16" y3="17.89"/>
  3131. <line x="7.2" y="36.22"/>
  3132. <curve x1="7.75" y1="36.34" x2="8.32" y2="36.41" x3="8.91" y3="36.41"/>
  3133. <curve x1="11.92" y1="36.41" x2="14.55" y2="34.73" x3="16.08" y3="32.21"/>
  3134. <curve x1="17.61" y1="34.79" x2="20.28" y2="36.5" x3="23.34" y3="36.5"/>
  3135. <curve x1="26.15" y1="36.5" x2="28.65" y2="35.03" x3="30.21" y3="32.8"/>
  3136. <line x="30.13" y="32.64"/>
  3137. <curve x1="31.68" y1="35.04" x2="34.26" y2="36.58" x3="37.18" y3="36.58"/>
  3138. <curve x1="40.22" y1="36.58" x2="42.89" y2="34.88" x3="44.41" y3="32.31"/>
  3139. <line x="44.39" y="32.44"/>
  3140. <curve x1="45.96" y1="34.84" x2="48.54" y2="36.41" x3="51.46" y3="36.41"/>
  3141. <curve x1="54.55" y1="36.41" x2="57.25" y2="34.64" x3="58.76" y3="32.01"/>
  3142. <line x="58.74" y="32.06"/>
  3143. <curve x1="60.26" y1="34.66" x2="62.96" y2="36.41" x3="66.04" y3="36.41"/>
  3144. <curve x1="69.03" y1="36.41" x2="71.67" y2="34.73" x3="73.21" y3="32.22"/>
  3145. <curve x1="74.73" y1="34.79" x2="77.41" y2="36.51" x3="80.46" y3="36.51"/>
  3146. <curve x1="83.27" y1="36.51" x2="85.77" y2="35.04" x3="87.33" y3="32.81"/>
  3147. <line x="87.41" y="32.71"/>
  3148. <line x="98.8" y="15.49"/>
  3149. <curve x1="98.8" y1="15.49" x2="99.51" y2="14.47" x3="98.89" y3="14.61"/>
  3150. <close/>
  3151. <move x="54.86" y="15.66"/>
  3152. <line x="48.45" y="5.3"/>
  3153. <line x="62.75" y="4.86"/>
  3154. <line x="68.97" y="15.28"/>
  3155. <line x="54.86" y="15.66"/>
  3156. <close/>
  3157. </path>
  3158. </background>
  3159. <foreground>
  3160. <fillstroke/>
  3161. </foreground>
  3162. </shape>
  3163. <shape name="Picnic Shelter" h="94.7" w="98.99" aspect="variable" strokewidth="inherit">
  3164. <connections>
  3165. <constraint x="0.5" y="0.24" perimeter="0" name="N"/>
  3166. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  3167. <constraint x="0.1" y="0.64" perimeter="0" name="W"/>
  3168. <constraint x="0.865" y="0.64" perimeter="0" name="E"/>
  3169. <constraint x="0" y="0.48" perimeter="0" name="NW"/>
  3170. <constraint x="0.1" y="1" perimeter="0" name="SW"/>
  3171. <constraint x="1" y="0" perimeter="0" name="NE"/>
  3172. <constraint x="1" y="1" perimeter="0" name="SE"/>
  3173. </connections>
  3174. <background>
  3175. <path>
  3176. <move x="76.83" y="43.63"/>
  3177. <line x="76.83" y="48.65"/>
  3178. <line x="68.68" y="48.65"/>
  3179. <line x="73.51" y="60.61"/>
  3180. <line x="85.7" y="60.61"/>
  3181. <line x="85.7" y="65.59"/>
  3182. <line x="75.5" y="65.59"/>
  3183. <line x="81.15" y="79.58"/>
  3184. <line x="75.18" y="79.58"/>
  3185. <line x="69.53" y="65.59"/>
  3186. <line x="51.25" y="65.59"/>
  3187. <line x="45.64" y="79.58"/>
  3188. <line x="39.64" y="79.58"/>
  3189. <line x="45.29" y="65.59"/>
  3190. <line x="35.09" y="65.59"/>
  3191. <line x="35.09" y="60.61"/>
  3192. <line x="47.3" y="60.61"/>
  3193. <line x="52.11" y="48.65"/>
  3194. <line x="43.96" y="48.65"/>
  3195. <line x="43.96" y="43.63"/>
  3196. <line x="76.83" y="43.63"/>
  3197. <close/>
  3198. <move x="67.51" y="60.6"/>
  3199. <line x="62.7" y="48.64"/>
  3200. <line x="58.09" y="48.64"/>
  3201. <line x="53.26" y="60.6"/>
  3202. <line x="67.51" y="60.6"/>
  3203. <close/>
  3204. <move x="9.94" y="94.7"/>
  3205. <line x="98.99" y="94.7"/>
  3206. <line x="98.99" y="85.36"/>
  3207. <line x="19.19" y="85.36"/>
  3208. <line x="19.19" y="46.15"/>
  3209. <line x="98.99" y="9.72"/>
  3210. <line x="98.99" y="0"/>
  3211. <line x="0" y="45.17"/>
  3212. <line x="0" y="54.88"/>
  3213. <line x="9.94" y="50.38"/>
  3214. <close/>
  3215. </path>
  3216. </background>
  3217. <foreground>
  3218. <fillstroke/>
  3219. </foreground>
  3220. </shape>
  3221. <shape name="Picnic Table 1" h="68.25" w="99.12" aspect="variable" strokewidth="inherit">
  3222. <connections>
  3223. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  3224. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  3225. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  3226. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  3227. <constraint x="0.19" y="0" perimeter="0" name="NW"/>
  3228. <constraint x="0.16" y="1" perimeter="0" name="SW"/>
  3229. <constraint x="0.81" y="0" perimeter="0" name="NE"/>
  3230. <constraint x="0.845" y="1" perimeter="0" name="SE"/>
  3231. </connections>
  3232. <background>
  3233. <path>
  3234. <move x="99.12" y="31.42"/>
  3235. <line x="73.17" y="31.42"/>
  3236. <line x="66.19" y="7.34"/>
  3237. <line x="79.95" y="7.33"/>
  3238. <line x="79.95" y="0"/>
  3239. <line x="18.93" y="0"/>
  3240. <line x="18.92" y="7.38"/>
  3241. <line x="33.25" y="7.37"/>
  3242. <line x="26.29" y="31.38"/>
  3243. <line x="0" y="31.38"/>
  3244. <line x="0" y="37.63"/>
  3245. <line x="24.42" y="37.63"/>
  3246. <line x="15.43" y="68.25"/>
  3247. <line x="25.98" y="68.25"/>
  3248. <line x="34.93" y="37.63"/>
  3249. <line x="64.08" y="37.63"/>
  3250. <line x="72.93" y="68.25"/>
  3251. <line x="83.94" y="68.25"/>
  3252. <line x="74.92" y="37.67"/>
  3253. <line x="99.12" y="37.67"/>
  3254. <line x="99.12" y="31.42"/>
  3255. <line x="99.12" y="31.42"/>
  3256. <line x="99.12" y="31.42"/>
  3257. <close/>
  3258. <move x="36.84" y="31.42"/>
  3259. <line x="43.85" y="7.35"/>
  3260. <line x="55.38" y="7.34"/>
  3261. <line x="62.19" y="31.42"/>
  3262. <line x="36.84" y="31.42"/>
  3263. <line x="36.84" y="31.42"/>
  3264. <line x="36.84" y="31.42"/>
  3265. <close/>
  3266. </path>
  3267. </background>
  3268. <foreground>
  3269. <fillstroke/>
  3270. </foreground>
  3271. </shape>
  3272. <shape name="Picnic Table 2" h="87.27" w="99.38" aspect="variable" strokewidth="inherit">
  3273. <connections>
  3274. <constraint x="0.5" y="0.155" perimeter="0" name="N"/>
  3275. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  3276. <constraint x="0" y="0.495" perimeter="0" name="W"/>
  3277. <constraint x="1" y="0.495" perimeter="0" name="E"/>
  3278. <constraint x="0.2" y="0.155" perimeter="0" name="NW"/>
  3279. <constraint x="0.15" y="1" perimeter="0" name="SW"/>
  3280. <constraint x="0.81" y="0.155" perimeter="0" name="NE"/>
  3281. <constraint x="0.865" y="1" perimeter="0" name="SE"/>
  3282. </connections>
  3283. <foreground>
  3284. <rect x="19.99" y="13.63" w="60.62" h="7"/>
  3285. <fillstroke/>
  3286. <path>
  3287. <move x="50.31" y="17.11"/>
  3288. </path>
  3289. <fillstroke/>
  3290. <path>
  3291. <move x="99.38" y="48.27"/>
  3292. <line x="74.53" y="48.27"/>
  3293. <line x="67.38" y="23.53"/>
  3294. <line x="57.26" y="23.53"/>
  3295. <line x="64.43" y="48.27"/>
  3296. <line x="36.29" y="48.27"/>
  3297. <line x="43.45" y="23.53"/>
  3298. <line x="33.35" y="23.53"/>
  3299. <line x="26.19" y="48.27"/>
  3300. <line x="0.38" y="48.27"/>
  3301. <line x="0.38" y="54.63"/>
  3302. <line x="24.35" y="54.63"/>
  3303. <line x="14.9" y="87.27"/>
  3304. <line x="25" y="87.27"/>
  3305. <line x="34.45" y="54.63"/>
  3306. <line x="66.27" y="54.63"/>
  3307. <line x="75.72" y="87.27"/>
  3308. <line x="85.82" y="87.27"/>
  3309. <line x="76.37" y="54.63"/>
  3310. <line x="99.38" y="54.63"/>
  3311. <close/>
  3312. </path>
  3313. <fillstroke/>
  3314. <rect x="0.38" y="37.72" w="18.31" h="5.58"/>
  3315. <fillstroke/>
  3316. <rect x="81.05" y="37.72" w="18.33" h="5.58"/>
  3317. <fillstroke/>
  3318. </foreground>
  3319. </shape>
  3320. <shape name="Ranger Station 1" h="98.75" w="92.27" aspect="variable" strokewidth="inherit">
  3321. <connections>
  3322. <constraint x="0.56" y="0" perimeter="0" name="N"/>
  3323. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  3324. <constraint x="0" y="0.64" perimeter="0" name="W"/>
  3325. <constraint x="1" y="0.64" perimeter="0" name="E"/>
  3326. <constraint x="0.12" y="1" perimeter="0" name="SW"/>
  3327. <constraint x="0.855" y="0.04" perimeter="0" name="NE"/>
  3328. <constraint x="0.885" y="1" perimeter="0" name="SE"/>
  3329. </connections>
  3330. <background>
  3331. <path>
  3332. <move x="55.38" y="39.62"/>
  3333. <line x="55.38" y="18.2"/>
  3334. <line x="62.88" y="18.2"/>
  3335. <curve x1="66" y1="18.2" x2="66.54" y2="20.22" x3="66.93" y3="20.62"/>
  3336. <curve x1="68.09" y1="21.73" x2="68.88" y2="22.4" x3="70.53" y3="22.4"/>
  3337. <line x="78.84" y="22.4"/>
  3338. <line x="78.84" y="4.19"/>
  3339. <line x="70.53" y="4.19"/>
  3340. <curve x1="68.88" y1="4.19" x2="68.1" y2="3.52" x3="66.93" y3="2.39"/>
  3341. <curve x1="66.54" y1="2.05" x2="66.01" y2="0" x3="62.88" y3="0"/>
  3342. <line x="51.42" y="0"/>
  3343. <line x="51.42" y="37.11"/>
  3344. <line x="46.18" y="33.73"/>
  3345. <line x="0" y="63.17"/>
  3346. <line x="10.82" y="63.17"/>
  3347. <line x="10.82" y="98.75"/>
  3348. <line x="37.04" y="98.75"/>
  3349. <line x="37.04" y="70.49"/>
  3350. <line x="55.25" y="70.49"/>
  3351. <line x="55.25" y="98.75"/>
  3352. <line x="81.48" y="98.75"/>
  3353. <line x="81.48" y="63.17"/>
  3354. <line x="92.27" y="63.17"/>
  3355. <line x="55.38" y="39.62"/>
  3356. <close/>
  3357. </path>
  3358. </background>
  3359. <foreground>
  3360. <fillstroke/>
  3361. </foreground>
  3362. </shape>
  3363. <shape name="Ranger Station 2" h="98.87" w="95.48" aspect="variable" strokewidth="inherit">
  3364. <connections>
  3365. <constraint x="0.31" y="0" perimeter="0" name="N"/>
  3366. <constraint x="0.36" y="1" perimeter="0" name="S"/>
  3367. <constraint x="0.1" y="0.5" perimeter="0" name="W"/>
  3368. <constraint x="0.85" y="0.5" perimeter="0" name="E"/>
  3369. <constraint x="0.225" y="0" perimeter="0" name="NW"/>
  3370. <constraint x="0.175" y="1" perimeter="0" name="SW"/>
  3371. <constraint x="0.835" y="0.195" perimeter="0" name="NE"/>
  3372. <constraint x="0.93" y="0.845" perimeter="0" name="SE"/>
  3373. </connections>
  3374. <background>
  3375. <path>
  3376. <move x="91.07" y="25.36"/>
  3377. <curve x1="88.3" y1="23.53" x2="86.22" y2="24.45" x3="86.22" y3="24.45"/>
  3378. <curve x1="83.58" y1="25.11" x2="82.08" y2="25.1" x3="81.34" y3="25.01"/>
  3379. <line x="81.34" y="24.37"/>
  3380. <curve x1="82.05" y1="23.88" x2="82.52" y2="23.07" x3="82.52" y3="22.14"/>
  3381. <curve x1="82.52" y1="20.66" x2="81.3" y2="19.46" x3="79.81" y3="19.46"/>
  3382. <curve x1="78.3" y1="19.46" x2="77.08" y2="20.67" x3="77.08" y3="22.14"/>
  3383. <curve x1="77.08" y1="22.98" x2="77.47" y2="23.71" x3="78.06" y3="24.21"/>
  3384. <line x="78.06" y="47.53"/>
  3385. <line x="68.71" y="40.47"/>
  3386. <line x="48.92" y="55.59"/>
  3387. <line x="48.92" y="83.74"/>
  3388. <line x="88.76" y="83.74"/>
  3389. <line x="88.76" y="55.59"/>
  3390. <line x="81.35" y="50"/>
  3391. <line x="81.35" y="34.62"/>
  3392. <curve x1="82.04" y1="34.72" x2="83.56" y2="34.77" x3="86.34" y3="34.07"/>
  3393. <curve x1="86.34" y1="34.07" x2="88.42" y2="33.14" x3="91.19" y3="34.99"/>
  3394. <curve x1="91.19" y1="34.99" x2="91.78" y2="35.44" x3="95.48" y3="37.85"/>
  3395. <line x="95.48" y="28.25"/>
  3396. <curve x1="91.78" y1="25.84" x2="91.07" y2="25.36" x3="91.07" y3="25.36"/>
  3397. <close/>
  3398. <move x="16.27" y="60.85"/>
  3399. <line x="34.82" y="60.85"/>
  3400. <line x="34.31" y="98.87"/>
  3401. <line x="28.67" y="98.87"/>
  3402. <line x="26.71" y="70.98"/>
  3403. <line x="24.54" y="70.98"/>
  3404. <line x="22.87" y="98.87"/>
  3405. <line x="16.73" y="98.87"/>
  3406. <close/>
  3407. <move x="38.64" y="10.13"/>
  3408. <curve x1="32.79" y1="9.21" x2="25.72" y2="9.14" x3="25.72" y3="9.14"/>
  3409. <line x="25.71" y="9.14"/>
  3410. <curve x1="25.71" y1="9.14" x2="18.64" y2="9.21" x3="12.78" y3="10.13"/>
  3411. <curve x1="12.78" y1="10.13" x2="12.73" y2="11.45" x3="13.38" y3="12.07"/>
  3412. <line x="18.8" y="11.86"/>
  3413. <curve x1="18.61" y1="12.51" x2="18.5" y2="13.21" x3="18.5" y3="13.92"/>
  3414. <curve x1="18.5" y1="17.9" x2="21.73" y2="21.13" x3="25.71" y3="21.13"/>
  3415. <line x="25.71" y="21.13"/>
  3416. <curve x1="29.7" y1="21.13" x2="32.93" y2="17.9" x3="32.93" y3="13.92"/>
  3417. <curve x1="32.93" y1="13.21" x2="32.82" y2="12.51" x3="32.63" y3="11.86"/>
  3418. <line x="38.07" y="12.07"/>
  3419. <curve x1="38.69" y1="11.45" x2="38.64" y2="10.13" x3="38.64" y3="10.13"/>
  3420. <close/>
  3421. <move x="29.46" y="0"/>
  3422. <line x="21.94" y="0"/>
  3423. <line x="17.6" y="3.94"/>
  3424. <line x="17.6" y="7.43"/>
  3425. <line x="33.81" y="7.43"/>
  3426. <line x="33.81" y="3.94"/>
  3427. <close/>
  3428. <move x="49.27" y="38.12"/>
  3429. <line x="37.17" y="25.17"/>
  3430. <curve x1="35.48" y1="23.13" x2="34.1" y2="23.13" x3="34.1" y3="23.13"/>
  3431. <line x="16.96" y="23.13"/>
  3432. <curve x1="16.96" y1="23.13" x2="15.57" y2="23.13" x3="13.89" y3="25.17"/>
  3433. <line x="1.79" y="38.12"/>
  3434. <curve x1="1.79" y1="38.12" x2="0" y2="39.49" x3="1.96" y3="41.73"/>
  3435. <line x="16.27" y="55.64"/>
  3436. <line x="16.27" y="58.17"/>
  3437. <line x="34.79" y="58.17"/>
  3438. <line x="34.79" y="55.64"/>
  3439. <line x="49.1" y="41.74"/>
  3440. <curve x1="51.07" y1="39.49" x2="49.27" y2="38.12" x3="49.27" y3="38.12"/>
  3441. <close/>
  3442. <move x="11.8" y="44.88"/>
  3443. <curve x1="11.8" y1="44.88" x2="9.66" y2="40.99" x3="9.25" y3="40.35"/>
  3444. <line x="8.74" y="39.43"/>
  3445. <line x="15.98" y="32.79"/>
  3446. <curve x1="15.98" y1="32.79" x2="16.15" y2="32.56" x3="16.32" y3="33.09"/>
  3447. <line x="16.5" y="48.9"/>
  3448. <curve x1="16.5" y1="48.89" x2="14.71" y2="48.66" x3="11.8" y3="44.88"/>
  3449. <close/>
  3450. <move x="41.81" y="40.35"/>
  3451. <curve x1="41.4" y1="40.99" x2="39.27" y2="44.88" x3="39.27" y3="44.88"/>
  3452. <curve x1="36.37" y1="48.66" x2="34.57" y2="48.9" x3="34.57" y3="48.9"/>
  3453. <line x="34.75" y="33.09"/>
  3454. <curve x1="34.92" y1="32.57" x2="35.08" y2="32.79" x3="35.08" y3="32.79"/>
  3455. <line x="42.32" y="39.43"/>
  3456. <line x="41.81" y="40.35"/>
  3457. <close/>
  3458. </path>
  3459. </background>
  3460. <foreground>
  3461. <fillstroke/>
  3462. </foreground>
  3463. </shape>
  3464. <shape name="Rock Climbing" h="98.83" w="76.06" aspect="variable" strokewidth="inherit">
  3465. <connections>
  3466. <constraint x="0.45" y="0.1" perimeter="0" name="N"/>
  3467. <constraint x="0.55" y="1" perimeter="0" name="S"/>
  3468. <constraint x="0.345" y="0.5" perimeter="0" name="W"/>
  3469. <constraint x="0.79" y="0.5" perimeter="0" name="E"/>
  3470. <constraint x="0.05" y="0.19" perimeter="0" name="NW"/>
  3471. <constraint x="0.2" y="0.96" perimeter="0" name="SW"/>
  3472. <constraint x="1" y="0" perimeter="0" name="NE"/>
  3473. <constraint x="0.8" y="0.755" perimeter="0" name="SE"/>
  3474. </connections>
  3475. <background>
  3476. <path>
  3477. <move x="34.4" y="24.57"/>
  3478. <curve x1="38.46" y1="24.57" x2="41.77" y2="21.33" x3="41.77" y3="17.31"/>
  3479. <curve x1="41.77" y1="13.29" x2="38.47" y2="10.03" x3="34.4" y3="10.03"/>
  3480. <curve x1="30.34" y1="10.03" x2="27.03" y2="13.29" x3="27.03" y3="17.31"/>
  3481. <curve x1="27.03" y1="21.33" x2="30.34" y2="24.57" x3="34.4" y3="24.57"/>
  3482. <close/>
  3483. <move x="44.9" y="98.83"/>
  3484. <line x="44.9" y="66.08"/>
  3485. <line x="41.79" y="67.52"/>
  3486. <line x="41.79" y="98.83"/>
  3487. <close/>
  3488. <move x="10.65" y="39.3"/>
  3489. <curve x1="11.71" y1="40.93" x2="13.84" y2="41.66" x3="15.74" y3="40.89"/>
  3490. <line x="26.43" y="36.74"/>
  3491. <line x="26.43" y="51.41"/>
  3492. <line x="44.9" y="51.41"/>
  3493. <line x="44.9" y="34.43"/>
  3494. <line x="61.45" y="8.25"/>
  3495. <curve x1="62.67" y1="6.34" x2="62.1" y2="3.8" x3="60.15" y3="2.58"/>
  3496. <curve x1="58.22" y1="1.38" x2="55.65" y2="1.94" x3="54.57" y3="3.8"/>
  3497. <line x="40.51" y="26.05"/>
  3498. <line x="32.04" y="26.07"/>
  3499. <curve x1="31.5" y1="26.07" x2="30.95" y2="26.16" x3="30.41" y3="26.37"/>
  3500. <line x="15.78" y="32.04"/>
  3501. <line x="8.24" y="20.74"/>
  3502. <curve x1="7" y1="18.85" x2="4.44" y2="18.29" x3="2.5" y3="19.52"/>
  3503. <curve x1="0.57" y1="20.74" x2="0" y2="23.3" x3="1.24" y3="25.21"/>
  3504. <line x="10.65" y="39.3"/>
  3505. <close/>
  3506. <move x="47.98" y="46.73"/>
  3507. <curve x1="68.21" y1="36.81" x2="76.06" y2="2.83" x3="76.06" y3="0"/>
  3508. <line x="73.28" y="0"/>
  3509. <curve x1="72.24" y1="7.09" x2="63.54" y2="35.44" x3="47.99" y3="43.66"/>
  3510. <line x="47.99" y="46.73"/>
  3511. <close/>
  3512. <move x="39.46" y="65.55"/>
  3513. <curve x1="38.52" y1="65.89" x2="37.48" y2="66.09" x3="36.42" y3="66.09"/>
  3514. <curve x1="35.27" y1="66.09" x2="34.14" y2="65.96" x3="33.09" y3="65.66"/>
  3515. <line x="21.27" y="92.51"/>
  3516. <curve x1="20.21" y1="94.98" x2="17.23" y2="95.82" x3="14.64" y3="94.38"/>
  3517. <curve x1="12.05" y1="92.94" x2="10.84" y2="89.79" x3="11.95" y3="87.32"/>
  3518. <line x="26.42" y="54.48"/>
  3519. <line x="44.89" y="54.48"/>
  3520. <line x="44.89" y="51.41"/>
  3521. <line x="54.23" y="47.11"/>
  3522. <curve x1="56.69" y1="45.93" x2="59.86" y2="47.95" x3="60.51" y3="50.5"/>
  3523. <line x="65.11" y="68.66"/>
  3524. <curve x1="65.76" y1="71.24" x2="64.18" y2="73.83" x3="61.57" y3="74.48"/>
  3525. <curve x1="58.96" y1="75.13" x2="56.31" y2="73.56" x3="55.66" y3="70.98"/>
  3526. <line x="52.75" y="59.4"/>
  3527. <line x="39.46" y="65.55"/>
  3528. <close/>
  3529. </path>
  3530. </background>
  3531. <foreground>
  3532. <fillstroke/>
  3533. </foreground>
  3534. </shape>
  3535. <shape name="Rock Collection" h="98.77" w="92.65" aspect="variable" strokewidth="inherit">
  3536. <connections>
  3537. <constraint x="0.5" y="0.13" perimeter="0" name="N"/>
  3538. <constraint x="0.5" y="0.96" perimeter="0" name="S"/>
  3539. <constraint x="0.28" y="0.5" perimeter="0" name="W"/>
  3540. <constraint x="0.8" y="0.3" perimeter="0" name="E"/>
  3541. <constraint x="0.06" y="0" perimeter="0" name="NW"/>
  3542. <constraint x="0.01" y="0.98" perimeter="0" name="SW"/>
  3543. <constraint x="0.96" y="0.96" perimeter="0" name="SE"/>
  3544. </connections>
  3545. <background>
  3546. <path>
  3547. <move x="43.02" y="10.88"/>
  3548. <curve x1="27.54" y1="1.9" x2="19.41" y2="1.62" x3="5.32" y3="0"/>
  3549. <line x="4.8" y="2.62"/>
  3550. <curve x1="22.28" y1="6.62" x2="26.7" y2="10.68" x3="38.73" y3="17.88"/>
  3551. <line x="40.39" y="25.73"/>
  3552. <line x="0.7" y="90.34"/>
  3553. <curve x1="0.31" y1="91.11" x2="0.08" y2="91.96" x3="0.05" y3="92.88"/>
  3554. <curve x1="0" y1="96.09" x2="2.57" y2="98.7" x3="5.79" y3="98.75"/>
  3555. <curve x1="7.92" y1="98.77" x2="9.79" y2="97.67" x3="10.86" y3="96.03"/>
  3556. <line x="49.93" y="32.89"/>
  3557. <line x="65.83" y="42.95"/>
  3558. <line x="74.01" y="29.63"/>
  3559. <close/>
  3560. <move x="63.26" y="70.53"/>
  3561. <line x="68.38" y="74.81"/>
  3562. <line x="77.32" y="64.42"/>
  3563. <line x="66.8" y="55.6"/>
  3564. <line x="62.4" y="60.7"/>
  3565. <close/>
  3566. <move x="92.65" y="77.15"/>
  3567. <line x="72.82" y="77.12"/>
  3568. <line x="72.8" y="97.08"/>
  3569. <line x="86.28" y="97.08"/>
  3570. <line x="92.65" y="90.31"/>
  3571. <close/>
  3572. <move x="56.82" y="98.13"/>
  3573. <line x="63.52" y="96.16"/>
  3574. <line x="57.49" y="76.25"/>
  3575. <line x="43.18" y="80.46"/>
  3576. <line x="40.4" y="92.36"/>
  3577. <close/>
  3578. </path>
  3579. </background>
  3580. <foreground>
  3581. <fillstroke/>
  3582. </foreground>
  3583. </shape>
  3584. <shape name="Rollerblading" h="99.3" w="94.02" aspect="variable" strokewidth="inherit">
  3585. <connections>
  3586. <constraint x="0.5" y="0.195" perimeter="0" name="N"/>
  3587. <constraint x="0.55" y="0.995" perimeter="0" name="S"/>
  3588. <constraint x="0.005" y="0.6" perimeter="0" name="W"/>
  3589. <constraint x="1" y="0.42" perimeter="0" name="E"/>
  3590. <constraint x="0.19" y="0.3" perimeter="0" name="NW"/>
  3591. <constraint x="0.74" y="0" perimeter="0" name="NE"/>
  3592. </connections>
  3593. <background>
  3594. <path>
  3595. <move x="69.4" y="0"/>
  3596. <curve x1="64.71" y1="0" x2="60.89" y2="3.83" x3="60.89" y3="8.53"/>
  3597. <curve x1="60.89" y1="13.26" x2="64.71" y2="17.07" x3="69.4" y3="17.07"/>
  3598. <curve x1="74.11" y1="17.07" x2="77.96" y2="13.26" x3="77.96" y3="8.53"/>
  3599. <curve x1="77.95" y1="3.83" x2="74.11" y2="0" x3="69.4" y3="0"/>
  3600. <move x="5.01" y="58.86"/>
  3601. <curve x1="4.27" y1="57.67" x2="2.72" y2="57.31" x3="1.55" y3="58.06"/>
  3602. <curve x1="0.36" y1="58.79" x2="0" y2="60.34" x3="0.73" y3="61.54"/>
  3603. <curve x1="1.48" y1="62.71" x2="3.02" y2="63.06" x3="4.22" y3="62.33"/>
  3604. <curve x1="5.39" y1="61.58" x2="5.74" y2="60.03" x3="5.01" y3="58.86"/>
  3605. <move x="6.76" y="65.83"/>
  3606. <curve x1="6.03" y1="64.66" x2="4.48" y2="64.31" x3="3.28" y3="65.05"/>
  3607. <curve x1="2.12" y1="65.78" x2="1.75" y2="67.33" x3="2.5" y3="68.5"/>
  3608. <curve x1="3.23" y1="69.69" x2="4.78" y2="70.04" x3="5.95" y3="69.3"/>
  3609. <curve x1="7.12" y1="68.57" x2="7.49" y2="67.02" x3="6.76" y3="65.83"/>
  3610. <move x="8.51" y="72.81"/>
  3611. <curve x1="7.78" y1="71.62" x2="6.19" y2="71.26" x3="5.04" y3="72"/>
  3612. <curve x1="3.83" y1="72.73" x2="3.49" y2="74.28" x3="4.22" y3="75.48"/>
  3613. <curve x1="4.95" y1="76.65" x2="6.54" y2="77" x3="7.69" y3="76.27"/>
  3614. <curve x1="8.88" y1="75.54" x2="9.24" y2="73.98" x3="8.51" y3="72.81"/>
  3615. <move x="10.23" y="79.78"/>
  3616. <curve x1="9.5" y1="78.6" x2="7.95" y2="78.25" x3="6.78" y3="78.96"/>
  3617. <curve x1="5.59" y1="79.72" x2="5.23" y2="81.27" x3="5.96" y3="82.44"/>
  3618. <curve x1="6.69" y1="83.63" x2="8.24" y2="83.99" x3="9.45" y3="83.25"/>
  3619. <curve x1="10.61" y1="82.53" x2="10.98" y2="80.97" x3="10.23" y3="79.78"/>
  3620. <move x="51.17" y="93.97"/>
  3621. <curve x1="49.83" y1="94.41" x2="49.09" y2="95.83" x3="49.51" y3="97.15"/>
  3622. <curve x1="49.96" y1="98.5" x2="51.38" y2="99.21" x3="52.69" y3="98.81"/>
  3623. <curve x1="54.02" y1="98.37" x2="54.76" y2="96.95" x3="54.35" y3="95.63"/>
  3624. <curve x1="53.91" y1="94.3" x2="52.49" y2="93.57" x3="51.17" y3="93.97"/>
  3625. <move x="58.32" y="94.03"/>
  3626. <curve x1="57" y1="94.43" x2="56.28" y2="95.85" x3="56.7" y3="97.18"/>
  3627. <curve x1="57.12" y1="98.53" x2="58.55" y2="99.26" x3="59.87" y3="98.84"/>
  3628. <curve x1="61.19" y1="98.4" x2="61.93" y2="96.98" x3="61.5" y3="95.66"/>
  3629. <curve x1="61.07" y1="94.34" x2="59.67" y2="93.6" x3="58.32" y3="94.03"/>
  3630. <move x="65.54" y="94.05"/>
  3631. <curve x1="64.19" y1="94.48" x2="63.45" y2="95.87" x3="63.89" y3="97.22"/>
  3632. <curve x1="64.31" y1="98.54" x2="65.73" y2="99.29" x3="67.07" y3="98.85"/>
  3633. <curve x1="68.38" y1="98.45" x2="69.13" y2="97.02" x3="68.68" y3="95.67"/>
  3634. <curve x1="68.27" y1="94.36" x2="66.85" y2="93.63" x3="65.54" y3="94.05"/>
  3635. <move x="72.69" y="94.08"/>
  3636. <curve x1="71.38" y1="94.52" x2="70.63" y2="95.94" x3="71.07" y3="97.26"/>
  3637. <curve x1="71.51" y1="98.57" x2="72.93" y2="99.3" x3="74.24" y3="98.88"/>
  3638. <curve x1="75.56" y1="98.45" x2="76.3" y2="97.06" x3="75.87" y3="95.73"/>
  3639. <curve x1="75.45" y1="94.39" x2="74.02" y2="93.67" x3="72.69" y3="94.08"/>
  3640. <move x="89.84" y="37.82"/>
  3641. <line x="74.94" y="37.82"/>
  3642. <line x="68.09" y="22.31"/>
  3643. <curve x1="68.01" y1="22.05" x2="67.85" y2="21.72" x3="67.77" y3="21.56"/>
  3644. <curve x1="67.75" y1="21.51" x2="67.72" y2="21.49" x3="67.72" y3="21.46"/>
  3645. <line x="67.6" y="21.17"/>
  3646. <line x="67.58" y="21.2"/>
  3647. <curve x1="66.3" y1="18.5" x2="63.64" y2="16.58" x3="60.49" y3="16.46"/>
  3648. <curve x1="59.88" y1="16.42" x2="59.32" y2="16.48" x3="58.77" y3="16.6"/>
  3649. <line x="21.33" y="25.4"/>
  3650. <curve x1="19.06" y1="25.93" x2="17.65" y2="28.17" x3="18.18" y3="30.45"/>
  3651. <curve x1="18.69" y1="32.72" x2="20.91" y2="34.12" x3="23.18" y3="33.61"/>
  3652. <line x="48.17" y="27.66"/>
  3653. <line x="29.18" y="59.02"/>
  3654. <line x="15.36" y="59.02"/>
  3655. <line x="15.34" y="59.02"/>
  3656. <line x="8.86" y="59.02"/>
  3657. <line x="13.36" y="76.74"/>
  3658. <curve x1="13.51" y1="77.27" x2="13.51" y2="77.39" x3="13.68" y3="77.67"/>
  3659. <curve x1="14.32" y1="78.71" x2="15.66" y2="79.04" x3="16.68" y3="78.4"/>
  3660. <curve x1="17.24" y1="78.08" x2="17.59" y2="77.51" x3="17.7" y3="76.93"/>
  3661. <line x="20.39" y="68.72"/>
  3662. <line x="20.49" y="68.39"/>
  3663. <curve x1="20.49" y1="68.39" x2="32.92" y2="68.34" x3="33.01" y3="68.34"/>
  3664. <curve x1="35.5" y1="68.34" x2="37.64" y2="67.66" x3="38.91" y3="65.56"/>
  3665. <line x="44.66" y="56.02"/>
  3666. <line x="57.48" y="68.79"/>
  3667. <line x="52.04" y="90.21"/>
  3668. <line x="70.86" y="90.21"/>
  3669. <curve x1="72.08" y1="90.21" x2="73.07" y2="89.22" x3="73.07" y3="88.03"/>
  3670. <curve x1="73.07" y1="87.08" x2="72.48" y2="86.42" x3="71.75" y3="86.02"/>
  3671. <line x="63.63" y="81.53"/>
  3672. <line x="67.53" y="66.13"/>
  3673. <curve x1="67.53" y1="66.13" x2="68.5" y2="62.88" x3="65.43" y3="59.87"/>
  3674. <line x="54.94" y="49.36"/>
  3675. <curve x1="54.94" y1="49.36" x2="60.55" y2="40.13" x3="64.15" y3="34.21"/>
  3676. <line x="68.33" y="43.69"/>
  3677. <curve x1="68.66" y1="44.45" x2="69.22" y2="45.06" x3="69.88" y3="45.49"/>
  3678. <curve x1="69.88" y1="45.51" x2="69.93" y2="45.51" x3="69.93" y3="45.55"/>
  3679. <curve x1="70.59" y1="45.98" x2="71.38" y2="46.24" x3="72.23" y3="46.24"/>
  3680. <line x="89.75" y="46.24"/>
  3681. <curve x1="92.09" y1="46.27" x2="93.97" y2="44.35" x3="93.99" y3="42.04"/>
  3682. <curve x1="94.02" y1="39.7" x2="92.14" y2="37.86" x3="89.84" y3="37.82"/>
  3683. </path>
  3684. </background>
  3685. <foreground>
  3686. <fillstroke/>
  3687. </foreground>
  3688. </shape>
  3689. <shape name="Rowboat" h="81.9" w="99.11" aspect="variable" strokewidth="inherit">
  3690. <connections>
  3691. <constraint x="0.65" y="0" perimeter="0" name="N"/>
  3692. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  3693. <constraint x="0" y="0.55" perimeter="0" name="W"/>
  3694. <constraint x="1" y="0.55" perimeter="0" name="E"/>
  3695. <constraint x="0.035" y="1" perimeter="0" name="SW"/>
  3696. <constraint x="1" y="1" perimeter="0" name="SE"/>
  3697. </connections>
  3698. <background>
  3699. <path>
  3700. <move x="64.48" y="17.88"/>
  3701. <curve x1="69.38" y1="17.88" x2="73.33" y2="13.87" x3="73.33" y3="8.95"/>
  3702. <curve x1="73.33" y1="4.01" x2="69.38" y2="0" x3="64.48" y3="0"/>
  3703. <curve x1="59.58" y1="0" x2="55.61" y2="4.01" x3="55.61" y3="8.95"/>
  3704. <curve x1="55.61" y1="13.87" x2="59.58" y2="17.88" x3="64.48" y3="17.88"/>
  3705. <close/>
  3706. <move x="99.11" y="81.9"/>
  3707. <curve x1="97.02" y1="81.9" x2="95" y2="81.42" x3="93.21" y3="80.63"/>
  3708. <curve x1="91.38" y1="79.77" x2="89.31" y2="79.26" x3="87.15" y3="79.26"/>
  3709. <curve x1="85.01" y1="79.26" x2="82.94" y2="79.76" x3="81.11" y3="80.63"/>
  3710. <curve x1="79.3" y1="81.42" x2="77.3" y2="81.9" x3="75.21" y3="81.9"/>
  3711. <curve x1="73.12" y1="81.9" x2="71.12" y2="81.42" x3="69.33" y3="80.63"/>
  3712. <curve x1="67.5" y1="79.77" x2="65.43" y2="79.26" x3="63.26" y3="79.26"/>
  3713. <curve x1="61.09" y1="79.26" x2="59.03" y2="79.76" x3="57.19" y3="80.63"/>
  3714. <curve x1="55.41" y1="81.42" x2="53.41" y2="81.9" x3="51.32" y3="81.9"/>
  3715. <curve x1="49.23" y1="81.9" x2="47.23" y2="81.42" x3="45.42" y3="80.63"/>
  3716. <curve x1="43.59" y1="79.77" x2="41.54" y2="79.26" x3="39.38" y3="79.26"/>
  3717. <curve x1="37.22" y1="79.26" x2="35.15" y2="79.76" x3="33.31" y3="80.63"/>
  3718. <curve x1="31.53" y1="81.42" x2="29.53" y2="81.9" x3="27.43" y3="81.9"/>
  3719. <curve x1="25.36" y1="81.9" x2="23.36" y2="81.42" x3="21.55" y3="80.63"/>
  3720. <curve x1="19.72" y1="79.77" x2="17.65" y2="79.26" x3="15.51" y3="79.26"/>
  3721. <curve x1="13.35" y1="79.26" x2="11.28" y2="79.76" x3="9.44" y3="80.63"/>
  3722. <curve x1="7.66" y1="81.42" x2="5.66" y2="81.9" x3="3.56" y3="81.9"/>
  3723. <line x="3.56" y="73"/>
  3724. <curve x1="5.65" y1="73" x2="7.65" y2="72.54" x3="9.44" y3="71.73"/>
  3725. <curve x1="11.27" y1="70.87" x2="13.34" y2="70.36" x3="15.51" y3="70.36"/>
  3726. <curve x1="17.65" y1="70.36" x2="19.72" y2="70.86" x3="21.55" y3="71.73"/>
  3727. <curve x1="23.36" y1="72.55" x2="25.36" y2="73" x3="27.43" y3="73"/>
  3728. <curve x1="29.52" y1="73" x2="31.52" y2="72.54" x3="33.31" y3="71.73"/>
  3729. <curve x1="35.14" y1="70.87" x2="37.21" y2="70.36" x3="39.38" y3="70.36"/>
  3730. <curve x1="41.55" y1="70.36" x2="43.59" y2="70.86" x3="45.42" y3="71.73"/>
  3731. <curve x1="47.23" y1="72.55" x2="49.23" y2="73" x3="51.32" y3="73"/>
  3732. <curve x1="53.41" y1="73" x2="55.41" y2="72.54" x3="57.19" y3="71.73"/>
  3733. <curve x1="59.02" y1="70.87" x2="61.09" y2="70.36" x3="63.26" y3="70.36"/>
  3734. <curve x1="65.43" y1="70.36" x2="67.49" y2="70.86" x3="69.33" y3="71.73"/>
  3735. <curve x1="71.11" y1="72.55" x2="73.11" y2="73" x3="75.21" y3="73"/>
  3736. <curve x1="77.3" y1="73" x2="79.3" y2="72.54" x3="81.11" y3="71.73"/>
  3737. <curve x1="82.94" y1="70.87" x2="85.01" y2="70.36" x3="87.15" y3="70.36"/>
  3738. <curve x1="89.31" y1="70.36" x2="91.38" y2="70.86" x3="93.21" y3="71.73"/>
  3739. <curve x1="94.99" y1="72.55" x2="97.02" y2="73" x3="99.11" y3="73"/>
  3740. <line x="99.11" y="81.9"/>
  3741. <close/>
  3742. <move x="9.68" y="64.17"/>
  3743. <curve x1="11.46" y1="63.36" x2="13.44" y2="62.9" x3="15.53" y3="62.9"/>
  3744. <curve x1="17.67" y1="62.9" x2="19.74" y2="63.4" x3="21.57" y3="64.27"/>
  3745. <curve x1="23.38" y1="65.06" x2="25.38" y2="65.54" x3="27.45" y3="65.54"/>
  3746. <curve x1="29.54" y1="65.54" x2="31.54" y2="65.06" x3="33.33" y3="64.27"/>
  3747. <curve x1="35.16" y1="63.41" x2="37.23" y2="62.9" x3="39.4" y3="62.9"/>
  3748. <curve x1="41.57" y1="62.9" x2="43.61" y2="63.4" x3="45.44" y3="64.27"/>
  3749. <curve x1="47.25" y1="65.06" x2="49.25" y2="65.54" x3="51.34" y3="65.54"/>
  3750. <curve x1="53.43" y1="65.54" x2="55.43" y2="65.06" x3="57.21" y3="64.27"/>
  3751. <curve x1="58.38" y1="63.72" x2="59.59" y2="63.36" x3="60.87" y3="63.12"/>
  3752. <line x="76.14" y="45.51"/>
  3753. <line x="56.49" y="45.51"/>
  3754. <line x="64.63" y="31.42"/>
  3755. <line x="82.47" y="41.26"/>
  3756. <curve x1="88.37" y1="44.62" x2="92.72" y2="36.87" x3="86.8" y3="33.51"/>
  3757. <line x="61.24" y="19.25"/>
  3758. <curve x1="51.84" y1="13.97" x2="47.87" y2="22.73" x3="47.87" y3="22.73"/>
  3759. <line x="34.7" y="45.19"/>
  3760. <line x="0" y="45.16"/>
  3761. <curve x1="1.09" y1="51.57" x2="6.8" y2="60.16" x3="9.68" y3="64.17"/>
  3762. <close/>
  3763. <move x="65.45" y="63.06"/>
  3764. <curve x1="66.81" y1="63.28" x2="68.11" y2="63.68" x3="69.33" y3="64.26"/>
  3765. <curve x1="71.11" y1="65.05" x2="73.11" y2="65.53" x3="75.21" y3="65.53"/>
  3766. <curve x1="77.3" y1="65.53" x2="79.3" y2="65.05" x3="81.11" y3="64.26"/>
  3767. <curve x1="82.94" y1="63.4" x2="85.01" y2="62.89" x3="87.15" y3="62.89"/>
  3768. <curve x1="89.31" y1="62.89" x2="91.38" y2="63.39" x3="93.21" y3="64.26"/>
  3769. <curve x1="94.99" y1="65.05" x2="97.02" y2="65.53" x3="99.11" y3="65.53"/>
  3770. <line x="99.06" y="45.5"/>
  3771. <line x="80.65" y="45.48"/>
  3772. <line x="65.45" y="63.06"/>
  3773. <close/>
  3774. </path>
  3775. </background>
  3776. <foreground>
  3777. <fillstroke/>
  3778. </foreground>
  3779. </shape>
  3780. <shape name="Running" h="98.87" w="70.32" aspect="variable" strokewidth="inherit">
  3781. <connections>
  3782. <constraint x="0.5" y="0.195" perimeter="0" name="N"/>
  3783. <constraint x="0.405" y="1" perimeter="0" name="S"/>
  3784. <constraint x="0.005" y="0.5" perimeter="0" name="W"/>
  3785. <constraint x="0.855" y="0.38" perimeter="0" name="E"/>
  3786. <constraint x="0.09" y="0.04" perimeter="0" name="NW"/>
  3787. <constraint x="0.98" y="0.845" perimeter="0" name="SE"/>
  3788. </connections>
  3789. <background>
  3790. <path>
  3791. <move x="15.41" y="24.34"/>
  3792. <curve x1="21.78" y1="24.34" x2="26.94" y2="18.89" x3="26.94" y3="12.17"/>
  3793. <curve x1="26.95" y1="5.45" x2="21.78" y2="0" x3="15.41" y3="0"/>
  3794. <curve x1="9.05" y1="0" x2="3.89" y2="5.45" x3="3.89" y3="12.17"/>
  3795. <curve x1="3.89" y1="18.89" x2="9.05" y2="24.34" x3="15.41" y3="24.34"/>
  3796. <close/>
  3797. <move x="51.97" y="73.04"/>
  3798. <curve x1="52.99" y1="70.35" x2="50.95" y2="52.59" x3="50.95" y3="52.59"/>
  3799. <line x="38.21" y="31.08"/>
  3800. <line x="43.31" y="28.93"/>
  3801. <line x="52.99" y="42.92"/>
  3802. <line x="60.12" y="37.54"/>
  3803. <line x="51.45" y="20.31"/>
  3804. <line x="28.52" y="19.24"/>
  3805. <curve x1="26.99" y1="21.93" x2="17.31" y2="27.31" x3="15.27" y3="27.85"/>
  3806. <curve x1="13.23" y1="28.39" x2="14.25" y2="45.07" x3="14.25" y3="45.07"/>
  3807. <line x="0" y="45.61"/>
  3808. <line x="1.02" y="56.9"/>
  3809. <line x="24.97" y="54.75"/>
  3810. <line x="27.52" y="46.14"/>
  3811. <curve x1="27.52" y1="46.14" x2="31.09" y2="54.21" x3="32.1" y3="55.83"/>
  3812. <curve x1="33.12" y1="57.44" x2="31.08" y2="59.6" x3="31.08" y3="59.6"/>
  3813. <line x="17.32" y="68.21"/>
  3814. <line x="18.34" y="98.87"/>
  3815. <line x="28.53" y="98.87"/>
  3816. <line x="30.57" y="75.2"/>
  3817. <line x="42.29" y="67.13"/>
  3818. <line x="41.27" y="83.81"/>
  3819. <line x="68.79" y="83.81"/>
  3820. <line x="70.32" y="72.51"/>
  3821. <curve x1="67.25" y1="67.66" x2="50.94" y2="75.74" x3="51.97" y3="73.04"/>
  3822. <close/>
  3823. </path>
  3824. </background>
  3825. <foreground>
  3826. <fillstroke/>
  3827. </foreground>
  3828. </shape>
  3829. <shape name="RV" h="62.59" w="99.82" aspect="variable" strokewidth="inherit">
  3830. <connections>
  3831. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  3832. <constraint x="0.5" y="0.82" perimeter="0" name="S"/>
  3833. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  3834. <constraint x="0.89" y="0.5" perimeter="0" name="E"/>
  3835. <constraint x="0.02" y="0.03" perimeter="0" name="NW"/>
  3836. <constraint x="0.245" y="0.995" perimeter="0" name="SW"/>
  3837. <constraint x="0.81" y="1" perimeter="0" name="SE"/>
  3838. </connections>
  3839. <background>
  3840. <path>
  3841. <move x="36.21" y="23.4"/>
  3842. <curve x1="37.09" y1="23.4" x2="37.81" y2="22.67" x3="37.81" y3="21.79"/>
  3843. <line x="37.83" y="11.64"/>
  3844. <curve x1="37.83" y1="10.75" x2="37.11" y2="10.03" x3="36.23" y3="10.03"/>
  3845. <line x="13.07" y="10.03"/>
  3846. <curve x1="12.19" y1="10.03" x2="11.47" y2="10.76" x3="11.47" y3="11.64"/>
  3847. <line x="11.45" y="21.79"/>
  3848. <curve x1="11.45" y1="22.68" x2="12.17" y2="23.4" x3="13.05" y3="23.4"/>
  3849. <line x="36.21" y="23.4"/>
  3850. <close/>
  3851. <move x="69.37" y="9.98"/>
  3852. <curve x1="69.78" y1="9.98" x2="70.09" y2="9.64" x3="70.09" y3="9.23"/>
  3853. <curve x1="70.09" y1="9.07" x2="70.04" y2="8.93" x3="69.95" y3="8.8"/>
  3854. <line x="66.29" y="3.51"/>
  3855. <curve x1="66.15" y1="3.35" x2="65.95" y2="3.24" x3="65.7" y3="3.24"/>
  3856. <line x="57.64" y="3.24"/>
  3857. <curve x1="56.92" y1="3.24" x2="56.33" y2="3.83" x3="56.33" y3="4.56"/>
  3858. <line x="56.33" y="8.67"/>
  3859. <curve x1="56.33" y1="9.4" x2="56.92" y2="9.99" x3="57.64" y3="9.99"/>
  3860. <line x="69.37" y="9.99"/>
  3861. <close/>
  3862. <move x="66.93" y="0.03"/>
  3863. <curve x1="67.67" y1="0.03" x2="68.35" y2="0.37" x3="68.8" y3="0.89"/>
  3864. <line x="75.78" y="10.98"/>
  3865. <curve x1="75.94" y1="11.23" x2="76.05" y2="11.5" x3="76.05" y3="11.82"/>
  3866. <curve x1="76.05" y1="12.57" x2="75.42" y2="13.21" x3="74.65" y3="13.21"/>
  3867. <line x="62.66" y="13.19"/>
  3868. <curve x1="58.53" y1="13.19" x2="55.19" y2="16.55" x3="55.19" y3="20.71"/>
  3869. <line x="55.19" y="32.93"/>
  3870. <line x="0.45" y="32.93"/>
  3871. <line x="0.45" y="7.68"/>
  3872. <curve x1="0.45" y1="7.68" x2="0" y2="0" x3="7.88" y3="0"/>
  3873. <line x="66.93" y="0.03"/>
  3874. <close/>
  3875. <move x="83.57" y="34.56"/>
  3876. <line x="68.13" y="34.54"/>
  3877. <curve x1="66.75" y1="34.54" x2="65.65" y2="33.43" x3="65.65" y3="32.04"/>
  3878. <line x="65.65" y="24.04"/>
  3879. <curve x1="65.65" y1="22.65" x2="66.76" y2="21.54" x3="68.11" y3="21.54"/>
  3880. <line x="76.51" y="21.54"/>
  3881. <curve x1="76.94" y1="21.54" x2="77.32" y2="21.74" x3="77.59" y3="22.06"/>
  3882. <line x="84.68" y="32.35"/>
  3883. <curve x1="84.84" y1="32.58" x2="84.95" y2="32.85" x3="84.95" y3="33.17"/>
  3884. <curve x1="84.95" y1="33.94" x2="84.34" y2="34.56" x3="83.57" y3="34.56"/>
  3885. <close/>
  3886. <move x="97" y="43.14"/>
  3887. <line x="97" y="37.85"/>
  3888. <curve x1="97" y1="35.71" x2="95.65" y2="33.9" x3="93.77" y3="33.22"/>
  3889. <line x="89.21" y="31.68"/>
  3890. <line x="80.11" y="18.46"/>
  3891. <curve x1="79.66" y1="17.91" x2="78.98" y2="17.57" x3="78.24" y3="17.57"/>
  3892. <line x="63.82" y="17.57"/>
  3893. <curve x1="61.47" y1="17.57" x2="59.58" y2="19.48" x3="59.58" y3="21.84"/>
  3894. <line x="59.6" y="37.33"/>
  3895. <line x="0.45" y="37.33"/>
  3896. <line x="0.45" y="48.51"/>
  3897. <curve x1="0.45" y1="50.12" x2="1.76" y2="51.44" x3="3.36" y3="51.44"/>
  3898. <line x="11.17" y="51.44"/>
  3899. <curve x1="11.6" y1="44.92" x2="18.1" y2="39.74" x3="24.69" y3="39.74"/>
  3900. <curve x1="31.28" y1="39.74" x2="37.78" y2="44.92" x3="38.23" y3="51.44"/>
  3901. <line x="67.22" y="51.44"/>
  3902. <curve x1="67.7" y1="44.96" x2="74.17" y2="39.83" x3="80.77" y3="39.83"/>
  3903. <curve x1="87.34" y1="39.83" x2="93.82" y2="44.96" x3="94.29" y3="51.44"/>
  3904. <line x="96.89" y="51.44"/>
  3905. <curve x1="98.52" y1="51.44" x2="99.82" y2="50.12" x3="99.82" y3="48.51"/>
  3906. <line x="99.82" y="43.15"/>
  3907. <line x="97" y="43.15"/>
  3908. <close/>
  3909. <move x="80.73" y="57.5"/>
  3910. <curve x1="82.87" y1="57.5" x2="84.61" y2="55.75" x3="84.61" y3="53.59"/>
  3911. <curve x1="84.61" y1="51.43" x2="82.87" y2="49.68" x3="80.73" y3="49.68"/>
  3912. <curve x1="78.59" y1="49.68" x2="76.87" y2="51.43" x3="76.87" y3="53.59"/>
  3913. <curve x1="76.87" y1="55.75" x2="78.58" y2="57.5" x3="80.73" y3="57.5"/>
  3914. <close/>
  3915. <move x="71.79" y="53.59"/>
  3916. <curve x1="71.79" y1="48.62" x2="75.81" y2="44.59" x3="80.73" y3="44.59"/>
  3917. <curve x1="85.67" y1="44.59" x2="89.69" y2="48.61" x3="89.69" y3="53.59"/>
  3918. <curve x1="89.69" y1="58.57" x2="85.67" y2="62.58" x3="80.73" y3="62.58"/>
  3919. <curve x1="75.81" y1="62.59" x2="71.79" y2="58.57" x3="71.79" y3="53.59"/>
  3920. <close/>
  3921. <move x="24.7" y="57.34"/>
  3922. <curve x1="26.84" y1="57.34" x2="28.58" y2="55.59" x3="28.58" y3="53.43"/>
  3923. <curve x1="28.58" y1="51.27" x2="26.84" y2="49.52" x3="24.7" y3="49.52"/>
  3924. <curve x1="22.56" y1="49.52" x2="20.82" y2="51.27" x3="20.82" y3="53.43"/>
  3925. <curve x1="20.82" y1="55.59" x2="22.55" y2="57.34" x3="24.7" y3="57.34"/>
  3926. <close/>
  3927. <move x="15.76" y="53.43"/>
  3928. <curve x1="15.76" y1="48.46" x2="19.78" y2="44.44" x3="24.7" y3="44.44"/>
  3929. <curve x1="29.64" y1="44.44" x2="33.64" y2="48.46" x3="33.64" y3="53.43"/>
  3930. <curve x1="33.64" y1="58.4" x2="29.64" y2="62.42" x3="24.7" y3="62.42"/>
  3931. <curve x1="19.78" y1="62.43" x2="15.76" y2="58.41" x3="15.76" y3="53.43"/>
  3932. <close/>
  3933. </path>
  3934. </background>
  3935. <foreground>
  3936. <fillstroke/>
  3937. </foreground>
  3938. </shape>
  3939. <shape name="Sail Boat" h="99.16" w="92.88" aspect="variable" strokewidth="inherit">
  3940. <connections>
  3941. <constraint x="0.59" y="0" perimeter="0" name="N"/>
  3942. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  3943. <constraint x="0.02" y="0.645" perimeter="0" name="W"/>
  3944. <constraint x="0.975" y="0.645" perimeter="0" name="E"/>
  3945. <constraint x="0" y="1" perimeter="0" name="SW"/>
  3946. <constraint x="1" y="1" perimeter="0" name="SE"/>
  3947. </connections>
  3948. <background>
  3949. <path>
  3950. <move x="91.13" y="99.16"/>
  3951. <curve x1="89.16" y1="99.16" x2="87.23" y2="98.7" x3="85.52" y3="97.93"/>
  3952. <curve x1="83.78" y1="97.11" x2="81.8" y2="96.63" x3="79.74" y3="96.63"/>
  3953. <curve x1="77.69" y1="96.63" x2="75.72" y2="97.1" x3="73.97" y3="97.93"/>
  3954. <curve x1="72.25" y1="98.7" x2="70.34" y2="99.16" x3="68.35" y3="99.16"/>
  3955. <curve x1="66.38" y1="99.16" x2="64.45" y2="98.7" x3="62.75" y3="97.93"/>
  3956. <curve x1="61" y1="97.11" x2="59.02" y2="96.63" x3="56.96" y3="96.63"/>
  3957. <curve x1="54.92" y1="96.63" x2="52.94" y2="97.1" x3="51.2" y3="97.93"/>
  3958. <curve x1="49.47" y1="98.7" x2="47.56" y2="99.16" x3="45.56" y3="99.16"/>
  3959. <curve x1="43.56" y1="99.16" x2="41.66" y2="98.7" x3="39.95" y3="97.93"/>
  3960. <curve x1="38.2" y1="97.11" x2="36.22" y2="96.63" x3="34.17" y3="96.63"/>
  3961. <curve x1="32.11" y1="96.63" x2="30.13" y2="97.1" x3="28.39" y3="97.93"/>
  3962. <curve x1="26.69" y1="98.7" x2="24.77" y2="99.16" x3="22.77" y3="99.16"/>
  3963. <curve x1="20.79" y1="99.16" x2="18.87" y2="98.7" x3="17.16" y3="97.93"/>
  3964. <curve x1="15.41" y1="97.11" x2="13.44" y2="96.63" x3="11.38" y3="96.63"/>
  3965. <curve x1="9.33" y1="96.63" x2="7.36" y2="97.1" x3="5.61" y3="97.93"/>
  3966. <curve x1="3.89" y1="98.7" x2="1.99" y2="99.16" x3="0" y3="99.16"/>
  3967. <line x="0" y="90.72"/>
  3968. <curve x1="2" y1="90.72" x2="3.9" y2="90.27" x3="5.61" y3="89.49"/>
  3969. <curve x1="7.36" y1="88.7" x2="9.34" y2="88.23" x3="11.38" y3="88.23"/>
  3970. <curve x1="13.44" y1="88.23" x2="15.41" y2="88.7" x3="17.16" y3="89.49"/>
  3971. <curve x1="18.87" y1="90.27" x2="20.79" y2="90.72" x3="22.77" y3="90.72"/>
  3972. <curve x1="24.77" y1="90.72" x2="26.68" y2="90.27" x3="28.39" y3="89.49"/>
  3973. <curve x1="30.13" y1="88.7" x2="32.11" y2="88.23" x3="34.17" y3="88.23"/>
  3974. <curve x1="36.22" y1="88.23" x2="38.2" y2="88.7" x3="39.95" y3="89.49"/>
  3975. <curve x1="41.66" y1="90.27" x2="43.56" y2="90.72" x3="45.56" y3="90.72"/>
  3976. <curve x1="47.55" y1="90.72" x2="49.46" y2="90.27" x3="51.19" y3="89.49"/>
  3977. <curve x1="52.94" y1="88.7" x2="54.92" y2="88.23" x3="56.95" y3="88.23"/>
  3978. <curve x1="59.01" y1="88.23" x2="60.99" y2="88.7" x3="62.74" y3="89.49"/>
  3979. <curve x1="64.44" y1="90.27" x2="66.37" y2="90.72" x3="68.34" y3="90.72"/>
  3980. <curve x1="70.34" y1="90.72" x2="72.24" y2="90.27" x3="73.97" y3="89.49"/>
  3981. <curve x1="75.71" y1="88.7" x2="77.69" y2="88.23" x3="79.74" y3="88.23"/>
  3982. <curve x1="81.8" y1="88.23" x2="83.78" y2="88.7" x3="85.52" y3="89.49"/>
  3983. <curve x1="87.23" y1="90.27" x2="89.15" y2="90.72" x3="91.13" y3="90.72"/>
  3984. <line x="91.13" y="99.16"/>
  3985. <line x="91.13" y="99.16"/>
  3986. <close/>
  3987. <move x="59.48" y="15.06"/>
  3988. <curve x1="74.75" y1="22.18" x2="92.88" y2="41.14" x3="90.5" y3="63.91"/>
  3989. <line x="59.48" y="63.91"/>
  3990. <line x="59.48" y="15.06"/>
  3991. <line x="59.48" y="15.06"/>
  3992. <close/>
  3993. <move x="83.94" y="68.5"/>
  3994. <line x="69.78" y="68.5"/>
  3995. <line x="14.91" y="68.5"/>
  3996. <line x="14.91" y="81.05"/>
  3997. <curve x1="15.69" y1="81.25" x2="16.46" y2="81.48" x3="17.16" y3="81.82"/>
  3998. <curve x1="18.87" y1="82.57" x2="20.79" y2="83.03" x3="22.77" y3="83.03"/>
  3999. <curve x1="24.77" y1="83.03" x2="26.68" y2="82.57" x3="28.39" y3="81.82"/>
  4000. <curve x1="30.13" y1="81" x2="32.11" y2="80.52" x3="34.17" y3="80.52"/>
  4001. <curve x1="36.22" y1="80.52" x2="38.2" y2="81" x3="39.95" y3="81.82"/>
  4002. <curve x1="41.66" y1="82.57" x2="43.56" y2="83.03" x3="45.56" y3="83.03"/>
  4003. <curve x1="47.55" y1="83.03" x2="49.46" y2="82.57" x3="51.19" y3="81.82"/>
  4004. <curve x1="52.94" y1="81" x2="54.92" y2="80.52" x3="56.95" y3="80.52"/>
  4005. <curve x1="59.01" y1="80.52" x2="60.99" y2="81" x3="62.74" y3="81.82"/>
  4006. <curve x1="64.44" y1="82.57" x2="66.37" y2="83.03" x3="68.35" y3="83.03"/>
  4007. <curve x1="68.73" y1="83.03" x2="69.1" y2="82.93" x3="69.46" y3="82.89"/>
  4008. <curve x1="69.5" y1="82.89" x2="69.5" y2="82.93" x3="69.55" y3="82.93"/>
  4009. <curve x1="69.8" y1="82.93" x2="69.99" y2="82.82" x3="70.23" y3="82.82"/>
  4010. <curve x1="70.68" y1="82.76" x2="71.14" y2="82.71" x3="71.59" y3="82.6"/>
  4011. <curve x1="75.67" y1="81.75" x2="78.31" y2="78.57" x3="78.31" y3="78.57"/>
  4012. <line x="86.25" y="68.5"/>
  4013. <line x="83.94" y="68.5"/>
  4014. <line x="83.94" y="68.5"/>
  4015. <line x="83.94" y="68.5"/>
  4016. <close/>
  4017. <move x="54.73" y="0.1"/>
  4018. <curve x1="54.6" y1="0.01" x2="54.44" y2="0" x3="54.3" y3="0.15"/>
  4019. <curve x1="54.3" y1="0.15" x2="54.3" y2="0.15" x3="54.29" y3="0.15"/>
  4020. <curve x1="54.29" y1="0.15" x2="54.29" y2="0.15" x3="54.28" y3="0.15"/>
  4021. <curve x1="36.98" y1="21.31" x2="19.68" y2="42.48" x3="2.39" y3="63.64"/>
  4022. <curve x1="2.19" y1="63.88" x2="2.3" y2="64.27" x3="2.65" y3="64.27"/>
  4023. <curve x1="19.95" y1="64.27" x2="37.25" y2="64.27" x3="54.54" y3="64.27"/>
  4024. <curve x1="54.74" y1="64.27" x2="54.91" y2="64.1" x3="54.91" y3="63.9"/>
  4025. <curve x1="54.91" y1="42.74" x2="54.91" y2="21.57" x3="54.91" y3="0.41"/>
  4026. <curve x1="54.93" y1="0.25" x2="54.84" y2="0.15" x3="54.73" y3="0.1"/>
  4027. <close/>
  4028. </path>
  4029. </background>
  4030. <foreground>
  4031. <fillstroke/>
  4032. </foreground>
  4033. </shape>
  4034. <shape name="Sanitary Disposal Station" h="87.38" w="99" aspect="variable" strokewidth="inherit">
  4035. <connections>
  4036. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  4037. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  4038. <constraint x="0.14" y="0.45" perimeter="0" name="W"/>
  4039. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  4040. <constraint x="0.155" y="0.06" perimeter="0" name="NW"/>
  4041. <constraint x="0.01" y="0.99" perimeter="0" name="SW"/>
  4042. <constraint x="0.88" y="0.06" perimeter="0" name="NE"/>
  4043. <constraint x="0.99" y="0.99" perimeter="0" name="SE"/>
  4044. </connections>
  4045. <background>
  4046. <path>
  4047. <move x="48.91" y="20.31"/>
  4048. <curve x1="50.58" y1="20.31" x2="51.9" y2="18.95" x3="51.9" y3="17.26"/>
  4049. <line x="51.9" y="12.25"/>
  4050. <curve x1="51.9" y1="10.57" x2="50.57" y2="9.24" x3="48.91" y3="9.24"/>
  4051. <line x="26.43" y="9.24"/>
  4052. <curve x1="24.77" y1="9.24" x2="23.44" y2="10.58" x3="23.44" y3="12.25"/>
  4053. <line x="23.44" y="17.26"/>
  4054. <curve x1="23.44" y1="18.95" x2="24.78" y2="20.31" x3="26.43" y3="20.31"/>
  4055. <line x="48.91" y="20.31"/>
  4056. <close/>
  4057. <move x="78.59" y="20.29"/>
  4058. <curve x1="80.26" y1="20.29" x2="81.58" y2="18.93" x3="81.58" y3="17.24"/>
  4059. <line x="81.58" y="12.25"/>
  4060. <curve x1="81.58" y1="10.57" x2="80.25" y2="9.24" x3="78.59" y3="9.24"/>
  4061. <line x="68.21" y="9.24"/>
  4062. <curve x1="66.58" y1="9.24" x2="65.24" y2="10.58" x3="65.24" y3="12.25"/>
  4063. <line x="65.24" y="17.24"/>
  4064. <curve x1="65.24" y1="18.92" x2="66.58" y2="20.29" x3="68.21" y3="20.29"/>
  4065. <line x="78.59" y="20.29"/>
  4066. <close/>
  4067. <move x="38.84" y="44.22"/>
  4068. <line x="23.01" y="44.22"/>
  4069. <curve x1="17.11" y1="44.22" x2="12.33" y2="39.4" x3="12.33" y3="33.43"/>
  4070. <line x="12.31" y="14.62"/>
  4071. <curve x1="12.31" y1="6.55" x2="18.8" y2="0" x3="26.78" y3="0"/>
  4072. <line x="76" y="0"/>
  4073. <curve x1="83.99" y1="0" x2="90.48" y2="6.55" x3="90.48" y3="14.63"/>
  4074. <line x="90.5" y="41.19"/>
  4075. <line x="95.97" y="41.19"/>
  4076. <curve x1="97.61" y1="41.19" x2="98.92" y2="42.53" x3="98.92" y3="44.22"/>
  4077. <line x="63.92" y="44.22"/>
  4078. <curve x1="63.54" y1="38.16" x2="57.46" y2="33.36" x3="51.38" y3="33.36"/>
  4079. <curve x1="45.3" y1="33.36" x2="39.23" y2="38.17" x3="38.84" y3="44.22"/>
  4080. <move x="51.63" y="49.81"/>
  4081. <curve x1="53.6" y1="49.81" x2="55.21" y2="48.19" x3="55.21" y3="46.21"/>
  4082. <curve x1="55.21" y1="44.22" x2="53.6" y2="42.6" x3="51.63" y3="42.6"/>
  4083. <curve x1="49.66" y1="42.6" x2="48.05" y2="44.22" x3="48.05" y3="46.21"/>
  4084. <curve x1="48.05" y1="48.19" x2="49.66" y2="49.81" x3="51.63" y3="49.81"/>
  4085. <move x="99" y="54.34"/>
  4086. <line x="98.96" y="83.51"/>
  4087. <curve x1="98.96" y1="85.61" x2="97.26" y2="87.38" x3="95.13" y3="87.38"/>
  4088. <line x="3.82" y="87.38"/>
  4089. <curve x1="1.71" y1="87.38" x2="0" y2="85.61" x3="0" y3="83.51"/>
  4090. <line x="0" y="54.41"/>
  4091. <line x="20.13" y="54.41"/>
  4092. <line x="20.13" y="59.31"/>
  4093. <line x="6.53" y="59.33"/>
  4094. <curve x1="5.83" y1="59.33" x2="5.27" y2="59.83" x3="5.16" y3="60.5"/>
  4095. <line x="5.16" y="79.86"/>
  4096. <curve x1="5.16" y1="81.34" x2="6.33" y2="82.5" x3="7.77" y3="82.5"/>
  4097. <line x="47.99" y="82.5"/>
  4098. <curve x1="49.43" y1="82.5" x2="50.53" y2="81.34" x3="50.53" y3="79.86"/>
  4099. <line x="50.55" y="60.73"/>
  4100. <curve x1="50.55" y1="59.96" x2="49.92" y2="59.33" x3="49.16" y3="59.33"/>
  4101. <line x="33.98" y="59.31"/>
  4102. <line x="33.98" y="54.33"/>
  4103. <line x="49.88" y="54.33"/>
  4104. <curve x1="46.19" y1="53.5" x2="43.39" y2="50.18" x3="43.39" y3="46.2"/>
  4105. <curve x1="43.39" y1="41.61" x2="47.08" y2="37.89" x3="51.63" y3="37.89"/>
  4106. <curve x1="56.18" y1="37.89" x2="59.86" y2="41.62" x3="59.86" y3="46.2"/>
  4107. <curve x1="59.86" y1="50.18" x2="57.1" y2="53.5" x3="53.39" y3="54.33"/>
  4108. <line x="99" y="54.33"/>
  4109. <close/>
  4110. <move x="25.31" y="48.69"/>
  4111. <line x="28.78" y="48.69"/>
  4112. <line x="28.78" y="67.52"/>
  4113. <line x="32.74" y="67.52"/>
  4114. <curve x1="32.74" y1="67.52" x2="34.02" y2="67.79" x3="33.62" y3="69.2"/>
  4115. <line x="28.17" y="75.9"/>
  4116. <curve x1="28.17" y1="75.9" x2="27.81" y2="76.48" x3="27.12" y3="76.48"/>
  4117. <curve x1="26.43" y1="76.48" x2="26.05" y2="75.9" x3="26.05" y3="75.9"/>
  4118. <line x="20.48" y="69.2"/>
  4119. <curve x1="20.05" y1="67.79" x2="21.36" y2="67.52" x3="21.36" y3="67.52"/>
  4120. <line x="25.31" y="67.52"/>
  4121. <line x="25.31" y="48.69"/>
  4122. <close/>
  4123. </path>
  4124. </background>
  4125. <foreground>
  4126. <fillstroke/>
  4127. </foreground>
  4128. </shape>
  4129. <shape name="Scenic Viewpoint" h="99.12" w="80.7" aspect="variable" strokewidth="inherit">
  4130. <connections>
  4131. <constraint x="0.385" y="0" perimeter="0" name="N"/>
  4132. <constraint x="0.39" y="1" perimeter="0" name="S"/>
  4133. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  4134. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  4135. <constraint x="0.77" y="0.19" perimeter="0" name="NE"/>
  4136. <constraint x="0.77" y="0.81" perimeter="0" name="SE"/>
  4137. </connections>
  4138. <background>
  4139. <path>
  4140. <move x="20.89" y="49.56"/>
  4141. <curve x1="20.89" y1="55.27" x2="16.21" y2="59.91" x3="10.44" y3="59.91"/>
  4142. <curve x1="4.68" y1="59.91" x2="0" y2="55.27" x3="0" y3="49.56"/>
  4143. <curve x1="0" y1="43.84" x2="4.68" y2="39.21" x3="10.44" y3="39.21"/>
  4144. <curve x1="16.21" y1="39.2" x2="20.89" y2="43.84" x3="20.89" y3="49.56"/>
  4145. <close/>
  4146. <move x="27.72" y="46.43"/>
  4147. <line x="27.72" y="52.69"/>
  4148. <line x="80.7" y="56.57"/>
  4149. <line x="80.7" y="42.55"/>
  4150. <close/>
  4151. <move x="16.37" y="33.17"/>
  4152. <line x="21.82" y="36.31"/>
  4153. <line x="43.44" y="7.01"/>
  4154. <line x="31.21" y="0"/>
  4155. <close/>
  4156. <move x="23.84" y="38.3"/>
  4157. <line x="26.99" y="43.73"/>
  4158. <line x="66.23" y="25.7"/>
  4159. <line x="59.16" y="13.55"/>
  4160. <close/>
  4161. <move x="16.37" y="65.94"/>
  4162. <line x="21.82" y="62.8"/>
  4163. <line x="43.44" y="92.11"/>
  4164. <line x="31.21" y="99.12"/>
  4165. <close/>
  4166. <move x="23.84" y="60.81"/>
  4167. <line x="26.99" y="55.39"/>
  4168. <line x="66.23" y="73.41"/>
  4169. <line x="59.16" y="85.55"/>
  4170. <close/>
  4171. </path>
  4172. </background>
  4173. <foreground>
  4174. <fillstroke/>
  4175. </foreground>
  4176. </shape>
  4177. <shape name="Scuba Diving" h="83.58" w="99.25" aspect="variable" strokewidth="inherit">
  4178. <connections>
  4179. <constraint x="0.5" y="0.335" perimeter="0" name="N"/>
  4180. <constraint x="0.5" y="0.71" perimeter="0" name="S"/>
  4181. <constraint x="0.31" y="0.5" perimeter="0" name="W"/>
  4182. <constraint x="1" y="0.66" perimeter="0" name="E"/>
  4183. <constraint x="0" y="0" perimeter="0" name="NW"/>
  4184. <constraint x="0.96" y="0.98" perimeter="0" name="SE"/>
  4185. </connections>
  4186. <background>
  4187. <path>
  4188. <move x="71" y="45.93"/>
  4189. <curve x1="73.98" y1="46.76" x2="77.18" y2="45.05" x3="78.03" y3="41.97"/>
  4190. <curve x1="78.85" y1="38.94" x2="77.11" y2="35.75" x3="74.11" y3="34.89"/>
  4191. <line x="71.77" y="34.23"/>
  4192. <line x="68.75" y="45.25"/>
  4193. <line x="71" y="45.93"/>
  4194. <close/>
  4195. <move x="69.16" y="33.53"/>
  4196. <line x="50.31" y="28.12"/>
  4197. <curve x1="49.07" y1="27.79" x2="47.83" y2="28.55" x3="47.48" y3="29.81"/>
  4198. <line x="45.71" y="36.23"/>
  4199. <curve x1="45.36" y1="37.49" x2="46.04" y2="38.79" x3="47.31" y3="39.16"/>
  4200. <line x="66.16" y="44.51"/>
  4201. <line x="69.16" y="33.53"/>
  4202. <close/>
  4203. <move x="72.14" y="51.77"/>
  4204. <curve x1="70.7" y1="50.38" x2="68.92" y2="49.27" x3="66.83" y3="48.69"/>
  4205. <line x="43.97" y="42.18"/>
  4206. <line x="43.97" y="42.18"/>
  4207. <line x="29.93" y="16.8"/>
  4208. <curve x1="29.19" y1="15.49" x2="28" y2="14.45" x3="26.46" y3="14.02"/>
  4209. <curve x1="23.38" y1="13.14" x2="20.18" y2="14.98" x3="19.34" y3="18.12"/>
  4210. <curve x1="18.92" y1="19.61" x2="19.12" y2="21.13" x3="19.78" y3="22.42"/>
  4211. <line x="37.35" y="53.8"/>
  4212. <curve x1="37.35" y1="53.8" x2="38.79" y2="56.15" x3="42.41" y3="57.36"/>
  4213. <line x="74.35" y="66.48"/>
  4214. <line x="89.16" y="81.8"/>
  4215. <curve x1="89.65" y1="82.32" x2="90.3" y2="82.73" x3="91.07" y3="82.95"/>
  4216. <curve x1="93.3" y1="83.58" x2="95.63" y2="82.22" x3="96.29" y3="79.98"/>
  4217. <curve x1="96.71" y1="78.39" x2="96.21" y2="76.71" x3="95.1" y3="75.68"/>
  4218. <line x="72.14" y="51.77"/>
  4219. <close/>
  4220. <move x="89.18" y="58.11"/>
  4221. <line x="92.5" y="62.53"/>
  4222. <line x="99.25" y="55.03"/>
  4223. <line x="93.55" y="51.8"/>
  4224. <curve x1="94.09" y1="47.73" x2="91.61" y2="43.8" x3="87.64" y3="42.65"/>
  4225. <curve x1="83.27" y1="41.41" x2="78.73" y2="43.99" x3="77.52" y3="48.44"/>
  4226. <curve x1="76.28" y1="52.91" x2="78.84" y2="57.51" x3="83.21" y3="58.75"/>
  4227. <curve x1="85.29" y1="59.35" x2="87.4" y2="59.02" x3="89.18" y3="58.11"/>
  4228. <close/>
  4229. <move x="0" y="0"/>
  4230. <line x="15.75" y="16.39"/>
  4231. <line x="21.8" y="10.86"/>
  4232. <line x="16.32" y="0.05"/>
  4233. <close/>
  4234. </path>
  4235. </background>
  4236. <foreground>
  4237. <fillstroke/>
  4238. </foreground>
  4239. </shape>
  4240. <shape name="Seesaw" h="54.87" w="99.12" aspect="variable" strokewidth="inherit">
  4241. <connections>
  4242. <constraint x="0.5" y="0.51" perimeter="0" name="N"/>
  4243. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  4244. <constraint x="0.065" y="0.5" perimeter="0" name="W"/>
  4245. <constraint x="0.845" y="0.5" perimeter="0" name="E"/>
  4246. <constraint x="0.14" y="0.245" perimeter="0" name="NW"/>
  4247. <constraint x="0.77" y="0" perimeter="0" name="NE"/>
  4248. </connections>
  4249. <foreground>
  4250. <ellipse x="10.1" y="13.57" w="8.46" h="8.46"/>
  4251. <fillstroke/>
  4252. <ellipse x="72.12" y="0" w="8.46" h="8.46"/>
  4253. <fillstroke/>
  4254. <path>
  4255. <move x="97.99" y="17.27"/>
  4256. <line x="93.03" y="18.35"/>
  4257. <curve x1="94.59" y1="14.6" x2="92" y2="13.06" x3="92" y3="13.06"/>
  4258. <line x="81.59" y="6.15"/>
  4259. <line x="77.41" y="9.16"/>
  4260. <curve x1="77.41" y1="9.16" x2="73.36" y2="15.41" x3="73.36" y3="15.41"/>
  4261. <curve x1="73.36" y1="15.41" x2="71.4" y2="18.43" x3="73.24" y3="20.05"/>
  4262. <line x="73.43" y="22.65"/>
  4263. <line x="24.56" y="33.33"/>
  4264. <line x="23.66" y="30.88"/>
  4265. <curve x1="24.66" y1="28.65" x2="21.64" y2="26.71" x3="21.64" y3="26.71"/>
  4266. <line x="15.39" y="22.71"/>
  4267. <line x="10.35" y="21.72"/>
  4268. <line x="3.73" y="32.38"/>
  4269. <curve x1="3.73" y1="32.38" x2="2" y2="34.87" x3="4.96" y3="37.63"/>
  4270. <line x="0" y="38.71"/>
  4271. <line x="1.13" y="43.98"/>
  4272. <line x="15.56" y="40.82"/>
  4273. <line x="22.65" y="46.22"/>
  4274. <line x="26.6" y="43.01"/>
  4275. <line x="23.71" y="39.03"/>
  4276. <line x="49.55" y="33.38"/>
  4277. <line x="44.4" y="37.92"/>
  4278. <line x="44.4" y="54.87"/>
  4279. <line x="49.56" y="54.87"/>
  4280. <line x="54.71" y="54.87"/>
  4281. <line x="54.71" y="37.92"/>
  4282. <line x="49.56" y="33.38"/>
  4283. <line x="76.53" y="27.48"/>
  4284. <line x="75.54" y="32.31"/>
  4285. <line x="80.46" y="33.58"/>
  4286. <line x="84.7" y="25.7"/>
  4287. <line x="99.12" y="22.53"/>
  4288. <line x="97.99" y="17.27"/>
  4289. <close/>
  4290. <move x="19.86" y="34.36"/>
  4291. <line x="14.32" y="31.68"/>
  4292. <line x="15.69" y="27.41"/>
  4293. <line x="21.25" y="30.05"/>
  4294. <line x="22.61" y="33.75"/>
  4295. <line x="19.86" y="34.36"/>
  4296. <close/>
  4297. <move x="78.12" y="21.61"/>
  4298. <line x="75.37" y="22.21"/>
  4299. <line x="75.08" y="18.27"/>
  4300. <line x="79.06" y="13.54"/>
  4301. <line x="82.06" y="16.86"/>
  4302. <line x="78.12" y="21.61"/>
  4303. <close/>
  4304. </path>
  4305. <fillstroke/>
  4306. </foreground>
  4307. </shape>
  4308. <shape name="Self Guiding Trail" h="99.13" w="99.21" aspect="variable" strokewidth="inherit">
  4309. <connections>
  4310. <constraint x="0.5" y="0.04" perimeter="0" name="N"/>
  4311. <constraint x="0.5" y="0.99" perimeter="0" name="S"/>
  4312. <constraint x="0" y="0.47" perimeter="0" name="W"/>
  4313. <constraint x="1" y="0.53" perimeter="0" name="E"/>
  4314. <constraint x="0.245" y="0.14" perimeter="0" name="NW"/>
  4315. <constraint x="0.06" y="0.995" perimeter="0" name="SW"/>
  4316. <constraint x="0.99" y="0.06" perimeter="0" name="NE"/>
  4317. <constraint x="0.99" y="0.99" perimeter="0" name="SE"/>
  4318. </connections>
  4319. <background>
  4320. <path>
  4321. <move x="24.6" y="26.95"/>
  4322. <curve x1="28.32" y1="26.95" x2="31.32" y2="23.98" x3="31.32" y3="20.29"/>
  4323. <curve x1="31.32" y1="16.6" x2="28.32" y2="13.61" x3="24.6" y3="13.61"/>
  4324. <curve x1="20.91" y1="13.61" x2="17.89" y2="16.6" x3="17.89" y3="20.29"/>
  4325. <curve x1="17.89" y1="23.98" x2="20.9" y2="26.95" x3="24.6" y3="26.95"/>
  4326. <close/>
  4327. <move x="14.26" y="28.33"/>
  4328. <curve x1="14.52" y1="27.29" x2="13.89" y2="26.28" x3="12.87" y3="26.03"/>
  4329. <line x="7.27" y="24.67"/>
  4330. <curve x1="6.22" y1="24.46" x2="5.18" y2="25.06" x3="4.95" y3="26.1"/>
  4331. <line x="0.26" y="45.4"/>
  4332. <curve x1="0" y1="46.39" x2="0.63" y2="47.43" x3="1.68" y3="47.68"/>
  4333. <line x="7.28" y="49.02"/>
  4334. <curve x1="8.3" y1="49.27" x2="9.32" y2="48.65" x3="9.58" y3="47.62"/>
  4335. <line x="14.26" y="28.33"/>
  4336. <close/>
  4337. <move x="1.59" y="92.98"/>
  4338. <curve x1="1.54" y1="93.3" x2="1.5" y2="93.62" x3="1.5" y3="93.92"/>
  4339. <curve x1="1.5" y1="96.5" x2="3.61" y2="98.6" x3="6.22" y3="98.6"/>
  4340. <curve x1="8.38" y1="98.6" x2="10.17" y2="97.19" x3="10.75" y3="95.26"/>
  4341. <line x="18.88" y="61.95"/>
  4342. <line x="26.59" y="95.07"/>
  4343. <curve x1="27.1" y1="97.1" x2="28.98" y2="98.59" x3="31.17" y3="98.59"/>
  4344. <curve x1="33.8" y1="98.59" x2="35.91" y2="96.49" x3="35.91" y3="93.91"/>
  4345. <curve x1="35.91" y1="93.56" x2="35.86" y2="93.22" x3="35.79" y3="92.9"/>
  4346. <line x="25.17" y="48.89"/>
  4347. <line x="26.08" y="45.04"/>
  4348. <line x="26.75" y="48.08"/>
  4349. <curve x1="27.4" y1="50.06" x2="29.24" y2="50.27" x3="29.24" y3="50.27"/>
  4350. <line x="40.18" y="53.03"/>
  4351. <curve x1="40.39" y1="53.08" x2="40.6" y2="53.08" x3="40.83" y3="53.08"/>
  4352. <curve x1="42.6" y1="53.08" x2="44.06" y2="51.65" x3="44.06" y3="49.88"/>
  4353. <curve x1="44.06" y1="48.38" x2="42.99" y2="47.09" x3="41.57" y3="46.77"/>
  4354. <line x="32.09" y="44.42"/>
  4355. <line x="29.49" y="33.94"/>
  4356. <curve x1="28.26" y1="28.11" x2="22.64" y2="28.25" x3="22.64" y3="28.25"/>
  4357. <curve x1="17.16" y1="28.11" x2="15.79" y2="33.8" x3="15.79" y3="33.8"/>
  4358. <line x="1.59" y="92.98"/>
  4359. <close/>
  4360. <move x="91.31" y="95.23"/>
  4361. <curve x1="91.31" y1="93.07" x2="93.03" y2="91.31" x3="95.26" y3="91.31"/>
  4362. <curve x1="97.42" y1="91.31" x2="99.21" y2="93.06" x3="99.21" y3="95.23"/>
  4363. <curve x1="99.21" y1="97.37" x2="97.42" y2="99.12" x3="95.26" y3="99.12"/>
  4364. <curve x1="93.03" y1="99.13" x2="91.31" y2="97.37" x3="91.31" y3="95.23"/>
  4365. <close/>
  4366. <move x="95.26" y="84.73"/>
  4367. <curve x1="93.03" y1="84.73" x2="91.31" y2="82.98" x3="91.31" y3="80.84"/>
  4368. <curve x1="91.31" y1="78.68" x2="93.03" y2="76.92" x3="95.26" y3="76.92"/>
  4369. <curve x1="97.42" y1="76.92" x2="99.21" y2="78.67" x3="99.21" y3="80.84"/>
  4370. <curve x1="99.21" y1="82.98" x2="97.42" y2="84.73" x3="95.26" y3="84.73"/>
  4371. <close/>
  4372. <move x="95.23" y="70.34"/>
  4373. <curve x1="93.02" y1="70.34" x2="91.28" y2="68.59" x3="91.28" y3="66.45"/>
  4374. <curve x1="91.28" y1="64.26" x2="93.02" y2="62.54" x3="95.23" y3="62.54"/>
  4375. <curve x1="97.39" y1="62.54" x2="99.18" y2="64.27" x3="99.18" y3="66.45"/>
  4376. <curve x1="99.18" y1="68.59" x2="97.4" y2="70.34" x3="95.23" y3="70.34"/>
  4377. <close/>
  4378. <move x="95.23" y="55.94"/>
  4379. <curve x1="93.02" y1="55.94" x2="91.28" y2="54.19" x3="91.28" y3="52.05"/>
  4380. <curve x1="91.28" y1="49.86" x2="93.02" y2="48.13" x3="95.23" y3="48.13"/>
  4381. <curve x1="97.39" y1="48.13" x2="99.18" y2="49.86" x3="99.18" y3="52.05"/>
  4382. <curve x1="99.18" y1="54.19" x2="97.4" y2="55.94" x3="95.23" y3="55.94"/>
  4383. <close/>
  4384. <move x="95.23" y="41.55"/>
  4385. <curve x1="93.02" y1="41.55" x2="91.28" y2="39.8" x3="91.28" y3="37.66"/>
  4386. <curve x1="91.28" y1="35.47" x2="93.02" y2="33.74" x3="95.23" y3="33.74"/>
  4387. <curve x1="97.39" y1="33.74" x2="99.16" y2="35.47" x3="99.16" y3="37.66"/>
  4388. <curve x1="99.16" y1="39.8" x2="97.4" y2="41.55" x3="95.23" y3="41.55"/>
  4389. <close/>
  4390. <move x="95.23" y="27.15"/>
  4391. <curve x1="93" y1="27.15" x2="91.28" y2="25.4" x3="91.28" y3="23.26"/>
  4392. <curve x1="91.28" y1="21.05" x2="93" y2="19.34" x3="95.23" y3="19.34"/>
  4393. <curve x1="97.39" y1="19.34" x2="99.16" y2="21.04" x3="99.16" y3="23.26"/>
  4394. <curve x1="99.16" y1="25.4" x2="97.4" y2="27.15" x3="95.23" y3="27.15"/>
  4395. <close/>
  4396. <move x="91.28" y="8.87"/>
  4397. <curve x1="91.28" y1="6.66" x2="93" y2="4.95" x3="95.23" y3="4.95"/>
  4398. <curve x1="97.39" y1="4.95" x2="99.16" y2="6.65" x3="99.16" y3="8.87"/>
  4399. <curve x1="99.16" y1="11.01" x2="97.39" y2="12.76" x3="95.23" y3="12.76"/>
  4400. <curve x1="93" y1="12.76" x2="91.28" y2="11.01" x3="91.28" y3="8.87"/>
  4401. <close/>
  4402. <move x="66.19" y="4.93"/>
  4403. <curve x1="68.37" y1="4.93" x2="70.12" y2="6.66" x3="70.12" y3="8.87"/>
  4404. <curve x1="70.12" y1="10.99" x2="68.38" y2="12.76" x3="66.19" y3="12.76"/>
  4405. <curve x1="64" y1="12.76" x2="62.24" y2="10.99" x3="62.24" y3="8.87"/>
  4406. <curve x1="62.24" y1="6.66" x2="64.01" y2="4.93" x3="66.19" y3="4.93"/>
  4407. <close/>
  4408. <move x="80.71" y="4.91"/>
  4409. <curve x1="82.89" y1="4.91" x2="84.64" y2="6.66" x3="84.64" y3="8.85"/>
  4410. <curve x1="84.64" y1="10.97" x2="82.9" y2="12.74" x3="80.71" y3="12.74"/>
  4411. <curve x1="78.53" y1="12.74" x2="76.76" y2="10.97" x3="76.76" y3="8.85"/>
  4412. <curve x1="76.76" y1="6.66" x2="78.53" y2="4.91" x3="80.71" y3="4.91"/>
  4413. <close/>
  4414. <move x="66.19" y="91.3"/>
  4415. <curve x1="68.35" y1="91.3" x2="70.14" y2="93.05" x3="70.14" y3="95.21"/>
  4416. <curve x1="70.14" y1="97.35" x2="68.35" y2="99.1" x3="66.19" y3="99.1"/>
  4417. <curve x1="63.98" y1="99.1" x2="62.24" y2="97.35" x3="62.24" y3="95.21"/>
  4418. <curve x1="62.24" y1="93.04" x2="63.98" y2="91.3" x3="66.19" y3="91.3"/>
  4419. <close/>
  4420. <move x="80.74" y="91.3"/>
  4421. <curve x1="82.92" y1="91.3" x2="84.67" y2="93.05" x3="84.67" y3="95.21"/>
  4422. <curve x1="84.67" y1="97.35" x2="82.93" y2="99.1" x3="80.74" y3="99.1"/>
  4423. <curve x1="78.55" y1="99.1" x2="76.79" y2="97.35" x3="76.79" y3="95.21"/>
  4424. <curve x1="76.79" y1="93.04" x2="78.55" y2="91.3" x3="80.74" y3="91.3"/>
  4425. <close/>
  4426. <move x="56.74" y="0"/>
  4427. <line x="56.74" y="17.8"/>
  4428. <line x="41.26" y="8.89"/>
  4429. <close/>
  4430. <move x="53.81" y="98.34"/>
  4431. <curve x1="53.81" y1="98.34" x2="53.81" y2="70.1" x3="53.81" y3="67.2"/>
  4432. <curve x1="55.78" y1="65.24" x2="69.03" y2="52.12" x3="69.03" y3="52.12"/>
  4433. <curve x1="69.77" y1="51.38" x2="70.15" y2="50.39" x3="70.15" y3="49.42"/>
  4434. <curve x1="70.15" y1="48.43" x2="69.78" y2="47.46" x3="69.03" y3="46.73"/>
  4435. <curve x1="67.52" y1="45.23" x2="65.08" y2="45.23" x3="63.57" y3="46.73"/>
  4436. <line x="46.09" y="64.03"/>
  4437. <line x="46.09" y="98.34"/>
  4438. <line x="53.81" y="98.34"/>
  4439. <close/>
  4440. </path>
  4441. </background>
  4442. <foreground>
  4443. <fillstroke/>
  4444. </foreground>
  4445. </shape>
  4446. <shape name="Shelter" h="90.86" w="98.87" aspect="variable" strokewidth="inherit">
  4447. <connections>
  4448. <constraint x="0.5" y="0.245" perimeter="0" name="N"/>
  4449. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  4450. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  4451. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  4452. <constraint x="0.1" y="1" perimeter="0" name="SW"/>
  4453. <constraint x="1" y="0" perimeter="0" name="NE"/>
  4454. <constraint x="1" y="1" perimeter="0" name="SE"/>
  4455. </connections>
  4456. <background>
  4457. <path>
  4458. <move x="9.91" y="90.86"/>
  4459. <line x="98.87" y="90.86"/>
  4460. <line x="98.87" y="81.49"/>
  4461. <line x="19.16" y="81.49"/>
  4462. <line x="19.16" y="46.12"/>
  4463. <line x="98.87" y="9.69"/>
  4464. <line x="98.87" y="0"/>
  4465. <line x="0" y="45.17"/>
  4466. <line x="0" y="54.85"/>
  4467. <line x="9.91" y="50.37"/>
  4468. <close/>
  4469. </path>
  4470. </background>
  4471. <foreground>
  4472. <fillstroke/>
  4473. </foreground>
  4474. </shape>
  4475. <shape name="Skateboarding" h="98.87" w="66.66" aspect="variable" strokewidth="inherit">
  4476. <connections>
  4477. <constraint x="0.63" y="0" perimeter="0" name="N"/>
  4478. <constraint x="0.5" y="0.915" perimeter="0" name="S"/>
  4479. <constraint x="0.2" y="0.61" perimeter="0" name="W"/>
  4480. <constraint x="0.655" y="0.61" perimeter="0" name="E"/>
  4481. <constraint x="0.045" y="0.21" perimeter="0" name="NW"/>
  4482. <constraint x="0.05" y="0.9" perimeter="0" name="SW"/>
  4483. <constraint x="1" y="0.21" perimeter="0" name="NE"/>
  4484. <constraint x="0.81" y="0.9" perimeter="0" name="SE"/>
  4485. </connections>
  4486. <background>
  4487. <path>
  4488. <move x="23.72" y="98.87"/>
  4489. <curve x1="25.31" y1="98.87" x2="26.6" y2="97.58" x3="26.6" y3="95.99"/>
  4490. <curve x1="26.6" y1="94.41" x2="25.32" y2="93.13" x3="23.72" y3="93.13"/>
  4491. <curve x1="22.13" y1="93.13" x2="20.85" y2="94.41" x3="20.85" y3="95.99"/>
  4492. <curve x1="20.85" y1="97.58" x2="22.13" y2="98.87" x3="23.72" y3="98.87"/>
  4493. <close/>
  4494. <move x="46.96" y="98.81"/>
  4495. <curve x1="48.55" y1="98.81" x2="49.84" y2="97.51" x3="49.84" y3="95.9"/>
  4496. <curve x1="49.84" y1="94.31" x2="48.55" y2="93.02" x3="46.96" y3="93.02"/>
  4497. <curve x1="45.38" y1="93.02" x2="44.1" y2="94.31" x3="44.1" y3="95.9"/>
  4498. <curve x1="44.09" y1="97.51" x2="45.38" y2="98.81" x3="46.96" y3="98.81"/>
  4499. <close/>
  4500. <move x="18.04" y="90.3"/>
  4501. <curve x1="18.04" y1="90.3" x2="16.35" y2="90.21" x3="16.35" y3="88.48"/>
  4502. <line x="16.35" y="88.32"/>
  4503. <curve x1="16.35" y1="86.61" x2="18.04" y2="86.49" x3="18.04" y3="86.49"/>
  4504. <line x="52.51" y="86.49"/>
  4505. <curve x1="52.51" y1="86.49" x2="54.2" y2="86.65" x3="54.2" y3="88.32"/>
  4506. <line x="54.2" y="88.48"/>
  4507. <curve x1="54.2" y1="90.15" x2="52.51" y2="90.3" x3="52.51" y3="90.3"/>
  4508. <line x="18.04" y="90.3"/>
  4509. <close/>
  4510. <move x="41.99" y="15.25"/>
  4511. <curve x1="46.2" y1="15.25" x2="49.63" y2="11.82" x3="49.63" y3="7.61"/>
  4512. <curve x1="49.63" y1="3.4" x2="46.21" y2="0" x3="41.99" y3="0"/>
  4513. <curve x1="37.78" y1="0" x2="34.35" y2="3.4" x3="34.35" y3="7.61"/>
  4514. <curve x1="34.36" y1="11.82" x2="37.78" y2="15.25" x3="41.99" y3="15.25"/>
  4515. <close/>
  4516. <move x="0.56" y="81.97"/>
  4517. <curve x1="0.2" y1="82.65" x2="0" y2="83.41" x3="0" y3="84.24"/>
  4518. <curve x1="0" y1="86.92" x2="2.18" y2="89.11" x3="4.89" y3="89.11"/>
  4519. <curve x1="6.83" y1="89.11" x2="8.5" y2="87.98" x3="9.29" y3="86.36"/>
  4520. <line x="25.96" y="57.73"/>
  4521. <line x="19.04" y="50.82"/>
  4522. <line x="0.56" y="81.97"/>
  4523. <close/>
  4524. <move x="34.03" y="80.69"/>
  4525. <curve x1="33.31" y1="82.31" x2="31.77" y2="83.44" x3="29.98" y3="83.44"/>
  4526. <curve x1="27.51" y1="83.44" x2="25.49" y2="81.25" x3="25.49" y3="78.57"/>
  4527. <curve x1="25.49" y1="77.73" x2="25.68" y2="76.97" x3="26.01" y3="76.29"/>
  4528. <line x="32.7" y="63.55"/>
  4529. <line x="19.66" y="49.49"/>
  4530. <curve x1="14.65" y1="44.03" x2="18.22" y2="38.14" x3="18.22" y3="38.14"/>
  4531. <line x="25.24" y="24.69"/>
  4532. <line x="6.63" y="24.71"/>
  4533. <curve x1="4.57" y1="24.71" x2="2.93" y2="22.91" x3="2.93" y3="20.7"/>
  4534. <curve x1="2.93" y1="18.52" x2="4.57" y2="16.71" x3="6.63" y3="16.71"/>
  4535. <line x="62.98" y="16.71"/>
  4536. <curve x1="65.01" y1="16.71" x2="66.66" y2="18.51" x3="66.66" y3="20.72"/>
  4537. <curve x1="66.66" y1="22.92" x2="65.02" y2="24.71" x3="62.98" y3="24.71"/>
  4538. <line x="41.48" y="24.71"/>
  4539. <line x="31.23" y="44.19"/>
  4540. <line x="41.67" y="55.38"/>
  4541. <curve x1="45.32" y1="59.19" x2="42.96" y2="63.47" x3="42.96" y3="63.47"/>
  4542. <line x="34.03" y="80.69"/>
  4543. <close/>
  4544. </path>
  4545. </background>
  4546. <foreground>
  4547. <fillstroke/>
  4548. </foreground>
  4549. </shape>
  4550. <shape name="Ski Jump" h="98.63" w="93.88" aspect="variable" strokewidth="inherit">
  4551. <connections>
  4552. <constraint x="0.5" y="0.2" perimeter="0" name="N"/>
  4553. <constraint x="0.5" y="0.715" perimeter="0" name="S"/>
  4554. <constraint x="0.22" y="0.5" perimeter="0" name="W"/>
  4555. <constraint x="0.86" y="0.5" perimeter="0" name="E"/>
  4556. <constraint x="0.02" y="1" perimeter="0" name="SW"/>
  4557. <constraint x="0.78" y="0" perimeter="0" name="NE"/>
  4558. </connections>
  4559. <background>
  4560. <path>
  4561. <move x="73.63" y="15.57"/>
  4562. <curve x1="78.03" y1="15.57" x2="81.55" y2="12.1" x3="81.55" y3="7.8"/>
  4563. <curve x1="81.55" y1="3.5" x2="78.03" y2="0" x3="73.63" y3="0"/>
  4564. <curve x1="69.27" y1="0" x2="65.75" y2="3.5" x3="65.75" y3="7.8"/>
  4565. <curve x1="65.75" y1="12.1" x2="69.27" y2="15.57" x3="73.63" y3="15.57"/>
  4566. <move x="33.63" y="47.16"/>
  4567. <line x="62.04" y="29.06"/>
  4568. <curve x1="65.74" y1="26.73" x2="66.86" y2="21.9" x3="64.51" y3="18.25"/>
  4569. <curve x1="62.17" y1="14.59" x2="57.25" y2="13.48" x3="53.55" y3="15.81"/>
  4570. <line x="32.6" y="29.15"/>
  4571. <curve x1="31.41" y1="29.9" x2="30.47" y2="30.89" x3="29.86" y3="32.05"/>
  4572. <line x="8.07" y="74.42"/>
  4573. <curve x1="6.8" y1="76.93" x2="7.8" y2="79.97" x3="10.32" y3="81.23"/>
  4574. <curve x1="12.84" y1="82.5" x2="15.93" y2="81.51" x3="17.22" y3="79.03"/>
  4575. <line x="33.63" y="47.16"/>
  4576. <close/>
  4577. <move x="88.96" y="44.19"/>
  4578. <curve x1="92.71" y1="41.87" x2="93.88" y2="36.99" x3="91.52" y3="33.28"/>
  4579. <line x="88.77" y="34.94"/>
  4580. <curve x1="90.19" y1="37.17" x2="89.5" y2="40.09" x3="87.23" y3="41.47"/>
  4581. <line x="0" y="95.93"/>
  4582. <line x="1.73" y="98.63"/>
  4583. <line x="88.96" y="44.19"/>
  4584. <close/>
  4585. </path>
  4586. </background>
  4587. <foreground>
  4588. <fillstroke/>
  4589. </foreground>
  4590. </shape>
  4591. <shape name="Sledding" h="86.89" w="98.87" aspect="variable" strokewidth="inherit">
  4592. <connections>
  4593. <constraint x="0.5" y="0.445" perimeter="0" name="N"/>
  4594. <constraint x="0.5" y="0.85" perimeter="0" name="S"/>
  4595. <constraint x="0.17" y="0.5" perimeter="0" name="W"/>
  4596. <constraint x="0.97" y="0.58" perimeter="0" name="E"/>
  4597. <constraint x="0.15" y="0" perimeter="0" name="NW"/>
  4598. <constraint x="0" y="0.62" perimeter="0" name="SW"/>
  4599. <constraint x="0.995" y="0.9" perimeter="0" name="SE"/>
  4600. </connections>
  4601. <background>
  4602. <path>
  4603. <move x="86.45" y="59.31"/>
  4604. <curve x1="91.63" y1="59.31" x2="95.85" y2="55.04" x3="95.85" y3="49.78"/>
  4605. <curve x1="95.85" y1="44.54" x2="91.63" y2="40.3" x3="86.45" y3="40.3"/>
  4606. <curve x1="81.24" y1="40.3" x2="77.05" y2="44.54" x3="77.05" y3="49.78"/>
  4607. <curve x1="77.05" y1="55.05" x2="81.24" y2="59.31" x3="86.45" y3="59.31"/>
  4608. <close/>
  4609. <move x="93.17" y="80.57"/>
  4610. <curve x1="93.6" y1="80.71" x2="94.04" y2="80.78" x3="94.51" y3="80.78"/>
  4611. <curve x1="96.91" y1="80.78" x2="98.87" y2="78.8" x3="98.87" y3="76.37"/>
  4612. <curve x1="98.87" y1="74.54" x2="97.74" y2="72.94" x3="96.16" y3="72.3"/>
  4613. <line x="83.15" y="67.18"/>
  4614. <line x="73.68" y="50.16"/>
  4615. <curve x1="73.68" y1="50.16" x2="72.9" y2="48.28" x3="70.17" y3="47.25"/>
  4616. <line x="39.11" y="34.67"/>
  4617. <line x="20.66" y="3.05"/>
  4618. <curve x1="19.58" y1="1.23" x2="17.62" y2="0" x3="15.36" y3="0"/>
  4619. <curve x1="11.94" y1="0" x2="9.19" y2="2.81" x3="9.19" y3="6.27"/>
  4620. <curve x1="9.19" y1="7.37" x2="9.47" y2="8.39" x3="9.97" y3="9.3"/>
  4621. <line x="32.87" y="48.6"/>
  4622. <line x="18.35" y="42.73"/>
  4623. <line x="14.7" y="44.95"/>
  4624. <line x="72.74" y="68.04"/>
  4625. <line x="72.72" y="68.04"/>
  4626. <line x="75.1" y="71.85"/>
  4627. <curve x1="75.1" y1="71.85" x2="76.04" y2="73.9" x3="78.85" y3="75.02"/>
  4628. <line x="86.06" y="77.86"/>
  4629. <curve x1="81.37" y1="82.6" x2="74.8" y2="80.55" x3="74.8" y3="80.55"/>
  4630. <line x="3.91" y="51.76"/>
  4631. <line x="0" y="54.12"/>
  4632. <line x="74.01" y="83.72"/>
  4633. <curve x1="82.61" y1="86.89" x2="89.63" y2="79.29" x3="89.63" y3="79.29"/>
  4634. <line x="89.63" y="79.31"/>
  4635. <line x="93.17" y="80.57"/>
  4636. <close/>
  4637. </path>
  4638. </background>
  4639. <foreground>
  4640. <fillstroke/>
  4641. </foreground>
  4642. </shape>
  4643. <shape name="Sleeping Shelter" h="90.81" w="99.11" aspect="variable" strokewidth="inherit">
  4644. <connections>
  4645. <constraint x="0.5" y="0.245" perimeter="0" name="N"/>
  4646. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  4647. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  4648. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  4649. <constraint x="0.1" y="1" perimeter="0" name="SW"/>
  4650. <constraint x="1" y="0" perimeter="0" name="NE"/>
  4651. <constraint x="1" y="1" perimeter="0" name="SE"/>
  4652. </connections>
  4653. <background>
  4654. <path>
  4655. <move x="35.21" y="66.43"/>
  4656. <curve x1="39.03" y1="66.43" x2="42.13" y2="63.3" x3="42.13" y3="59.45"/>
  4657. <curve x1="42.13" y1="55.6" x2="39.03" y2="52.47" x3="35.21" y3="52.47"/>
  4658. <curve x1="31.39" y1="52.47" x2="28.29" y2="55.6" x3="28.29" y3="59.45"/>
  4659. <curve x1="28.28" y1="63.3" x2="31.39" y2="66.43" x3="35.21" y3="66.43"/>
  4660. <close/>
  4661. <move x="93.56" y="56.47"/>
  4662. <curve x1="96.59" y1="56.47" x2="99.04" y2="58.92" x3="99.07" y3="61.98"/>
  4663. <line x="99.09" y="76.65"/>
  4664. <line x="56.11" y="76.65"/>
  4665. <line x="56.11" y="56.47"/>
  4666. <line x="93.56" y="56.47"/>
  4667. <close/>
  4668. <move x="9.95" y="90.81"/>
  4669. <line x="99.11" y="90.81"/>
  4670. <line x="99.11" y="81.48"/>
  4671. <line x="19.2" y="81.48"/>
  4672. <line x="19.2" y="46.11"/>
  4673. <line x="99.11" y="9.68"/>
  4674. <line x="99.11" y="0"/>
  4675. <line x="0" y="45.13"/>
  4676. <line x="0" y="54.85"/>
  4677. <line x="9.95" y="50.34"/>
  4678. <close/>
  4679. <move x="45.53" y="69.76"/>
  4680. <line x="33.11" y="69.76"/>
  4681. <curve x1="31.22" y1="69.76" x2="29.7" y2="71.31" x3="29.7" y3="73.21"/>
  4682. <curve x1="29.7" y1="75.09" x2="31.23" y2="76.64" x3="33.11" y3="76.64"/>
  4683. <line x="48.92" y="76.64"/>
  4684. <curve x1="50.81" y1="76.64" x2="52.33" y2="75.09" x3="52.33" y3="73.21"/>
  4685. <line x="52.33" y="59.4"/>
  4686. <curve x1="52.33" y1="57.5" x2="50.8" y2="55.96" x3="48.92" y3="55.96"/>
  4687. <curve x1="47.05" y1="55.96" x2="45.52" y2="57.49" x3="45.52" y3="59.4"/>
  4688. <line x="45.53" y="69.76"/>
  4689. <close/>
  4690. </path>
  4691. </background>
  4692. <foreground>
  4693. <fillstroke/>
  4694. </foreground>
  4695. </shape>
  4696. <shape name="Small Boat Launch" h="93.44" w="100.18" aspect="variable" strokewidth="inherit">
  4697. <connections>
  4698. <constraint x="0.37" y="0" perimeter="0" name="N"/>
  4699. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  4700. <constraint x="0" y="0.585" perimeter="0" name="W"/>
  4701. <constraint x="0.99" y="0.73" perimeter="0" name="E"/>
  4702. <constraint x="0" y="1" perimeter="0" name="SW"/>
  4703. <constraint x="0.73" y="0.495" perimeter="0" name="NE"/>
  4704. <constraint x="0.99" y="1" perimeter="0" name="SE"/>
  4705. </connections>
  4706. <background>
  4707. <path>
  4708. <move x="37.33" y="12.51"/>
  4709. <curve x1="40.68" y1="12.2" x2="43.11" y2="9.19" x3="42.8" y3="5.85"/>
  4710. <curve x1="42.46" y1="2.48" x2="39.5" y2="0" x3="36.15" y3="0.34"/>
  4711. <curve x1="32.8" y1="0.66" x2="30.37" y2="3.67" x3="30.68" y3="7.04"/>
  4712. <curve x1="31.02" y1="10.37" x2="33.98" y2="12.85" x3="37.33" y3="12.51"/>
  4713. <close/>
  4714. <move x="49.42" y="31.39"/>
  4715. <line x="33.82" y="13.94"/>
  4716. <curve x1="33.6" y1="13.7" x2="33.19" y2="13.31" x3="32.9" y3="13.14"/>
  4717. <curve x1="30.85" y1="11.44" x2="27.87" y2="11.1" x3="25.46" y3="12.58"/>
  4718. <line x="11.05" y="21.46"/>
  4719. <curve x1="9.15" y1="22.63" x2="8.04" y2="24.64" x3="7.94" y3="26.73"/>
  4720. <curve x1="7.89" y1="27.14" x2="7.92" y2="27.56" x3="8.01" y3="27.97"/>
  4721. <curve x1="8.01" y1="27.99" x2="8.03" y2="28.02" x3="8.03" y3="28.04"/>
  4722. <curve x1="8.09" y1="28.31" x2="8.11" y2="28.57" x3="8.23" y3="28.82"/>
  4723. <line x="8.23" y="28.84"/>
  4724. <curve x1="8.37" y1="29.37" x2="8.59" y2="29.91" x3="8.88" y3="30.39"/>
  4725. <curve x1="8.95" y1="30.49" x2="9.02" y2="30.56" x3="9.1" y3="30.66"/>
  4726. <line x="12.59" y="38.11"/>
  4727. <line x="5.05" y="47.66"/>
  4728. <curve x1="3.75" y1="49.31" x2="4.01" y2="51.71" x3="5.68" y3="53.05"/>
  4729. <curve x1="7.32" y1="54.36" x2="9.7" y2="54.09" x3="11" y3="52.42"/>
  4730. <line x="20.01" y="41.03"/>
  4731. <curve x1="20.13" y1="40.86" x2="20.18" y2="40.69" x3="20.28" y3="40.52"/>
  4732. <curve x1="20.42" y1="40.28" x2="20.57" y2="40.06" x3="20.64" y3="39.79"/>
  4733. <curve x1="20.71" y1="39.55" x2="20.74" y2="39.3" x3="20.76" y3="39.06"/>
  4734. <curve x1="20.78" y1="38.82" x2="20.83" y2="38.57" x3="20.81" y3="38.33"/>
  4735. <curve x1="20.79" y1="38.06" x2="20.69" y2="37.8" x3="20.62" y3="37.53"/>
  4736. <line x="20.62" y="37.51"/>
  4737. <curve x1="22.67" y1="39.04" x2="24.6" y2="40.49" x3="25.53" y3="41.2"/>
  4738. <curve x1="25.48" y1="44.25" x2="25.27" y2="55.8" x3="25.27" y3="55.82"/>
  4739. <curve x1="25.27" y1="57.91" x2="26.91" y2="59.6" x3="29" y3="59.65"/>
  4740. <curve x1="31.1" y1="59.67" x2="32.83" y2="58" x3="32.88" y3="55.89"/>
  4741. <line x="33.17" y="39.35"/>
  4742. <curve x1="33.19" y1="38.11" x2="32.64" y2="36.95" x3="31.63" y3="36.2"/>
  4743. <line x="22.72" y="29.53"/>
  4744. <line x="33.7" y="22.71"/>
  4745. <line x="45.02" y="35.4"/>
  4746. <curve x1="46.1" y1="36.64" x2="47.98" y2="36.73" x3="49.21" y3="35.62"/>
  4747. <curve x1="50.44" y1="34.49" x2="50.53" y2="32.6" x3="49.42" y3="31.39"/>
  4748. <close/>
  4749. <move x="0.02" y="93.44"/>
  4750. <curve x1="2.19" y1="93.44" x2="4.26" y2="92.98" x3="6.14" y3="92.15"/>
  4751. <curve x1="8.04" y1="91.28" x2="10.19" y2="90.77" x3="12.41" y3="90.77"/>
  4752. <curve x1="14.66" y1="90.77" x2="16.8" y2="91.28" x3="18.7" y3="92.15"/>
  4753. <curve x1="20.55" y1="92.98" x2="22.65" y2="93.44" x3="24.79" y3="93.44"/>
  4754. <curve x1="26.96" y1="93.44" x2="29.03" y2="92.98" x3="30.88" y3="92.15"/>
  4755. <curve x1="32.78" y1="91.28" x2="34.93" y2="90.77" x3="37.17" y3="90.77"/>
  4756. <curve x1="39.41" y1="90.77" x2="41.56" y2="91.28" x3="43.46" y3="92.15"/>
  4757. <curve x1="45.31" y1="92.98" x2="47.41" y2="93.44" x3="49.58" y3="93.44"/>
  4758. <curve x1="51.75" y1="93.44" x2="53.82" y2="92.98" x3="55.67" y3="92.15"/>
  4759. <curve x1="57.57" y1="91.28" x2="59.71" y2="90.77" x3="61.96" y3="90.77"/>
  4760. <curve x1="64.21" y1="90.77" x2="66.35" y2="91.28" x3="68.25" y3="92.15"/>
  4761. <curve x1="70.1" y1="92.98" x2="72.2" y2="93.44" x3="74.37" y3="93.44"/>
  4762. <curve x1="76.52" y1="93.44" x2="78.61" y2="92.98" x3="80.46" y3="92.15"/>
  4763. <curve x1="82.36" y1="91.28" x2="84.51" y2="90.77" x3="86.75" y3="90.77"/>
  4764. <curve x1="88.99" y1="90.77" x2="91.14" y2="91.28" x3="93.04" y3="92.15"/>
  4765. <curve x1="94.89" y1="92.98" x2="96.99" y2="93.44" x3="99.16" y3="93.44"/>
  4766. <line x="99.16" y="84.44"/>
  4767. <curve x1="96.99" y1="84.44" x2="94.89" y2="83.98" x3="93.04" y3="83.15"/>
  4768. <curve x1="91.14" y1="82.29" x2="89" y2="81.78" x3="86.75" y3="81.78"/>
  4769. <curve x1="84.5" y1="81.78" x2="82.36" y2="82.29" x3="80.46" y3="83.15"/>
  4770. <curve x1="78.61" y1="83.98" x2="76.51" y2="84.44" x3="74.37" y3="84.44"/>
  4771. <curve x1="72.2" y1="84.44" x2="70.1" y2="83.98" x3="68.25" y3="83.15"/>
  4772. <curve x1="66.35" y1="82.29" x2="64.2" y2="81.78" x3="61.96" y3="81.78"/>
  4773. <curve x1="59.72" y1="81.78" x2="57.57" y2="82.29" x3="55.67" y3="83.15"/>
  4774. <curve x1="53.82" y1="83.98" x2="51.75" y2="84.44" x3="49.58" y3="84.44"/>
  4775. <curve x1="47.41" y1="84.44" x2="45.31" y2="83.98" x3="43.46" y3="83.15"/>
  4776. <curve x1="41.56" y1="82.29" x2="39.41" y2="81.78" x3="37.17" y3="81.78"/>
  4777. <curve x1="34.93" y1="81.78" x2="32.78" y2="82.29" x3="30.88" y3="83.15"/>
  4778. <curve x1="29.03" y1="83.98" x2="26.96" y2="84.44" x3="24.79" y3="84.44"/>
  4779. <curve x1="22.64" y1="84.44" x2="20.55" y2="83.98" x3="18.7" y3="83.15"/>
  4780. <curve x1="16.8" y1="82.29" x2="14.65" y2="81.78" x3="12.41" y3="81.78"/>
  4781. <curve x1="10.19" y1="81.78" x2="8.04" y2="82.29" x3="6.14" y3="83.15"/>
  4782. <curve x1="4.27" y1="83.98" x2="2.19" y2="84.44" x3="0.02" y3="84.44"/>
  4783. <line x="0.02" y="93.44"/>
  4784. <close/>
  4785. <move x="0.36" y="76.98"/>
  4786. <curve x1="1.95" y1="76.98" x2="3.52" y2="76.62" x3="4.99" y3="75.96"/>
  4787. <curve x1="7.33" y1="74.87" x2="9.9" y2="74.29" x3="12.46" y3="74.29"/>
  4788. <curve x1="15.04" y1="74.29" x2="17.57" y2="74.85" x3="19.9" y3="75.94"/>
  4789. <curve x1="21.37" y1="76.62" x2="22.98" y2="76.98" x3="24.55" y3="76.98"/>
  4790. <curve x1="26.14" y1="76.98" x2="27.71" y2="76.62" x3="29.17" y3="75.96"/>
  4791. <curve x1="31.51" y1="74.87" x2="34.08" y2="74.29" x3="36.64" y3="74.29"/>
  4792. <curve x1="39.2" y1="74.29" x2="41.77" y2="74.87" x3="44.08" y3="75.94"/>
  4793. <curve x1="45.55" y1="76.62" x2="47.16" y2="76.98" x3="48.75" y3="76.98"/>
  4794. <curve x1="50.34" y1="76.98" x2="51.91" y2="76.62" x3="53.37" y3="75.96"/>
  4795. <curve x1="54.89" y1="75.26" x2="56.53" y2="74.77" x3="58.16" y3="74.53"/>
  4796. <line x="50.02" y="68.61"/>
  4797. <line x="38.27" y="68.29"/>
  4798. <line x="30.01" y="62.54"/>
  4799. <line x="14.47" y="56.47"/>
  4800. <line x="0" y="54.55"/>
  4801. <line x="0.1" y="76.97"/>
  4802. <line x="0.36" y="76.97"/>
  4803. <close/>
  4804. <move x="74.6" y="49.09"/>
  4805. <curve x1="74.6" y1="48.31" x2="73.97" y2="47.71" x3="73.23" y3="47.71"/>
  4806. <curve x1="72.46" y1="47.71" x2="71.86" y2="48.32" x3="71.86" y3="49.09"/>
  4807. <curve x1="71.86" y1="49.84" x2="72.46" y2="50.47" x3="73.23" y3="50.47"/>
  4808. <curve x1="73.97" y1="50.47" x2="74.6" y2="49.84" x3="74.6" y3="49.09"/>
  4809. <close/>
  4810. <move x="95.22" y="62.15"/>
  4811. <line x="73.8" y="51.88"/>
  4812. <curve x1="75.13" y1="51.61" x2="76.14" y2="50.5" x3="76.14" y3="49.09"/>
  4813. <curve x1="76.14" y1="47.46" x2="74.84" y2="46.15" x3="73.23" y3="46.15"/>
  4814. <curve x1="71.62" y1="46.15" x2="70.31" y2="47.46" x3="70.31" y3="49.09"/>
  4815. <curve x1="70.31" y1="49.55" x2="70.45" y2="49.99" x3="70.65" y3="50.38"/>
  4816. <line x="49.01" y="40.03"/>
  4817. <curve x1="45.52" y1="38.36" x2="41.42" y2="39.79" x3="39.66" y3="43.2"/>
  4818. <line x="98.65" y="71.45"/>
  4819. <curve x1="100.18" y1="67.92" x2="98.69" y2="63.8" x3="95.22" y3="62.15"/>
  4820. <close/>
  4821. <move x="71.85" y="49.09"/>
  4822. <curve x1="71.85" y1="48.31" x2="72.45" y2="47.71" x3="73.22" y3="47.71"/>
  4823. <curve x1="73.97" y1="47.71" x2="74.59" y2="48.32" x3="74.59" y3="49.09"/>
  4824. <curve x1="74.59" y1="49.84" x2="73.96" y2="50.47" x3="73.22" y3="50.47"/>
  4825. <curve x1="72.45" y1="50.47" x2="71.85" y2="49.84" x3="71.85" y3="49.09"/>
  4826. <close/>
  4827. <move x="38.97" y="45.31"/>
  4828. <curve x1="38.46" y1="48.39" x2="39.96" y2="51.55" x3="42.9" y3="52.96"/>
  4829. <line x="89.1" y="75.09"/>
  4830. <curve x1="92.04" y1="76.5" x2="95.44" y2="75.67" x3="97.46" y3="73.34"/>
  4831. <line x="38.97" y="45.31"/>
  4832. <close/>
  4833. </path>
  4834. </background>
  4835. <foreground>
  4836. <fillstroke/>
  4837. </foreground>
  4838. </shape>
  4839. <shape name="Snowboarder" h="99.87" w="99.08" aspect="variable" strokewidth="inherit">
  4840. <connections>
  4841. <constraint x="0.42" y="0" perimeter="0" name="N"/>
  4842. <constraint x="0.5" y="0.87" perimeter="0" name="S"/>
  4843. <constraint x="0.01" y="0.62" perimeter="0" name="W"/>
  4844. <constraint x="1" y="0.46" perimeter="0" name="E"/>
  4845. <constraint x="0.85" y="0.06" perimeter="0" name="NE"/>
  4846. <constraint x="0.96" y="0.94" perimeter="0" name="SE"/>
  4847. </connections>
  4848. <background>
  4849. <path>
  4850. <move x="78.77" y="20.3"/>
  4851. <curve x1="83.3" y1="20.3" x2="86.99" y2="16.65" x3="86.99" y3="12.17"/>
  4852. <curve x1="86.99" y1="7.68" x2="83.3" y2="4.03" x3="78.77" y3="4.03"/>
  4853. <curve x1="74.24" y1="4.03" x2="70.55" y2="7.68" x3="70.55" y3="12.17"/>
  4854. <curve x1="70.55" y1="16.66" x2="74.24" y2="20.3" x3="78.77" y3="20.3"/>
  4855. <close/>
  4856. <move x="97.7" y="42.8"/>
  4857. <line x="74.55" y="21.73"/>
  4858. <curve x1="73.78" y1="20.98" x2="72.88" y2="20.39" x3="71.88" y3="19.95"/>
  4859. <line x="53.84" y="13.59"/>
  4860. <line x="45.65" y="1.83"/>
  4861. <curve x1="45.02" y1="0.99" x2="44.05" y2="0.39" x3="42.91" y3="0.24"/>
  4862. <curve x1="40.75" y1="0" x2="38.81" y2="1.54" x3="38.55" y3="3.67"/>
  4863. <curve x1="38.45" y1="4.58" x2="38.67" y2="5.44" x3="39.13" y3="6.17"/>
  4864. <line x="47.49" y="18.15"/>
  4865. <curve x1="47.88" y1="18.65" x2="48.36" y2="19.04" x3="48.95" y3="19.3"/>
  4866. <line x="58.65" y="23.09"/>
  4867. <line x="42.7" y="31.15"/>
  4868. <curve x1="40.49" y1="32.43" x2="38.89" y2="34.61" x3="38.46" y3="37.2"/>
  4869. <line x="38.56" y="51.63"/>
  4870. <line x="23.83" y="58.21"/>
  4871. <curve x1="22.16" y1="58.98" x2="20.97" y2="60.64" x3="20.9" y3="62.58"/>
  4872. <curve x1="20.85" y1="63.73" x2="21.21" y2="64.79" x3="21.82" y3="65.67"/>
  4873. <curve x1="16.96" y1="63.84" x2="13.88" y2="62.68" x3="13.88" y3="62.68"/>
  4874. <curve x1="12.39" y1="62.11" x2="11.23" y2="60.91" x3="10.71" y3="59.39"/>
  4875. <curve x1="9.8" y1="56.72" x2="6.87" y2="55.28" x3="4.16" y3="56.17"/>
  4876. <curve x1="1.46" y1="57.07" x2="0" y2="59.97" x3="0.91" y3="62.66"/>
  4877. <curve x1="2.41" y1="67.09" x2="5.81" y2="70.58" x3="10.2" y3="72.23"/>
  4878. <line x="79.17" y="98.2"/>
  4879. <curve x1="83.58" y1="99.87" x2="88.46" y2="99.5" x3="92.52" y3="97.18"/>
  4880. <curve x1="94.99" y1="95.78" x2="95.84" y2="92.66" x3="94.42" y3="90.21"/>
  4881. <curve x1="93" y1="87.76" x2="89.85" y2="86.92" x3="87.38" y3="88.32"/>
  4882. <curve x1="86.01" y1="89.1" x2="84.35" y2="89.22" x3="82.85" y3="88.64"/>
  4883. <curve x1="82.85" y1="88.64" x2="75.57" y2="85.9" x3="65.76" y3="82.21"/>
  4884. <curve x1="67.53" y1="81.6" x2="68.88" y2="80.05" x3="69.13" y3="78.14"/>
  4885. <line x="71.82" y="56.56"/>
  4886. <curve x1="71.85" y1="56.46" x2="71.85" y2="56.37" x3="71.85" y3="56.27"/>
  4887. <curve x1="71.92" y1="54.76" x2="71.32" y2="53.37" x3="70.27" y3="52.4"/>
  4888. <line x="58.68" y="42.22"/>
  4889. <line x="76.14" y="33.69"/>
  4890. <line x="92.36" y="48.48"/>
  4891. <curve x1="93.09" y1="49.18" x2="94.06" y2="49.6" x3="95.15" y3="49.6"/>
  4892. <curve x1="97.33" y1="49.58" x2="99.08" y2="47.83" x3="99.05" y3="45.67"/>
  4893. <curve x1="99.04" y1="44.53" x2="98.51" y2="43.49" x3="97.7" y3="42.8"/>
  4894. <close/>
  4895. <move x="61.32" y="57.95"/>
  4896. <line x="59.02" y="76.89"/>
  4897. <curve x1="59.02" y1="76.99" x2="59" y2="77.1" x3="59" y3="77.22"/>
  4898. <curve x1="58.96" y1="78.2" x2="59.21" y2="79.12" x3="59.67" y3="79.92"/>
  4899. <curve x1="48.85" y1="75.85" x2="36.37" y2="71.15" x3="27.18" y3="67.69"/>
  4900. <curve x1="27.55" y1="67.6" x2="27.9" y2="67.48" x3="28.23" y3="67.32"/>
  4901. <line x="46.28" y="59.26"/>
  4902. <curve x1="47.57" y1="58.56" x2="48.53" y2="57.34" x3="48.85" y3="55.88"/>
  4903. <line x="48.8" y="46.9"/>
  4904. <line x="61.32" y="57.95"/>
  4905. <close/>
  4906. </path>
  4907. </background>
  4908. <foreground>
  4909. <fillstroke/>
  4910. </foreground>
  4911. </shape>
  4912. <shape name="Snowmobile" h="80.86" w="99.25" aspect="variable" strokewidth="inherit">
  4913. <connections>
  4914. <constraint x="0.4" y="0" perimeter="0" name="N"/>
  4915. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  4916. <constraint x="0.16" y="0.595" perimeter="0" name="W"/>
  4917. <constraint x="0.94" y="0.67" perimeter="0" name="E"/>
  4918. <constraint x="0" y="1" perimeter="0" name="SW"/>
  4919. <constraint x="1" y="0.9" perimeter="0" name="SE"/>
  4920. </connections>
  4921. <background>
  4922. <path>
  4923. <move x="40.7" y="14.95"/>
  4924. <curve x1="44.8" y1="14.95" x2="48.12" y2="11.62" x3="48.12" y3="7.47"/>
  4925. <curve x1="48.12" y1="3.36" x2="44.8" y2="0" x3="40.7" y3="0"/>
  4926. <curve x1="36.6" y1="0" x2="33.28" y2="3.36" x3="33.28" y3="7.46"/>
  4927. <curve x1="33.29" y1="11.61" x2="36.61" y2="14.95" x3="40.7" y3="14.95"/>
  4928. <close/>
  4929. <move x="49.43" y="75.3"/>
  4930. <line x="84.71" y="75.3"/>
  4931. <curve x1="84.71" y1="75.3" x2="86.99" y2="75.45" x3="91.52" y3="71.79"/>
  4932. <line x="99.25" y="65.85"/>
  4933. <line x="99.25" y="72.56"/>
  4934. <line x="91.37" y="78.5"/>
  4935. <curve x1="91.37" y1="78.5" x2="89.02" y2="80.42" x3="85.08" y3="80.86"/>
  4936. <line x="46.48" y="80.86"/>
  4937. <line x="49.43" y="75.3"/>
  4938. <close/>
  4939. <move x="0.29" y="80.86"/>
  4940. <line x="35.58" y="80.86"/>
  4941. <line x="38.52" y="75.3"/>
  4942. <line x="38.23" y="75.3"/>
  4943. <line x="2.94" y="75.3"/>
  4944. <line x="0" y="80.86"/>
  4945. <close/>
  4946. <move x="44.51" y="24.04"/>
  4947. <curve x1="44.51" y1="19.91" x2="41.19" y2="16.56" x3="37.08" y3="16.56"/>
  4948. <curve x1="32.98" y1="16.56" x2="29.65" y2="19.91" x3="29.65" y3="24.04"/>
  4949. <line x="29.65" y="42.34"/>
  4950. <curve x1="29.65" y1="44.66" x2="30.78" y2="46.82" x3="32.43" y3="48.19"/>
  4951. <line x="15.82" y="48.19"/>
  4952. <line x="6.84" y="64.61"/>
  4953. <curve x1="6.64" y1="64.99" x2="6.56" y2="65.4" x3="6.56" y3="65.85"/>
  4954. <curve x1="6.56" y1="67.35" x2="7.78" y2="68.59" x3="9.27" y3="68.59"/>
  4955. <line x="70.54" y="68.59"/>
  4956. <curve x1="70.54" y1="68.59" x2="73.17" y2="69.01" x3="77.14" y3="65.88"/>
  4957. <line x="93.04" y="54.09"/>
  4958. <line x="87.04" y="43.52"/>
  4959. <curve x1="87.04" y1="43.52" x2="85.69" y2="40.96" x3="80.6" y3="40.19"/>
  4960. <line x="68.6" y="38.16"/>
  4961. <line x="62.16" y="27.32"/>
  4962. <line x="62.08" y="27.21"/>
  4963. <curve x1="61.15" y1="26.13" x2="59.53" y2="26.02" x3="58.45" y3="26.95"/>
  4964. <line x="58.44" y="26.97"/>
  4965. <curve x1="57.68" y1="27.68" x2="57.4" y2="28.82" x3="57.82" y3="29.84"/>
  4966. <line x="62.61" y="37.88"/>
  4967. <line x="62.61" y="37.94"/>
  4968. <line x="56.6" y="48.19"/>
  4969. <line x="44.52" y="43.55"/>
  4970. <line x="44.52" y="39"/>
  4971. <line x="54.06" y="39"/>
  4972. <curve x1="54.52" y1="39.02" x2="55" y2="38.96" x3="55.46" y3="38.76"/>
  4973. <curve x1="57.27" y1="38.07" x2="58.17" y2="36.02" x3="57.48" y3="34.21"/>
  4974. <curve x1="56.95" y1="32.8" x2="55.64" y2="31.96" x3="54.25" y3="31.94"/>
  4975. <line x="44.51" y="31.92"/>
  4976. <line x="44.51" y="24.04"/>
  4977. </path>
  4978. </background>
  4979. <foreground>
  4980. <fillstroke/>
  4981. </foreground>
  4982. </shape>
  4983. <shape name="Snow Shoeing" h="99.11" w="84.86" aspect="variable" strokewidth="inherit">
  4984. <connections>
  4985. <constraint x="0.5" y="0.18" perimeter="0" name="N"/>
  4986. <constraint x="0.5" y="0.94" perimeter="0" name="S"/>
  4987. <constraint x="0.27" y="0.42" perimeter="0" name="W"/>
  4988. <constraint x="0.99" y="0.46" perimeter="0" name="E"/>
  4989. <constraint x="0" y="0.86" perimeter="0" name="SW"/>
  4990. <constraint x="0.74" y="0" perimeter="0" name="NE"/>
  4991. <constraint x="0.93" y="0.96" perimeter="0" name="SE"/>
  4992. </connections>
  4993. <background>
  4994. <path>
  4995. <move x="62.24" y="15.97"/>
  4996. <curve x1="66.68" y1="15.97" x2="70.27" y2="12.39" x3="70.27" y3="7.98"/>
  4997. <curve x1="70.27" y1="3.58" x2="66.68" y2="0" x3="62.24" y3="0"/>
  4998. <curve x1="57.8" y1="0" x2="54.18" y2="3.58" x3="54.18" y3="7.99"/>
  4999. <curve x1="54.18" y1="12.39" x2="57.79" y2="15.97" x3="62.24" y3="15.97"/>
  5000. <close/>
  5001. <move x="83.84" y="46.44"/>
  5002. <curve x1="82.44" y1="49.64" x2="79.44" y2="48.68" x3="79.44" y3="48.68"/>
  5003. <line x="66.84" y="43.97"/>
  5004. <curve x1="65.58" y1="43.52" x2="64.61" y2="42.49" x3="64.27" y3="41.21"/>
  5005. <line x="61.42" y="32.96"/>
  5006. <line x="56.98" y="45.09"/>
  5007. <line x="70.15" y="58.68"/>
  5008. <curve x1="71.79" y1="61.53" x2="71.65" y2="63.63" x3="71.65" y3="63.63"/>
  5009. <line x="71.65" y="82.39"/>
  5010. <line x="71.65" y="82.39"/>
  5011. <curve x1="76.31" y1="82.39" x2="80.09" y2="86.14" x3="80.09" y3="90.75"/>
  5012. <curve x1="80.09" y1="95.37" x2="76.31" y2="99.11" x3="71.65" y3="99.11"/>
  5013. <curve x1="70.98" y1="99.11" x2="70.32" y2="99.04" x3="69.68" y3="98.88"/>
  5014. <line x="41.99" y="92.78"/>
  5015. <line x="41.99" y="88.73"/>
  5016. <line x="62.76" y="84.16"/>
  5017. <line x="62.76" y="67.08"/>
  5018. <line x="48.79" y="53.25"/>
  5019. <line x="46.65" y="67.74"/>
  5020. <curve x1="46.29" y1="69.58" x2="44.96" y2="71.3" x3="44.2" y3="72.15"/>
  5021. <line x="34.5" y="83.29"/>
  5022. <curve x1="34.36" y1="83.17" x2="34.17" y2="83.17" x3="33.98" y3="83.2"/>
  5023. <line x="34.5" y="83.29"/>
  5024. <curve x1="37.02" y1="85.25" x2="38.33" y2="88.52" x3="37.54" y3="91.8"/>
  5025. <curve x1="36.47" y1="96.3" x2="31.91" y2="99.08" x3="27.39" y3="98.02"/>
  5026. <curve x1="26.72" y1="97.85" x2="26.11" y2="97.64" x3="25.51" y3="97.36"/>
  5027. <line x="0" y="85.06"/>
  5028. <line x="0.95" y="81.12"/>
  5029. <line x="24.35" y="81.45"/>
  5030. <line x="35.47" y="68.7"/>
  5031. <line x="38.92" y="43.63"/>
  5032. <line x="46.15" y="24.66"/>
  5033. <line x="36.14" y="30.36"/>
  5034. <line x="30.17" y="41.95"/>
  5035. <curve x1="28.36" y1="45.63" x2="25.11" y2="43.69" x3="25.11" y3="43.69"/>
  5036. <curve x1="22.16" y1="42.02" x2="23.3" y2="39.19" x3="23.3" y3="39.19"/>
  5037. <line x="29.41" y="26.94"/>
  5038. <curve x1="31.05" y1="23.83" x2="32.36" y2="23.36" x3="32.36" y3="23.36"/>
  5039. <line x="46.65" y="15.61"/>
  5040. <curve x1="49.76" y1="13.49" x2="53.37" y2="15.14" x3="53.37" y3="15.14"/>
  5041. <line x="61.59" y="18.23"/>
  5042. <curve x1="65.7" y1="19.69" x2="65.87" y2="21.98" x3="65.87" y3="21.98"/>
  5043. <line x="70.96" y="38.12"/>
  5044. <line x="81.92" y="41.96"/>
  5045. <curve x1="81.92" y1="41.96" x2="84.86" y2="43.21" x3="83.84" y3="46.44"/>
  5046. <close/>
  5047. <move x="71.01" y="95.33"/>
  5048. <curve x1="71.22" y1="95.35" x2="71.44" y2="95.38" x3="71.65" y3="95.38"/>
  5049. <curve x1="74.22" y1="95.38" x2="76.31" y2="93.31" x3="76.31" y3="90.76"/>
  5050. <curve x1="76.31" y1="88.22" x2="74.22" y2="86.14" x3="71.65" y3="86.14"/>
  5051. <line x="71.65" y="87.11"/>
  5052. <curve x1="71.65" y1="89.54" x2="69.65" y2="91.52" x3="67.21" y3="91.52"/>
  5053. <curve x1="65.05" y1="91.52" x2="63.34" y2="89.96" x3="62.93" y3="87.94"/>
  5054. <line x="50" y="90.77"/>
  5055. <line x="71.01" y="95.33"/>
  5056. <close/>
  5057. <move x="27.66" y="94.18"/>
  5058. <curve x1="27.85" y1="94.27" x2="28.04" y2="94.32" x3="28.25" y3="94.37"/>
  5059. <curve x1="30.77" y1="94.96" x2="33.26" y2="93.43" x3="33.86" y3="90.95"/>
  5060. <curve x1="34.31" y1="89.07" x2="33.53" y2="87.18" x3="32.03" y3="86.12"/>
  5061. <line x="30.13" y="88.31"/>
  5062. <curve x1="28.51" y1="90.15" x2="25.71" y2="90.36" x3="23.86" y3="88.76"/>
  5063. <curve x1="22.77" y1="87.82" x2="22.34" y2="86.47" x3="22.41" y3="85.15"/>
  5064. <line x="8.25" y="84.92"/>
  5065. <line x="27.66" y="94.18"/>
  5066. <close/>
  5067. </path>
  5068. </background>
  5069. <foreground>
  5070. <fillstroke/>
  5071. </foreground>
  5072. </shape>
  5073. <shape name="Surfing" h="99.41" w="96.63" aspect="variable" strokewidth="inherit">
  5074. <connections>
  5075. <constraint x="0.41" y="0" perimeter="0" name="N"/>
  5076. <constraint x="0.5" y="0.845" perimeter="0" name="S"/>
  5077. <constraint x="0" y="0.64" perimeter="0" name="W"/>
  5078. <constraint x="0.98" y="0.46" perimeter="0" name="E"/>
  5079. <constraint x="0.75" y="0.06" perimeter="0" name="NE"/>
  5080. <constraint x="1" y="0.99" perimeter="0" name="SE"/>
  5081. </connections>
  5082. <background>
  5083. <path>
  5084. <move x="15.76" y="71.38"/>
  5085. <curve x1="43.86" y1="83.09" x2="65.2" y2="89.93" x3="95.26" y3="99.32"/>
  5086. <curve x1="95.87" y1="99.41" x2="96.44" y2="98.99" x3="96.54" y3="98.36"/>
  5087. <curve x1="96.63" y1="97.75" x2="96.21" y2="97.16" x3="95.59" y3="97.04"/>
  5088. <curve x1="48.24" y1="82.27" x2="11.07" y2="65.91" x3="2.59" y3="62.1"/>
  5089. <curve x1="1.71" y1="61.75" x2="0.69" y2="62.15" x3="0.36" y3="62.99"/>
  5090. <curve x1="0" y1="63.86" x2="0.38" y2="64.8" x3="1.24" y3="65.13"/>
  5091. <curve x1="3.35" y1="66.07" x2="5.43" y2="66.99" x3="7.45" y3="67.85"/>
  5092. <line x="0.77" y="72.9"/>
  5093. <curve x1="0.01" y1="74" x2="0.34" y2="75.41" x3="1.46" y3="76.16"/>
  5094. <curve x1="2.29" y1="76.72" x2="3.47" y2="76.65" x3="4.28" y3="76.14"/>
  5095. <line x="15.76" y="71.38"/>
  5096. <close/>
  5097. <move x="93.32" y="41.81"/>
  5098. <line x="71.47" y="21.93"/>
  5099. <curve x1="71.62" y1="21.94" x2="71.77" y2="21.95" x3="71.93" y3="21.95"/>
  5100. <curve x1="76.36" y1="21.95" x2="79.94" y2="18.38" x3="79.94" y3="13.99"/>
  5101. <curve x1="79.94" y1="9.6" x2="76.36" y2="6.03" x3="71.93" y3="6.03"/>
  5102. <curve x1="67.48" y1="6.03" x2="63.9" y2="9.6" x3="63.9" y3="13.99"/>
  5103. <curve x1="63.9" y1="15.67" x2="64.42" y2="17.22" x3="65.32" y3="18.5"/>
  5104. <line x="50.5" y="13.26"/>
  5105. <line x="42.49" y="1.78"/>
  5106. <curve x1="41.87" y1="0.93" x2="40.93" y2="0.37" x3="39.81" y3="0.23"/>
  5107. <curve x1="37.73" y1="0" x2="35.81" y2="1.5" x3="35.57" y3="3.59"/>
  5108. <curve x1="35.47" y1="4.46" x2="35.69" y2="5.3" x3="36.11" y3="6.01"/>
  5109. <line x="44.28" y="17.75"/>
  5110. <curve x1="44.66" y1="18.22" x2="45.13" y2="18.62" x3="45.7" y3="18.88"/>
  5111. <line x="55.17" y="22.57"/>
  5112. <line x="39.61" y="30.46"/>
  5113. <curve x1="37.43" y1="31.68" x2="35.89" y2="33.84" x3="35.46" y3="36.35"/>
  5114. <line x="35.53" y="50.46"/>
  5115. <line x="21.14" y="56.89"/>
  5116. <curve x1="19.53" y1="57.66" x2="18.37" y2="59.26" x3="18.3" y3="61.16"/>
  5117. <curve x1="18.18" y1="63.88" x2="20.31" y2="66.16" x3="23.06" y3="66.28"/>
  5118. <curve x1="23.91" y1="66.33" x2="24.74" y2="66.14" x3="25.45" y3="65.79"/>
  5119. <line x="43.06" y="57.9"/>
  5120. <curve x1="44.32" y1="57.24" x2="45.26" y2="56.05" x3="45.57" y3="54.59"/>
  5121. <line x="45.55" y="45.81"/>
  5122. <line x="57.77" y="56.66"/>
  5123. <line x="55.52" y="75.14"/>
  5124. <curve x1="55.52" y1="75.26" x2="55.5" y2="75.37" x3="55.5" y3="75.49"/>
  5125. <curve x1="55.38" y1="78.21" x2="57.51" y2="80.51" x3="60.26" y3="80.63"/>
  5126. <curve x1="62.84" y1="80.72" x2="65.04" y2="78.87" x3="65.4" y3="76.36"/>
  5127. <line x="68.03" y="55.28"/>
  5128. <curve x1="68.03" y1="55.19" x2="68.05" y2="55.09" x3="68.05" y3="55"/>
  5129. <curve x1="68.1" y1="53.52" x2="67.51" y2="52.18" x3="66.51" y3="51.24"/>
  5130. <line x="55.21" y="41.25"/>
  5131. <line x="72.26" y="32.94"/>
  5132. <line x="88.09" y="47.38"/>
  5133. <curve x1="88.8" y1="48.06" x2="89.77" y2="48.48" x3="90.81" y3="48.48"/>
  5134. <curve x1="92.94" y1="48.46" x2="94.65" y2="46.74" x3="94.62" y3="44.65"/>
  5135. <curve x1="94.62" y1="43.53" x2="94.1" y2="42.52" x3="93.32" y3="41.81"/>
  5136. <close/>
  5137. </path>
  5138. </background>
  5139. <foreground>
  5140. <fillstroke/>
  5141. </foreground>
  5142. </shape>
  5143. <shape name="Swimming 1" h="72.17" w="98.87" aspect="variable" strokewidth="inherit">
  5144. <connections>
  5145. <constraint x="0.5" y="0.075" perimeter="0" name="N"/>
  5146. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  5147. <constraint x="0.45" y="0.5" perimeter="0" name="W"/>
  5148. <constraint x="0.97" y="0.5" perimeter="0" name="E"/>
  5149. <constraint x="0" y="1" perimeter="0" name="SW"/>
  5150. <constraint x="0.82" y="0" perimeter="0" name="NE"/>
  5151. <constraint x="1" y="1" perimeter="0" name="SE"/>
  5152. </connections>
  5153. <background>
  5154. <path>
  5155. <move x="98.87" y="72.17"/>
  5156. <curve x1="96.71" y1="72.17" x2="94.64" y2="71.67" x3="92.79" y3="70.81"/>
  5157. <curve x1="90.9" y1="69.93" x2="88.76" y2="69.4" x3="86.52" y3="69.4"/>
  5158. <curve x1="84.27" y1="69.4" x2="82.13" y2="69.93" x3="80.24" y3="70.81"/>
  5159. <curve x1="78.39" y1="71.67" x2="76.32" y2="72.17" x3="74.16" y3="72.17"/>
  5160. <curve x1="72" y1="72.17" x2="69.92" y2="71.67" x3="68.08" y3="70.81"/>
  5161. <curve x1="66.16" y1="69.93" x2="64.02" y2="69.4" x3="61.8" y3="69.4"/>
  5162. <curve x1="59.56" y1="69.4" x2="57.42" y2="69.93" x3="55.52" y3="70.81"/>
  5163. <curve x1="53.68" y1="71.67" x2="51.58" y2="72.17" x3="49.44" y3="72.17"/>
  5164. <curve x1="47.27" y1="72.17" x2="45.21" y2="71.67" x3="43.34" y3="70.81"/>
  5165. <curve x1="41.44" y1="69.93" x2="39.31" y2="69.4" x3="37.09" y3="69.4"/>
  5166. <curve x1="34.85" y1="69.4" x2="32.71" y2="69.93" x3="30.81" y3="70.81"/>
  5167. <curve x1="28.97" y1="71.67" x2="26.87" y2="72.17" x3="24.7" y3="72.17"/>
  5168. <curve x1="22.57" y1="72.17" x2="20.47" y2="71.67" x3="18.63" y3="70.81"/>
  5169. <curve x1="16.73" y1="69.93" x2="14.59" y2="69.4" x3="12.35" y3="69.4"/>
  5170. <curve x1="10.13" y1="69.4" x2="7.99" y2="69.93" x3="6.1" y3="70.81"/>
  5171. <curve x1="4.23" y1="71.67" x2="2.16" y2="72.17" x3="0" y3="72.17"/>
  5172. <line x="0" y="62.84"/>
  5173. <curve x1="2.17" y1="62.84" x2="4.23" y2="62.33" x3="6.1" y3="61.5"/>
  5174. <curve x1="8" y1="60.6" x2="10.13" y2="60.07" x3="12.35" y3="60.07"/>
  5175. <curve x1="14.59" y1="60.07" x2="16.73" y2="60.6" x3="18.63" y3="61.5"/>
  5176. <curve x1="20.47" y1="62.33" x2="22.57" y2="62.84" x3="24.7" y3="62.84"/>
  5177. <curve x1="26.87" y1="62.84" x2="28.96" y2="62.33" x3="30.81" y3="61.5"/>
  5178. <curve x1="32.71" y1="60.6" x2="34.85" y2="60.07" x3="37.09" y3="60.07"/>
  5179. <curve x1="39.31" y1="60.07" x2="41.44" y2="60.6" x3="43.34" y3="61.5"/>
  5180. <curve x1="45.21" y1="62.33" x2="47.27" y2="62.84" x3="49.44" y3="62.84"/>
  5181. <curve x1="51.58" y1="62.84" x2="53.68" y2="62.33" x3="55.52" y3="61.5"/>
  5182. <curve x1="57.42" y1="60.6" x2="59.56" y2="60.07" x3="61.8" y3="60.07"/>
  5183. <curve x1="64.01" y1="60.07" x2="66.15" y2="60.6" x3="68.08" y3="61.5"/>
  5184. <curve x1="69.92" y1="62.33" x2="72" y2="62.84" x3="74.16" y3="62.84"/>
  5185. <curve x1="76.33" y1="62.84" x2="78.39" y2="62.33" x3="80.24" y3="61.5"/>
  5186. <curve x1="82.13" y1="60.6" x2="84.27" y2="60.07" x3="86.52" y3="60.07"/>
  5187. <curve x1="88.76" y1="60.07" x2="90.9" y2="60.6" x3="92.79" y3="61.5"/>
  5188. <curve x1="94.64" y1="62.33" x2="96.71" y2="62.84" x3="98.87" y3="62.84"/>
  5189. <line x="98.87" y="72.17"/>
  5190. <close/>
  5191. <move x="84.54" y="45.77"/>
  5192. <curve x1="91.03" y1="45.77" x2="96.3" y2="40.36" x3="96.3" y3="33.72"/>
  5193. <curve x1="96.3" y1="27.07" x2="91.03" y2="21.69" x3="84.54" y3="21.69"/>
  5194. <curve x1="78.03" y1="21.69" x2="72.77" y2="27.08" x3="72.77" y3="33.72"/>
  5195. <curve x1="72.78" y1="40.36" x2="77.57" y2="45.77" x3="84.54" y3="45.77"/>
  5196. <close/>
  5197. <move x="16.04" y="52.55"/>
  5198. <curve x1="16.95" y1="52.77" x2="17.81" y2="53.1" x3="18.63" y3="53.48"/>
  5199. <curve x1="20.47" y1="54.33" x2="22.57" y2="54.84" x3="24.7" y3="54.84"/>
  5200. <curve x1="26.86" y1="54.84" x2="28.96" y2="54.33" x3="30.8" y3="53.48"/>
  5201. <curve x1="32.7" y1="52.6" x2="34.84" y2="52.04" x3="37.08" y3="52.04"/>
  5202. <curve x1="39.3" y1="52.04" x2="41.44" y2="52.6" x3="43.33" y3="53.48"/>
  5203. <curve x1="45.2" y1="54.33" x2="47.26" y2="54.84" x3="49.43" y3="54.84"/>
  5204. <curve x1="51.57" y1="54.84" x2="53.67" y2="54.33" x3="55.51" y3="53.48"/>
  5205. <curve x1="57.41" y1="52.6" x2="59.55" y2="52.04" x3="61.79" y3="52.04"/>
  5206. <curve x1="64" y1="52.04" x2="66.15" y2="52.6" x3="68.07" y3="53.48"/>
  5207. <curve x1="69.91" y1="54.33" x2="71.99" y2="54.84" x3="74.15" y3="54.84"/>
  5208. <curve x1="75.72" y1="54.84" x2="77.25" y2="54.57" x3="78.68" y3="54.11"/>
  5209. <line x="59.06" y="17.9"/>
  5210. <line x="81.88" y="13.64"/>
  5211. <curve x1="85.23" y1="12.99" x2="87.66" y2="10.29" x3="87.66" y3="6.85"/>
  5212. <curve x1="87.66" y1="3.05" x2="84.64" y2="0" x3="80.94" y3="0"/>
  5213. <curve x1="80.67" y1="0" x2="80.43" y2="0" x3="80.17" y3="0.02"/>
  5214. <line x="44.93" y="6.58"/>
  5215. <curve x1="42.46" y1="7.16" x2="39.18" y2="10.86" x3="41.05" y3="15.41"/>
  5216. <curve x1="41.15" y1="15.66" x2="41.25" y2="15.89" x3="41.35" y3="16.14"/>
  5217. <line x="50.55" y="33.13"/>
  5218. <line x="16.04" y="52.55"/>
  5219. <close/>
  5220. </path>
  5221. </background>
  5222. <foreground>
  5223. <fillstroke/>
  5224. </foreground>
  5225. </shape>
  5226. <shape name="Swimming 2" h="45.09" w="99" aspect="variable" strokewidth="inherit">
  5227. <connections>
  5228. <constraint x="0.345" y="0" perimeter="0" name="N"/>
  5229. <constraint x="0.44" y="0.92" perimeter="0" name="S"/>
  5230. <constraint x="0" y="0.435" perimeter="0" name="W"/>
  5231. <constraint x="0.82" y="0.43" perimeter="0" name="E"/>
  5232. <constraint x="0.05" y="0.85" perimeter="0" name="SW"/>
  5233. <constraint x="1" y="0.81" perimeter="0" name="SE"/>
  5234. </connections>
  5235. <background>
  5236. <path>
  5237. <move x="67.18" y="37.59"/>
  5238. <curve x1="65.47" y1="40.04" x2="62.74" y2="41.64" x3="59.67" y3="41.64"/>
  5239. <curve x1="56.32" y1="41.64" x2="53.38" y2="39.76" x3="51.72" y3="36.92"/>
  5240. <line x="51.81" y="36.89"/>
  5241. <curve x1="50.14" y1="39.69" x2="47.22" y2="41.55" x3="43.9" y3="41.55"/>
  5242. <curve x1="40.54" y1="41.55" x2="37.59" y2="39.65" x3="35.93" y3="36.78"/>
  5243. <line x="35.96" y="36.76"/>
  5244. <curve x1="34.3" y1="39.64" x2="31.34" y2="41.55" x3="27.96" y3="41.55"/>
  5245. <curve x1="24.77" y1="41.55" x2="21.95" y2="39.85" x3="20.25" y3="37.21"/>
  5246. <line x="20.27" y="37.09"/>
  5247. <curve x1="18.6" y1="39.88" x2="15.68" y2="41.74" x3="12.36" y3="41.74"/>
  5248. <curve x1="8.11" y1="41.74" x2="4.51" y2="38.71" x3="3.36" y3="34.53"/>
  5249. <line x="37.23" y="20.21"/>
  5250. <line x="31.23" y="12.36"/>
  5251. <line x="0" y="19.68"/>
  5252. <line x="1.55" y="13.82"/>
  5253. <line x="34.52" y="0"/>
  5254. <line x="67.18" y="37.59"/>
  5255. <close/>
  5256. <move x="70.29" y="8.55"/>
  5257. <curve x1="64.36" y1="8.55" x2="59.54" y2="13.41" x3="59.54" y3="19.39"/>
  5258. <curve x1="59.54" y1="25.4" x2="64.35" y2="30.27" x3="70.29" y3="30.27"/>
  5259. <curve x1="76.24" y1="30.27" x2="81.05" y2="25.4" x3="81.05" y3="19.39"/>
  5260. <curve x1="81.05" y1="13.41" x2="76.24" y2="8.55" x3="70.29" y3="8.55"/>
  5261. <close/>
  5262. <move x="99" y="36.47"/>
  5263. <curve x1="99" y1="36.47" x2="93" y2="39.77" x3="84.78" y3="32.44"/>
  5264. <curve x1="84.78" y1="32.44" x2="82.14" y2="40.86" x3="70.7" y3="37.39"/>
  5265. <curve x1="70.7" y1="37.39" x2="76.45" y2="45.09" x3="84.78" y3="38.91"/>
  5266. <curve x1="84.78" y1="38.92" x2="95.12" y2="43.21" x3="99" y3="36.47"/>
  5267. <close/>
  5268. </path>
  5269. </background>
  5270. <foreground>
  5271. <fillstroke/>
  5272. </foreground>
  5273. </shape>
  5274. <shape name="Swing" h="100.04" w="98.67" aspect="variable" strokewidth="inherit">
  5275. <connections>
  5276. <constraint x="0.5" y="0.415" perimeter="0" name="N"/>
  5277. <constraint x="0.44" y="0.965" perimeter="0" name="S"/>
  5278. <constraint x="0" y="0.5" perimeter="0" name="W"/>
  5279. <constraint x="1" y="0.7" perimeter="0" name="E"/>
  5280. <constraint x="0.15" y="0" perimeter="0" name="NW"/>
  5281. </connections>
  5282. <background>
  5283. <path>
  5284. <move x="11.17" y="61.61"/>
  5285. <curve x1="17.35" y1="61.61" x2="22.36" y2="56.53" x3="22.36" y3="50.26"/>
  5286. <curve x1="22.36" y1="44.01" x2="17.35" y2="38.94" x3="11.17" y3="38.94"/>
  5287. <curve x1="5" y1="38.95" x2="0" y2="44.01" x3="0" y3="50.27"/>
  5288. <curve x1="0" y1="56.53" x2="5" y2="61.61" x3="11.17" y3="61.61"/>
  5289. <move x="73.86" y="81.09"/>
  5290. <curve x1="74.38" y1="80.73" x2="75.07" y2="80.83" x3="75.45" y3="81.35"/>
  5291. <line x="77.52" y="84.25"/>
  5292. <curve x1="77.87" y1="84.75" x2="77.76" y2="85.48" x3="77.27" y3="85.86"/>
  5293. <line x="62.09" y="97.03"/>
  5294. <curve x1="61.6" y1="97.4" x2="60.88" y2="97.29" x3="60.5" y3="96.79"/>
  5295. <line x="58.43" y="93.88"/>
  5296. <curve x1="58.08" y1="93.38" x2="58.19" y2="92.67" x3="58.68" y3="92.27"/>
  5297. <line x="73.86" y="81.09"/>
  5298. <close/>
  5299. <move x="56.69" y="66.68"/>
  5300. <line x="50.66" y="55.98"/>
  5301. <line x="47.51" y="58.32"/>
  5302. <line x="53.52" y="69.08"/>
  5303. <line x="56.69" y="66.68"/>
  5304. <close/>
  5305. <move x="42.64" y="41.67"/>
  5306. <line x="19.22" y="0"/>
  5307. <line x="14.74" y="0.03"/>
  5308. <line x="39.44" y="44.04"/>
  5309. <line x="42.64" y="41.67"/>
  5310. <close/>
  5311. <move x="64.69" y="63.72"/>
  5312. <curve x1="66.02" y1="62.75" x2="67.54" y2="61.99" x3="69.27" y3="61.99"/>
  5313. <line x="91.03" y="62.02"/>
  5314. <curve x1="95.25" y1="62.02" x2="98.67" y2="65.5" x3="98.67" y3="69.77"/>
  5315. <curve x1="98.67" y1="74.06" x2="95.25" y2="77.52" x3="91.03" y3="77.52"/>
  5316. <line x="72.88" y="77.49"/>
  5317. <line x="49.68" y="94.08"/>
  5318. <curve x1="41.51" y1="100.04" x2="36.56" y2="93.49" x3="36.56" y3="93.49"/>
  5319. <line x="18.36" y="75.04"/>
  5320. <curve x1="15.32" y1="71.33" x2="15.97" y2="64.28" x3="19.63" y3="61.17"/>
  5321. <line x="44.81" y="42.99"/>
  5322. <curve x1="47.32" y1="40.88" x2="51.03" y2="41.21" x3="53.15" y3="43.72"/>
  5323. <curve x1="55.25" y1="46.26" x2="54.91" y2="50.04" x3="52.41" y3="52.17"/>
  5324. <line x="36.3" y="64.13"/>
  5325. <line x="47.87" y="75.71"/>
  5326. <line x="64.69" y="63.72"/>
  5327. <close/>
  5328. </path>
  5329. </background>
  5330. <foreground>
  5331. <fillstroke/>
  5332. </foreground>
  5333. </shape>
  5334. <shape name="Tennis" h="99.27" w="99.32" aspect="variable" strokewidth="inherit">
  5335. <connections>
  5336. <constraint x="0.62" y="0" perimeter="0" name="N"/>
  5337. <constraint x="0.53" y="1" perimeter="0" name="S"/>
  5338. <constraint x="0.06" y="0.52" perimeter="0" name="W"/>
  5339. <constraint x="0.965" y="0.47" perimeter="0" name="E"/>
  5340. <constraint x="0.04" y="0.19" perimeter="0" name="NW"/>
  5341. <constraint x="0.99" y="0.97" perimeter="0" name="SE"/>
  5342. </connections>
  5343. <background>
  5344. <path>
  5345. <move x="9.95" y="48"/>
  5346. <curve x1="7.86" y1="48" x2="6.15" y2="49.71" x3="6.15" y3="51.79"/>
  5347. <curve x1="6.15" y1="53.87" x2="7.86" y2="55.56" x3="9.95" y3="55.56"/>
  5348. <curve x1="12.04" y1="55.56" x2="13.73" y2="53.88" x3="13.73" y3="51.79"/>
  5349. <curve x1="13.73" y1="49.71" x2="12.04" y2="48" x3="9.95" y3="48"/>
  5350. <close/>
  5351. <move x="62.68" y="16.45"/>
  5352. <curve x1="67.21" y1="16.45" x2="70.92" y2="12.79" x3="70.92" y3="8.24"/>
  5353. <curve x1="70.92" y1="3.69" x2="67.22" y2="0" x3="62.68" y3="0"/>
  5354. <curve x1="58.12" y1="0" x2="54.42" y2="3.69" x3="54.42" y3="8.23"/>
  5355. <curve x1="54.42" y1="12.77" x2="58.12" y2="16.45" x3="62.68" y3="16.45"/>
  5356. <close/>
  5357. <move x="98.13" y="89.67"/>
  5358. <line x="84.73" y="73.9"/>
  5359. <curve x1="84.73" y1="73.9" x2="80.55" y2="49.55" x3="80.55" y3="49.5"/>
  5360. <curve x1="80.55" y1="49.48" x2="79.92" y2="46.74" x3="79.92" y3="46.74"/>
  5361. <curve x1="79.94" y1="46.76" x2="78.23" y2="39.06" x3="76.92" y3="33.03"/>
  5362. <curve x1="79.01" y1="34.23" x2="80.9" y2="35.31" x3="81" y3="35.36"/>
  5363. <curve x1="81.1" y1="35.59" x2="88.11" y2="48.86" x3="88.11" y3="48.86"/>
  5364. <curve x1="88.64" y1="49.84" x2="89.52" y2="50.57" x3="90.58" y3="50.89"/>
  5365. <curve x1="91.66" y1="51.22" x2="92.8" y2="51.12" x3="93.78" y3="50.59"/>
  5366. <curve x1="94.76" y1="50.09" x2="95.49" y2="49.21" x3="95.82" y3="48.13"/>
  5367. <curve x1="96.17" y1="47.08" x2="96.07" y2="45.95" x3="95.54" y3="44.97"/>
  5368. <line x="87.85" y="30.4"/>
  5369. <curve x1="87.85" y1="30.4" x2="87.55" y2="29.87" x3="87.14" y3="29.47"/>
  5370. <curve x1="86.59" y1="28.92" x2="85.38" y2="28.24" x3="85.38" y3="28.24"/>
  5371. <line x="70.46" y="19.78"/>
  5372. <curve x1="68.57" y1="18.83" x2="66.48" y2="18.5" x3="64.39" y3="18.95"/>
  5373. <curve x1="63.53" y1="19.13" x2="62.73" y2="19.45" x3="61.82" y3="19.95"/>
  5374. <curve x1="61.72" y1="19.97" x2="58.42" y2="21.43" x3="56.5" y3="25.9"/>
  5375. <line x="48.85" y="41.27"/>
  5376. <curve x1="48.85" y1="41.27" x2="37.18" y2="43.53" x3="36.78" y3="43.6"/>
  5377. <curve x1="36.68" y1="43.62" x2="36.58" y2="43.65" x3="36.5" y3="43.7"/>
  5378. <line x="25.62" y="36.02"/>
  5379. <curve x1="23.18" y1="34.31" x2="22.87" y2="29.19" x3="22.85" y3="28.99"/>
  5380. <curve x1="22.55" y1="25.48" x2="20.53" y2="22.16" x3="17.31" y3="19.88"/>
  5381. <curve x1="14.39" y1="17.82" x2="10.86" y2="16.94" x3="7.64" y3="17.47"/>
  5382. <curve x1="5.12" y1="17.9" x2="2.98" y2="19.2" x3="1.62" y3="21.11"/>
  5383. <curve x1="0.55" y1="22.6" x2="0" y2="24.38" x3="0" y3="26.29"/>
  5384. <curve x1="0" y1="26.31" x2="0.15" y2="27.95" x3="0.15" y3="27.95"/>
  5385. <curve x1="0.7" y1="31.19" x2="2.7" y2="34.2" x3="5.62" y3="36.28"/>
  5386. <curve x1="8.57" y1="38.36" x2="12.07" y2="39.24" x3="15.29" y3="38.69"/>
  5387. <line x="16.05" y="38.54"/>
  5388. <curve x1="16.13" y1="38.49" x2="20.96" y2="37.01" x3="23.33" y3="38.62"/>
  5389. <curve x1="23.33" y1="38.64" x2="31.47" y2="44.37" x3="33.64" y3="45.9"/>
  5390. <curve x1="33.41" y1="46.25" x2="33.01" y2="47.03" x3="33.04" y3="47.83"/>
  5391. <curve x1="33.04" y1="48.08" x2="33.06" y2="48.33" x3="33.12" y3="48.58"/>
  5392. <curve x1="33.55" y1="50.84" x2="35.77" y2="52.34" x3="38.03" y3="51.89"/>
  5393. <line x="52.49" y="49.08"/>
  5394. <curve x1="52.49" y1="49.08" x2="53.73" y2="48.7" x3="54.25" y3="48.33"/>
  5395. <curve x1="54.93" y1="47.85" x2="55.43" y2="46.85" x3="55.43" y3="46.85"/>
  5396. <line x="59.23" y="39.22"/>
  5397. <curve x1="59.23" y1="39.22" x2="61.85" y2="51.54" x3="61.9" y3="51.77"/>
  5398. <curve x1="61.6" y1="52.07" x2="50.03" y2="64.3" x3="50.03" y3="64.3"/>
  5399. <line x="49.83" y="64.55"/>
  5400. <curve x1="48.7" y1="65.58" x2="48.07" y2="66.93" x3="48.07" y3="68.37"/>
  5401. <line x="48.07" y="94.28"/>
  5402. <curve x1="48.07" y1="97.04" x2="50.34" y2="99.27" x3="53.11" y3="99.27"/>
  5403. <curve x1="55.86" y1="99.27" x2="58.12" y2="97.04" x3="58.12" y3="94.28"/>
  5404. <curve x1="58.12" y1="94.28" x2="58.12" y2="72.99" x3="58.12" y3="72.64"/>
  5405. <curve x1="59.18" y1="71.54" x2="68.05" y2="62.22" x3="70.42" y3="59.76"/>
  5406. <curve x1="70.67" y1="61.22" x2="72.97" y2="74.34" x3="72.97" y3="74.34"/>
  5407. <curve x1="73.17" y1="75.5" x2="73.73" y2="76.55" x3="74.56" y3="77.4"/>
  5408. <curve x1="74.56" y1="77.42" x2="90.48" y2="96.15" x3="90.48" y3="96.15"/>
  5409. <curve x1="91.36" y1="97.15" x2="92.57" y2="97.78" x3="93.91" y3="97.91"/>
  5410. <curve x1="95.25" y1="98.01" x2="96.53" y2="97.58" x3="97.56" y3="96.73"/>
  5411. <curve x1="98.72" y1="95.75" x2="99.32" y2="94.32" x3="99.32" y3="92.91"/>
  5412. <curve x1="99.32" y1="91.75" x2="98.94" y2="90.62" x3="98.13" y3="89.67"/>
  5413. <close/>
  5414. <move x="18.67" y="33.19"/>
  5415. <curve x1="17.79" y1="34.42" x2="16.43" y2="35.22" x3="14.74" y3="35.52"/>
  5416. <curve x1="12.37" y1="35.92" x2="9.73" y2="35.24" x3="7.51" y3="33.64"/>
  5417. <curve x1="5.27" y1="32.06" x2="3.76" y2="29.8" x3="3.35" y3="27.44"/>
  5418. <line x="3.25" y="26.26"/>
  5419. <curve x1="3.25" y1="25.03" x2="3.58" y2="23.93" x3="4.26" y3="22.97"/>
  5420. <curve x1="6.45" y1="19.91" x2="11.47" y2="19.71" x3="15.45" y3="22.52"/>
  5421. <curve x1="19.4" y1="25.33" x2="20.86" y2="30.13" x3="18.67" y3="33.19"/>
  5422. <close/>
  5423. </path>
  5424. </background>
  5425. <foreground>
  5426. <fillstroke/>
  5427. </foreground>
  5428. </shape>
  5429. <shape name="Trail" h="99.04" w="99.76" aspect="variable" strokewidth="inherit">
  5430. <connections>
  5431. <constraint x="0.54" y="0" perimeter="0" name="N"/>
  5432. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  5433. <constraint x="0.28" y="0.47" perimeter="0" name="W"/>
  5434. <constraint x="0.77" y="0.45" perimeter="0" name="E"/>
  5435. <constraint x="0" y="1" perimeter="0" name="SW"/>
  5436. <constraint x="1" y="1" perimeter="0" name="SE"/>
  5437. </connections>
  5438. <background>
  5439. <path>
  5440. <move x="53.55" y="14.61"/>
  5441. <curve x1="57.61" y1="14.92" x2="61.16" y2="11.96" x3="61.48" y3="8.04"/>
  5442. <curve x1="61.8" y1="4.07" x2="58.75" y2="0.64" x3="54.69" y3="0.31"/>
  5443. <curve x1="50.65" y1="0" x2="47.1" y2="2.96" x3="46.76" y3="6.9"/>
  5444. <curve x1="46.44" y1="10.85" x2="49.48" y2="14.3" x3="53.55" y3="14.61"/>
  5445. <close/>
  5446. <move x="47.29" y="17.56"/>
  5447. <curve x1="48.75" y1="16.57" x2="50.53" y2="15.91" x3="52.45" y3="16.05"/>
  5448. <curve x1="55" y1="16.26" x2="57.1" y2="17.78" x3="58.34" y3="19.64"/>
  5449. <line x="65.78" y="33.98"/>
  5450. <line x="75.92" y="40.76"/>
  5451. <curve x1="76.8" y1="41.4" x2="77.31" y2="42.46" x3="77.23" y3="43.57"/>
  5452. <curve x1="77.08" y1="45.37" x2="75.48" y2="46.69" x3="73.63" y3="46.55"/>
  5453. <curve x1="73.09" y1="46.5" x2="72.66" y2="46.31" x3="72.12" y3="46.08"/>
  5454. <line x="61.05" y="38.66"/>
  5455. <curve x1="60.71" y1="38.4" x2="60.42" y2="38.07" x3="60.22" y3="37.71"/>
  5456. <line x="57.42" y="32.35"/>
  5457. <line x="54.09" y="46.65"/>
  5458. <line x="67.18" y="61.66"/>
  5459. <curve x1="67.45" y1="62.13" x2="67.67" y2="62.65" x3="67.76" y3="63.2"/>
  5460. <line x="71.31" y="81.35"/>
  5461. <curve x1="71.29" y1="81.75" x2="71.36" y2="81.99" x3="71.33" y3="82.34"/>
  5462. <curve x1="71.11" y1="85.01" x2="68.7" y2="87" x3="65.95" y3="86.78"/>
  5463. <curve x1="63.69" y1="86.62" x2="61.99" y2="84.96" x3="61.45" y3="82.95"/>
  5464. <line x="58.09" y="65.96"/>
  5465. <line x="47.51" y="54.64"/>
  5466. <line x="45.03" y="65.65"/>
  5467. <curve x1="44.96" y1="66.17" x2="44.25" y2="67.26" x3="44.03" y3="67.71"/>
  5468. <line x="33.84" y="84.41"/>
  5469. <curve x1="32.82" y1="85.95" x2="31.12" y2="86.92" x3="29.17" y3="86.77"/>
  5470. <curve x1="26.42" y1="86.56" x2="24.35" y2="84.22" x3="24.57" y3="81.55"/>
  5471. <curve x1="24.62" y1="80.79" x2="24.96" y2="80.01" x3="25.25" y3="79.47"/>
  5472. <line x="34.74" y="63.99"/>
  5473. <line x="42.62" y="29.96"/>
  5474. <line x="37.46" y="34"/>
  5475. <line x="34.74" y="46.15"/>
  5476. <curve x1="34.38" y1="47.69" x2="32.92" y2="48.96" x3="31.19" y3="48.82"/>
  5477. <curve x1="29.34" y1="48.68" x2="27.98" y2="47.14" x3="28.13" y3="45.35"/>
  5478. <curve x1="28.15" y1="45.21" x2="28.15" y2="45.07" x3="28.2" y3="44.92"/>
  5479. <line x="31.46" y="30.77"/>
  5480. <curve x1="31.63" y1="30.16" x2="31.99" y2="29.61" x3="32.48" y3="29.21"/>
  5481. <line x="47.29" y="17.56"/>
  5482. <close/>
  5483. <move x="99.3" y="89.28"/>
  5484. <curve x1="98.74" y1="89.44" x2="99.76" y2="89.44" x3="99.3" y3="89.44"/>
  5485. <curve x1="98.84" y1="89.16" x2="99.76" y2="88.87" x3="99.3" y3="88.87"/>
  5486. <curve x1="93.27" y1="88.28" x2="85.65" y2="87.97" x3="79.62" y3="88.56"/>
  5487. <curve x1="79.16" y1="88.56" x2="77.31" y2="89.51" x3="76.85" y3="89.51"/>
  5488. <curve x1="71.28" y1="89.79" x2="68.02" y2="89.16" x3="62.91" y3="90.03"/>
  5489. <curve x1="55.01" y1="91.19" x2="47.12" y2="89.44" x3="38.75" y3="90.31"/>
  5490. <curve x1="31.33" y1="90.9" x2="23.43" y2="90.31" x3="15.54" y3="90.62"/>
  5491. <curve x1="11.83" y1="87.98" x2="5.24" y2="89.16" x3="0" y3="89.28"/>
  5492. <line x="0" y="99.04"/>
  5493. <line x="99.3" y="99.04"/>
  5494. <line x="99.3" y="89.28"/>
  5495. <close/>
  5496. </path>
  5497. </background>
  5498. <foreground>
  5499. <fillstroke/>
  5500. </foreground>
  5501. </shape>
  5502. <shape name="View" h="98.88" w="87.42" aspect="variable" strokewidth="inherit">
  5503. <connections>
  5504. <constraint x="0.6" y="0" perimeter="0" name="N"/>
  5505. <constraint x="0.19" y="0.5" perimeter="0" name="W"/>
  5506. <constraint x="1" y="0.5" perimeter="0" name="E"/>
  5507. <constraint x="0" y="0.065" perimeter="0" name="NW"/>
  5508. <constraint x="0.19" y="1" perimeter="0" name="SW"/>
  5509. <constraint x="0.92" y="1" perimeter="0" name="SE"/>
  5510. </connections>
  5511. <background>
  5512. <path>
  5513. <move x="0" y="6.31"/>
  5514. <line x="37.01" y="6.31"/>
  5515. <line x="37.01" y="9.86"/>
  5516. <line x="33.42" y="9.86"/>
  5517. <line x="33.42" y="13.77"/>
  5518. <line x="0" y="16.64"/>
  5519. <line x="0" y="6.31"/>
  5520. <close/>
  5521. <move x="52.54" y="16.88"/>
  5522. <curve x1="57.25" y1="16.88" x2="61.06" y2="13.12" x3="61.06" y3="8.45"/>
  5523. <curve x1="61.06" y1="3.79" x2="57.25" y2="0" x3="52.54" y3="0"/>
  5524. <curve x1="47.81" y1="0" x2="43.99" y2="3.79" x3="43.99" y3="8.45"/>
  5525. <curve x1="43.99" y1="13.13" x2="47.81" y2="16.88" x3="52.54" y3="16.88"/>
  5526. <move x="58.99" y="16.41"/>
  5527. <curve x1="61.43" y1="14.02" x2="65.37" y2="14.02" x3="67.81" y3="16.41"/>
  5528. <line x="86.28" y="34.64"/>
  5529. <curve x1="86.99" y1="35.34" x2="87.42" y2="36.31" x3="87.42" y3="37.36"/>
  5530. <line x="87.42" y="92.07"/>
  5531. <curve x1="87.42" y1="95.84" x2="84.35" y2="98.88" x3="80.54" y3="98.88"/>
  5532. <curve x1="76.73" y1="98.88" x2="73.6" y2="95.84" x3="73.6" y3="92.07"/>
  5533. <line x="73.6" y="46.94"/>
  5534. <line x="56.39" y="29.91"/>
  5535. <line x="49.51" y="36.72"/>
  5536. <curve x1="48.73" y1="37.64" x2="47.57" y2="38.24" x3="46.23" y3="38.24"/>
  5537. <curve x1="45" y1="38.24" x2="43.89" y2="37.72" x3="43.1" y3="36.87"/>
  5538. <line x="31.24" y="25.12"/>
  5539. <curve x1="29.73" y1="23.35" x2="29.86" y2="20.65" x3="31.64" y3="19.16"/>
  5540. <curve x1="33.43" y1="17.67" x2="36.11" y2="17.92" x3="37.62" y3="19.68"/>
  5541. <line x="46.63" y="28.63"/>
  5542. <line x="58.99" y="16.41"/>
  5543. <close/>
  5544. <move x="23.1" y="19"/>
  5545. <curve x1="22.93" y1="18.18" x2="22.2" y2="17.58" x3="21.34" y3="17.58"/>
  5546. <curve x1="20.45" y1="17.58" x2="19.73" y2="18.2" x3="19.57" y3="19.05"/>
  5547. <line x="16.69" y="35.34"/>
  5548. <line x="16.69" y="98.45"/>
  5549. <line x="41.06" y="98.45"/>
  5550. <line x="41.06" y="89.5"/>
  5551. <line x="26.1" y="89.5"/>
  5552. <line x="26" y="35.34"/>
  5553. <line x="23.1" y="19"/>
  5554. <close/>
  5555. </path>
  5556. </background>
  5557. <foreground>
  5558. <fillstroke/>
  5559. </foreground>
  5560. </shape>
  5561. <shape name="Wading" h="98.75" w="99.16" aspect="variable" strokewidth="inherit">
  5562. <connections>
  5563. <constraint x="0.5" y="0" perimeter="0" name="N"/>
  5564. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  5565. <constraint x="0.3" y="0.5" perimeter="0" name="W"/>
  5566. <constraint x="0.695" y="0.5" perimeter="0" name="E"/>
  5567. <constraint x="0" y="1" perimeter="0" name="SW"/>
  5568. <constraint x="1" y="1" perimeter="0" name="SE"/>
  5569. </connections>
  5570. <background>
  5571. <path>
  5572. <move x="49.53" y="18.86"/>
  5573. <curve x1="54.79" y1="18.86" x2="59.08" y2="14.63" x3="59.08" y3="9.43"/>
  5574. <curve x1="59.08" y1="4.23" x2="54.79" y2="0" x3="49.53" y3="0"/>
  5575. <curve x1="44.27" y1="0" x2="39.98" y2="4.23" x3="39.98" y3="9.43"/>
  5576. <curve x1="39.98" y1="14.63" x2="44.26" y2="18.86" x3="49.53" y3="18.86"/>
  5577. <close/>
  5578. <move x="99.16" y="98.75"/>
  5579. <curve x1="97.01" y1="98.75" x2="94.94" y2="98.31" x3="93.06" y3="97.53"/>
  5580. <curve x1="91.16" y1="96.7" x2="89.01" y2="96.22" x3="86.76" y3="96.22"/>
  5581. <curve x1="84.54" y1="96.22" x2="82.39" y2="96.7" x3="80.49" y3="97.53"/>
  5582. <curve x1="78.64" y1="98.31" x2="76.54" y2="98.75" x3="74.37" y3="98.75"/>
  5583. <curve x1="72.22" y1="98.75" x2="70.12" y2="98.31" x3="68.27" y3="97.53"/>
  5584. <curve x1="66.37" y1="96.7" x2="64.23" y2="96.22" x3="61.98" y3="96.22"/>
  5585. <curve x1="59.76" y1="96.22" x2="57.61" y2="96.7" x3="55.71" y3="97.53"/>
  5586. <curve x1="53.83" y1="98.31" x2="51.76" y2="98.75" x3="49.59" y3="98.75"/>
  5587. <curve x1="47.44" y1="98.75" x2="45.34" y2="98.31" x3="43.49" y3="97.53"/>
  5588. <curve x1="41.59" y1="96.7" x2="39.44" y2="96.22" x3="37.19" y3="96.22"/>
  5589. <curve x1="34.97" y1="96.22" x2="32.82" y2="96.7" x3="30.89" y3="97.53"/>
  5590. <curve x1="29.03" y1="98.31" x2="26.96" y2="98.75" x3="24.8" y3="98.75"/>
  5591. <curve x1="22.63" y1="98.75" x2="20.55" y2="98.31" x3="18.7" y3="97.53"/>
  5592. <curve x1="16.8" y1="96.7" x2="14.65" y2="96.22" x3="12.4" y3="96.22"/>
  5593. <curve x1="10.15" y1="96.22" x2="8" y2="96.7" x3="6.1" y3="97.53"/>
  5594. <curve x1="4.25" y1="98.31" x2="2.18" y2="98.75" x3="0" y3="98.75"/>
  5595. <line x="0" y="90.24"/>
  5596. <curve x1="2.17" y1="90.24" x2="4.25" y2="89.78" x3="6.1" y3="89"/>
  5597. <curve x1="8" y1="88.17" x2="10.15" y2="87.69" x3="12.4" y3="87.69"/>
  5598. <curve x1="14.65" y1="87.69" x2="16.8" y2="88.17" x3="18.7" y3="89"/>
  5599. <curve x1="20.55" y1="89.78" x2="22.63" y2="90.24" x3="24.8" y3="90.24"/>
  5600. <curve x1="26.96" y1="90.24" x2="29.04" y2="89.78" x3="30.89" y3="89"/>
  5601. <curve x1="32.82" y1="88.17" x2="34.96" y2="87.69" x3="37.19" y3="87.69"/>
  5602. <curve x1="39.44" y1="87.69" x2="41.59" y2="88.17" x3="43.49" y3="89"/>
  5603. <curve x1="45.34" y1="89.78" x2="47.44" y2="90.24" x3="49.59" y3="90.24"/>
  5604. <curve x1="51.76" y1="90.24" x2="53.84" y2="89.78" x3="55.71" y3="89"/>
  5605. <curve x1="57.61" y1="88.17" x2="59.76" y2="87.69" x3="61.98" y3="87.69"/>
  5606. <curve x1="64.23" y1="87.69" x2="66.38" y2="88.17" x3="68.27" y3="89"/>
  5607. <curve x1="70.12" y1="89.78" x2="72.22" y2="90.24" x3="74.37" y3="90.24"/>
  5608. <curve x1="76.54" y1="90.24" x2="78.64" y2="89.78" x3="80.49" y3="89"/>
  5609. <curve x1="82.39" y1="88.17" x2="84.54" y2="87.69" x3="86.76" y3="87.69"/>
  5610. <curve x1="89.01" y1="87.69" x2="91.16" y2="88.17" x3="93.06" y3="89"/>
  5611. <curve x1="94.94" y1="89.78" x2="97.01" y2="90.24" x3="99.16" y3="90.24"/>
  5612. <line x="99.16" y="98.75"/>
  5613. <close/>
  5614. <move x="59.84" y="82.14"/>
  5615. <curve x1="58.28" y1="82.3" x2="56.79" y2="82.76" x3="55.41" y3="83.38"/>
  5616. <curve x1="54.08" y1="83.95" x2="52.64" y2="84.35" x3="51.15" y3="84.51"/>
  5617. <line x="51.15" y="84.51"/>
  5618. <line x="51.15" y="61.23"/>
  5619. <line x="59.84" y="55.57"/>
  5620. <line x="59.84" y="82.14"/>
  5621. <close/>
  5622. <move x="47.92" y="84.56"/>
  5623. <curve x1="46.5" y1="84.38" x2="45.15" y2="83.94" x3="43.89" y3="83.39"/>
  5624. <curve x1="42.4" y1="82.7" x2="40.79" y2="82.26" x3="39.07" y3="82.13"/>
  5625. <line x="39.09" y="74.75"/>
  5626. <line x="26.98" y="74.75"/>
  5627. <line x="24.38" y="63.21"/>
  5628. <curve x1="24.33" y1="62.82" x2="24.29" y2="62.5" x3="24.29" y3="62.1"/>
  5629. <curve x1="24.29" y1="58.37" x2="26.69" y2="55.18" x3="30.01" y3="53.93"/>
  5630. <line x="30.03" y="30.54"/>
  5631. <curve x1="30.03" y1="24.93" x2="34.53" y2="20.42" x3="40.09" y3="20.42"/>
  5632. <line x="58.77" y="20.44"/>
  5633. <curve x1="64.9" y1="20.44" x2="68.97" y2="25.5" x3="68.97" y3="30.68"/>
  5634. <line x="68.97" y="55.94"/>
  5635. <curve x1="68.99" y1="60.63" x2="62.8" y2="60.63" x3="62.8" y3="55.94"/>
  5636. <line x="62.8" y="32.5"/>
  5637. <line x="59.86" y="32.5"/>
  5638. <line x="59.84" y="48.81"/>
  5639. <line x="39.21" y="48.81"/>
  5640. <line x="39.21" y="32.5"/>
  5641. <line x="36.25" y="32.5"/>
  5642. <line x="36.25" y="53.99"/>
  5643. <curve x1="36.9" y1="54.22" x2="37.51" y2="54.52" x3="38.07" y3="54.89"/>
  5644. <line x="47.95" y="61.24"/>
  5645. <line x="47.92" y="84.56"/>
  5646. <close/>
  5647. <move x="27.61" y="62.11"/>
  5648. <line x="38.63" y="62.11"/>
  5649. <curve x1="38.63" y1="60.13" x2="37.58" y2="58.43" x3="35.97" y3="57.46"/>
  5650. <curve x1="34.94" y1="60.11" x2="31.26" y2="60.11" x3="30.26" y3="57.44"/>
  5651. <curve x1="28.68" y1="58.38" x2="27.61" y2="60.13" x3="27.61" y3="62.11"/>
  5652. <close/>
  5653. </path>
  5654. </background>
  5655. <foreground>
  5656. <fillstroke/>
  5657. </foreground>
  5658. </shape>
  5659. <shape name="Waterskiing" h="98.75" w="99.26" aspect="variable" strokewidth="inherit">
  5660. <connections>
  5661. <constraint x="0.45" y="0.185" perimeter="0" name="N"/>
  5662. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  5663. <constraint x="0.1" y="0.5" perimeter="0" name="W"/>
  5664. <constraint x="0.99" y="0.245" perimeter="0" name="E"/>
  5665. <constraint x="0.04" y="0.02" perimeter="0" name="NW"/>
  5666. <constraint x="0" y="1" perimeter="0" name="SW"/>
  5667. <constraint x="0.99" y="1" perimeter="0" name="SE"/>
  5668. </connections>
  5669. <background>
  5670. <path>
  5671. <move x="59.16" y="87.31"/>
  5672. <curve x1="59.87" y1="87.19" x2="60.58" y2="87.14" x3="61.31" y3="87.14"/>
  5673. <curve x1="63.53" y1="87.14" x2="65.66" y2="87.65" x3="67.54" y3="88.52"/>
  5674. <curve x1="69.37" y1="89.32" x2="71.43" y2="89.8" x3="73.58" y3="89.8"/>
  5675. <curve x1="75.73" y1="89.8" x2="77.81" y2="89.32" x3="79.64" y3="88.52"/>
  5676. <curve x1="81.52" y1="87.65" x2="83.65" y2="87.14" x3="85.85" y3="87.14"/>
  5677. <curve x1="88.07" y1="87.14" x2="90.2" y2="87.65" x3="92.08" y3="88.52"/>
  5678. <curve x1="93.91" y1="89.32" x2="95.99" y2="89.8" x3="98.11" y3="89.8"/>
  5679. <line x="98.11" y="98.75"/>
  5680. <curve x1="95.98" y1="98.75" x2="93.91" y2="98.27" x3="92.08" y3="97.45"/>
  5681. <curve x1="90.2" y1="96.61" x2="88.07" y2="96.1" x3="85.85" y3="96.1"/>
  5682. <curve x1="83.65" y1="96.1" x2="81.53" y2="96.61" x3="79.64" y3="97.45"/>
  5683. <curve x1="77.81" y1="98.27" x2="75.73" y2="98.75" x3="73.58" y3="98.75"/>
  5684. <curve x1="71.43" y1="98.75" x2="69.38" y2="98.27" x3="67.54" y3="97.45"/>
  5685. <curve x1="65.66" y1="96.61" x2="63.53" y2="96.1" x3="61.31" y3="96.1"/>
  5686. <curve x1="59.11" y1="96.1" x2="56.98" y2="96.61" x3="55.08" y3="97.45"/>
  5687. <curve x1="53.25" y1="98.27" x2="51.19" y2="98.75" x3="49.04" y3="98.75"/>
  5688. <curve x1="46.89" y1="98.75" x2="44.84" y2="98.27" x3="43" y3="97.45"/>
  5689. <curve x1="41.12" y1="96.61" x2="38.99" y2="96.1" x3="36.77" y3="96.1"/>
  5690. <curve x1="34.55" y1="96.1" x2="32.42" y2="96.61" x3="30.54" y3="97.45"/>
  5691. <curve x1="28.71" y1="98.27" x2="26.65" y2="98.75" x3="24.53" y3="98.75"/>
  5692. <curve x1="22.38" y1="98.75" x2="20.33" y2="98.27" x3="18.49" y3="97.45"/>
  5693. <curve x1="16.58" y1="96.61" x2="14.46" y2="96.1" x3="12.26" y3="96.1"/>
  5694. <curve x1="10.03" y1="96.1" x2="7.91" y2="96.61" x3="6.03" y3="97.45"/>
  5695. <curve x1="4.2" y1="98.27" x2="2.15" y2="98.75" x3="0" y3="98.75"/>
  5696. <line x="0" y="89.8"/>
  5697. <curve x1="2.15" y1="89.8" x2="4.2" y2="89.32" x3="6.04" y3="88.52"/>
  5698. <curve x1="7.92" y1="87.65" x2="10.05" y2="87.14" x3="12.27" y3="87.14"/>
  5699. <curve x1="14.47" y1="87.14" x2="16.59" y2="87.65" x3="18.5" y3="88.52"/>
  5700. <curve x1="20.33" y1="89.32" x2="22.39" y2="89.8" x3="24.54" y3="89.8"/>
  5701. <curve x1="26.67" y1="89.8" x2="28.72" y2="89.32" x3="30.55" y3="88.52"/>
  5702. <curve x1="31.63" y1="88.04" x2="32.75" y2="87.65" x3="33.92" y3="87.43"/>
  5703. <line x="91.1" y="77.37"/>
  5704. <curve x1="92.96" y1="76.94" x2="95.48" y2="75.66" x3="96.35" y3="73.46"/>
  5705. <curve x1="96.52" y1="73.05" x2="97.13" y2="72.93" x3="97.65" y3="72.95"/>
  5706. <curve x1="98.58" y1="73" x2="99.26" y2="73.79" x3="99.26" y3="74.71"/>
  5707. <curve x1="99.26" y1="76.16" x2="98.14" y2="80.21" x3="91.88" y3="81.47"/>
  5708. <line x="59.16" y="87.31"/>
  5709. <close/>
  5710. <move x="9.55" y="16.34"/>
  5711. <curve x1="14.12" y1="16.34" x2="17.83" y2="12.67" x3="17.83" y3="8.16"/>
  5712. <curve x1="17.83" y1="3.65" x2="14.12" y2="0" x3="9.55" y3="0"/>
  5713. <curve x1="4.98" y1="0" x2="1.29" y2="3.64" x3="1.29" y3="8.16"/>
  5714. <curve x1="1.29" y1="12.68" x2="4.98" y2="16.34" x3="9.55" y3="16.34"/>
  5715. <close/>
  5716. <move x="33.6" y="82.36"/>
  5717. <curve x1="34.02" y1="84.17" x2="36.24" y2="85.91" x3="38.56" y3="85.91"/>
  5718. <line x="38.54" y="85.93"/>
  5719. <curve x1="41.45" y1="85.93" x2="43.82" y2="83.61" x3="43.82" y3="80.72"/>
  5720. <line x="43.72" y="79.88"/>
  5721. <line x="37.41" y="53.17"/>
  5722. <curve x1="36.87" y1="51.46" x2="35.23" y2="49.84" x3="33.55" y3="49.16"/>
  5723. <line x="33.55" y="49.16"/>
  5724. <line x="24.29" y="43.66"/>
  5725. <line x="20.06" y="25.66"/>
  5726. <line x="46.11" y="25.61"/>
  5727. <curve x1="48.24" y1="25.61" x2="49.95" y2="23.92" x3="49.95" y3="21.82"/>
  5728. <curve x1="49.95" y1="19.72" x2="48.24" y2="18.01" x3="46.11" y3="18.01"/>
  5729. <line x="8.5" y="18.01"/>
  5730. <curve x1="4.74" y1="18.01" x2="3" y2="20.66" x3="3.44" y3="22.98"/>
  5731. <line x="8.77" y="46.85"/>
  5732. <curve x1="9.19" y1="49.09" x2="10.68" y2="50.98" x3="12.68" y3="51.97"/>
  5733. <line x="12.8" y="52.02"/>
  5734. <line x="28.29" y="61.02"/>
  5735. <line x="33.6" y="82.36"/>
  5736. <close/>
  5737. </path>
  5738. </background>
  5739. <foreground>
  5740. <fillstroke/>
  5741. <rect x="52.2" y="22.81" w="46.04" h="2.85"/>
  5742. <fillstroke/>
  5743. </foreground>
  5744. </shape>
  5745. <shape name="Whale Viewing" h="99.49" w="98.95" aspect="variable" strokewidth="inherit">
  5746. <connections>
  5747. <constraint x="0.59" y="0" perimeter="0" name="N"/>
  5748. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  5749. <constraint x="0.08" y="0.38" perimeter="0" name="W"/>
  5750. <constraint x="0.72" y="0.5" perimeter="0" name="E"/>
  5751. <constraint x="0" y="1" perimeter="0" name="SW"/>
  5752. <constraint x="1" y="1" perimeter="0" name="SE"/>
  5753. </connections>
  5754. <background>
  5755. <path>
  5756. <move x="98.95" y="99.49"/>
  5757. <curve x1="96.78" y1="99.49" x2="94.71" y2="99.01" x3="92.86" y3="98.21"/>
  5758. <curve x1="90.94" y1="97.35" x2="88.79" y2="96.85" x3="86.58" y3="96.85"/>
  5759. <curve x1="84.34" y1="96.85" x2="82.19" y2="97.35" x3="80.3" y3="98.21"/>
  5760. <curve x1="78.45" y1="99.02" x2="76.36" y2="99.49" x3="74.21" y3="99.49"/>
  5761. <curve x1="72.04" y1="99.49" x2="69.95" y2="99.01" x3="68.1" y3="98.21"/>
  5762. <curve x1="66.2" y1="97.35" x2="64.06" y2="96.85" x3="61.82" y3="96.85"/>
  5763. <curve x1="59.6" y1="96.85" x2="57.46" y2="97.35" x3="55.56" y3="98.21"/>
  5764. <curve x1="53.71" y1="99.02" x2="51.62" y2="99.49" x3="49.46" y3="99.49"/>
  5765. <curve x1="47.29" y1="99.49" x2="45.22" y2="99.01" x3="43.37" y3="98.21"/>
  5766. <curve x1="41.47" y1="97.35" x2="39.33" y2="96.85" x3="37.09" y3="96.85"/>
  5767. <curve x1="34.87" y1="96.85" x2="32.73" y2="97.35" x3="30.81" y3="98.21"/>
  5768. <curve x1="28.96" y1="99.02" x2="26.89" y2="99.49" x3="24.74" y3="99.49"/>
  5769. <curve x1="22.57" y1="99.49" x2="20.5" y2="99.01" x3="18.65" y3="98.21"/>
  5770. <curve x1="16.75" y1="97.35" x2="14.61" y2="96.85" x3="12.37" y3="96.85"/>
  5771. <curve x1="10.15" y1="96.85" x2="8.01" y2="97.35" x3="6.09" y3="98.21"/>
  5772. <curve x1="4.24" y1="99.02" x2="2.17" y2="99.49" x3="0" y3="99.49"/>
  5773. <line x="0" y="90.67"/>
  5774. <curve x1="2.17" y1="90.67" x2="4.24" y2="90.19" x3="6.09" y3="89.39"/>
  5775. <curve x1="8.01" y1="88.56" x2="10.16" y2="88.06" x3="12.37" y3="88.06"/>
  5776. <curve x1="14.61" y1="88.06" x2="16.76" y2="88.56" x3="18.65" y3="89.39"/>
  5777. <curve x1="20.5" y1="90.2" x2="22.57" y2="90.67" x3="24.74" y3="90.67"/>
  5778. <curve x1="26.9" y1="90.67" x2="28.97" y2="90.19" x3="30.81" y3="89.39"/>
  5779. <curve x1="32.73" y1="88.56" x2="34.88" y2="88.06" x3="37.09" y3="88.06"/>
  5780. <curve x1="39.33" y1="88.06" x2="41.48" y2="88.56" x3="43.37" y3="89.39"/>
  5781. <curve x1="45.22" y1="90.2" x2="47.29" y2="90.67" x3="49.46" y3="90.67"/>
  5782. <curve x1="51.63" y1="90.67" x2="53.72" y2="90.19" x3="55.56" y3="89.39"/>
  5783. <curve x1="57.46" y1="88.56" x2="59.6" y2="88.06" x3="61.82" y3="88.06"/>
  5784. <curve x1="64.06" y1="88.06" x2="66.21" y2="88.56" x3="68.1" y3="89.39"/>
  5785. <curve x1="69.95" y1="90.2" x2="72.04" y2="90.67" x3="74.21" y3="90.67"/>
  5786. <curve x1="76.35" y1="90.67" x2="78.45" y2="90.19" x3="80.3" y3="89.39"/>
  5787. <curve x1="82.2" y1="88.56" x2="84.34" y2="88.06" x3="86.58" y3="88.06"/>
  5788. <curve x1="88.8" y1="88.06" x2="90.94" y2="88.56" x3="92.86" y3="89.39"/>
  5789. <curve x1="94.71" y1="90.2" x2="96.78" y2="90.67" x3="98.95" y3="90.67"/>
  5790. <line x="98.95" y="99.49"/>
  5791. <close/>
  5792. <move x="58.98" y="81.28"/>
  5793. <curve x1="59.92" y1="81.09" x2="60.85" y2="80.99" x3="61.81" y3="80.99"/>
  5794. <curve x1="64.05" y1="80.99" x2="66.2" y2="81.49" x3="68.09" y3="82.32"/>
  5795. <curve x1="69.94" y1="83.13" x2="72.03" y2="83.6" x3="74.2" y3="83.6"/>
  5796. <curve x1="76.34" y1="83.6" x2="78.44" y2="83.12" x3="80.29" y3="82.32"/>
  5797. <curve x1="81.59" y1="81.75" x2="83" y2="81.3" x3="84.5" y3="81.11"/>
  5798. <curve x1="83.69" y1="57.45" x2="58.12" y2="36.33" x3="56.91" y3="35.24"/>
  5799. <curve x1="55.65" y1="34.15" x2="54.49" y2="31.74" x3="55.31" y3="28.91"/>
  5800. <line x="61.42" y="9.41"/>
  5801. <curve x1="62.5" y1="6.39" x2="61.96" y2="2.35" x3="60.46" y3="1.14"/>
  5802. <curve x1="59.6" y1="0.47" x2="57.77" y2="0" x3="56.54" y3="1.35"/>
  5803. <line x="40.01" y="19.45"/>
  5804. <curve x1="36.39" y1="23.16" x2="39.42" y2="27.13" x3="39.35" y3="27.11"/>
  5805. <curve x1="33.73" y1="25.16" x2="27.13" y2="26.47" x3="23.12" y3="28.06"/>
  5806. <line x="9.47" y="34.74"/>
  5807. <curve x1="8.11" y1="35.29" x2="7.52" y2="36.95" x3="8.24" y3="38.07"/>
  5808. <curve x1="10.51" y1="41.56" x2="18.02" y2="41.59" x3="33.68" y3="39.95"/>
  5809. <curve x1="58.98" y1="37.33" x2="59" y2="76.45" x3="58.98" y3="81.28"/>
  5810. <close/>
  5811. </path>
  5812. </background>
  5813. <foreground>
  5814. <fillstroke/>
  5815. </foreground>
  5816. </shape>
  5817. <shape name="Windsurfing" h="98.87" w="99.16" aspect="variable" strokewidth="inherit">
  5818. <connections>
  5819. <constraint x="0.28" y="0" perimeter="0" name="N"/>
  5820. <constraint x="0.5" y="1" perimeter="0" name="S"/>
  5821. <constraint x="0.07" y="0.44" perimeter="0" name="W"/>
  5822. <constraint x="0.92" y="0.5" perimeter="0" name="E"/>
  5823. <constraint x="0" y="1" perimeter="0" name="SW"/>
  5824. <constraint x="1" y="1" perimeter="0" name="SE"/>
  5825. </connections>
  5826. <background>
  5827. <path>
  5828. <move x="99.16" y="98.87"/>
  5829. <curve x1="97.01" y1="98.87" x2="94.91" y2="98.4" x3="93.06" y3="97.62"/>
  5830. <curve x1="91.16" y1="96.78" x2="89.01" y2="96.3" x3="86.77" y3="96.3"/>
  5831. <curve x1="84.55" y1="96.3" x2="82.4" y2="96.78" x3="80.5" y3="97.62"/>
  5832. <curve x1="78.62" y1="98.4" x2="76.54" y2="98.87" x3="74.37" y3="98.87"/>
  5833. <curve x1="72.2" y1="98.87" x2="70.13" y2="98.4" x3="68.27" y3="97.62"/>
  5834. <curve x1="66.37" y1="96.78" x2="64.22" y2="96.3" x3="61.97" y3="96.3"/>
  5835. <curve x1="59.75" y1="96.3" x2="57.6" y2="96.78" x3="55.68" y3="97.62"/>
  5836. <curve x1="53.83" y1="98.4" x2="51.76" y2="98.87" x3="49.59" y3="98.87"/>
  5837. <curve x1="47.42" y1="98.87" x2="45.34" y2="98.4" x3="43.48" y3="97.62"/>
  5838. <curve x1="41.57" y1="96.78" x2="39.43" y2="96.3" x3="37.18" y3="96.3"/>
  5839. <curve x1="34.94" y1="96.3" x2="32.81" y2="96.78" x3="30.9" y3="97.62"/>
  5840. <curve x1="29.04" y1="98.4" x2="26.96" y2="98.87" x3="24.79" y3="98.87"/>
  5841. <curve x1="22.62" y1="98.87" x2="20.55" y2="98.4" x3="18.68" y3="97.62"/>
  5842. <curve x1="16.78" y1="96.78" x2="14.63" y2="96.3" x3="12.4" y3="96.3"/>
  5843. <curve x1="10.15" y1="96.3" x2="8.02" y2="96.78" x3="6.11" y3="97.62"/>
  5844. <curve x1="4.25" y1="98.4" x2="2.18" y2="98.87" x3="0" y3="98.87"/>
  5845. <line x="0" y="90.25"/>
  5846. <curve x1="2.17" y1="90.25" x2="4.24" y2="89.79" x3="6.11" y3="89"/>
  5847. <curve x1="8.01" y1="88.18" x2="10.15" y2="87.7" x3="12.4" y3="87.7"/>
  5848. <curve x1="14.63" y1="87.7" x2="16.78" y2="88.18" x3="18.68" y3="89"/>
  5849. <curve x1="20.55" y1="89.79" x2="22.62" y2="90.25" x3="24.79" y3="90.25"/>
  5850. <curve x1="26.96" y1="90.25" x2="29.04" y2="89.79" x3="30.9" y3="89"/>
  5851. <curve x1="32.81" y1="88.18" x2="34.95" y2="87.7" x3="37.18" y3="87.7"/>
  5852. <curve x1="39.43" y1="87.7" x2="41.56" y2="88.18" x3="43.48" y3="89"/>
  5853. <curve x1="45.34" y1="89.79" x2="47.41" y2="90.25" x3="49.59" y3="90.25"/>
  5854. <curve x1="51.76" y1="90.25" x2="53.83" y2="89.79" x3="55.69" y3="89"/>
  5855. <curve x1="57.61" y1="88.18" x2="59.76" y2="87.7" x3="61.98" y3="87.7"/>
  5856. <curve x1="64.23" y1="87.7" x2="66.38" y2="88.18" x3="68.28" y3="89"/>
  5857. <curve x1="70.13" y1="89.79" x2="72.2" y2="90.25" x3="74.38" y3="90.25"/>
  5858. <curve x1="76.56" y1="90.25" x2="78.63" y2="89.79" x3="80.5" y3="89"/>
  5859. <curve x1="82.4" y1="88.18" x2="84.55" y2="87.7" x3="86.77" y3="87.7"/>
  5860. <curve x1="89.01" y1="87.7" x2="91.16" y2="88.18" x3="93.06" y3="89"/>
  5861. <curve x1="94.91" y1="89.79" x2="97.01" y2="90.25" x3="99.16" y3="90.25"/>
  5862. <line x="99.16" y="98.87"/>
  5863. <close/>
  5864. <move x="12.77" y="49.06"/>
  5865. <curve x1="15.89" y1="49.06" x2="18.43" y2="46.53" x3="18.43" y3="43.41"/>
  5866. <curve x1="18.43" y1="40.29" x2="15.9" y2="37.77" x3="12.77" y3="37.77"/>
  5867. <curve x1="9.66" y1="37.77" x2="7.12" y2="40.3" x3="7.12" y3="43.41"/>
  5868. <curve x1="7.12" y1="46.52" x2="9.65" y2="49.06" x3="12.77" y3="49.06"/>
  5869. <close/>
  5870. <move x="37.61" y="74.65"/>
  5871. <line x="21.44" y="74.65"/>
  5872. <curve x1="19.06" y1="74.65" x2="16.99" y2="73.24" x3="16.06" y3="71.19"/>
  5873. <line x="10.09" y="57.57"/>
  5874. <curve x1="9.97" y1="57.11" x2="9.91" y2="56.64" x3="9.91" y3="56.16"/>
  5875. <curve x1="9.91" y1="52.88" x2="12.56" y2="50.24" x3="15.83" y3="50.24"/>
  5876. <line x="28.96" y="50.22"/>
  5877. <line x="37.97" y="46.13"/>
  5878. <curve x1="38.11" y1="46.03" x2="38.48" y2="45.95" x3="38.88" y3="45.95"/>
  5879. <curve x1="40.43" y1="45.95" x2="41.69" y2="47.23" x3="41.69" y3="48.76"/>
  5880. <curve x1="41.69" y1="49.71" x2="41.21" y2="50.57" x3="40.49" y3="51.08"/>
  5881. <line x="30.69" y="55.49"/>
  5882. <curve x1="30.04" y1="56" x2="28.81" y2="56.07" x3="28.81" y3="56.07"/>
  5883. <line x="22.91" y="56.07"/>
  5884. <line x="27.86" y="67.05"/>
  5885. <line x="38.78" y="67.05"/>
  5886. <line x="38.78" y="67.05"/>
  5887. <curve x1="39.86" y1="67.05" x2="40.62" y2="67.42" x3="41.28" y3="68.01"/>
  5888. <line x="51.99" y="78.18"/>
  5889. <line x="51.99" y="78.18"/>
  5890. <curve x1="53.48" y1="79.58" x2="53.57" y2="81.92" x3="52.18" y3="83.43"/>
  5891. <curve x1="50.76" y1="84.91" x2="48.41" y2="85.01" x3="46.93" y3="83.62"/>
  5892. <line x="46.93" y="83.62"/>
  5893. <line x="37.61" y="74.65"/>
  5894. <close/>
  5895. <move x="87.97" y="56.2"/>
  5896. <curve x1="88.18" y1="56.55" x2="88.69" y2="56.69" x3="89.16" y3="56.69"/>
  5897. <curve x1="90.07" y1="56.69" x2="90.81" y2="55.95" x3="90.81" y3="55.02"/>
  5898. <curve x1="90.81" y1="54.58" x2="90.59" y2="54.18" x3="90.39" y3="53.81"/>
  5899. <curve x1="80.29" y1="34.54" x2="53.02" y2="40.27" x3="49.68" y3="41.53"/>
  5900. <curve x1="49.12" y1="41.74" x2="48.79" y2="42.37" x3="48.79" y3="42.99"/>
  5901. <curve x1="48.79" y1="43.9" x2="49.53" y2="44.64" x3="50.44" y3="44.64"/>
  5902. <curve x1="50.72" y1="44.64" x2="50.86" y2="44.62" x3="51.09" y3="44.54"/>
  5903. <curve x1="77.85" y1="38.54" x2="86.56" y2="53.76" x3="87.97" y3="56.2"/>
  5904. <close/>
  5905. <move x="92.62" y="57.94"/>
  5906. <line x="58.41" y="79.51"/>
  5907. <line x="27.27" y="0"/>
  5908. <curve x1="55.14" y1="3.69" x2="90.57" y2="25.33" x3="92.62" y3="57.94"/>
  5909. <close/>
  5910. </path>
  5911. </background>
  5912. <foreground>
  5913. <fillstroke/>
  5914. </foreground>
  5915. </shape>
  5916. <shape name="Wood Gathering" h="98.75" w="92.08" aspect="variable" strokewidth="inherit">
  5917. <connections>
  5918. <constraint x="0.34" y="0" perimeter="0" name="N"/>
  5919. <constraint x="0.4" y="1" perimeter="0" name="S"/>
  5920. <constraint x="0.12" y="0.5" perimeter="0" name="W"/>
  5921. <constraint x="0.93" y="0.465" perimeter="0" name="E"/>
  5922. <constraint x="0.84" y="0.075" perimeter="0" name="NE"/>
  5923. </connections>
  5924. <background>
  5925. <path>
  5926. <move x="31.22" y="16.11"/>
  5927. <curve x1="26.72" y1="16.11" x2="23.07" y2="12.49" x3="23.07" y3="8.04"/>
  5928. <curve x1="23.07" y1="3.6" x2="26.71" y2="0" x3="31.22" y3="0"/>
  5929. <curve x1="35.73" y1="0" x2="39.39" y2="3.6" x3="39.39" y3="8.05"/>
  5930. <curve x1="39.39" y1="12.49" x2="35.72" y2="16.11" x3="31.22" y3="16.11"/>
  5931. <close/>
  5932. <move x="91.74" y="26.37"/>
  5933. <curve x1="91.38" y1="26.02" x2="90.84" y2="26.02" x3="90.48" y3="26.37"/>
  5934. <line x="85.21" y="31.57"/>
  5935. <line x="85.21" y="26.3"/>
  5936. <curve x1="85.21" y1="25.95" x2="84.9" y2="25.64" x3="84.54" y3="25.64"/>
  5937. <curve x1="84.16" y1="25.64" x2="83.87" y2="25.95" x3="83.87" y3="26.3"/>
  5938. <line x="83.87" y="31.64"/>
  5939. <line x="71.56" y="43.81"/>
  5940. <line x="61.12" y="43.81"/>
  5941. <curve x1="61.12" y1="43.81" x2="63.85" y2="41.12" x3="66.65" y3="38.35"/>
  5942. <line x="68.27" y="38.35"/>
  5943. <curve x1="70.01" y1="38.35" x2="71.44" y2="36.96" x3="71.44" y3="35.27"/>
  5944. <curve x1="71.44" y1="34.81" x2="71.13" y2="34.49" x3="70.95" y3="34.1"/>
  5945. <curve x1="71.82" y1="33.23" x2="72.49" y2="32.56" x3="72.63" y3="32.42"/>
  5946. <curve x1="73.3" y1="31.78" x2="73.32" y2="30.75" x3="73.32" y3="30.75"/>
  5947. <line x="73.32" y="24.99"/>
  5948. <line x="82.28" y="17.98"/>
  5949. <line x="88.47" y="17.98"/>
  5950. <curve x1="88.83" y1="17.98" x2="89.11" y2="17.72" x3="89.11" y3="17.37"/>
  5951. <curve x1="89.11" y1="17.04" x2="88.82" y2="16.71" x3="88.47" y3="16.71"/>
  5952. <line x="82.49" y="16.71"/>
  5953. <line x="88.21" y="12.07"/>
  5954. <curve x1="88.54" y1="11.74" x2="88.59" y2="11.25" x3="88.26" y3="10.92"/>
  5955. <curve x1="87.93" y1="10.59" x2="87.38" y2="10.59" x3="87.04" y3="10.92"/>
  5956. <line x="78.1" y="17.98"/>
  5957. <line x="78.1" y="7.99"/>
  5958. <curve x1="78.1" y1="7.54" x2="77.77" y2="7.21" x3="77.31" y3="7.21"/>
  5959. <curve x1="76.86" y1="7.21" x2="76.5" y2="7.54" x3="76.5" y3="7.99"/>
  5960. <line x="76.5" y="19.14"/>
  5961. <line x="72.16" y="22.76"/>
  5962. <line x="72.16" y="16.31"/>
  5963. <curve x1="72.16" y1="15.72" x2="71.68" y2="15.2" x3="71.09" y3="15.2"/>
  5964. <curve x1="70.47" y1="15.2" x2="69.97" y2="15.72" x3="69.97" y3="16.31"/>
  5965. <line x="69.97" y="29.44"/>
  5966. <line x="67.25" y="32.12"/>
  5967. <curve x1="64.64" y1="32.12" x2="57.29" y2="32.12" x3="55.53" y3="32.12"/>
  5968. <curve x1="54.15" y1="30.76" x2="46.09" y2="22.83" x3="44.09" y3="20.85"/>
  5969. <curve x1="43.97" y1="20.71" x2="43.3" y2="20.1" x3="43.14" y3="20"/>
  5970. <curve x1="41.38" y1="18.61" x2="39.14" y2="17.76" x3="36.71" y3="17.76"/>
  5971. <line x="21.66" y="17.76"/>
  5972. <curve x1="15.32" y1="17.76" x2="11.1" y2="23.01" x3="11.1" y3="28.35"/>
  5973. <line x="11.1" y="51.76"/>
  5974. <line x="0.55" y="62.2"/>
  5975. <curve x1="0" y1="62.74" x2="0" y2="63.61" x3="0.55" y3="64.15"/>
  5976. <curve x1="1.1" y1="64.69" x2="2" y2="64.71" x3="2.55" y3="64.15"/>
  5977. <line x="7.1" y="59.66"/>
  5978. <line x="7.1" y="64.46"/>
  5979. <line x="1.81" y="69.68"/>
  5980. <curve x1="1.48" y1="70.01" x2="1.48" y2="70.53" x3="1.81" y3="70.86"/>
  5981. <curve x1="2.14" y1="71.19" x2="2.69" y2="71.19" x3="3.02" y3="70.86"/>
  5982. <line x="7.09" y="66.81"/>
  5983. <line x="7.11" y="78.97"/>
  5984. <curve x1="7.11" y1="79.37" x2="7.44" y2="79.7" x3="7.85" y3="79.7"/>
  5985. <curve x1="8.28" y1="79.7" x2="8.61" y2="79.37" x3="8.61" y3="78.97"/>
  5986. <line x="8.59" y="72.81"/>
  5987. <line x="11.78" y="75.96"/>
  5988. <curve x1="11.99" y1="76.17" x2="12.35" y2="76.17" x3="12.57" y3="75.96"/>
  5989. <curve x1="12.78" y1="75.75" x2="12.78" y2="75.4" x3="12.57" y3="75.18"/>
  5990. <line x="9.35" y="71.98"/>
  5991. <line x="9.35" y="57.45"/>
  5992. <line x="11.82" y="55"/>
  5993. <curve x1="13.39" y1="57.48" x2="17.47" y2="56.92" x3="17.47" y3="52.98"/>
  5994. <line x="17.47" y="49.42"/>
  5995. <line x="20.5" y="46.42"/>
  5996. <line x="20.52" y="94.23"/>
  5997. <curve x1="20.52" y1="96.72" x2="22.57" y2="98.75" x3="25.1" y3="98.75"/>
  5998. <curve x1="27.63" y1="98.75" x2="29.67" y2="96.73" x3="29.67" y3="94.23"/>
  5999. <line x="29.67" y="56.35"/>
  6000. <line x="32.72" y="56.35"/>
  6001. <line x="32.72" y="94.23"/>
  6002. <curve x1="32.72" y1="96.72" x2="34.77" y2="98.75" x3="37.3" y3="98.75"/>
  6003. <curve x1="39.83" y1="98.75" x2="41.88" y2="96.73" x3="41.88" y3="94.23"/>
  6004. <line x="41.88" y="27.46"/>
  6005. <line x="52.01" y="37.46"/>
  6006. <curve x1="52.58" y1="38.05" x2="53.39" y2="38.35" x3="54.23" y3="38.35"/>
  6007. <line x="60.99" y="38.35"/>
  6008. <line x="48.59" y="50.61"/>
  6009. <line x="51.42" y="53.39"/>
  6010. <line x="57.78" y="47.11"/>
  6011. <line x="84.11" y="47.11"/>
  6012. <curve x1="84.83" y1="47.11" x2="85.4" y2="46.55" x3="85.4" y3="45.84"/>
  6013. <curve x1="85.4" y1="45.13" x2="84.83" y2="44.55" x3="84.11" y3="44.55"/>
  6014. <line x="74.53" y="44.6"/>
  6015. <line x="79.37" y="39.82"/>
  6016. <line x="88.18" y="39.82"/>
  6017. <curve x1="88.73" y1="39.82" x2="89.18" y2="39.4" x3="89.18" y3="38.86"/>
  6018. <curve x1="89.18" y1="38.3" x2="88.75" y2="37.87" x3="88.18" y3="37.85"/>
  6019. <line x="81.34" y="37.85"/>
  6020. <line x="91.73" y="27.64"/>
  6021. <curve x1="92.08" y1="27.26" x2="92.08" y2="26.72" x3="91.74" y3="26.37"/>
  6022. <close/>
  6023. <move x="17.49" y="45.48"/>
  6024. <line x="17.49" y="28.89"/>
  6025. <line x="20.52" y="28.89"/>
  6026. <line x="20.53" y="42.48"/>
  6027. <line x="17.49" y="45.48"/>
  6028. <close/>
  6029. </path>
  6030. </background>
  6031. <foreground>
  6032. <fillstroke/>
  6033. </foreground>
  6034. </shape>
  6035. </shapes>