123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452 |
- <template>
- <div>
- <el-row :gutter="10">
- <el-col :span="24">
- <previewPicture v-if="datas">
- <template v-slot:svg>
- <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="图层_1" x="0px" y="0px" width="1794px" height="788px" viewBox="0 46 1794 788" enable-background="new 0 0 1794 788" xml:space="preserve">
- <g id="other">
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M44.605,133.222c0,0.709-0.574,1.281-1.283,1.281H8.933 c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281 L44.605,133.222L44.605,133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M44.605,133.222 c0,0.709-0.574,1.281-1.283,1.281H8.933c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281L44.605,133.222L44.605,133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M90.817,133.222c0,0.709-0.573,1.281-1.282,1.281H55.144 c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281 L90.817,133.222L90.817,133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M90.817,133.222 c0,0.709-0.573,1.281-1.282,1.281H55.144c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281L90.817,133.222L90.817,133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M136.314,133.222c0,0.709-0.574,1.281-1.283,1.281H100.64 c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391c0.71,0,1.283,0.572,1.283,1.281V133.222 L136.314,133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M136.314,133.222 c0,0.709-0.574,1.281-1.283,1.281H100.64c-0.709,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391 c0.71,0,1.283,0.572,1.283,1.281V133.222L136.314,133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M182.527,133.222c0,0.709-0.573,1.281-1.282,1.281h-34.392 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M182.527,133.222 c0,0.709-0.573,1.281-1.282,1.281h-34.392c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M229.1,133.222c0,0.709-0.574,1.281-1.282,1.281h-34.393 c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.574-1.281,1.282-1.281h34.393c0.708,0,1.282,0.572,1.282,1.281V133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M229.1,133.222c0,0.709-0.574,1.281-1.282,1.281 h-34.393c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.574-1.281,1.282-1.281h34.393c0.708,0,1.282,0.572,1.282,1.281 V133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M273.804,133.222c0,0.709-0.574,1.281-1.283,1.281H238.13 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391c0.708,0,1.283,0.572,1.283,1.281V133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M273.804,133.222 c0,0.709-0.574,1.281-1.283,1.281H238.13c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.574-1.281,1.283-1.281h34.391 c0.708,0,1.283,0.572,1.283,1.281V133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M325.492,133.222c0,0.709-0.573,1.281-1.282,1.281h-34.392 c-0.709,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M325.492,133.222 c0,0.709-0.573,1.281-1.282,1.281h-34.392c-0.709,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.282,0.572,1.282,1.281V133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M373.738,133.222c0,0.709-0.574,1.281-1.282,1.281h-34.391 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391c0.708,0,1.282,0.572,1.282,1.281V133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M373.738,133.222 c0,0.709-0.574,1.281-1.282,1.281h-34.391c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391 c0.708,0,1.282,0.572,1.282,1.281V133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M421.219,133.222c0,0.709-0.574,1.281-1.283,1.281h-34.391 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391c0.709,0,1.283,0.572,1.283,1.281V133.222 L421.219,133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M421.219,133.222 c0,0.709-0.574,1.281-1.283,1.281h-34.391c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.391 c0.709,0,1.283,0.572,1.283,1.281V133.222L421.219,133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M471.955,133.222c0,0.709-0.573,1.281-1.281,1.281h-34.393 c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.393c0.708,0,1.281,0.572,1.281,1.281V133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M471.955,133.222 c0,0.709-0.573,1.281-1.281,1.281h-34.393c-0.708,0-1.283-0.572-1.283-1.281v-22.84c0-0.709,0.575-1.281,1.283-1.281h34.393 c0.708,0,1.281,0.572,1.281,1.281V133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M525.664,133.222c0,0.709-0.572,1.281-1.28,1.281h-34.392 c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392c0.708,0,1.28,0.572,1.28,1.281V133.222z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M525.664,133.222 c0,0.709-0.572,1.281-1.28,1.281h-34.392c-0.708,0-1.282-0.572-1.282-1.281v-22.84c0-0.709,0.573-1.281,1.282-1.281h34.392 c0.708,0,1.28,0.572,1.28,1.281V133.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M41.933,263.511c0,0.707-0.573,1.281-1.282,1.281H6.259 c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.392c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M41.933,263.511 c0,0.707-0.573,1.281-1.282,1.281H6.259c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.392 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M91.327,263.511c0,0.707-0.574,1.281-1.282,1.281H55.654 c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M91.327,263.511 c0,0.707-0.574,1.281-1.282,1.281H55.654c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M138.334,263.511c0,0.707-0.575,1.281-1.283,1.281h-34.392 c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.574-1.281,1.282-1.281h34.392c0.708,0,1.283,0.574,1.283,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M138.334,263.511 c0,0.707-0.575,1.281-1.283,1.281h-34.392c-0.708,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.574-1.281,1.282-1.281h34.392 c0.708,0,1.283,0.574,1.283,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M188.07,263.511c0,0.707-0.573,1.281-1.281,1.281h-34.393 c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393c0.708,0,1.281,0.574,1.281,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M188.07,263.511 c0,0.707-0.573,1.281-1.281,1.281h-34.393c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393 c0.708,0,1.281,0.574,1.281,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M235.61,263.511c0,0.707-0.573,1.281-1.282,1.281h-34.392 c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.392c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M235.61,263.511 c0,0.707-0.573,1.281-1.282,1.281h-34.392c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.392 c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M284.855,263.511c0,0.707-0.574,1.281-1.282,1.281h-34.391 c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.391c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M284.855,263.511 c0,0.707-0.574,1.281-1.282,1.281h-34.391c-0.709,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.574-1.281,1.283-1.281h34.391 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M336.545,263.511c0,0.707-0.574,1.281-1.283,1.281H300.87 c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392c0.709,0,1.283,0.574,1.283,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M336.545,263.511 c0,0.707-0.574,1.281-1.283,1.281H300.87c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.283,0.574,1.283,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M385.298,263.511c0,0.707-0.574,1.281-1.282,1.281h-34.393 c-0.708,0-1.281-0.574-1.281-1.281v-22.84c0-0.707,0.573-1.281,1.281-1.281h34.393c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M385.298,263.511 c0,0.707-0.574,1.281-1.282,1.281h-34.393c-0.708,0-1.281-0.574-1.281-1.281v-22.84c0-0.707,0.573-1.281,1.281-1.281h34.393 c0.708,0,1.282,0.574,1.282,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M433.676,263.511c0,0.707-0.574,1.281-1.281,1.281h-34.393 c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393c0.707,0,1.281,0.574,1.281,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M433.676,263.511 c0,0.707-0.574,1.281-1.281,1.281h-34.393c-0.708,0-1.283-0.574-1.283-1.281v-22.84c0-0.707,0.575-1.281,1.283-1.281h34.393 c0.707,0,1.281,0.574,1.281,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M483.128,263.511c0,0.707-0.574,1.281-1.283,1.281h-34.391 c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392c0.709,0,1.282,0.574,1.282,1.281V263.511 L483.128,263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M483.128,263.511 c0,0.707-0.574,1.281-1.283,1.281h-34.391c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.282,0.574,1.282,1.281V263.511L483.128,263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M525.666,263.511c0,0.707-0.573,1.281-1.282,1.281h-34.393 c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.393c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,263.511 c0,0.707-0.573,1.281-1.282,1.281h-34.393c-0.709,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.573-1.281,1.282-1.281h34.393 c0.709,0,1.282,0.574,1.282,1.281V263.511z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M38.329,393.012c0,0.707-0.572,1.281-1.281,1.281H2.657 c-0.709,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.575-1.281,1.284-1.281h34.391c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M38.329,393.012 c0,0.707-0.572,1.281-1.281,1.281H2.657c-0.709,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.575-1.281,1.284-1.281h34.391 c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M87.147,393.012c0,0.707-0.573,1.281-1.283,1.281H51.472 c-0.706,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.575-1.281,1.282-1.281h34.392c0.709,0,1.283,0.574,1.283,1.281V393.012z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M87.147,393.012 c0,0.707-0.573,1.281-1.283,1.281H51.472c-0.706,0-1.282-0.574-1.282-1.281v-22.84c0-0.707,0.575-1.281,1.282-1.281h34.392 c0.709,0,1.283,0.574,1.283,1.281V393.012z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M135.306,393.012c0,0.707-0.572,1.281-1.281,1.281H99.634 c-0.711,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.573-1.281,1.284-1.281h34.391c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M135.306,393.012 c0,0.707-0.572,1.281-1.281,1.281H99.634c-0.711,0-1.284-0.574-1.284-1.281v-22.84c0-0.707,0.573-1.281,1.284-1.281h34.391 c0.709,0,1.281,0.574,1.281,1.281V393.012z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M183.231,392.36c0,0.709-0.571,1.282-1.28,1.282h-34.394 c-0.709,0-1.281-0.573-1.281-1.282v-22.839c0-0.709,0.572-1.28,1.281-1.28h34.394c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M183.231,392.36c0,0.709-0.571,1.282-1.28,1.282 h-34.394c-0.709,0-1.281-0.573-1.281-1.282v-22.839c0-0.709,0.572-1.28,1.281-1.28h34.394c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M230.608,392.36c0,0.709-0.571,1.282-1.28,1.282h-34.392 c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.576-1.28,1.285-1.28h34.392c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M230.608,392.36c0,0.709-0.571,1.282-1.28,1.282 h-34.392c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.576-1.28,1.285-1.28h34.392c0.709,0,1.28,0.571,1.28,1.28V392.36z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M281.114,392.36c0,0.709-0.571,1.282-1.282,1.282h-34.39 c-0.711,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.573-1.28,1.284-1.28h34.39c0.711,0,1.282,0.571,1.282,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M281.114,392.36 c0,0.709-0.571,1.282-1.282,1.282h-34.39c-0.711,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.573-1.28,1.284-1.28h34.39 c0.711,0,1.282,0.571,1.282,1.28V392.36z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M329.994,392.36c0,0.709-0.575,1.282-1.28,1.282h-34.394 c-0.709,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.573-1.28,1.282-1.28h34.394c0.705,0,1.28,0.571,1.28,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M329.994,392.36c0,0.709-0.575,1.282-1.28,1.282 h-34.394c-0.709,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.573-1.28,1.282-1.28h34.394c0.705,0,1.28,0.571,1.28,1.28V392.36z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M378.587,392.36c0,0.709-0.576,1.282-1.285,1.282H342.91 c-0.707,0-1.28-0.573-1.28-1.282v-22.839c0-0.709,0.573-1.28,1.28-1.28h34.392c0.709,0,1.285,0.571,1.285,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M378.587,392.36 c0,0.709-0.576,1.282-1.285,1.282H342.91c-0.707,0-1.28-0.573-1.28-1.282v-22.839c0-0.709,0.573-1.28,1.28-1.28h34.392 c0.709,0,1.285,0.571,1.285,1.28V392.36z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M425.451,392.36c0,0.709-0.569,1.282-1.28,1.282h-34.39 c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.574-1.28,1.285-1.28h34.39c0.711,0,1.28,0.571,1.28,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M425.451,392.36c0,0.709-0.569,1.282-1.28,1.282 h-34.39c-0.711,0-1.285-0.573-1.285-1.282v-22.839c0-0.709,0.574-1.28,1.285-1.28h34.39c0.711,0,1.28,0.571,1.28,1.28V392.36z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M477.776,392.36c0,0.709-0.574,1.282-1.281,1.282h-34.394 c-0.707,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.575-1.28,1.282-1.28h34.394c0.707,0,1.281,0.571,1.281,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M477.776,392.36 c0,0.709-0.574,1.282-1.281,1.282h-34.394c-0.707,0-1.282-0.573-1.282-1.282v-22.839c0-0.709,0.575-1.28,1.282-1.28h34.394 c0.707,0,1.281,0.571,1.281,1.28V392.36z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#114832" enable-background="new " d="M525.666,392.36c0,0.709-0.572,1.282-1.281,1.282h-34.392 c-0.709,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.575-1.28,1.284-1.28h34.392c0.709,0,1.281,0.571,1.281,1.28V392.36z"></path>
- <path fill="none" stroke="#032C1C" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,392.36 c0,0.709-0.572,1.282-1.281,1.282h-34.392c-0.709,0-1.284-0.573-1.284-1.282v-22.839c0-0.709,0.575-1.28,1.284-1.28h34.392 c0.709,0,1.281,0.571,1.281,1.28V392.36z"></path>
- </g>
- <text transform="matrix(1 0 0 1 30.2732 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">运</text>
- <text transform="matrix(1 0 0 1 30.2732 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">行</text>
- <text transform="matrix(1 0 0 1 74.3601 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">待</text>
- <text transform="matrix(1 0 0 1 74.3601 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">机</text>
- <text transform="matrix(1 0 0 1 120.9207 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">维</text>
- <text transform="matrix(1 0 0 1 120.9207 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">护</text>
- <text transform="matrix(1 0 0 1 165.0085 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">停</text>
- <text transform="matrix(1 0 0 1 165.0085 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">机</text>
- <text transform="matrix(1 0 0 1 212.4949 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">限</text>
- <text transform="matrix(1 0 0 1 212.4949 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">电</text>
- <text transform="matrix(1 0 0 1 257.4783 22.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">中</text>
- <text transform="matrix(1 0 0 1 257.4783 35.9336)" fill="#FFFFFF" font-family="'MicrosoftYaHeiLight'" font-size="10.7967">断</text>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M37.869,509.895c0,0.707-0.572,1.283-1.281,1.283H2.196 c-0.709,0-1.281-0.576-1.281-1.283v-22.838c0-0.709,0.572-1.281,1.281-1.281h34.393c0.709,0,1.281,0.572,1.281,1.281V509.895z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M37.869,509.895 c0,0.707-0.572,1.283-1.281,1.283H2.196c-0.709,0-1.281-0.576-1.281-1.283v-22.838c0-0.709,0.572-1.281,1.281-1.281h34.393 c0.709,0,1.281,0.572,1.281,1.281V509.895z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M84.7,509.895c0,0.707-0.573,1.283-1.282,1.283H49.026 c-0.709,0-1.282-0.576-1.282-1.283v-22.838c0-0.709,0.573-1.281,1.282-1.281h34.393c0.709,0,1.282,0.572,1.282,1.281V509.895z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M84.7,509.895c0,0.707-0.573,1.283-1.282,1.283 H49.026c-0.709,0-1.282-0.576-1.282-1.283v-22.838c0-0.709,0.573-1.281,1.282-1.281h34.393c0.709,0,1.282,0.572,1.282,1.281 V509.895z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M130.58,509.895c0,0.707-0.574,1.283-1.283,1.283H94.903 c-0.707,0-1.279-0.576-1.279-1.283v-22.838c0-0.709,0.572-1.281,1.279-1.281h34.395c0.709,0,1.283,0.572,1.283,1.281V509.895z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M130.58,509.895 c0,0.707-0.574,1.283-1.283,1.283H94.903c-0.707,0-1.279-0.576-1.279-1.283v-22.838c0-0.709,0.572-1.281,1.279-1.281h34.395 c0.709,0,1.283,0.572,1.283,1.281V509.895z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M472.686,509.893c0,0.712-0.573,1.285-1.28,1.285h-34.394 c-0.707,0-1.283-0.573-1.283-1.285v-22.836c0-0.709,0.576-1.281,1.283-1.281h34.394c0.707,0,1.28,0.572,1.28,1.281V509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M472.686,509.893 c0,0.712-0.573,1.285-1.28,1.285h-34.394c-0.707,0-1.283-0.573-1.283-1.285v-22.836c0-0.709,0.576-1.281,1.283-1.281h34.394 c0.707,0,1.28,0.572,1.28,1.281V509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M525.666,509.893c0,0.712-0.572,1.285-1.281,1.285h-34.392 c-0.711,0-1.284-0.573-1.284-1.285v-22.836c0-0.709,0.573-1.281,1.284-1.281h34.392c0.709,0,1.281,0.572,1.281,1.281V509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,509.893 c0,0.712-0.572,1.285-1.281,1.285h-34.392c-0.711,0-1.284-0.573-1.284-1.285v-22.836c0-0.709,0.573-1.281,1.284-1.281h34.392 c0.709,0,1.281,0.572,1.281,1.281V509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M420.553,509.893c0,0.709-0.574,1.285-1.281,1.285h-34.393 c-0.709,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.574-1.283,1.283-1.283h34.393c0.707,0,1.281,0.572,1.281,1.283V509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M420.553,509.893 c0,0.709-0.574,1.285-1.281,1.285h-34.393c-0.709,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.574-1.283,1.283-1.283h34.393 c0.707,0,1.281,0.572,1.281,1.283V509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M370.522,509.893c0,0.709-0.572,1.285-1.281,1.285H334.85 c-0.709,0-1.285-0.576-1.285-1.285v-22.836c0-0.711,0.576-1.283,1.285-1.283h34.391c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M370.522,509.893 c0,0.709-0.572,1.285-1.281,1.285H334.85c-0.709,0-1.285-0.576-1.285-1.285v-22.836c0-0.711,0.576-1.283,1.285-1.283h34.391 c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M325.587,509.893c0,0.709-0.572,1.285-1.281,1.285h-34.392 c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.392c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M325.587,509.893 c0,0.709-0.572,1.285-1.281,1.285h-34.392c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.392 c0.709,0,1.281,0.572,1.281,1.283V509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M276.24,509.893c0,0.709-0.575,1.285-1.279,1.285h-34.393 c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.393c0.704,0,1.279,0.572,1.279,1.283V509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M276.24,509.893 c0,0.709-0.575,1.285-1.279,1.285h-34.393c-0.711,0-1.284-0.576-1.284-1.285v-22.836c0-0.711,0.573-1.283,1.284-1.283h34.393 c0.704,0,1.279,0.572,1.279,1.283V509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M227.951,509.893c0,0.709-0.573,1.285-1.284,1.285h-34.389 c-0.707,0-1.28-0.576-1.28-1.285v-22.836c0-0.711,0.573-1.283,1.28-1.283h34.389c0.711,0,1.284,0.572,1.284,1.283V509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M227.951,509.893 c0,0.709-0.573,1.285-1.284,1.285h-34.389c-0.707,0-1.28-0.576-1.28-1.285v-22.836c0-0.711,0.573-1.283,1.28-1.283h34.389 c0.711,0,1.284,0.572,1.284,1.283V509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M178.686,509.893c0,0.709-0.576,1.285-1.285,1.285h-34.387 c-0.707,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.576-1.283,1.283-1.283H177.4c0.709,0,1.285,0.572,1.285,1.283 L178.686,509.893L178.686,509.893z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M178.686,509.893 c0,0.709-0.576,1.285-1.285,1.285h-34.387c-0.707,0-1.283-0.576-1.283-1.285v-22.836c0-0.711,0.576-1.283,1.283-1.283H177.4 c0.709,0,1.285,0.572,1.285,1.283L178.686,509.893L178.686,509.893z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M134.142,760.308c0,0.707-0.574,1.281-1.281,1.281H98.468 c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.393c0.707,0,1.281,0.574,1.281,1.283V760.308 L134.142,760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M134.142,760.308 c0,0.707-0.574,1.281-1.281,1.281H98.468c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.393 c0.707,0,1.281,0.574,1.281,1.283V760.308L134.142,760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M85.839,760.308c0,0.707-0.572,1.281-1.281,1.281H50.167 c-0.709,0-1.285-0.574-1.285-1.281V737.47c0-0.709,0.576-1.283,1.285-1.283h34.391c0.709,0,1.281,0.574,1.281,1.283V760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M85.839,760.308 c0,0.707-0.572,1.281-1.281,1.281H50.167c-0.709,0-1.285-0.574-1.285-1.281V737.47c0-0.709,0.576-1.283,1.285-1.283h34.391 c0.709,0,1.281,0.574,1.281,1.283V760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M37.296,760.308c0,0.707-0.57,1.281-1.281,1.281H1.624 c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.391c0.711,0,1.281,0.574,1.281,1.283V760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M37.296,760.308c0,0.707-0.57,1.281-1.281,1.281 H1.624c-0.709,0-1.283-0.574-1.283-1.281V737.47c0-0.709,0.574-1.283,1.283-1.283h34.391c0.711,0,1.281,0.574,1.281,1.283V760.308 z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M182.931,760.308c0,0.709-0.572,1.282-1.281,1.282h-34.391 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M182.931,760.308 c0,0.709-0.572,1.282-1.281,1.282h-34.391c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M232.704,760.308c0,0.709-0.572,1.282-1.281,1.282h-34.392 c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V760.308 L232.704,760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M232.704,760.308 c0,0.709-0.572,1.282-1.281,1.282h-34.392c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V760.308L232.704,760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M281.65,760.308c0,0.709-0.572,1.282-1.28,1.282h-34.394 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.394c0.708,0,1.279,0.576,1.279,1.283 L281.65,760.308L281.65,760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M281.65,760.308c0,0.709-0.572,1.282-1.28,1.282 h-34.394c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.394c0.708,0,1.279,0.576,1.279,1.283 L281.65,760.308L281.65,760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M332.215,760.308c0,0.709-0.574,1.282-1.283,1.282h-34.391 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.283,0.576,1.283,1.283V760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M332.215,760.308 c0,0.709-0.574,1.282-1.283,1.282h-34.391c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.283,0.576,1.283,1.283V760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M381.055,760.308c0,0.709-0.574,1.282-1.281,1.282h-34.393 c-0.707,0-1.281-0.573-1.281-1.282V737.47c0-0.707,0.574-1.283,1.281-1.283h34.393c0.707,0,1.281,0.576,1.281,1.283V760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M381.055,760.308 c0,0.709-0.574,1.282-1.281,1.282h-34.393c-0.707,0-1.281-0.573-1.281-1.282V737.47c0-0.707,0.574-1.283,1.281-1.283h34.393 c0.707,0,1.281,0.576,1.281,1.283V760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M430.884,760.308c0,0.709-0.573,1.282-1.282,1.282h-34.391 c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M430.884,760.308 c0,0.709-0.573,1.282-1.282,1.282h-34.391c-0.709,0-1.283-0.573-1.283-1.282V737.47c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M480.791,760.308c0,0.709-0.573,1.282-1.282,1.282h-34.392 c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M480.791,760.308 c0,0.709-0.573,1.282-1.282,1.282h-34.392c-0.709,0-1.282-0.573-1.282-1.282V737.47c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.282,0.576,1.282,1.283V760.308z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M525.666,760.229c0,0.709-0.574,1.281-1.283,1.281h-34.392 c-0.709,0-1.282-0.572-1.282-1.281v-22.839c0-0.707,0.573-1.281,1.282-1.281h34.392c0.709,0,1.283,0.574,1.283,1.281V760.229z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,760.229 c0,0.709-0.574,1.281-1.283,1.281h-34.392c-0.709,0-1.282-0.572-1.282-1.281v-22.839c0-0.707,0.573-1.281,1.282-1.281h34.392 c0.709,0,1.283,0.574,1.283,1.281V760.229z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1238.832,135.501c0,0.709-0.571,1.282-1.28,1.282h-34.392 c-0.709,0-1.285-0.573-1.285-1.282v-22.838c0-0.707,0.576-1.283,1.285-1.283h34.392c0.709,0,1.28,0.576,1.28,1.283V135.501z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1238.832,135.501 c0,0.709-0.571,1.282-1.28,1.282h-34.392c-0.709,0-1.285-0.573-1.285-1.282v-22.838c0-0.707,0.576-1.283,1.285-1.283h34.392 c0.709,0,1.28,0.576,1.28,1.283V135.501z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1288.939,135.5c0,0.71-0.572,1.283-1.28,1.283h-34.394 c-0.707,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.576-1.282,1.283-1.282h34.394c0.708,0,1.28,0.575,1.28,1.282V135.5 L1288.939,135.5z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1288.939,135.5c0,0.71-0.572,1.283-1.28,1.283 h-34.394c-0.707,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.576-1.282,1.283-1.282h34.394c0.708,0,1.28,0.575,1.28,1.282V135.5 L1288.939,135.5z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1337.516,135.5c0,0.71-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h34.393c0.709,0,1.281,0.575,1.281,1.282V135.5z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1337.516,135.5c0,0.71-0.572,1.283-1.281,1.283 h-34.393c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h34.393c0.709,0,1.281,0.575,1.281,1.282 V135.5z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1387.906,135.5c0,0.71-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.572-1.282,1.283-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1387.906,135.5c0,0.71-0.571,1.283-1.28,1.283 h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.572-1.282,1.283-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z "></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1436.289,135.5c0,0.71-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1436.289,135.5c0,0.71-0.571,1.283-1.28,1.283 h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.5z "></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1483.557,135.5c0,0.71-0.574,1.283-1.281,1.283h-34.394 c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.282,1.28-1.282h34.394c0.707,0,1.281,0.575,1.281,1.282V135.5z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1483.557,135.5c0,0.71-0.574,1.283-1.281,1.283 h-34.394c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.282,1.28-1.282h34.394c0.707,0,1.281,0.575,1.281,1.282V135.5z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1530.845,135.5c0,0.71-0.573,1.283-1.282,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.282,0.575,1.282,1.282V135.5z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1530.845,135.5c0,0.71-0.573,1.283-1.282,1.283 h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.392c0.709,0,1.282,0.575,1.282,1.282 V135.5z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1578.191,135.5c0,0.71-0.574,1.283-1.283,1.283h-34.393 c-0.709,0-1.281-0.574-1.281-1.283v-22.838c0-0.707,0.572-1.282,1.281-1.282h34.393c0.709,0,1.283,0.575,1.283,1.282V135.5 L1578.191,135.5z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1578.191,135.5c0,0.71-0.574,1.283-1.283,1.283 h-34.393c-0.709,0-1.281-0.574-1.281-1.283v-22.838c0-0.707,0.572-1.282,1.281-1.282h34.393c0.709,0,1.283,0.575,1.283,1.282 V135.5L1578.191,135.5z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M38.892,640.121c0,0.711-0.571,1.284-1.282,1.284H3.22 c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39c0.711,0,1.282,0.574,1.282,1.283V640.121 L38.892,640.121z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M38.892,640.121 c0,0.711-0.571,1.284-1.282,1.284H3.22c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39 c0.711,0,1.282,0.574,1.282,1.283V640.121L38.892,640.121z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M85.722,640.121c0,0.711-0.573,1.284-1.28,1.284h-34.39 c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39c0.706,0,1.28,0.574,1.28,1.283V640.121z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M85.722,640.121c0,0.711-0.573,1.284-1.28,1.284 h-34.39c-0.711,0-1.285-0.573-1.285-1.284v-22.836c0-0.709,0.574-1.283,1.285-1.283h34.39c0.706,0,1.28,0.574,1.28,1.283V640.121z "></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M133.603,640.121c0,0.711-0.576,1.284-1.285,1.284H97.926 c-0.707,0-1.28-0.573-1.28-1.284v-22.836c0-0.709,0.573-1.283,1.28-1.283h34.392c0.709,0,1.285,0.574,1.285,1.283V640.121z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M133.603,640.121 c0,0.711-0.576,1.284-1.285,1.284H97.926c-0.707,0-1.28-0.573-1.28-1.284v-22.836c0-0.709,0.573-1.283,1.28-1.283h34.392 c0.709,0,1.285,0.574,1.285,1.283V640.121z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M525.666,641.174c0,0.707-0.574,1.281-1.281,1.281h-34.394 c-0.709,0-1.282-0.574-1.282-1.281v-22.838c0-0.709,0.573-1.283,1.282-1.283h34.394c0.707,0,1.281,0.574,1.281,1.283V641.174z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M525.666,641.174 c0,0.707-0.574,1.281-1.281,1.281h-34.394c-0.709,0-1.282-0.574-1.282-1.281v-22.838c0-0.709,0.573-1.283,1.282-1.283h34.394 c0.707,0,1.281,0.574,1.281,1.283V641.174z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M478.707,641.421c0,0.707-0.573,1.281-1.282,1.281h-34.392 c-0.707,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.573-1.283,1.28-1.283h34.392c0.709,0,1.282,0.574,1.282,1.283V641.421z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M478.707,641.421 c0,0.707-0.573,1.281-1.282,1.281h-34.392c-0.707,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.573-1.283,1.28-1.283h34.392 c0.709,0,1.282,0.574,1.282,1.283V641.421z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M428.574,641.422c0,0.707-0.569,1.281-1.28,1.281h-34.392 c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392c0.711,0,1.28,0.574,1.28,1.283V641.422z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M428.574,641.422 c0,0.707-0.569,1.281-1.28,1.281h-34.392c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392 c0.711,0,1.28,0.574,1.28,1.283V641.422z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M377.544,640.926c0,0.707-0.574,1.281-1.281,1.281h-34.394 c-0.709,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.571-1.283,1.28-1.283h34.394c0.707,0,1.281,0.574,1.281,1.283V640.926z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M377.544,640.926 c0,0.707-0.574,1.281-1.281,1.281h-34.394c-0.709,0-1.28-0.574-1.28-1.281v-22.838c0-0.709,0.571-1.283,1.28-1.283h34.394 c0.707,0,1.281,0.574,1.281,1.283V640.926z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M328.61,641.176c0,0.707-0.572,1.281-1.283,1.281h-34.39 c-0.709,0-1.284-0.574-1.284-1.281v-22.838c0-0.709,0.575-1.283,1.284-1.283h34.39c0.711,0,1.283,0.574,1.283,1.283V641.176 L328.61,641.176z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M328.61,641.176 c0,0.707-0.572,1.281-1.283,1.281h-34.39c-0.709,0-1.284-0.574-1.284-1.281v-22.838c0-0.709,0.575-1.283,1.284-1.283h34.39 c0.711,0,1.283,0.574,1.283,1.283V641.176L328.61,641.176z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M280.263,640.926c0,0.707-0.571,1.281-1.283,1.281h-34.389 c-0.709,0-1.285-0.574-1.285-1.281v-22.838c0-0.709,0.576-1.283,1.285-1.283h34.389c0.712,0,1.283,0.574,1.283,1.283V640.926z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M280.263,640.926 c0,0.707-0.571,1.281-1.283,1.281h-34.389c-0.709,0-1.285-0.574-1.285-1.281v-22.838c0-0.709,0.576-1.283,1.285-1.283h34.389 c0.712,0,1.283,0.574,1.283,1.283V640.926z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M232.974,641.176c0,0.707-0.571,1.281-1.28,1.281h-34.392 c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392c0.709,0,1.28,0.574,1.28,1.283V641.176z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M232.974,641.176 c0,0.707-0.571,1.281-1.28,1.281h-34.392c-0.709,0-1.283-0.574-1.283-1.281v-22.838c0-0.709,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.28,0.574,1.28,1.283V641.176z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M182.709,640.927c0,0.707-0.574,1.281-1.283,1.281h-34.393 c-0.707,0-1.281-0.574-1.281-1.281v-22.838c0-0.709,0.574-1.283,1.281-1.283h34.393c0.709,0,1.283,0.574,1.283,1.283V640.927z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M182.709,640.927 c0,0.707-0.574,1.281-1.283,1.281h-34.393c-0.707,0-1.281-0.574-1.281-1.281v-22.838c0-0.709,0.574-1.283,1.281-1.283h34.393 c0.709,0,1.283,0.574,1.283,1.283V640.927z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1626.337,135.222c0,0.71-0.573,1.283-1.282,1.283h-34.393 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.393c0.709,0,1.282,0.575,1.282,1.282V135.222z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1626.337,135.222 c0,0.71-0.573,1.283-1.282,1.283h-34.393c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h34.393 c0.709,0,1.282,0.575,1.282,1.282V135.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1674.366,135.222c0,0.71-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.285-0.574-1.285-1.283v-22.838c0-0.707,0.576-1.282,1.285-1.282h34.392c0.709,0,1.28,0.575,1.28,1.282V135.222z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1674.366,135.222 c0,0.71-0.571,1.283-1.28,1.283h-34.392c-0.709,0-1.285-0.574-1.285-1.283v-22.838c0-0.707,0.576-1.282,1.285-1.282h34.392 c0.709,0,1.28,0.575,1.28,1.282V135.222z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1725.5,135.222c0,0.71-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.282,1.284-1.282h34.392c0.709,0,1.281,0.575,1.281,1.282V135.222z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1725.5,135.222c0,0.71-0.572,1.283-1.281,1.283 h-34.392c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.282,1.284-1.282h34.392c0.709,0,1.281,0.575,1.281,1.282 V135.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1771.413,135.222c0,0.71-0.572,1.283-1.28,1.283h-34.393 c-0.708,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.575-1.282,1.283-1.282h34.393c0.708,0,1.28,0.575,1.28,1.282V135.222z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1771.413,135.222 c0,0.71-0.572,1.283-1.28,1.283h-34.393c-0.708,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.575-1.282,1.283-1.282h34.393 c0.708,0,1.28,0.575,1.28,1.282V135.222z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1258.182,382.117c0,0.709-0.574,1.283-1.281,1.283h-34.394 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394c0.707,0,1.279,0.576,1.279,1.283 L1258.182,382.117L1258.182,382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1258.182,382.117 c0,0.709-0.574,1.283-1.281,1.283h-34.394c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394 c0.707,0,1.279,0.576,1.279,1.283L1258.182,382.117L1258.182,382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1304.012,382.117c0,0.709-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1304.012,382.117 c0,0.709-0.572,1.283-1.281,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1352.891,382.117c0,0.709-0.574,1.283-1.281,1.283h-34.394 c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.283,1.28-1.283h34.394c0.707,0,1.281,0.576,1.281,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1352.891,382.117 c0,0.709-0.574,1.283-1.281,1.283h-34.394c-0.707,0-1.28-0.574-1.28-1.283v-22.838c0-0.707,0.573-1.283,1.28-1.283h34.394 c0.707,0,1.281,0.576,1.281,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1401.996,382.117c0,0.709-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1401.996,382.117 c0,0.709-0.571,1.283-1.28,1.283h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1451.266,382.117c0,0.709-0.574,1.283-1.283,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.283,0.576,1.283,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1451.266,382.117 c0,0.709-0.574,1.283-1.283,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.283,0.576,1.283,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1499.552,382.117c0,0.709-0.573,1.283-1.282,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1499.552,382.117 c0,0.709-0.573,1.283-1.282,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1549.898,382.117c0,0.709-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.393c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1549.898,382.117 c0,0.709-0.572,1.283-1.281,1.283h-34.393c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.393 c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1596.834,382.117c0,0.709-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.283,1.284-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1596.834,382.117 c0,0.709-0.572,1.283-1.281,1.283h-34.392c-0.709,0-1.284-0.574-1.284-1.283v-22.838c0-0.707,0.575-1.283,1.284-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1644.863,382.117c0,0.709-0.571,1.283-1.28,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1644.863,382.117 c0,0.709-0.571,1.283-1.28,1.283h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.28,0.576,1.28,1.283V382.117z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1685.996,382.117c0,0.709-0.573,1.283-1.282,1.283h-34.392 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1685.996,382.117 c0,0.709-0.573,1.283-1.282,1.283h-34.392c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.283,1.283-1.283h34.392 c0.709,0,1.282,0.576,1.282,1.283V382.117z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0B472F" enable-background="new " d="M1212.225,381.873c0,0.709-0.574,1.281-1.283,1.281h-34.392 c-0.709,0-1.282-0.572-1.282-1.281v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.283,0.576,1.283,1.283V381.873z"></path>
- <path fill="none" stroke="#002B1B" stroke-width="0.5" stroke-miterlimit="10" d="M1212.225,381.873 c0,0.709-0.574,1.281-1.283,1.281h-34.392c-0.709,0-1.282-0.572-1.282-1.281v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.283,0.576,1.283,1.283V381.873z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1734.182,382.412c0,0.709-0.574,1.283-1.281,1.283h-34.394 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394c0.707,0,1.279,0.576,1.279,1.283 L1734.182,382.412L1734.182,382.412z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1734.182,382.412 c0,0.709-0.574,1.283-1.281,1.283h-34.394c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.394 c0.707,0,1.279,0.576,1.279,1.283L1734.182,382.412L1734.182,382.412z"></path>
- </g>
-
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1782.012,382.412c0,0.709-0.572,1.283-1.281,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.281,0.576,1.281,1.283V382.412z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1782.012,382.412 c0,0.709-0.572,1.283-1.281,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.281,0.576,1.281,1.283V382.412z"></path>
- </g>
- <g>
- <rect x="0.263" y="147.194" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.605"></rect>
- <rect x="0.263" y="147.194" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.605"></rect>
- <text transform="matrix(1 0 0 1 11.0183 163.9678)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#1风机线</text>
- </g>
- <g>
- <rect x="0.263" y="281.194" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.605"></rect>
- <rect x="0.263" y="281.194" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.605"></rect>
- <text transform="matrix(1 0 0 1 11.0183 297.9678)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#2风机线</text>
- </g>
- <g>
- <rect x="0.263" y="403.193" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.604"></rect>
- <rect x="0.263" y="403.193" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 11.0183 419.9668)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#3风机线</text>
- </g>
- <g>
- <rect x="0.263" y="519.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.604"></rect>
- <rect x="0.263" y="519.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 11.0183 536.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#4风机线</text>
- </g>
- <g>
- <rect x="0.263" y="648.526" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.191" height="24.604"></rect>
- <rect x="0.263" y="648.526" opacity="0.7" fill="#1A295D" enable-background="new " width="84.191" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 11.0183 665.3008)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#5风机线</text>
- </g>
- <g>
- <rect x="657.263" y="742.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
- <rect x="657.263" y="742.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 668.0183 759.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#6风机线</text>
- </g>
- <g>
- <rect x="1041.263" y="743.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
- <rect x="1041.263" y="743.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 1052.0178 760.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#9风机线</text>
- </g>
- <g>
- <rect x="1697.595" y="520.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
- <rect x="1697.595" y="520.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 1703.3518 537.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#11风机线</text>
- </g>
- <g>
- <rect x="1697.595" y="653.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
- <rect x="1697.595" y="653.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 1703.3518 670.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#10风机线</text>
- </g>
- <g>
- <rect x="1697.595" y="400.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
- <rect x="1697.595" y="400.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 1703.3518 417.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#8风机线</text>
- </g>
- <g>
- <rect x="1697.595" y="145.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.605"></rect>
- <rect x="1697.595" y="145.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.605"></rect>
- <text transform="matrix(1 0 0 1 1703.3518 162.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#7风机线</text>
- </g>
- <text transform="matrix(1 0 0 1 725.9045 723.9824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅱ母线</text>
- <text transform="matrix(1 0 0 1 1032.9045 509.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV 2 母线</text>
- <text transform="matrix(1 0 0 1 656.4045 509.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV 2 母线</text>
- <text transform="matrix(1 0 0 1 948.9045 724.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅱ母线</text>
- <polyline fill="#AD1658" points="1789.453,766.956 1132.52,766.958 1132.52,764.883 1789.453,764.881 "></polyline>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1247.453,756.838c0,0.709-0.572,1.283-1.279,1.283h-34.396 c-0.707,0-1.28-0.574-1.28-1.283V734c0-0.707,0.573-1.283,1.28-1.283h34.396c0.707,0,1.279,0.576,1.279,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1247.453,756.838 c0,0.709-0.572,1.283-1.279,1.283h-34.396c-0.707,0-1.28-0.574-1.28-1.283V734c0-0.707,0.573-1.283,1.28-1.283h34.396 c0.707,0,1.279,0.576,1.279,1.283V756.838z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1296.563,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.391 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1296.563,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.391c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1344.828,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1344.828,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.393c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1392.115,756.838c0,0.709-0.572,1.283-1.283,1.283h-34.392 c-0.709,0-1.282-0.574-1.282-1.283V734c0-0.707,0.573-1.283,1.282-1.283h34.392c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1392.115,756.838 c0,0.709-0.572,1.283-1.283,1.283h-34.392c-0.709,0-1.282-0.574-1.282-1.283V734c0-0.707,0.573-1.283,1.282-1.283h34.392 c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1440.463,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.393 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1440.463,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.393c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.393 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1487.398,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.391 c-0.709,0-1.285-0.574-1.285-1.283V734c0-0.707,0.576-1.283,1.285-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1487.398,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.391c-0.709,0-1.285-0.574-1.285-1.283V734c0-0.707,0.576-1.283,1.285-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1534.428,756.838c0,0.709-0.572,1.283-1.281,1.283h-34.391 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1534.428,756.838 c0,0.709-0.572,1.283-1.281,1.283h-34.391c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.281,0.576,1.281,1.283V756.838z"></path>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1580.563,756.838c0,0.709-0.574,1.283-1.283,1.283h-34.391 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1580.563,756.838 c0,0.709-0.574,1.283-1.283,1.283h-34.391c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h34.391 c0.709,0,1.283,0.576,1.283,1.283V756.838z"></path>
- </g>
-
- <polyline fill="#AD1658" points="1133.482,778 1133.482,501.883 1135.556,501.883 1135.556,778 "></polyline>
- <polyline fill="#AD1658" points="1001.482,709 1001.482,590 1003.556,590 1003.556,709 "></polyline>
- <polyline fill="#AD1658" points="1001.482,330 1001.482,211 1003.556,211 1003.556,330 "></polyline>
- <rect x="1085.953" y="644.703" fill="#AD1658" width="49.731" height="2.074"></rect>
- <g>
- <rect x="1039.683" y="588.495" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
- <rect x="1039.683" y="588.495" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 1048.3245 605.2676)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#4主变</text>
- </g>
- <text transform="matrix(1 0 0 1 1098.5901 669.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">305</text>
- <text transform="matrix(1 0 0 1 1016.0901 669.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">105</text>
- <text transform="matrix(1 0 0 1 958.0901 669.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">151</text>
- <text transform="matrix(1 0 0 1 1140.5901 670.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">352</text>
- <text transform="matrix(1 0 0 1 1140.5901 545.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">351</text>
- <text transform="matrix(1 0 0 1 614.0901 545.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">321</text>
- <text transform="matrix(1 0 0 1 614.0901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">322</text>
- <text transform="matrix(1 0 0 1 654.0901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">302</text>
- <text transform="matrix(1 0 0 1 742.5901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">102</text>
- <text transform="matrix(1 0 0 1 795.0901 666.6621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">121</text>
- <text transform="matrix(1 0 0 1 614.0901 752.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">323</text>
- <text transform="matrix(1 0 0 1 1143.5901 750.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">353</text>
- <g>
- <rect x="855.007" y="582" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
- <rect x="855.007" y="582" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
- <text transform="matrix(1 0 0 1 862.6423 606.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">首</text>
- <text transform="matrix(1 0 0 1 862.6423 625.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
- <text transform="matrix(1 0 0 1 862.6423 643.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">五</text>
- <text transform="matrix(1 0 0 1 862.6423 662.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">甲</text>
- <text transform="matrix(1 0 0 1 862.6423 681.1465)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
- </g>
- <g>
- <rect x="897.369" y="582" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
- <rect x="897.369" y="582" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
- <text transform="matrix(1 0 0 1 905.0061 606.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">首</text>
- <text transform="matrix(1 0 0 1 905.0061 625.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
- <text transform="matrix(1 0 0 1 905.0061 643.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">五</text>
- <text transform="matrix(1 0 0 1 905.0061 662.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">乙</text>
- <text transform="matrix(1 0 0 1 905.0061 681.1465)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
- </g>
- <g>
- <rect x="855.007" y="217" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
- <rect x="855.007" y="217" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
- <text transform="matrix(1 0 0 1 862.6423 252.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">能</text>
- <text transform="matrix(1 0 0 1 862.6423 271.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
- <text transform="matrix(1 0 0 1 862.6423 289.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">六</text>
- <text transform="matrix(1 0 0 1 862.6423 308.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
- </g>
- <g>
- <rect x="897.369" y="217" fill="none" stroke="#AA2B4D" stroke-miterlimit="10" width="30.743" height="116"></rect>
- <rect x="897.369" y="217" opacity="0.7" fill="#621126" enable-background="new " width="30.743" height="116"></rect>
- <text transform="matrix(1 0 0 1 905.0061 241.4473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">首</text>
- <text transform="matrix(1 0 0 1 905.0061 260.1221)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">风</text>
- <text transform="matrix(1 0 0 1 905.0061 278.7969)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">五</text>
- <text transform="matrix(1 0 0 1 905.0061 297.4717)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">甲</text>
- <text transform="matrix(1 0 0 1 905.0061 316.1465)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="15.5623">线</text>
- </g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1633.953,756.838c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h41.782c0.709,0,1.282,0.576,1.282,1.283V756.838z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1633.953,756.838 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283V734c0-0.707,0.574-1.283,1.283-1.283h41.782 c0.709,0,1.282,0.576,1.282,1.283V756.838z"></path>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1247.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.281,1.282-1.281h41.783c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1247.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.282-0.574-1.282-1.283v-22.838c0-0.707,0.573-1.281,1.282-1.281h41.783 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
-
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1584.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1584.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
-
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1536.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1536.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
-
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1487.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1487.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1439.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1439.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1390.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1390.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1342.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1342.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1293.577,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1293.577,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.283-0.573-1.283-1.283v-22.838c0-0.707,0.574-1.282,1.283-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1245.077,641.143c0,0.709-0.573,1.283-1.282,1.283h-41.783 c-0.709,0-1.282-0.573-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h41.783c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1245.077,641.143 c0,0.709-0.573,1.283-1.282,1.283h-41.783c-0.709,0-1.282-0.573-1.282-1.283v-22.838c0-0.707,0.573-1.282,1.282-1.282h41.783 c0.709,0,1.282,0.575,1.282,1.282V641.143z"></path>
- </g>
- </g>
- <polyline fill="#AD1658" points="1789.453,645.956 1133.977,645.958 1133.977,643.883 1789.453,643.881 "></polyline>
- <rect x="942.453" y="644.703" fill="#AD1658" width="103.731" height="2.074"></rect>
- <polyline fill="#AD1658" points="1789.453,516.956 1134.484,516.958 1134.484,514.883 1789.453,514.881 "></polyline>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1587.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1587.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
-
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1539.244,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1539.244,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1490.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1490.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1442.244,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1442.244,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1393.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1393.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1345.244,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1345.244,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
- </g>
- <g>
- <g opacity="0.6">
- <path opacity="0.4" fill="#0E4730" enable-background="new " d="M1296.744,511.143c0,0.709-0.573,1.283-1.282,1.283h-41.782 c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- <path fill="none" stroke="#002C1B" stroke-width="0.5" stroke-miterlimit="10" d="M1296.744,511.143 c0,0.709-0.573,1.283-1.282,1.283h-41.782c-0.709,0-1.283-0.574-1.283-1.283v-22.838c0-0.707,0.574-1.281,1.283-1.281h41.782 c0.709,0,1.282,0.574,1.282,1.281V511.143z"></path>
- </g>
- </g>
- <g>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.109" cy="658.367" r="12.709"></circle>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.108" cy="636.313" r="12.709"></circle>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,664.182 1078.086,659.661 1073.824,664.182 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="659.542" x2="1077.99" y2="651.57"></line>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,642.618 1078.086,638.097 1073.824,642.618 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="637.977" x2="1077.99" y2="630.005"></line>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1059.452" cy="646.7" r="12.708"></circle>
- <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1061.99,651.406 1061.99,641.995 1054.229,646.957 "></polygon>
- </g>
- <polygon fill="#AD1658" points="949.306,653.271 928.47,645.191 949.306,635.115 "></polygon>
- <g>
- <rect x="1041.263" y="371.859" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.604"></rect>
- <rect x="1041.263" y="371.859" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 1052.0178 388.6328)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#9风机线</text>
- </g>
- <text transform="matrix(1 0 0 1 1027.9045 143.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV Ⅰ 母线</text>
- <text transform="matrix(1 0 0 1 948.9045 352.4824)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅰ母线</text>
- <polyline fill="#AD1658" points="1789.453,394.956 1132.52,394.958 1132.52,392.883 1789.453,392.881 "></polyline>
- <polyline fill="#AD1658" points="1133.482,406 1133.482,129.883 1135.556,129.883 1135.556,406 "></polyline>
- <rect x="1085.953" y="272.703" fill="#AD1658" width="49.731" height="2.074"></rect>
- <g>
- <rect x="1039.683" y="216.495" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
- <rect x="1039.683" y="216.495" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 1048.3245 233.2676)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#3主变</text>
- </g>
- <text transform="matrix(1 0 0 1 1098.5901 297.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">302</text>
- <text transform="matrix(1 0 0 1 1016.0901 297.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">102</text>
- <text transform="matrix(1 0 0 1 958.0901 297.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">121</text>
- <text transform="matrix(1 0 0 1 1140.5901 173.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">331</text>
- <text transform="matrix(1 0 0 1 1143.5901 378.1621)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">332</text>
- <rect x="942.453" y="271.703" fill="#AD1658" width="103.731" height="2.074"></rect>
- <polyline fill="#AD1658" points="1789.453,144.956 1134.484,144.958 1134.484,142.883 1789.453,142.881 "></polyline>
- <g>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.109" cy="286.367" r="12.709"></circle>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1078.108" cy="264.312" r="12.709"></circle>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,292.182 1078.086,287.661 1073.824,292.182 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="287.542" x2="1077.99" y2="279.57"></line>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1082.658,270.618 1078.086,266.097 1073.824,270.618 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="1077.99" y1="265.977" x2="1077.99" y2="258.005"></line>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="1059.452" cy="274.7" r="12.708"></circle>
- <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="1061.99,279.406 1061.99,269.995 1054.229,274.957 "></polygon>
- </g>
- <polygon fill="#AD1658" points="949.306,280.271 928.47,272.191 949.306,262.115 "></polygon>
- <polyline fill="#AD1658" points="1.47,763.881 648.405,763.883 648.405,765.958 1.47,765.956 "></polyline>
- <polyline fill="#AD1658" points="645.367,777 645.367,500.883 647.441,500.883 647.441,777 "></polyline>
- <polyline fill="#AD1658" points="777.367,708 777.367,589 779.441,589 779.441,708 "></polyline>
- <rect x="645.237" y="643.703" fill="#AD1658" width="49.731" height="2.074"></rect>
- <g>
- <rect x="666.683" y="587.495" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
- <rect x="666.683" y="587.495" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 675.3235 604.2676)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#2主变</text>
- </g>
- <polyline fill="#AD1658" points="1.47,642.881 646.97,642.883 646.97,644.958 1.47,644.956 "></polyline>
- <rect x="734.737" y="643.703" fill="#AD1658" width="103.731" height="2.074"></rect>
- <polyline fill="#AD1658" points="1.47,513.881 648.405,513.883 648.405,515.958 1.47,515.956 "></polyline>
- <g>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="657.367" r="12.709"></circle>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="635.313" r="12.709"></circle>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,663.182 702.838,658.661 707.099,663.182 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="658.542" x2="702.934" y2="650.57"></line>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,641.618 702.838,637.097 707.099,641.618 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="636.977" x2="702.934" y2="629.005"></line>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="721.471" cy="645.7" r="12.708"></circle>
- <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="718.934,650.406 718.934,640.995 726.695,645.957 "></polygon>
- </g>
- <polygon fill="#AD1658" points="831.617,634.115 852.453,644.191 831.617,652.271 "></polygon>
- <g>
- <rect x="657.263" y="368.082" fill="none" stroke="#4A4877" stroke-miterlimit="10" width="84.19" height="24.605"></rect>
- <rect x="657.263" y="368.082" opacity="0.7" fill="#1A295D" enable-background="new " width="84.19" height="24.605"></rect>
- <text transform="matrix(1 0 0 1 668.0183 384.8555)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#6风机线</text>
- </g>
- <text transform="matrix(1 0 0 1 725.9045 349.2051)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">110kV Ⅰ母线</text>
- <text transform="matrix(1 0 0 1 656.4045 134.7051)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">35kV Ⅰ 母线</text>
- <text transform="matrix(1 0 0 1 614.0901 170.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">312</text>
- <text transform="matrix(1 0 0 1 614.0901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">313</text>
- <text transform="matrix(1 0 0 1 654.0901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">301</text>
- <text transform="matrix(1 0 0 1 742.5901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">101</text>
- <text transform="matrix(1 0 0 1 795.0901 291.8848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">111</text>
- <text transform="matrix(1 0 0 1 614.0901 415.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">314</text>
- <text transform="matrix(1 0 0 1 657.0901 341.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="16.5927">314</text>
- <polyline fill="#AD1658" points="1.47,396.438 648.405,396.438 648.405,398.514 1.47,398.512 "></polyline>
- <polyline fill="#AD1658" points="645.367,420 645.367,126.105 647.441,126.105 647.441,420 "></polyline>
- <polyline fill="#AD1658" points="777.367,333.223 777.367,214.223 779.441,214.223 779.441,333.223 "></polyline>
- <rect x="645.237" y="268.926" fill="#AD1658" width="49.731" height="2.074"></rect>
- <g>
- <rect x="666.683" y="212.718" fill="none" stroke="#4B4877" stroke-miterlimit="10" width="65.177" height="24.604"></rect>
- <rect x="666.683" y="212.718" opacity="0.7" fill="#1A295D" enable-background="new " width="65.177" height="24.604"></rect>
- <text transform="matrix(1 0 0 1 675.3235 229.4902)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="14.8514">#1主变</text>
- </g>
- <polyline fill="#AD1658" points="1.47,268.104 646.97,268.105 646.97,270.181 1.47,270.179 "></polyline>
- <rect x="734.737" y="268.926" fill="#AD1658" width="103.731" height="2.074"></rect>
- <polyline fill="#AD1658" points="1.47,139.104 648.405,139.105 648.405,141.181 1.47,141.179 "></polyline>
- <g>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="282.59" r="12.709"></circle>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="702.814" cy="260.535" r="12.709"></circle>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,288.404 702.838,283.884 707.099,288.404 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="283.765" x2="702.934" y2="275.793"></line>
- <polyline fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="698.265,266.841 702.838,262.319 707.099,266.841 "></polyline>
-
- <line fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" x1="702.934" y1="262.199" x2="702.934" y2="254.228"></line>
- <circle fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" cx="721.471" cy="270.922" r="12.708"></circle>
- <polygon fill="none" stroke="#D9AA5B" stroke-width="2" stroke-miterlimit="10" points="718.934,275.629 718.934,266.218 726.695,271.18 "></polygon>
- </g>
- <polygon fill="#AD1658" points="831.617,260.338 852.453,270.414 831.617,278.494 "></polygon>
- </g>
- <g id="wtnum">
- <text transform="matrix(1 0 0 1 1302.2756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[110].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1253.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[109].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1500.5022 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[97].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1453.4729 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[96].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1546.635 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[98].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1213.5295 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[91].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1262.637 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[92].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1310.9026 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[93].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1358.1897 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[94].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1406.5354 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[95].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1652.0706 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[88].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1178.2971 375.6758)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[78].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1562.9084 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[86].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1610.9377 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[87].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1224.2542 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[79].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1318.9651 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[81].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1368.0725 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[82].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1417.3381 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[83].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1465.6252 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[84].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1515.9709 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[85].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1270.0862 376.5137)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[80].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1700.2542 376.8105)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[89].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1748.0862 376.8105)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[90].wtnum}}</text>
- <text transform="matrix(1 0 0 1 12.0662 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[0].wtnum}}</text>
- <text transform="matrix(1 0 0 1 58.073 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[1].wtnum}}</text>
- <text transform="matrix(1 0 0 1 106.5349 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[2].wtnum}}</text>
- <text transform="matrix(1 0 0 1 152.5417 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[3].wtnum}}</text>
- <text transform="matrix(1 0 0 1 196.6912 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[4].wtnum}}</text>
- <text transform="matrix(1 0 0 1 242.698 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[5].wtnum}}</text>
- <text transform="matrix(1 0 0 1 342.2625 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[7].wtnum}}</text>
- <text transform="matrix(1 0 0 1 392.2693 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[8].wtnum}}</text>
- <text transform="matrix(1 0 0 1 438.4177 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[9].wtnum}}</text>
- <text transform="matrix(1 0 0 1 491.4792 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[10].wtnum}}</text>
- <text transform="matrix(1 0 0 1 295.8699 127.0254)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[6].wtnum}}</text>
- <text transform="matrix(1 0 0 1 7.9211 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[11].wtnum}}</text>
- <text transform="matrix(1 0 0 1 57.6292 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[12].wtnum}}</text>
- <text transform="matrix(1 0 0 1 105.0325 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[33].wtnum}}</text>
- <text transform="matrix(1 0 0 1 154.5657 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[14].wtnum}}</text>
- <text transform="matrix(1 0 0 1 201.7141 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[15].wtnum}}</text>
- <text transform="matrix(1 0 0 1 250.7668 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[16].wtnum}}</text>
- <text transform="matrix(1 0 0 1 351.5042 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[18].wtnum}}</text>
- <text transform="matrix(1 0 0 1 399.6653 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[19].wtnum}}</text>
- <text transform="matrix(1 0 0 1 449.1174 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[20].wtnum}}</text>
- <text transform="matrix(1 0 0 1 491.4792 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[21].wtnum}}</text>
- <text transform="matrix(1 0 0 1 4.3191 387.4102)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[22].wtnum}}</text>
- <text transform="matrix(1 0 0 1 53.1365 387.4102)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[23].wtnum}}</text>
- <text transform="matrix(1 0 0 1 101.2971 387.4102)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[24].wtnum}}</text>
- <text transform="matrix(1 0 0 1 302.1125 257.9082)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[17].wtnum}}</text>
- <text transform="matrix(1 0 0 1 196.7068 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[26].wtnum}}</text>
- <text transform="matrix(1 0 0 1 247.1042 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[27].wtnum}}</text>
- <text transform="matrix(1 0 0 1 295.9841 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[28].wtnum}}</text>
- <text transform="matrix(1 0 0 1 344.574 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[29].wtnum}}</text>
- <text transform="matrix(1 0 0 1 391.4431 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[30].wtnum}}</text>
- <text transform="matrix(1 0 0 1 491.4792 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[32].wtnum}}</text>
- <text transform="matrix(1 0 0 1 441.6316 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[31].wtnum}}</text>
- <text transform="matrix(1 0 0 1 148.3582 387.1484)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[25].wtnum}}</text>
- <text transform="matrix(1 0 0 1 3.9426 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[33].wtnum}}</text>
- <text transform="matrix(1 0 0 1 50.7742 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[34].wtnum}}</text>
- <text transform="matrix(1 0 0 1 96.6531 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[35].wtnum}}</text>
- <text transform="matrix(1 0 0 1 100.2151 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[57].wtnum}}</text>
- <text transform="matrix(1 0 0 1 51.9119 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[56].wtnum}}</text>
- <text transform="matrix(1 0 0 1 3.3704 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[55].wtnum}}</text>
- <text transform="matrix(1 0 0 1 386.6257 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[41].wtnum}}</text>
- <text transform="matrix(1 0 0 1 336.5964 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[40].wtnum}}</text>
- <text transform="matrix(1 0 0 1 291.6594 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[39].wtnum}}</text>
- <text transform="matrix(1 0 0 1 242.3142 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[38].wtnum}}</text>
- <text transform="matrix(1 0 0 1 194.0266 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[37].wtnum}}</text>
- <text transform="matrix(1 0 0 1 144.7605 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[36].wtnum}}</text>
- <text transform="matrix(1 0 0 1 438.7595 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[42].wtnum}}</text>
- <text transform="matrix(1 0 0 1 491.4792 503.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[43].wtnum}}</text>
- <text transform="matrix(1 0 0 1 149.0051 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[58].wtnum}}</text>
- <text transform="matrix(1 0 0 1 198.7786 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[59].wtnum}}</text>
- <text transform="matrix(1 0 0 1 247.7239 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[60].wtnum}}</text>
- <text transform="matrix(1 0 0 1 347.1296 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[62].wtnum}}</text>
- <text transform="matrix(1 0 0 1 396.9583 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[63].wtnum}}</text>
- <text transform="matrix(1 0 0 1 446.866 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[64].wtnum}}</text>
- <text transform="matrix(1 0 0 1 491.4792 754.0322)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[65].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1204.9065 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[66].wtnum}}</text>
- <text transform="matrix(1 0 0 1 298.2888 754.1094)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[61].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1255.0139 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[67].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1303.5881 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[68].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1353.9807 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[69].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1449.6311 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[71].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1496.9182 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[72].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1544.2639 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[73].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1402.3655 129.3037)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[70].wtnum}}</text>
- <text transform="matrix(1 0 0 1 491.4792 634.9756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[54].wtnum}}</text>
- <text transform="matrix(1 0 0 1 444.7825 635.2217)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[53].wtnum}}</text>
- <text transform="matrix(1 0 0 1 394.6487 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[52].wtnum}}</text>
- <text transform="matrix(1 0 0 1 294.6824 634.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[50].wtnum}}</text>
- <text transform="matrix(1 0 0 1 246.3372 634.7275)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[49].wtnum}}</text>
- <text transform="matrix(1 0 0 1 199.0496 634.9775)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[48].wtnum}}</text>
- <text transform="matrix(1 0 0 1 148.7834 634.7295)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[47].wtnum}}</text>
- <text transform="matrix(1 0 0 1 343.6194 634.7275)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[51].wtnum}}</text>
- <text transform="matrix(1 0 0 1 4.9656 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[44].wtnum}}</text>
- <text transform="matrix(1 0 0 1 51.7971 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[45].wtnum}}</text>
- <text transform="matrix(1 0 0 1 99.676 635.2236)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[46].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1592.4104 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[74].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1640.4397 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[75].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1737.4885 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[77].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1691.5745 129.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[76].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1541.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[107].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1347.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[103].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1299.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[102].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1250.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[101].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1591.5276 751.2363)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[99].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1204.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[108].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1493.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[106].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1444.6096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[105].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1396.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[104].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1202.1096 635.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[100].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1544.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[115].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1496.2756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[114].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1447.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[113].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1399.2756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[112].wtnum}}</text>
- <text transform="matrix(1 0 0 1 1350.7756 505.541)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="17.3469">{{datas[111].wtnum}}</text>
- </g>
- <g id="s_x5F_fan">
- <g>
- <g>
- <path fill="#E1E1E0" d="M199.739,21.989l-0.86,18c0,0,0.684,0.271,1.291,0.271c0.623,0.002,1.344-0.264,1.344-0.264L200.8,21.993 L199.739,21.989L199.739,21.989z"/>
- </g>
- <g>
- <g>
- <g>
- <path fill="#A33F89" d="M199.554,21.332l1.375,0.532c0,0,3.658-7.608,3.924-11.733 C202.153,13.397,199.554,21.332,199.554,21.332"/>
- <path fill="#A33F89" d="M200.858,21.864l-1.133,0.942c0,0,4.861,6.898,8.332,9.146 C206.521,28.002,200.858,21.864,200.858,21.864"/>
- <path fill="#A33F89" d="M199.659,22.852l0.016-1.479c0,0-8.408-0.746-12.363,0.455 C191.321,23.207,199.659,22.852,199.659,22.852"/>
- </g>
- <g>
- <path fill="#E1E1E0" d="M200.864,21.687l3.99-11.709c0,0-0.043,0.717-0.071,0.956c-0.023,0.201-0.104,0.597-0.146,0.794 c-0.037,0.164-0.154,0.647-0.154,0.647s-0.213,0.84-0.295,1.115c-0.278,0.918-0.901,2.729-1.244,3.623 c-0.293,0.758-0.914,2.258-1.241,3c-0.181,0.405-0.732,1.608-0.732,1.608"/>
- <path fill="#E1E1E0" d="M199.911,22.834l8.28,9.191c0,0-0.606-0.383-0.805-0.525c-0.16-0.121-0.469-0.384-0.619-0.519 c-0.125-0.108-0.49-0.449-0.49-0.449s-0.633-0.594-0.832-0.801c-0.663-0.688-1.942-2.117-2.557-2.853 c-0.521-0.623-1.525-1.897-2.014-2.547c-0.269-0.352-1.049-1.423-1.049-1.423"/>
- <path fill="#E1E1E0" d="M199.532,21.5l-12.365,0.383c0,0,0.688-0.217,0.922-0.271c0.192-0.045,0.594-0.113,0.795-0.141 c0.164-0.024,0.658-0.086,0.658-0.086s0.86-0.096,1.151-0.114c0.953-0.062,2.871-0.117,3.826-0.11 c0.813,0.008,2.435,0.063,3.244,0.107c0.443,0.025,1.766,0.121,1.766,0.121"/>
- </g>
- </g>
- <g>
- <path fill="#69B7D0" d="M198.569,21.983c-0.006,0.897,0.752,1.631,1.689,1.635c0.936,0.005,1.697-0.725,1.697-1.62 c0.006-0.898-0.752-1.631-1.688-1.636C199.329,20.361,198.571,21.086,198.569,21.983"/>
- </g>
- <g>
- <path fill="#BEE0EA" d="M199.183,21.987c-0.004,0.56,0.479,1.015,1.078,1.017c0.592,0.004,1.078-0.449,1.084-1.01 c0.002-0.558-0.481-1.015-1.08-1.016C199.671,20.976,199.183,21.428,199.183,21.987"/>
- </g>
- </g>
- </g>
- <g>
- <g>
- <path fill="#E1E1E0" d="M110.938,21.989l-0.86,18c0,0,0.684,0.271,1.289,0.271c0.62,0.002,1.344-0.264,1.344-0.264l-0.713-18.005 L110.938,21.989L110.938,21.989z"/>
- </g>
- <g>
- <g>
- <g>
- <g>
- <path fill="#D97F0E" d="M110.749,21.332l1.379,0.532c0,0,3.651-7.608,3.92-11.733 C113.351,13.397,110.749,21.332,110.749,21.332"/>
- <path fill="#D97F0E" d="M112.058,21.864l-1.137,0.942c0,0,4.858,6.898,8.334,9.146 C117.716,28.002,112.058,21.864,112.058,21.864"/>
- <path fill="#D97F0E" d="M110.856,22.852l0.021-1.479c0,0-8.408-0.746-12.363,0.455 C102.519,23.207,110.856,22.852,110.856,22.852"/>
- </g>
- <g>
- <path fill="#DDAE76" d="M111.405,21.508l0.9-0.352c0,0,3.611-9.041,3.744-11.104c-0.096,0.115-0.211,0.604-0.324,0.859 c-0.086,0.209-0.197,0.52-0.293,0.735c-0.074,0.174-0.188,0.512-0.246,0.608c-0.094,0.162-0.291,0.75-0.424,1.062 c-0.434,1.022-1.02,2.537-1.432,3.556c-0.388,0.949-0.9,2.232-1.218,3.018c-0.272,0.707-0.655,1.635-0.655,1.635"/>
- <path fill="#DDAE76" d="M111.583,22.35l-0.133,0.956c0,0,6.135,7.561,7.87,8.683c-0.055-0.14-0.424-0.479-0.596-0.699 c-0.137-0.178-0.354-0.429-0.498-0.615c-0.113-0.15-0.354-0.416-0.41-0.512c-0.098-0.162-0.514-0.621-0.721-0.889 c-0.682-0.877-1.719-2.128-2.406-2.982c-0.643-0.801-1.512-1.875-2.045-2.533c-0.481-0.582-1.104-1.37-1.104-1.369"/>
- <path fill="#DDAE76" d="M110.792,22.174l-0.765-0.713c0,0-8.36-0.096-10.479,0.174c-0.152,0.021,0.043-0.068,0.018-0.07 c-0.032,0.001,0.039-0.008,0.019,0.008c-0.021,0.012,0.135,0.008,0.045,0.034c0.207,0.072,0.869,0.085,1.262,0.13 c1.187,0.125,2.988,0.186,4.275,0.236c1.155,0.048,2.688,0.086,3.651,0.105c0.877,0.012,1.976,0.041,1.976,0.041"/>
- </g>
- <g>
- <path fill="#E1E1E0" d="M112.062,21.687l3.99-11.709c0,0-0.039,0.717-0.072,0.956c-0.024,0.201-0.102,0.597-0.146,0.796 c-0.033,0.162-0.152,0.646-0.152,0.646s-0.211,0.84-0.295,1.116c-0.277,0.917-0.9,2.729-1.244,3.622 c-0.293,0.758-0.914,2.258-1.242,3c-0.18,0.406-0.729,1.608-0.729,1.608"/>
- <path fill="#E1E1E0" d="M111.108,22.836l8.279,9.189c0,0-0.607-0.383-0.801-0.525c-0.162-0.121-0.471-0.384-0.623-0.519 c-0.123-0.108-0.49-0.449-0.49-0.449s-0.629-0.594-0.83-0.801c-0.664-0.688-1.94-2.117-2.555-2.853 c-0.521-0.623-1.525-1.897-2.019-2.547c-0.266-0.352-1.047-1.423-1.047-1.423"/>
- <path fill="#E1E1E0" d="M110.729,21.5l-12.36,0.383c0,0,0.684-0.217,0.918-0.271c0.196-0.045,0.598-0.113,0.797-0.141 c0.16-0.024,0.66-0.086,0.66-0.086s0.86-0.096,1.147-0.114c0.953-0.062,2.871-0.117,3.826-0.11 c0.813,0.008,2.436,0.063,3.246,0.107c0.438,0.025,1.764,0.121,1.764,0.121"/>
- </g>
- </g>
- </g>
- <g>
- <path fill="#69B7D0" d="M109.767,21.983c-0.006,0.897,0.752,1.632,1.687,1.635c0.938,0.005,1.696-0.725,1.702-1.62 c0.005-0.898-0.752-1.631-1.688-1.636C110.53,20.361,109.769,21.086,109.767,21.983"/>
- </g>
- <g>
- <path fill="#BEE0EA" d="M110.38,21.987c-0.004,0.56,0.477,1.015,1.078,1.019c0.592,0.002,1.08-0.451,1.084-1.012 c0-0.558-0.484-1.015-1.078-1.016C110.866,20.976,110.382,21.428,110.38,21.987"/>
- </g>
- </g>
- </g>
- <g>
- <g>
- <path fill="#E1E1E0" d="M60.702,21.989l-0.861,18c0,0,0.684,0.271,1.291,0.271c0.621,0.002,1.342-0.264,1.342-0.264 l-0.713-18.005L60.702,21.989L60.702,21.989z"/>
- </g>
- <g>
- <g>
- <g>
- <path fill="#1EA23E" d="M60.517,21.332l1.377,0.532c0,0,3.654-7.608,3.918-11.733C63.114,13.397,60.517,21.332,60.517,21.332"/>
- <path fill="#1EA23E" d="M61.821,21.864l-1.135,0.942c0,0,4.861,6.898,8.332,9.146C67.483,28.002,61.821,21.864,61.821,21.864"/>
- <path fill="#1EA23E" d="M60.624,22.852l0.014-1.479c0,0-8.408-0.746-12.365,0.455C52.28,23.207,60.624,22.852,60.624,22.852"/>
- </g>
- <g>
- <path fill="#E1E1E0" d="M61.825,21.687l3.989-11.709c0,0-0.043,0.717-0.069,0.956c-0.025,0.201-0.105,0.597-0.146,0.794 c-0.037,0.164-0.154,0.647-0.154,0.647s-0.213,0.84-0.295,1.115c-0.28,0.918-0.897,2.729-1.244,3.623 c-0.29,0.758-0.911,2.258-1.241,3c-0.181,0.405-0.73,1.608-0.73,1.608"/>
- <path fill="#E1E1E0" d="M60.872,22.834l8.28,9.191c0,0-0.606-0.383-0.803-0.525c-0.16-0.121-0.471-0.384-0.623-0.519 c-0.123-0.108-0.488-0.449-0.488-0.449s-0.633-0.594-0.831-0.801c-0.662-0.688-1.941-2.117-2.558-2.853 c-0.518-0.623-1.524-1.897-2.016-2.547c-0.269-0.352-1.049-1.423-1.049-1.423"/>
- <path fill="#E1E1E0" d="M60.491,21.5L48.13,21.883c0,0,0.686-0.217,0.92-0.271c0.197-0.045,0.594-0.113,0.795-0.141 c0.166-0.024,0.662-0.086,0.662-0.086s0.856-0.096,1.147-0.114c0.953-0.062,2.867-0.117,3.828-0.11 c0.813,0.008,2.435,0.063,3.244,0.107c0.439,0.025,1.762,0.121,1.762,0.121"/>
- </g>
- </g>
- <g>
- <path fill="#69B7D0" d="M59.53,21.983c-0.004,0.897,0.753,1.631,1.688,1.635c0.936,0.005,1.697-0.725,1.701-1.62 c0.002-0.898-0.754-1.631-1.689-1.636C60.294,20.361,59.532,21.086,59.53,21.983"/>
- </g>
- <g>
- <path fill="#BEE0EA" d="M60.144,21.987c-0.002,0.56,0.48,1.015,1.076,1.017c0.596,0.004,1.082-0.449,1.086-1.01 c0-0.558-0.479-1.015-1.078-1.016C60.632,20.976,60.146,21.428,60.144,21.987"/>
- </g>
- </g>
- </g>
- <g>
- <g>
- <path fill="#E1E1E0" d="M15.78,22.209l-0.86,18c0,0,0.682,0.27,1.289,0.271c0.623,0.002,1.344-0.264,1.344-0.264L16.841,22.21 L15.78,22.209L15.78,22.209z"/>
- </g>
- <g>
- <g>
- <g>
- <path fill="#454995" d="M15.591,21.549l1.377,0.533c0,0,3.656-7.607,3.922-11.733C18.194,13.616,15.591,21.549,15.591,21.549"/>
- <path fill="#454995" d="M16.899,22.082l-1.137,0.943c0,0,4.859,6.898,8.334,9.145C22.56,28.221,16.899,22.082,16.899,22.082"/>
- <path fill="#454995" d="M15.7,23.069l0.012-1.478c0,0-8.406-0.748-12.361,0.453C7.358,23.424,15.7,23.069,15.7,23.069"/>
- </g>
- <g>
- <path fill="#E1E1E0" d="M16.903,21.905l3.986-11.711c0,0-0.037,0.72-0.068,0.957c-0.021,0.201-0.102,0.599-0.145,0.795 c-0.039,0.163-0.154,0.649-0.154,0.649s-0.217,0.841-0.297,1.115c-0.279,0.916-0.899,2.729-1.244,3.621 c-0.291,0.758-0.914,2.258-1.239,3c-0.179,0.405-0.734,1.607-0.734,1.607"/>
- <path fill="#E1E1E0" d="M15.95,23.053l8.278,9.19c0,0-0.606-0.383-0.799-0.526c-0.166-0.12-0.475-0.381-0.625-0.518 c-0.123-0.109-0.49-0.449-0.49-0.449s-0.631-0.594-0.83-0.802c-0.664-0.688-1.942-2.114-2.555-2.854 c-0.522-0.623-1.527-1.896-2.018-2.545c-0.269-0.354-1.047-1.424-1.047-1.424"/>
- <path fill="#E1E1E0" d="M15.573,21.717L3.208,22.101c0,0,0.684-0.218,0.922-0.271c0.193-0.048,0.596-0.113,0.793-0.144 c0.166-0.022,0.66-0.084,0.66-0.084s0.86-0.097,1.146-0.116c0.959-0.061,2.873-0.115,3.83-0.107 c0.813,0.006,2.435,0.063,3.246,0.106c0.441,0.024,1.762,0.121,1.762,0.121"/>
- </g>
- </g>
- <g>
- <path fill="#69B7D0" d="M14.606,22.205c-0.004,0.896,0.752,1.629,1.689,1.631c0.936,0.006,1.697-0.725,1.701-1.621 c0.004-0.898-0.752-1.627-1.689-1.633C15.37,20.58,14.61,21.304,14.606,22.205"/>
- </g>
- <g>
- <path fill="#BEE0EA" d="M15.22,22.205c-0.002,0.56,0.48,1.016,1.076,1.019c0.594,0.003,1.082-0.45,1.084-1.009 c0.004-0.561-0.479-1.015-1.076-1.02C15.71,21.194,15.224,21.646,15.22,22.205"/>
- </g>
- </g>
- </g>
- <g>
- <g>
- <path fill="#E1E1E0" d="M246.126,21.989l-0.861,18c0,0,0.685,0.271,1.291,0.271c0.619,0.002,1.342-0.264,1.342-0.264 l-0.713-18.005L246.126,21.989L246.126,21.989z"/>
- </g>
- <g>
- <g>
- <g>
- <path fill="#FFFFFF" d="M245.937,21.332l1.379,0.532c0,0,3.656-7.608,3.922-11.733 C248.54,13.397,245.937,21.332,245.937,21.332"/>
- <path fill="#FFFFFF" d="M247.245,21.864l-1.138,0.942c0,0,4.863,6.898,8.334,9.146 C252.906,28.002,247.245,21.864,247.245,21.864"/>
- <path fill="#FFFFFF" d="M246.046,22.852l0.016-1.479c0,0-8.406-0.746-12.362,0.455 C237.704,23.207,246.046,22.852,246.046,22.852"/>
- </g>
- <g>
- <path fill="#E1E1E0" d="M247.249,21.687l3.989-11.709c0,0-0.043,0.717-0.071,0.956c-0.023,0.201-0.104,0.597-0.146,0.794 c-0.035,0.164-0.153,0.647-0.153,0.647s-0.209,0.84-0.294,1.115c-0.278,0.918-0.897,2.729-1.241,3.623 c-0.293,0.758-0.916,2.258-1.246,3c-0.178,0.405-0.73,1.608-0.73,1.608"/>
- <path fill="#E1E1E0" d="M246.298,22.834l8.279,9.191c0,0-0.607-0.383-0.802-0.525c-0.164-0.121-0.471-0.384-0.625-0.519 c-0.123-0.108-0.489-0.449-0.489-0.449s-0.629-0.594-0.83-0.802c-0.666-0.688-1.943-2.116-2.558-2.852 c-0.52-0.623-1.524-1.897-2.014-2.547c-0.266-0.352-1.047-1.423-1.047-1.423"/>
- <path fill="#E1E1E0" d="M245.921,21.5l-12.369,0.383c0,0,0.687-0.217,0.922-0.271c0.197-0.045,0.598-0.113,0.795-0.141 c0.164-0.024,0.66-0.086,0.66-0.086s0.863-0.096,1.15-0.114c0.957-0.062,2.871-0.117,3.825-0.11 c0.813,0.008,2.437,0.063,3.246,0.107c0.439,0.025,1.765,0.121,1.765,0.121"/>
- </g>
- </g>
- <g>
- <path fill="#69B7D0" d="M244.954,21.983c-0.004,0.897,0.752,1.631,1.688,1.635c0.937,0.005,1.697-0.725,1.701-1.62 c0.004-0.898-0.754-1.631-1.691-1.636C245.716,20.361,244.958,21.086,244.954,21.983"/>
- </g>
- <g>
- <path fill="#BEE0EA" d="M245.569,21.987c-0.004,0.56,0.478,1.015,1.074,1.017c0.596,0.004,1.082-0.449,1.084-1.01 c0.002-0.558-0.479-1.015-1.078-1.016C246.058,20.976,245.569,21.428,245.569,21.987"/>
- </g>
- </g>
- </g>
- <g>
- <g>
- <path fill="#E1E1E0" d="M152.851,21.996l-0.863,18c0,0,0.688,0.27,1.293,0.271c0.621,0.002,1.345-0.264,1.345-0.264 l-0.715-18.006L152.851,21.996L152.851,21.996z"/>
- </g>
- <g>
- <g>
- <g>
- <path fill="#B62F2D" d="M152.661,21.338l1.381,0.531c0,0,3.651-7.606,3.92-11.731 C155.265,13.403,152.661,21.338,152.661,21.338"/>
- <path fill="#B62F2D" d="M153.972,21.871l-1.137,0.942c0,0,4.86,6.897,8.334,9.146 C159.634,28.008,153.972,21.871,153.972,21.871"/>
- <path fill="#B62F2D" d="M152.772,22.856l0.015-1.476c0,0-8.408-0.748-12.363,0.453 C144.431,23.211,152.772,22.856,152.772,22.856"/>
- </g>
- <g>
- <path fill="#E1E1E0" d="M153.976,21.692l3.99-11.711c0,0-0.039,0.72-0.072,0.958c-0.024,0.201-0.104,0.598-0.147,0.794 c-0.035,0.162-0.152,0.647-0.152,0.647s-0.207,0.841-0.295,1.117c-0.277,0.916-0.9,2.729-1.242,3.621 c-0.293,0.758-0.914,2.258-1.242,3c-0.178,0.404-0.729,1.609-0.729,1.609"/>
- <path fill="#E1E1E0" d="M153.022,22.84l8.281,9.191c0,0-0.609-0.385-0.801-0.527c-0.164-0.119-0.476-0.383-0.623-0.516 c-0.123-0.111-0.492-0.451-0.492-0.451s-0.629-0.594-0.83-0.802c-0.664-0.688-1.94-2.116-2.559-2.851 c-0.519-0.627-1.523-1.9-2.015-2.549c-0.264-0.351-1.047-1.422-1.047-1.422"/>
- <path fill="#E1E1E0" d="M152.644,21.504l-12.365,0.384c0,0,0.688-0.216,0.925-0.271c0.194-0.047,0.594-0.115,0.795-0.144 c0.162-0.023,0.66-0.085,0.66-0.085s0.858-0.096,1.147-0.115c0.953-0.061,2.871-0.116,3.828-0.107 c0.811,0.006,2.434,0.062,3.244,0.105c0.438,0.023,1.764,0.121,1.764,0.121"/>
- </g>
- </g>
- <g>
- <path fill="#69B7D0" d="M151.679,21.99c-0.002,0.896,0.754,1.631,1.688,1.635c0.938,0.002,1.698-0.726,1.702-1.621 c0-0.898-0.756-1.629-1.688-1.633C152.442,20.365,151.681,21.092,151.679,21.99"/>
- </g>
- <g>
- <path fill="#BEE0EA" d="M152.292,21.993c0,0.558,0.481,1.015,1.076,1.017c0.598,0.003,1.082-0.449,1.086-1.01 c0.002-0.558-0.482-1.013-1.076-1.016C152.782,20.981,152.298,21.433,152.292,21.993"/>
- </g>
- </g>
- </g>
- </g>
- <g id="arrow">
- <!--这两个点位缺失返回值-->
- <rect id="305" x="1105.84" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="105" x="1016.34" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
- <!--这两个点位缺失返回值-->
- <rect id="sbq5j302" x="1105.84" y="263.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq6j353" x="1150.34" y="755.391" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq6j352" x="1150.34" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq6j151" x="970.34" y="635.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq6j351" x="1150.34" y="505.716" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j332" x="1141.34" y="383.391" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j102" x="1016.34" y="263.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j121" x="970.34" y="263.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j331" x="1141.34" y="133.716" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j323" x="622.237" y="754.391" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j322" x="622.237" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j302" x="661.737" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j102" x="753.737" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j121" x="801.737" y="634.488" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbq5j321" x="622.237" y="504.716" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbqdq314" x="622.237" y="386.946" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbqdq313" x="622.237" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbqdq1h301" x="661.737" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbqdq1h101" x="753.737" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbqdq111" x="801.737" y="259.711" fill="#CA201D" width="27.348" height="16.294"/>
- <rect id="sbqdq312" x="622.237" y="129.938" fill="#CA201D" width="27.348" height="16.294"/>
- </g>
- <g id="fan">
- <g id="_x23_34">
- <g>
- <path fill="#DFDFDD" d="M22.764,451.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L22.764,451.388L22.764,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 23 451.384)">
- <g>
- <path fill="#3E4484" d="M22.463,450.336l2.203,0.854c0,0,5.844-12.161,6.27-18.758 C26.621,437.656,22.463,450.336,22.463,450.336"/>
- <path fill="#3E4484" d="M24.553,451.187l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C33.604,460.999,24.553,451.187,24.553,451.187"/>
- <path fill="#3E4484" d="M22.639,452.767l0.021-2.36c0,0-13.44-1.197-19.767,0.728C9.303,453.336,22.639,452.767,22.639,452.767 "/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M24.559,450.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M23.037,452.742l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
- <path fill="#DFDFDD" d="M22.434,450.601L2.666,451.22c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 23 451.384" dur="4s" to="359 23 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M20.893,451.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C22.11,448.788,20.895,449.943,20.893,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M21.871,451.384c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C22.651,449.772,21.875,450.494,21.871,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_35">
- <g>
- <path fill="#DFDFDD" d="M64.987,451.388l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L64.987,451.388L64.987,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 66 451.384)">
- <g>
- <path fill="#3E4484" d="M64.686,450.336l2.203,0.854c0,0,5.844-12.161,6.269-18.758 C68.842,437.656,64.686,450.336,64.686,450.336"/>
- <path fill="#3E4484" d="M66.776,451.187l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C75.827,460.999,66.776,451.187,66.776,451.187"/>
- <path fill="#3E4484" d="M64.862,452.767l0.021-2.36c0,0-13.441-1.197-19.767,0.728 C51.526,453.336,64.862,452.767,64.862,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M66.782,450.906l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
- <path fill="#DFDFDD" d="M65.26,452.742l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M64.657,450.601l-19.771,0.619c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 66 451.384" dur="4s" to="359 66 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M63.112,451.382c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C64.332,448.788,63.118,449.943,63.112,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M64.094,451.384c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C64.875,449.772,64.098,450.494,64.094,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_36">
- <g>
- <path fill="#DFDFDD" d="M115.482,451.388l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L115.482,451.388L115.482,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 116 451.384)">
- <g>
- <path fill="#3E4484" d="M115.18,450.336l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C119.34,437.656,115.18,450.336,115.18,450.336"/>
- <path fill="#3E4484" d="M117.271,451.187l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C126.32,460.999,117.271,451.187,117.271,451.187"/>
- <path fill="#3E4484" d="M115.357,452.767l0.021-2.36c0,0-13.44-1.197-19.768,0.728 C102.02,453.336,115.357,452.767,115.357,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M117.277,450.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M115.756,452.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M115.152,450.601l-19.767,0.619c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 116 451.384" dur="4s" to="359 116 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M113.609,451.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C114.828,448.788,113.613,449.943,113.609,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M114.588,451.384c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C115.369,449.772,114.592,450.494,114.588,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_58">
- <g>
- <path fill="#DFDFDD" d="M116.999,695.891l-1.377,28.778c0,0,1.094,0.432,2.063,0.434c0.996,0.005,2.148-0.421,2.148-0.421 l-1.14-28.781L116.999,695.891L116.999,695.891z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 118 695.888)">
- <g>
- <path fill="#3E4484" d="M116.701,694.839l2.202,0.854c0,0,5.843-12.162,6.269-18.757 C120.857,682.158,116.701,694.839,116.701,694.839"/>
- <path fill="#3E4484" d="M118.79,695.693l-1.814,1.508c0,0,7.771,11.025,13.322,14.619 C127.839,705.502,118.79,695.693,118.79,695.693"/>
- <path fill="#3E4484" d="M116.876,697.273l0.02-2.363c0,0-13.438-1.197-19.766,0.729 C103.54,697.838,116.876,697.273,116.876,697.273"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M118.796,695.41l6.377-18.719c0,0-0.063,1.146-0.111,1.524c-0.039,0.322-0.164,0.959-0.233,1.273 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.358-1.987,5.788 c-0.466,1.212-1.461,3.607-1.984,4.796c-0.283,0.649-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M117.273,697.246l13.24,14.689c0,0-0.977-0.609-1.281-0.843c-0.264-0.188-0.754-0.606-0.994-0.823 c-0.198-0.175-0.786-0.718-0.786-0.718s-1.011-0.953-1.324-1.287c-1.064-1.102-3.111-3.379-4.092-4.559 c-0.826-0.994-2.438-3.031-3.222-4.068c-0.426-0.563-1.672-2.274-1.672-2.274"/>
- <path fill="#DFDFDD" d="M116.671,695.107l-19.769,0.617c0,0,1.095-0.353,1.472-0.438c0.313-0.074,0.951-0.183,1.27-0.229 c0.269-0.036,1.06-0.136,1.06-0.136s1.375-0.155,1.838-0.186c1.524-0.1,4.588-0.188,6.121-0.179 c1.295,0.013,3.887,0.104,5.184,0.175c0.707,0.041,2.82,0.192,2.82,0.192"/>
- </g>
-
- <animateTransform restart="always" from="0 118 695.888" dur="4s" to="359 118 695.888" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M115.128,695.884c-0.008,1.437,1.201,2.605,2.694,2.611c1.498,0.002,2.716-1.158,2.722-2.59 c0.006-1.441-1.203-2.604-2.701-2.613C116.347,693.292,115.132,694.447,115.128,695.884"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M116.107,695.888c-0.002,0.896,0.771,1.621,1.724,1.628c0.95,0.002,1.731-0.72,1.733-1.613 c0.002-0.895-0.77-1.619-1.723-1.627C116.888,694.275,116.109,694.997,116.107,695.888"/>
- </g>
- </g>
- </g>
- <g id="_x23_57">
- <g>
- <path fill="#DFDFDD" d="M70.796,695.891l-1.379,28.778c0,0,1.096,0.432,2.063,0.434c0.998,0.005,2.148-0.421,2.148-0.421 L72.488,695.9L70.796,695.891L70.796,695.891z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 71 695.888)">
- <g>
- <path fill="#3E4484" d="M70.494,694.839l2.202,0.854c0,0,5.843-12.162,6.271-18.757 C74.652,682.158,70.494,694.839,70.494,694.839"/>
- <path fill="#3E4484" d="M72.585,695.693l-1.813,1.508c0,0,7.769,11.025,13.32,14.619 C81.636,705.502,72.585,695.693,72.585,695.693"/>
- <path fill="#3E4484" d="M70.669,697.273l0.021-2.363c0,0-13.438-1.197-19.766,0.729 C57.333,697.838,70.669,697.273,70.669,697.273"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M72.593,695.41l6.377-18.719c0,0-0.063,1.146-0.111,1.524c-0.041,0.322-0.164,0.959-0.235,1.273 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.783c-0.442,1.469-1.438,4.358-1.987,5.788 c-0.465,1.212-1.461,3.607-1.982,4.796c-0.283,0.649-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M71.07,697.246l13.238,14.689c0,0-0.975-0.609-1.281-0.843c-0.264-0.188-0.756-0.606-0.996-0.823 c-0.196-0.175-0.784-0.718-0.784-0.718s-1.011-0.953-1.322-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.828-0.994-2.437-3.031-3.22-4.068c-0.426-0.563-1.674-2.274-1.674-2.274"/>
- <path fill="#DFDFDD" d="M70.468,695.107l-19.771,0.617c0,0,1.097-0.353,1.474-0.438c0.313-0.074,0.949-0.183,1.271-0.229 c0.267-0.036,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.524-0.1,4.59-0.188,6.123-0.179 c1.293,0.013,3.887,0.104,5.184,0.175c0.707,0.041,2.816,0.192,2.816,0.192"/>
- </g>
-
- <animateTransform restart="always" from="0 71 695.888" dur="4s" to="359 71 695.888" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M68.925,695.884c-0.01,1.437,1.199,2.605,2.693,2.611c1.498,0.002,2.715-1.158,2.723-2.59 c0.006-1.441-1.203-2.604-2.701-2.613C70.142,693.292,68.927,694.447,68.925,695.884"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M69.902,695.888c-0.004,0.896,0.769,1.621,1.72,1.628c0.953,0.002,1.735-0.72,1.735-1.613 c0.004-0.896-0.77-1.619-1.721-1.627C70.681,694.275,69.904,694.997,69.902,695.888"/>
- </g>
- </g>
- </g>
- <g id="_x23_56">
- <g>
- <path fill="#DFDFDD" d="M20.734,699.863l-1.377,28.777c0,0,1.097,0.432,2.063,0.434c0.996,0.005,2.146-0.42,2.146-0.42 l-1.139-28.782L20.734,699.863L20.734,699.863z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 21 699.861)">
- <g>
- <path fill="#3E4484" d="M20.433,698.812l2.203,0.854c0,0,5.844-12.162,6.268-18.757 C24.591,686.129,20.433,698.812,20.433,698.812"/>
- <path fill="#3E4484" d="M22.525,699.665l-1.813,1.508c0,0,7.768,11.026,13.32,14.619 C31.574,709.473,22.525,699.665,22.525,699.665"/>
- <path fill="#3E4484" d="M20.611,701.245l0.021-2.363c0,0-13.439-1.197-19.766,0.729 C7.273,701.809,20.611,701.245,20.611,701.245"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M22.531,699.38l6.378-18.719c0,0-0.063,1.146-0.109,1.525c-0.039,0.321-0.166,0.959-0.236,1.272 c-0.057,0.26-0.246,1.035-0.246,1.035s-0.338,1.344-0.471,1.785c-0.447,1.467-1.438,4.356-1.988,5.788 c-0.467,1.212-1.463,3.605-1.983,4.796c-0.283,0.647-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M21.007,701.216l13.24,14.69c0,0-0.976-0.61-1.281-0.842c-0.264-0.19-0.754-0.608-0.996-0.824 c-0.199-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.104-3.108-3.379-4.09-4.561 c-0.828-0.994-2.438-3.029-3.219-4.066c-0.428-0.563-1.674-2.276-1.674-2.276"/>
- <path fill="#DFDFDD" d="M20.406,699.079l-19.771,0.618c0,0,1.094-0.354,1.475-0.438c0.312-0.074,0.949-0.182,1.271-0.228 c0.264-0.036,1.055-0.137,1.055-0.137s1.377-0.154,1.84-0.186c1.525-0.099,4.588-0.187,6.123-0.179 c1.293,0.013,3.888,0.104,5.183,0.175c0.707,0.041,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 21 699.861" dur="4s" to="359 21 699.861" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M18.861,699.857c-0.006,1.435,1.201,2.604,2.695,2.609c1.498,0.002,2.715-1.158,2.721-2.59 c0.007-1.44-1.2-2.604-2.7-2.613C20.081,697.262,18.869,698.418,18.861,699.857"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M19.841,699.861c-0.004,0.894,0.771,1.621,1.721,1.627c0.951,0.002,1.732-0.72,1.734-1.614 c0.004-0.894-0.771-1.619-1.721-1.627C20.622,698.247,19.843,698.968,19.841,699.861"/>
- </g>
- </g>
- </g>
- <g id="_x23_42">
- <g>
- <path fill="#DFDFDD" d="M401.331,451.388l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L401.331,451.388L401.331,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 402 451.384)">
- <g>
- <path fill="#3E4484" d="M401.029,450.336l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C405.189,437.654,401.029,450.336,401.029,450.336"/>
- <path fill="#3E4484" d="M403.12,451.187l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C412.17,460.999,403.12,451.187,403.12,451.187"/>
- <path fill="#3E4484" d="M401.206,452.767l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C387.868,453.336,401.206,452.767,401.206,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M403.127,450.906l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M401.605,452.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M401.002,450.601l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 402 451.384" dur="4s" to="359 402 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M399.459,451.382c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C400.678,448.788,399.463,449.943,399.459,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M400.437,451.384c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C401.219,449.772,400.441,450.494,400.437,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_41">
- <g>
- <path fill="#DFDFDD" d="M354.055,451.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L354.055,451.388L354.055,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 355 451.384)">
- <g>
- <path fill="#3E4484" d="M353.754,450.336l2.202,0.854c0,0,5.843-12.161,6.271-18.756 C357.913,437.654,353.754,450.336,353.754,450.336"/>
- <path fill="#3E4484" d="M355.846,451.187l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C364.895,460.999,355.846,451.187,355.846,451.187"/>
- <path fill="#3E4484" d="M353.93,452.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C340.594,453.336,353.93,452.767,353.93,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M355.852,450.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M354.329,452.742l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M353.725,450.601l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 355 451.384" dur="4s" to="359 355 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M352.184,451.382c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C353.4,448.788,352.187,449.943,352.184,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M353.159,451.384c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C353.943,449.772,353.163,450.494,353.159,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_40">
- <g>
- <path fill="#DFDFDD" d="M308.489,451.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L308.489,451.388L308.489,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 309 451.384)">
- <g>
- <path fill="#3E4484" d="M308.188,450.336l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C312.347,437.654,308.188,450.336,308.188,450.336"/>
- <path fill="#3E4484" d="M310.278,451.187l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C319.328,460.999,310.278,451.187,310.278,451.187"/>
- <path fill="#3E4484" d="M308.364,452.767l0.021-2.36c0,0-13.441-1.195-19.767,0.729 C295.028,453.336,308.364,452.767,308.364,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M310.283,450.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
- <path fill="#DFDFDD" d="M308.763,452.742l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M308.158,450.601l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 309 451.384" dur="4s" to="359 309 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M306.617,451.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C307.834,448.788,306.619,449.943,306.617,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M307.597,451.384c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C308.375,449.772,307.601,450.494,307.597,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_39">
- <g>
- <path fill="#DFDFDD" d="M259.019,451.388l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L259.019,451.388L259.019,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 260 451.384)">
- <g>
- <path fill="#3E4484" d="M258.716,450.336l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C262.875,437.654,258.716,450.336,258.716,450.336"/>
- <path fill="#3E4484" d="M260.808,451.187l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C269.856,460.999,260.808,451.187,260.808,451.187"/>
- <path fill="#3E4484" d="M258.894,452.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C245.556,453.336,258.894,452.767,258.894,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M260.813,450.906l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M259.291,452.742l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M258.688,450.601l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 260 451.384" dur="4s" to="359 260 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M257.145,451.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C258.364,448.788,257.151,449.943,257.145,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M258.123,451.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C258.905,449.772,258.127,450.494,258.123,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_38">
- <g>
- <path fill="#DFDFDD" d="M209.495,451.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L209.495,451.388L209.495,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 210 451.384)">
- <g>
- <path fill="#3E4484" d="M209.194,450.336l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C213.353,437.654,209.194,450.336,209.194,450.336"/>
- <path fill="#3E4484" d="M211.284,451.187l-1.813,1.511c0,0,7.769,11.024,13.32,14.618 C220.334,460.999,211.284,451.187,211.284,451.187"/>
- <path fill="#3E4484" d="M209.37,452.767l0.021-2.36c0,0-13.44-1.195-19.766,0.729 C196.034,453.336,209.37,452.767,209.37,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M211.289,450.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M209.769,452.742l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M209.164,450.601l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 210 451.384" dur="4s" to="359 210 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M207.623,451.382c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C208.841,448.788,207.625,449.943,207.623,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M208.603,451.384c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C209.382,449.772,208.606,450.494,208.603,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_37">
- <g>
- <path fill="#DFDFDD" d="M160.97,451.388l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L160.97,451.388L160.97,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 162 451.384)">
- <g>
- <path fill="#3E4484" d="M160.666,450.336l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C164.825,437.654,160.666,450.336,160.666,450.336"/>
- <path fill="#3E4484" d="M162.759,451.187l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C171.808,460.999,162.759,451.187,162.759,451.187"/>
- <path fill="#3E4484" d="M160.843,452.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C147.507,453.336,160.843,452.767,160.843,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M162.765,450.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M161.243,452.742l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M160.638,450.601l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 162 451.384" dur="4s" to="359 162 451.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M159.097,451.382c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C160.313,448.788,159.101,449.943,159.097,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M160.073,451.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C160.854,449.772,160.077,450.494,160.073,451.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_43">
- <g>
- <path fill="#DFDFDD" d="M456.15,451.388l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L456.15,451.388L456.15,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 457 451.386)">
- <g>
- <path fill="#3E4484" d="M455.849,450.338l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C460.007,437.656,455.849,450.338,455.849,450.338"/>
- <path fill="#3E4484" d="M457.939,451.187l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C466.989,461,457.939,451.187,457.939,451.187"/>
- <path fill="#3E4484" d="M456.025,452.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C442.689,453.336,456.025,452.767,456.025,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M457.944,450.908l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M456.423,452.742l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
- <path fill="#DFDFDD" d="M455.819,450.603l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 457 451.386" dur="4s" to="359 457 451.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M454.278,451.382c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C455.494,448.788,454.28,449.943,454.278,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M455.257,451.386c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C456.035,449.772,455.261,450.496,455.257,451.386"/>
- </g>
- </g>
- </g>
- <g id="_x23_44">
- <g>
- <path fill="#DFDFDD" d="M508.668,451.388l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L508.668,451.388L508.668,451.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 509 451.386)">
- <g>
- <path fill="#3E4484" d="M508.364,450.338l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C512.525,437.656,508.364,450.338,508.364,450.338"/>
- <path fill="#3E4484" d="M510.455,451.187l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C519.508,461,510.455,451.187,510.455,451.187"/>
- <path fill="#3E4484" d="M508.543,452.767l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C495.203,453.336,508.543,452.767,508.543,452.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M510.463,450.908l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
- <path fill="#DFDFDD" d="M508.941,452.742l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
- <path fill="#DFDFDD" d="M508.338,450.603l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 509 451.386" dur="4s" to="359 509 451.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M506.795,451.382c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C508.014,448.788,506.799,449.943,506.795,451.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M507.773,451.386c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C508.555,449.772,507.775,450.496,507.773,451.386"/>
- </g>
- </g>
- </g>
- <g id="_x23_59">
- <g>
- <path fill="#DFDFDD" d="M167.835,695.943l-1.379,28.776c0,0,1.096,0.433,2.063,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.14-28.783L167.835,695.943L167.835,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 168 695.943)">
- <g>
- <path fill="#3E4484" d="M167.535,694.891l2.202,0.854c0,0,5.845-12.162,6.271-18.754 C171.693,682.209,167.535,694.891,167.535,694.891"/>
- <path fill="#3E4484" d="M169.624,695.744l-1.813,1.51c0,0,7.769,11.027,13.318,14.617 C178.675,705.552,169.624,695.744,169.624,695.744"/>
- <path fill="#3E4484" d="M167.71,697.322l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C154.372,697.891,167.71,697.322,167.71,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M169.63,695.459l6.379-18.719c0,0-0.063,1.146-0.111,1.525c-0.041,0.321-0.166,0.956-0.235,1.274 c-0.06,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.474,1.785c-0.446,1.467-1.438,4.358-1.989,5.789 c-0.465,1.211-1.461,3.606-1.982,4.797c-0.281,0.646-1.172,2.568-1.172,2.568"/>
- <path fill="#DFDFDD" d="M168.111,697.296l13.238,14.691c0,0-0.975-0.613-1.281-0.842c-0.264-0.193-0.754-0.611-0.996-0.826 c-0.198-0.178-0.784-0.717-0.784-0.717s-1.011-0.955-1.326-1.287c-1.063-1.104-3.109-3.381-4.09-4.56 c-0.826-0.996-2.437-3.031-3.22-4.065c-0.428-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#DFDFDD" d="M167.505,695.158l-19.771,0.617c0,0,1.097-0.351,1.474-0.437c0.313-0.073,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.836-0.187c1.526-0.098,4.59-0.187,6.123-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 168 695.943" dur="4s" to="359 168 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M165.962,695.937c-0.006,1.435,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C167.183,693.341,165.968,694.497,165.962,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M166.943,695.943c-0.004,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.724,1.733-1.613 c0.004-0.896-0.77-1.623-1.723-1.627C167.724,694.326,166.945,695.046,166.943,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_60">
- <g>
- <path fill="#DFDFDD" d="M213.597,695.943l-1.377,28.776c0,0,1.094,0.433,2.063,0.437c0.995,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L213.597,695.943L213.597,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 214 695.943)">
- <g>
- <path fill="#3E4484" d="M213.296,694.891l2.203,0.854c0,0,5.844-12.162,6.27-18.754 C217.454,682.209,213.296,694.891,213.296,694.891"/>
- <path fill="#3E4484" d="M215.388,695.744l-1.813,1.51c0,0,7.768,11.027,13.321,14.617 C224.437,705.552,215.388,695.744,215.388,695.744"/>
- <path fill="#3E4484" d="M213.474,697.322l0.021-2.361c0,0-13.441-1.197-19.769,0.729 C200.136,697.891,213.474,697.322,213.474,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M215.394,695.459l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.321-0.164,0.956-0.236,1.274 c-0.057,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.447,1.467-1.438,4.358-1.99,5.789 c-0.465,1.211-1.461,3.606-1.98,4.797c-0.282,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#DFDFDD" d="M213.872,697.296l13.237,14.691c0,0-0.977-0.613-1.28-0.842c-0.263-0.193-0.754-0.611-0.996-0.826 c-0.197-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.326-1.287c-1.063-1.104-3.108-3.381-4.09-4.56 c-0.826-0.996-2.437-3.031-3.219-4.065c-0.429-0.563-1.675-2.279-1.675-2.279"/>
- <path fill="#DFDFDD" d="M213.269,695.158l-19.77,0.617c0,0,1.096-0.351,1.473-0.437c0.313-0.073,0.951-0.184,1.271-0.229 c0.264-0.037,1.055-0.137,1.055-0.137s1.377-0.154,1.838-0.187c1.527-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.182,0.172c0.707,0.043,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 214 695.943" dur="4s" to="359 214 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M211.724,695.937c-0.006,1.435,1.203,2.604,2.697,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C212.945,693.341,211.73,694.497,211.724,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M212.704,695.943c-0.002,0.893,0.771,1.618,1.721,1.625c0.953,0.004,1.734-0.724,1.736-1.613 c0.002-0.896-0.771-1.623-1.724-1.627C213.486,694.326,212.708,695.046,212.704,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_61">
- <g>
- <path fill="#DFDFDD" d="M263.872,695.943l-1.377,28.776c0,0,1.094,0.433,2.063,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.143-28.783L263.872,695.943L263.872,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 264 695.943)">
- <g>
- <path fill="#3E4484" d="M263.571,694.891l2.203,0.854c0,0,5.846-12.162,6.271-18.754 C267.729,682.209,263.571,694.891,263.571,694.891"/>
- <path fill="#3E4484" d="M265.663,695.744l-1.814,1.51c0,0,7.77,11.027,13.322,14.617 C274.712,705.552,265.663,695.744,265.663,695.744"/>
- <path fill="#3E4484" d="M263.749,697.322l0.021-2.361c0,0-13.439-1.197-19.768,0.729 C250.412,697.891,263.749,697.322,263.749,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M265.669,695.459l6.377-18.719c0,0-0.063,1.146-0.111,1.525c-0.039,0.321-0.164,0.956-0.234,1.274 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.475,1.785c-0.445,1.467-1.438,4.358-1.988,5.789 c-0.467,1.211-1.461,3.606-1.982,4.797c-0.283,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#DFDFDD" d="M264.147,697.296l13.238,14.691c0,0-0.975-0.613-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.195-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.324-1.287c-1.064-1.104-3.109-3.381-4.092-4.56 c-0.824-0.996-2.437-3.031-3.219-4.065c-0.428-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#DFDFDD" d="M263.544,695.158l-19.771,0.617c0,0,1.098-0.351,1.475-0.437c0.311-0.073,0.949-0.184,1.271-0.229 c0.265-0.037,1.055-0.137,1.055-0.137s1.379-0.154,1.84-0.187c1.525-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.182,0.172c0.707,0.043,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 264 695.943" dur="4s" to="359 264 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M261.999,695.937c-0.006,1.435,1.203,2.604,2.695,2.609c1.498,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C263.219,693.341,262.005,694.497,261.999,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M262.979,695.943c-0.002,0.893,0.771,1.618,1.723,1.625c0.951,0.004,1.732-0.724,1.734-1.613 c0.002-0.896-0.771-1.623-1.723-1.627C263.76,694.326,262.983,695.046,262.979,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_63">
- <g>
- <path fill="#DFDFDD" d="M364.895,695.943l-1.377,28.776c0,0,1.092,0.433,2.061,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.141-28.783L364.895,695.943L364.895,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 366 695.943)">
- <g>
- <path fill="#3E4484" d="M364.594,694.891l2.203,0.854c0,0,5.842-12.162,6.268-18.754 C368.752,682.209,364.594,694.891,364.594,694.891"/>
- <path fill="#3E4484" d="M366.684,695.744l-1.813,1.51c0,0,7.769,11.027,13.32,14.617 C375.733,705.552,366.684,695.744,366.684,695.744"/>
- <path fill="#3E4484" d="M364.77,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C351.434,697.891,364.77,697.322,364.77,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M366.69,695.459l6.377-18.719c0,0-0.061,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.231,1.274 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.475,1.785c-0.443,1.467-1.438,4.358-1.986,5.789 c-0.467,1.211-1.461,3.606-1.984,4.797c-0.282,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#DFDFDD" d="M365.168,697.296l13.237,14.691c0,0-0.973-0.613-1.28-0.842c-0.263-0.193-0.755-0.611-0.996-0.826 c-0.197-0.178-0.783-0.717-0.783-0.717s-1.01-0.955-1.326-1.287c-1.064-1.104-3.111-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.221-4.065c-0.427-0.563-1.673-2.279-1.673-2.279"/>
- <path fill="#DFDFDD" d="M364.565,695.158l-19.768,0.617c0,0,1.096-0.351,1.473-0.437c0.311-0.073,0.949-0.184,1.27-0.229 c0.269-0.037,1.058-0.137,1.058-0.137s1.379-0.154,1.838-0.187c1.525-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.184,0.172c0.705,0.043,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 366 695.943" dur="4s" to="359 366 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M363.022,695.937c-0.006,1.435,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C364.24,693.341,363.028,694.497,363.022,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M364,695.943c-0.003,0.893,0.77,1.618,1.723,1.625c0.951,0.004,1.731-0.724,1.733-1.613 c0.005-0.896-0.77-1.623-1.723-1.627C364.781,694.326,364.004,695.046,364,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_62">
- <g>
- <path fill="#DFDFDD" d="M318.395,695.943l-1.379,28.776c0,0,1.094,0.433,2.063,0.437c0.996,0.004,2.148-0.422,2.148-0.422 l-1.139-28.783L318.395,695.943L318.395,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 319 695.943)">
- <g>
- <path fill="#3E4484" d="M318.095,694.891l2.203,0.854c0,0,5.842-12.162,6.268-18.754 C322.253,682.209,318.095,694.891,318.095,694.891"/>
- <path fill="#3E4484" d="M320.184,695.744l-1.814,1.51c0,0,7.771,11.027,13.322,14.617 C329.233,705.552,320.184,695.744,320.184,695.744"/>
- <path fill="#3E4484" d="M318.27,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C304.933,697.891,318.27,697.322,318.27,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M320.19,695.459l6.377-18.719c0,0-0.061,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.231,1.274 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.342,1.344-0.475,1.785c-0.443,1.467-1.438,4.358-1.986,5.789 c-0.467,1.211-1.461,3.606-1.984,4.797c-0.28,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#DFDFDD" d="M318.669,697.296l13.237,14.691c0,0-0.973-0.613-1.28-0.842c-0.263-0.193-0.755-0.611-0.996-0.826 c-0.197-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.324-1.287c-1.064-1.104-3.111-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.221-4.065c-0.427-0.563-1.673-2.279-1.673-2.279"/>
- <path fill="#DFDFDD" d="M318.065,695.158l-19.768,0.617c0,0,1.094-0.351,1.473-0.437c0.311-0.073,0.949-0.184,1.27-0.229 c0.269-0.037,1.06-0.137,1.06-0.137s1.377-0.154,1.836-0.187c1.524-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.185,0.172c0.705,0.043,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 319 695.943" dur="4s" to="359 319 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M316.522,695.937c-0.006,1.435,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.703-2.613C317.74,693.341,316.526,694.497,316.522,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M317.503,695.943c-0.005,0.893,0.768,1.618,1.721,1.625c0.951,0.004,1.731-0.724,1.733-1.613 c0.005-0.896-0.77-1.623-1.723-1.627C318.281,694.326,317.505,695.046,317.503,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_64">
- <g>
- <path fill="#DFDFDD" d="M414.663,695.943l-1.379,28.776c0,0,1.095,0.433,2.063,0.437c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L414.663,695.943L414.663,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 415 695.943)">
- <g>
- <path fill="#3E4484" d="M414.36,694.891l2.205,0.854c0,0,5.843-12.162,6.27-18.754 C418.518,682.209,414.36,694.891,414.36,694.891"/>
- <path fill="#3E4484" d="M416.452,695.744l-1.813,1.51c0,0,7.77,11.027,13.322,14.617 C425.502,705.552,416.452,695.744,416.452,695.744"/>
- <path fill="#3E4484" d="M414.538,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C401.2,697.891,414.538,697.322,414.538,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M416.459,695.459l6.377-18.719c0,0-0.063,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.232,1.274 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.446,1.467-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.606-1.983,4.797c-0.283,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#DFDFDD" d="M414.936,697.296l13.238,14.691c0,0-0.974-0.613-1.281-0.842c-0.262-0.193-0.754-0.611-0.995-0.826 c-0.196-0.178-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.104-3.11-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.222-4.065c-0.426-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#DFDFDD" d="M414.334,695.158l-19.77,0.617c0,0,1.095-0.351,1.472-0.437c0.312-0.073,0.95-0.184,1.271-0.229 c0.267-0.037,1.055-0.137,1.055-0.137s1.378-0.154,1.839-0.187c1.526-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.888,0.102,5.185,0.172c0.705,0.043,2.817,0.194,2.817,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 415 695.943" dur="4s" to="359 415 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M412.79,695.937c-0.008,1.435,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.007-1.438-1.202-2.604-2.7-2.613C414.009,693.341,412.795,694.497,412.79,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M413.768,695.943c-0.002,0.893,0.771,1.618,1.722,1.625c0.952,0.004,1.732-0.724,1.735-1.613 c0.002-0.896-0.771-1.623-1.723-1.627C414.55,694.326,413.772,695.046,413.768,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_65">
- <g>
- <path fill="#DFDFDD" d="M463.122,695.943l-1.379,28.776c0,0,1.095,0.433,2.063,0.437c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L463.122,695.943L463.122,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 464 695.943)">
- <g>
- <path fill="#3E4484" d="M462.82,694.891l2.202,0.854c0,0,5.845-12.162,6.271-18.754 C466.978,682.209,462.82,694.891,462.82,694.891"/>
- <path fill="#3E4484" d="M464.911,695.744l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C473.961,705.552,464.911,695.744,464.911,695.744"/>
- <path fill="#3E4484" d="M462.997,697.322l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C449.659,697.891,462.997,697.322,462.997,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M464.918,695.459l6.377-18.719c0,0-0.063,1.146-0.111,1.525c-0.038,0.321-0.163,0.956-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.358-1.988,5.789 c-0.467,1.211-1.461,3.606-1.983,4.797c-0.281,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#DFDFDD" d="M463.394,697.296l13.24,14.691c0,0-0.976-0.613-1.283-0.842c-0.262-0.193-0.752-0.611-0.996-0.826 c-0.194-0.178-0.782-0.717-0.782-0.717s-1.011-0.955-1.324-1.287c-1.063-1.104-3.11-3.381-4.09-4.56 c-0.828-0.996-2.438-3.031-3.222-4.065c-0.428-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#DFDFDD" d="M462.793,695.158l-19.771,0.617c0,0,1.097-0.351,1.476-0.437c0.312-0.073,0.947-0.184,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.379-0.154,1.84-0.187c1.525-0.098,4.589-0.187,6.121-0.176 c1.295,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 464 695.943" dur="4s" to="359 464 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M461.25,695.937c-0.007,1.435,1.2,2.604,2.692,2.609c1.5,0.004,2.717-1.158,2.726-2.59 c0.006-1.438-1.203-2.604-2.703-2.613C462.469,693.341,461.254,694.497,461.25,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M462.228,695.943c-0.004,0.893,0.771,1.618,1.722,1.625c0.95,0.004,1.731-0.724,1.733-1.613 c0.004-0.896-0.771-1.623-1.723-1.627C463.01,694.326,462.23,695.046,462.228,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_66">
- <g>
- <path fill="#DFDFDD" d="M509.684,695.943l-1.379,28.776c0,0,1.095,0.433,2.063,0.437c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L509.684,695.943L509.684,695.943z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 510 695.943)">
- <g>
- <path fill="#3E4484" d="M509.385,694.891l2.203,0.854c0,0,5.842-12.162,6.269-18.754 C513.543,682.209,509.385,694.891,509.385,694.891"/>
- <path fill="#3E4484" d="M511.474,695.744l-1.813,1.51c0,0,7.767,11.027,13.318,14.617 C520.523,705.552,511.474,695.744,511.474,695.744"/>
- <path fill="#3E4484" d="M509.559,697.322l0.021-2.361c0,0-13.438-1.197-19.767,0.729 C496.224,697.891,509.559,697.322,509.559,697.322"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M511.48,695.459l6.377-18.719c0,0-0.062,1.146-0.11,1.525c-0.039,0.321-0.164,0.956-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.358-1.988,5.789 c-0.467,1.211-1.461,3.606-1.983,4.797c-0.279,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#DFDFDD" d="M509.959,697.296l13.236,14.691c0,0-0.974-0.613-1.279-0.842c-0.264-0.193-0.755-0.611-0.994-0.826 c-0.199-0.178-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.104-3.11-3.381-4.091-4.56 c-0.828-0.996-2.438-3.031-3.221-4.065c-0.428-0.563-1.673-2.279-1.673-2.279"/>
- <path fill="#DFDFDD" d="M509.355,695.158l-19.769,0.617c0,0,1.096-0.351,1.473-0.437c0.313-0.073,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.838-0.187c1.525-0.098,4.587-0.187,6.121-0.176 c1.295,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 510 695.943" dur="4s" to="359 510 695.943" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M507.812,695.937c-0.007,1.435,1.2,2.604,2.696,2.609c1.498,0.004,2.713-1.158,2.72-2.59 c0.006-1.438-1.201-2.604-2.701-2.613C509.03,693.341,507.818,694.497,507.812,695.937"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M508.793,695.943c-0.005,0.893,0.769,1.618,1.719,1.625c0.953,0.004,1.733-0.724,1.735-1.613 c0.005-0.896-0.771-1.623-1.724-1.627C509.571,694.326,508.795,695.046,508.793,695.943"/>
- </g>
- </g>
- </g>
- <g id="_x23_67">
- <g>
- <path fill="#DFDFDD" d="M1223.775,72.667l-1.377,28.778c0,0,1.094,0.431,2.062,0.435c0.998,0.004,2.149-0.422,2.149-0.422 l-1.143-28.783L1223.775,72.667L1223.775,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1224 72.6669)">
- <g>
- <path fill="#3E4484" d="M1223.472,71.616l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1227.63,58.933,1223.472,71.616,1223.472,71.616"/>
- <path fill="#3E4484" d="M1225.564,72.466l-1.813,1.51c0,0,7.77,11.027,13.322,14.617 C1234.614,82.276,1225.564,72.466,1225.564,72.466"/>
- <path fill="#3E4484" d="M1223.651,74.045l0.021-2.361c0,0-13.44-1.197-19.767,0.729 C1210.314,74.616,1223.651,74.045,1223.651,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1225.571,72.183l6.377-18.719c0,0-0.063,1.147-0.11,1.527c-0.041,0.321-0.164,0.956-0.236,1.274 c-0.057,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.979,4.797c-0.283,0.646-1.173,2.57-1.173,2.57"/>
- <path fill="#DFDFDD" d="M1224.048,74.021l13.237,14.691c0,0-0.977-0.613-1.28-0.842c-0.263-0.193-0.755-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.324-1.287c-1.063-1.103-3.108-3.381-4.09-4.558 c-0.826-0.996-2.438-3.032-3.221-4.067c-0.429-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#DFDFDD" d="M1223.444,71.881l-19.77,0.617c0,0,1.098-0.349,1.475-0.435c0.311-0.073,0.95-0.184,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.838-0.187c1.526-0.098,4.588-0.186,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1224 72.667" dur="4s" to="359 1224 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1221.903,72.661c-0.01,1.434,1.197,2.604,2.693,2.61c1.498,0.004,2.715-1.158,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1223.12,70.065,1221.906,71.219,1221.903,72.661"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1222.88,72.667c-0.002,0.893,0.771,1.619,1.721,1.625c0.953,0.004,1.733-0.722,1.733-1.613 c0.005-0.895-0.771-1.623-1.721-1.627C1223.661,71.048,1222.884,71.771,1222.88,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_68">
- <g>
- <path fill="#DFDFDD" d="M1275.818,72.667l-1.379,28.778c0,0,1.098,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.14-28.783L1275.818,72.667L1275.818,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1276 72.6669)">
- <g>
- <path fill="#3E4484" d="M1275.517,71.615l2.203,0.853c0,0,5.842-12.162,6.268-18.754 C1279.675,58.934,1275.517,71.615,1275.517,71.615"/>
- <path fill="#3E4484" d="M1277.607,72.466l-1.813,1.51c0,0,7.768,11.027,13.319,14.617 C1286.657,82.276,1277.607,72.466,1277.607,72.466"/>
- <path fill="#3E4484" d="M1275.693,74.045l0.021-2.361c0,0-13.439-1.197-19.767,0.729 C1262.357,74.615,1275.693,74.045,1275.693,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1277.613,72.184l6.379-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.166,0.957-0.235,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.471,1.785c-0.447,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.28,0.646-1.171,2.569-1.171,2.569"/>
- <path fill="#DFDFDD" d="M1276.093,74.021l13.235,14.691c0,0-0.975-0.613-1.28-0.843c-0.263-0.192-0.755-0.61-0.994-0.825 c-0.199-0.177-0.787-0.718-0.787-0.718s-1.008-0.954-1.324-1.286c-1.063-1.103-3.108-3.382-4.09-4.558 c-0.828-0.996-2.437-3.033-3.219-4.067c-0.429-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#DFDFDD" d="M1275.488,71.881l-19.77,0.617c0,0,1.097-0.349,1.474-0.435c0.313-0.074,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.836-0.186c1.526-0.098,4.59-0.187,6.123-0.176 c1.297,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1276 72.667" dur="4s" to="359 1276 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1273.944,72.66c-0.006,1.435,1.201,2.605,2.695,2.611c1.5,0.004,2.717-1.158,2.723-2.59 c0.008-1.439-1.201-2.604-2.699-2.613C1275.162,70.065,1273.95,71.221,1273.944,72.66"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1274.925,72.667c-0.004,0.893,0.768,1.618,1.721,1.625c0.951,0.004,1.732-0.722,1.734-1.613 c0.004-0.896-0.771-1.623-1.724-1.627C1275.705,71.048,1274.927,71.771,1274.925,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_69">
- <g>
- <path fill="#DFDFDD" d="M1326.862,72.667l-1.377,28.778c0,0,1.094,0.431,2.063,0.435c0.996,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1326.862,72.667L1326.862,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1327 72.6669)">
- <g>
- <path fill="#3E4484" d="M1326.562,71.615l2.203,0.853c0,0,5.844-12.162,6.271-18.754 C1330.719,58.934,1326.562,71.615,1326.562,71.615"/>
- <path fill="#3E4484" d="M1328.651,72.466l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C1337.701,82.276,1328.651,72.466,1328.651,72.466"/>
- <path fill="#3E4484" d="M1326.739,74.045l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C1313.401,74.615,1326.739,74.045,1326.739,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1328.657,72.184l6.378-18.719c0,0-0.063,1.147-0.11,1.526c-0.04,0.322-0.165,0.957-0.236,1.275 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.474,1.785c-0.447,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.979,4.797c-0.283,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M1327.137,74.021l13.238,14.691c0,0-0.977-0.613-1.282-0.843c-0.263-0.192-0.753-0.61-0.994-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.01-0.954-1.325-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.826-0.996-2.437-3.033-3.219-4.067c-0.429-0.563-1.675-2.279-1.675-2.279"/>
- <path fill="#DFDFDD" d="M1326.532,71.881l-19.771,0.617c0,0,1.098-0.349,1.475-0.435c0.312-0.074,0.951-0.184,1.271-0.229 c0.265-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.525-0.098,4.589-0.187,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1327 72.667" dur="4s" to="359 1327 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1324.989,72.66c-0.006,1.435,1.201,2.605,2.697,2.611c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1326.207,70.065,1324.994,71.221,1324.989,72.66"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1325.969,72.667c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.732-0.722,1.734-1.613 c0.003-0.896-0.771-1.623-1.723-1.627C1326.75,71.048,1325.972,71.771,1325.969,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_70">
- <g>
- <path fill="#DFDFDD" d="M1371.347,72.667l-1.377,28.778c0,0,1.094,0.431,2.063,0.435c0.995,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1371.347,72.667L1371.347,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1372 72.6669)">
- <g>
- <path fill="#3E4484" d="M1371.047,71.615l2.203,0.853c0,0,5.844-12.162,6.271-18.754 C1375.204,58.934,1371.047,71.615,1371.047,71.615"/>
- <path fill="#3E4484" d="M1373.138,72.466l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1382.187,82.276,1373.138,72.466,1373.138,72.466"/>
- <path fill="#3E4484" d="M1371.224,74.045l0.021-2.361c0,0-13.44-1.197-19.77,0.729 C1357.886,74.615,1371.224,74.045,1371.224,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1373.144,72.184l6.377-18.719c0,0-0.063,1.147-0.109,1.526c-0.038,0.322-0.163,0.957-0.235,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.447,1.467-1.439,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.281,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M1371.623,74.021l13.236,14.691c0,0-0.976-0.613-1.279-0.843c-0.264-0.192-0.756-0.61-0.996-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.008-0.954-1.326-1.286c-1.063-1.103-3.108-3.382-4.09-4.558 c-0.826-0.996-2.438-3.033-3.219-4.067c-0.43-0.563-1.676-2.279-1.676-2.279"/>
- <path fill="#DFDFDD" d="M1371.019,71.881l-19.771,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.951-0.184,1.271-0.229 c0.265-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.526-0.098,4.588-0.187,6.123-0.176 c1.295,0.012,3.887,0.102,5.182,0.172c0.707,0.043,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1372 72.667" dur="4s" to="359 1372 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1369.474,72.66c-0.006,1.435,1.203,2.605,2.697,2.611c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1370.694,70.065,1369.48,71.221,1369.474,72.66"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1370.454,72.667c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.722,1.735-1.613 c0.002-0.896-0.771-1.623-1.724-1.627C1371.235,71.048,1370.459,71.771,1370.454,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_72">
- <g>
- <path fill="#DFDFDD" d="M1469.089,72.667l-1.378,28.778c0,0,1.093,0.431,2.063,0.435c0.994,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1469.089,72.667L1469.089,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1470 72.6669)">
- <g>
- <path fill="#3E4484" d="M1468.788,71.615l2.203,0.853c0,0,5.843-12.162,6.269-18.754 C1472.948,58.934,1468.788,71.615,1468.788,71.615"/>
- <path fill="#3E4484" d="M1470.878,72.466l-1.813,1.51c0,0,7.768,11.027,13.319,14.617 C1479.927,82.276,1470.878,72.466,1470.878,72.466"/>
- <path fill="#3E4484" d="M1468.964,74.045l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C1455.627,74.615,1468.964,74.045,1468.964,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1470.884,72.184l6.377-18.719c0,0-0.062,1.147-0.109,1.526c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.987,5.789 c-0.467,1.211-1.462,3.608-1.982,4.797c-0.283,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M1469.364,74.021l13.236,14.691c0,0-0.973-0.613-1.279-0.843c-0.264-0.192-0.754-0.61-0.996-0.825 c-0.197-0.177-0.784-0.718-0.784-0.718s-1.009-0.954-1.324-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.673-2.279-1.673-2.279"/>
- <path fill="#DFDFDD" d="M1468.759,71.881l-19.769,0.617c0,0,1.096-0.349,1.473-0.435c0.313-0.074,0.949-0.184,1.271-0.229 c0.267-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.838-0.186c1.525-0.098,4.588-0.187,6.122-0.176 c1.295,0.012,3.888,0.102,5.185,0.172c0.705,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1470 72.667" dur="4s" to="359 1470 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1467.216,72.66c-0.007,1.435,1.2,2.605,2.694,2.611c1.499,0.004,2.716-1.158,2.723-2.59 c0.007-1.439-1.202-2.604-2.701-2.613C1468.435,70.065,1467.221,71.221,1467.216,72.66"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1468.197,72.667c-0.003,0.893,0.77,1.618,1.722,1.625c0.951,0.004,1.732-0.722,1.734-1.613 c0.004-0.896-0.771-1.623-1.725-1.627C1468.976,71.048,1468.199,71.771,1468.197,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_71">
- <g>
- <path fill="#DFDFDD" d="M1418.644,72.667l-1.379,28.778c0,0,1.096,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.14-28.783L1418.644,72.667L1418.644,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1419 72.6669)">
- <g>
- <path fill="#3E4484" d="M1418.343,71.615l2.202,0.853c0,0,5.843-12.162,6.269-18.754 C1422.5,58.934,1418.343,71.615,1418.343,71.615"/>
- <path fill="#3E4484" d="M1420.433,72.466l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1429.482,82.276,1420.433,72.466,1420.433,72.466"/>
- <path fill="#3E4484" d="M1418.519,74.045l0.021-2.361c0,0-13.438-1.197-19.766,0.729 C1405.181,74.615,1418.519,74.045,1418.519,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1420.439,72.184l6.379-18.719c0,0-0.063,1.147-0.11,1.526c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.785c-0.445,1.467-1.438,4.36-1.988,5.789 c-0.466,1.211-1.461,3.608-1.982,4.797c-0.281,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M1418.916,74.021l13.238,14.691c0,0-0.975-0.613-1.281-0.843c-0.262-0.192-0.754-0.61-0.995-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.009-0.954-1.324-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.427-0.563-1.673-2.279-1.673-2.279"/>
- <path fill="#DFDFDD" d="M1418.314,71.881l-19.768,0.617c0,0,1.094-0.349,1.473-0.435c0.312-0.074,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.836-0.186c1.527-0.098,4.59-0.187,6.123-0.176 c1.295,0.012,3.889,0.102,5.187,0.172c0.704,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1419 72.667" dur="4s" to="359 1419 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1416.771,72.66c-0.006,1.435,1.201,2.605,2.695,2.611c1.499,0.004,2.716-1.158,2.723-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1417.99,70.065,1416.776,71.221,1416.771,72.66"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1417.75,72.667c-0.004,0.893,0.769,1.618,1.721,1.625c0.952,0.004,1.732-0.722,1.734-1.613 c0.004-0.896-0.771-1.623-1.723-1.627C1418.531,71.048,1417.753,71.771,1417.75,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_73">
- <g>
- <path fill="#DFDFDD" d="M1517.568,72.667l-1.379,28.778c0,0,1.095,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1517.568,72.667L1517.568,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1518 72.6669)">
- <g>
- <path fill="#3E4484" d="M1517.265,71.615l2.204,0.853c0,0,5.843-12.162,6.27-18.754 C1521.423,58.934,1517.265,71.615,1517.265,71.615"/>
- <path fill="#3E4484" d="M1519.357,72.466l-1.813,1.51c0,0,7.77,11.027,13.32,14.617 C1528.406,82.276,1519.357,72.466,1519.357,72.466"/>
- <path fill="#3E4484" d="M1517.443,74.045l0.021-2.361c0,0-13.438-1.197-19.767,0.729 C1504.105,74.615,1517.443,74.045,1517.443,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1519.363,72.184l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.987,5.789 c-0.467,1.211-1.461,3.608-1.983,4.797c-0.281,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M1517.84,74.021l13.237,14.691c0,0-0.974-0.613-1.28-0.843c-0.263-0.192-0.754-0.61-0.996-0.825 c-0.196-0.177-0.784-0.718-0.784-0.718s-1.009-0.954-1.324-1.286c-1.064-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#DFDFDD" d="M1517.238,71.881l-19.77,0.617c0,0,1.095-0.349,1.472-0.435c0.313-0.074,0.951-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.525-0.098,4.588-0.187,6.121-0.176 c1.295,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.816,0.195,2.816,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1518 72.667" dur="4s" to="359 1518 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1515.694,72.66c-0.008,1.435,1.201,2.605,2.694,2.611c1.499,0.004,2.716-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.702-2.613C1516.912,70.065,1515.699,71.221,1515.694,72.66"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1516.673,72.667c-0.003,0.893,0.77,1.618,1.721,1.625c0.952,0.004,1.733-0.722,1.735-1.613 c0.003-0.896-0.771-1.623-1.725-1.627C1517.453,71.048,1516.676,71.771,1516.673,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_74">
- <g>
- <path fill="#DFDFDD" d="M1563.25,72.667l-1.378,28.778c0,0,1.095,0.431,2.063,0.435c0.996,0.004,2.147-0.422,2.147-0.422 l-1.139-28.783L1563.25,72.667L1563.25,72.667z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1564 72.6669)">
- <g>
- <path fill="#3E4484" d="M1562.951,71.615l2.203,0.853c0,0,5.842-12.162,6.27-18.754 C1567.11,58.934,1562.951,71.615,1562.951,71.615"/>
- <path fill="#3E4484" d="M1565.041,72.466l-1.813,1.51c0,0,7.771,11.027,13.321,14.617 C1574.09,82.276,1565.041,72.466,1565.041,72.466"/>
- <path fill="#3E4484" d="M1563.125,74.045l0.021-2.361c0,0-13.439-1.197-19.768,0.729 C1549.789,74.615,1563.125,74.045,1563.125,74.045"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1565.046,72.184l6.377-18.719c0,0-0.062,1.147-0.109,1.526c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.061,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.988,5.789 c-0.466,1.211-1.461,3.608-1.983,4.797c-0.279,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M1563.526,74.021l13.238,14.691c0,0-0.975-0.613-1.281-0.843c-0.264-0.192-0.754-0.61-0.996-0.825 c-0.197-0.177-0.784-0.718-0.784-0.718s-1.009-0.954-1.324-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.22-4.067c-0.429-0.563-1.675-2.279-1.675-2.279"/>
- <path fill="#DFDFDD" d="M1562.921,71.881l-19.769,0.617c0,0,1.096-0.349,1.474-0.435c0.311-0.074,0.948-0.184,1.27-0.229 c0.269-0.037,1.058-0.136,1.058-0.136s1.379-0.155,1.839-0.186c1.525-0.098,4.588-0.187,6.122-0.176 c1.295,0.012,3.888,0.102,5.186,0.172c0.705,0.043,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1564 72.667" dur="4s" to="359 1564 72.667" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1561.378,72.66c-0.007,1.435,1.2,2.605,2.694,2.611c1.498,0.004,2.716-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.702-2.613C1562.597,70.065,1561.383,71.221,1561.378,72.66"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1562.36,72.667c-0.006,0.893,0.768,1.618,1.72,1.625c0.952,0.004,1.731-0.722,1.733-1.613 c0.006-0.896-0.77-1.623-1.723-1.627C1563.138,71.048,1562.362,71.771,1562.36,72.667"/>
- </g>
- </g>
- </g>
- <g id="_x23_55">
- <g>
- <path fill="#DFDFDD" d="M508.987,572.031l-1.379,28.777c0,0,1.095,0.432,2.063,0.435c0.995,0.004,2.146-0.421,2.146-0.421 l-1.14-28.782L508.987,572.031L508.987,572.031z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 510 572.029)">
- <g>
- <path fill="#3E4484" d="M508.684,570.979l2.205,0.854c0,0,5.843-12.162,6.271-18.756 C512.845,558.296,508.684,570.979,508.684,570.979"/>
- <path fill="#3E4484" d="M510.776,571.833l-1.813,1.508c0,0,7.771,11.027,13.321,14.619 C519.827,581.641,510.776,571.833,510.776,571.833"/>
- <path fill="#3E4484" d="M508.862,573.413l0.021-2.363c0,0-13.438-1.195-19.767,0.729 C495.525,573.978,508.862,573.413,508.862,573.413"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M510.781,571.548l6.377-18.719c0,0-0.063,1.146-0.107,1.525c-0.041,0.321-0.166,0.959-0.235,1.272 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.356-1.987,5.788 c-0.465,1.212-1.461,3.605-1.982,4.796c-0.281,0.647-1.171,2.569-1.171,2.569"/>
- <path fill="#DFDFDD" d="M509.261,573.383l13.237,14.691c0,0-0.975-0.611-1.28-0.843c-0.263-0.19-0.754-0.608-0.996-0.823 c-0.197-0.175-0.785-0.718-0.785-0.718s-1.008-0.952-1.323-1.286c-1.064-1.104-3.107-3.38-4.091-4.562 c-0.827-0.994-2.438-3.031-3.219-4.065c-0.429-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M508.656,571.247l-19.769,0.619c0,0,1.095-0.354,1.472-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.267-0.037,1.056-0.136,1.056-0.136s1.379-0.155,1.838-0.188c1.526-0.098,4.588-0.187,6.123-0.178 c1.295,0.012,3.888,0.104,5.185,0.174c0.705,0.041,2.817,0.195,2.817,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 510 572.029" dur="4s" to="359 510 572.029" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M507.114,572.025c-0.008,1.435,1.201,2.604,2.697,2.609c1.497,0.002,2.715-1.157,2.721-2.59 c0.007-1.44-1.204-2.604-2.702-2.613C508.334,569.43,507.118,570.586,507.114,572.025"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M508.093,572.029c-0.004,0.894,0.771,1.621,1.721,1.628c0.953,0.002,1.736-0.721,1.736-1.615 c0.004-0.894-0.771-1.619-1.724-1.627C508.875,570.415,508.095,571.135,508.093,572.029"/>
- </g>
- </g>
- </g>
- <g id="_x23_54">
- <g>
- <path fill="#DFDFDD" d="M462.71,572.278l-1.38,28.777c0,0,1.097,0.432,2.063,0.435c0.998,0.004,2.147-0.421,2.147-0.421 l-1.14-28.782L462.71,572.278L462.71,572.278z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 463 572.276)">
- <g>
- <path fill="#3E4484" d="M462.408,571.226l2.203,0.854c0,0,5.842-12.162,6.269-18.756 C466.568,558.544,462.408,571.226,462.408,571.226"/>
- <path fill="#3E4484" d="M464.498,572.08l-1.813,1.508c0,0,7.769,11.027,13.319,14.619 C473.547,581.888,464.498,572.08,464.498,572.08"/>
- <path fill="#3E4484" d="M462.585,573.66l0.021-2.363c0,0-13.438-1.197-19.767,0.729 C449.248,574.224,462.585,573.66,462.585,573.66"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M464.504,571.796l6.377-18.719c0,0-0.062,1.146-0.11,1.525c-0.039,0.321-0.164,0.959-0.233,1.272 c-0.06,0.26-0.245,1.035-0.245,1.035s-0.339,1.344-0.472,1.784c-0.447,1.468-1.438,4.357-1.99,5.789 c-0.465,1.211-1.461,3.605-1.983,4.795c-0.282,0.648-1.17,2.57-1.17,2.57"/>
- <path fill="#DFDFDD" d="M462.982,573.631l13.24,14.691c0,0-0.978-0.611-1.281-0.844c-0.262-0.189-0.754-0.607-0.994-0.822 c-0.199-0.175-0.787-0.719-0.787-0.719s-1.01-0.951-1.323-1.285c-1.063-1.104-3.111-3.381-4.091-4.562 c-0.827-0.994-2.438-3.031-3.219-4.066c-0.43-0.563-1.676-2.276-1.676-2.276"/>
- <path fill="#DFDFDD" d="M462.379,571.494l-19.769,0.619c0,0,1.096-0.354,1.471-0.438c0.313-0.072,0.953-0.182,1.272-0.227 c0.265-0.037,1.056-0.136,1.056-0.136s1.375-0.155,1.838-0.188c1.527-0.098,4.589-0.187,6.121-0.178 c1.295,0.012,3.888,0.104,5.185,0.174c0.707,0.041,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 463 572.276" dur="4s" to="359 463 572.276" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M460.836,572.271c-0.009,1.437,1.2,2.605,2.694,2.611c1.5,0.002,2.717-1.158,2.722-2.59 c0.006-1.441-1.201-2.604-2.701-2.613C462.055,569.677,460.842,570.833,460.836,572.271"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M461.814,572.276c-0.002,0.894,0.771,1.619,1.725,1.628c0.951,0.002,1.73-0.722,1.732-1.615 s-0.77-1.619-1.723-1.627C462.598,570.662,461.819,571.383,461.814,572.276"/>
- </g>
- </g>
- </g>
- <g id="_x23_53">
- <g>
- <path fill="#DFDFDD" d="M409.307,572.279l-1.377,28.777c0,0,1.093,0.432,2.063,0.435c0.996,0.004,2.146-0.421,2.146-0.421 L411,572.288L409.307,572.279L409.307,572.279z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 410 572.277)">
- <g>
- <path fill="#3E4484" d="M409.004,571.228l2.205,0.854c0,0,5.842-12.162,6.27-18.756 C413.166,558.545,409.004,571.228,409.004,571.228"/>
- <path fill="#3E4484" d="M411.096,572.081l-1.813,1.508c0,0,7.771,11.026,13.321,14.619 C420.146,581.889,411.096,572.081,411.096,572.081"/>
- <path fill="#3E4484" d="M409.182,573.661l0.021-2.363c0,0-13.438-1.197-19.767,0.729 C395.844,574.225,409.182,573.661,409.182,573.661"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M411.101,571.796l6.377-18.719c0,0-0.061,1.146-0.108,1.525c-0.041,0.321-0.166,0.959-0.235,1.272 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.356-1.987,5.788 c-0.465,1.212-1.461,3.605-1.98,4.796c-0.283,0.647-1.173,2.569-1.173,2.569"/>
- <path fill="#DFDFDD" d="M409.58,573.632l13.24,14.691c0,0-0.977-0.611-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.822 c-0.196-0.175-0.784-0.719-0.784-0.719s-1.009-0.951-1.322-1.285c-1.067-1.104-3.11-3.381-4.092-4.562 c-0.828-0.994-2.437-3.03-3.22-4.066c-0.428-0.563-1.674-2.276-1.674-2.276"/>
- <path fill="#DFDFDD" d="M408.976,571.495l-19.769,0.618c0,0,1.095-0.354,1.474-0.438c0.313-0.074,0.949-0.182,1.271-0.227 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.838-0.187c1.524-0.099,4.586-0.187,6.123-0.178 c1.295,0.012,3.886,0.104,5.183,0.174c0.707,0.041,2.817,0.194,2.817,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 410 572.277" dur="4s" to="359 410 572.277" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M407.435,572.273c-0.008,1.435,1.199,2.604,2.695,2.609c1.498,0.002,2.715-1.158,2.721-2.59 c0.006-1.44-1.205-2.604-2.703-2.613C408.653,569.678,407.437,570.834,407.435,572.273"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M408.412,572.277c-0.004,0.894,0.771,1.62,1.722,1.627c0.953,0.003,1.735-0.721,1.735-1.614 c0.004-0.895-0.771-1.619-1.722-1.627C409.194,570.663,408.414,571.383,408.412,572.277"/>
- </g>
- </g>
- </g>
- <g id="_x23_51">
- <g>
- <path fill="#DFDFDD" d="M309.98,572.034l-1.379,28.777c0,0,1.095,0.432,2.063,0.434c0.996,0.004,2.146-0.42,2.146-0.42 l-1.139-28.783L309.98,572.034L309.98,572.034z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 311 572.031)">
- <g>
- <path fill="#3E4484" d="M309.68,570.982l2.201,0.853c0,0,5.846-12.162,6.268-18.756 C313.836,558.298,309.68,570.982,309.68,570.982"/>
- <path fill="#3E4484" d="M311.767,571.834l-1.812,1.508c0,0,7.767,11.027,13.318,14.619 C320.819,581.643,311.767,571.834,311.767,571.834"/>
- <path fill="#3E4484" d="M309.855,573.415l0.021-2.363c0,0-13.441-1.195-19.767,0.729 C296.517,573.979,309.855,573.415,309.855,573.415"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M311.773,571.55l6.38-18.719c0,0-0.063,1.146-0.113,1.526c-0.036,0.32-0.163,0.959-0.233,1.271 c-0.058,0.26-0.243,1.035-0.243,1.035s-0.341,1.344-0.474,1.785c-0.447,1.467-1.438,4.356-1.99,5.789 c-0.465,1.211-1.461,3.604-1.983,4.795c-0.28,0.647-1.168,2.569-1.168,2.569"/>
- <path fill="#DFDFDD" d="M310.254,573.385l13.237,14.691c0,0-0.974-0.611-1.28-0.843c-0.263-0.19-0.755-0.608-0.996-0.823 c-0.199-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.104-3.11-3.379-4.088-4.562 c-0.83-0.994-2.438-3.029-3.221-4.065c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M309.65,571.249l-19.77,0.619c0,0,1.096-0.354,1.475-0.438c0.313-0.072,0.949-0.182,1.271-0.227 c0.264-0.037,1.055-0.136,1.055-0.136s1.379-0.155,1.838-0.188c1.527-0.098,4.589-0.186,6.121-0.178 c1.297,0.012,3.892,0.104,5.185,0.174c0.707,0.041,2.822,0.195,2.822,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 311 572.031" dur="4s" to="359 311 572.031" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M308.105,572.027c-0.006,1.435,1.203,2.604,2.695,2.609c1.5,0.002,2.717-1.157,2.723-2.59 c0.007-1.44-1.2-2.604-2.7-2.613C309.326,569.432,308.112,570.588,308.105,572.027"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M309.088,572.031c-0.004,0.894,0.768,1.621,1.719,1.628c0.951,0.002,1.734-0.72,1.736-1.615 c0.004-0.894-0.771-1.619-1.726-1.627C309.867,570.417,309.09,571.137,309.088,572.031"/>
- </g>
- </g>
- </g>
- <g id="_x23_52">
- <g>
- <path fill="#DFDFDD" d="M360.691,571.784l-1.381,28.777c0,0,1.096,0.432,2.063,0.434c0.998,0.004,2.148-0.42,2.148-0.42 l-1.14-28.783L360.691,571.784L360.691,571.784z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 361 571.781)">
- <g>
- <path fill="#3E4484" d="M360.388,570.732l2.203,0.853c0,0,5.844-12.162,6.269-18.756 C364.546,558.048,360.388,570.732,360.388,570.732"/>
- <path fill="#3E4484" d="M362.478,571.584l-1.813,1.508c0,0,7.769,11.027,13.32,14.619 C371.529,581.393,362.478,571.584,362.478,571.584"/>
- <path fill="#3E4484" d="M360.566,573.165l0.021-2.363c0,0-13.439-1.195-19.767,0.729 C347.228,573.729,360.566,573.165,360.566,573.165"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M362.484,571.3l6.379-18.719c0,0-0.063,1.146-0.112,1.526c-0.037,0.32-0.164,0.959-0.234,1.271 c-0.06,0.26-0.246,1.035-0.246,1.035s-0.338,1.344-0.471,1.785c-0.447,1.467-1.438,4.356-1.99,5.789 c-0.465,1.211-1.461,3.604-1.983,4.795c-0.282,0.647-1.168,2.569-1.168,2.569"/>
- <path fill="#DFDFDD" d="M360.964,573.135l13.237,14.691c0,0-0.974-0.611-1.28-0.843c-0.263-0.19-0.755-0.608-0.996-0.823 c-0.198-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.325-1.287c-1.064-1.104-3.111-3.379-4.091-4.562 c-0.827-0.994-2.437-3.029-3.219-4.065c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M360.361,570.999l-19.771,0.619c0,0,1.097-0.354,1.474-0.438c0.312-0.072,0.948-0.182,1.271-0.227 c0.266-0.037,1.057-0.136,1.057-0.136s1.379-0.155,1.838-0.188c1.527-0.098,4.589-0.186,6.121-0.178 c1.297,0.012,3.89,0.104,5.185,0.174c0.705,0.041,2.821,0.195,2.821,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 361 571.781" dur="4s" to="359 361 571.781" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M358.816,571.777c-0.006,1.435,1.203,2.604,2.694,2.609c1.5,0.002,2.718-1.157,2.724-2.59 c0.006-1.44-1.201-2.604-2.701-2.613C360.034,569.182,358.822,570.338,358.816,571.777"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M359.798,571.781c-0.004,0.894,0.769,1.621,1.719,1.628c0.951,0.002,1.731-0.72,1.736-1.615 c0.002-0.894-0.771-1.619-1.726-1.627C360.577,570.167,359.8,570.887,359.798,571.781"/>
- </g>
- </g>
- </g>
- <g id="_x23_50">
- <g>
- <path fill="#DFDFDD" d="M260.982,571.785l-1.377,28.776c0,0,1.096,0.433,2.063,0.435c0.996,0.004,2.146-0.42,2.146-0.42 l-1.139-28.783L260.982,571.785L260.982,571.785z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 262 571.783)">
- <g>
- <path fill="#3E4484" d="M260.682,570.733l2.203,0.853c0,0,5.844-12.162,6.27-18.756 C264.84,558.049,260.682,570.733,260.682,570.733"/>
- <path fill="#3E4484" d="M262.771,571.585l-1.813,1.508c0,0,7.768,11.027,13.319,14.619 C271.821,581.394,262.771,571.585,262.771,571.585"/>
- <path fill="#3E4484" d="M260.857,573.166l0.021-2.363c0,0-13.441-1.195-19.767,0.729 C247.521,573.731,260.857,573.166,260.857,573.166"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M262.778,571.3l6.377-18.719c0,0-0.063,1.146-0.108,1.526c-0.041,0.32-0.166,0.959-0.236,1.271 c-0.057,0.26-0.245,1.035-0.245,1.035s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.356-1.985,5.789 c-0.468,1.211-1.464,3.604-1.983,4.795c-0.283,0.647-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M261.256,573.136l13.24,14.691c0,0-0.976-0.611-1.281-0.843c-0.264-0.19-0.754-0.608-0.996-0.823 c-0.199-0.175-0.787-0.718-0.787-0.718s-1.008-0.952-1.323-1.286c-1.063-1.104-3.11-3.38-4.091-4.562 c-0.828-0.994-2.438-3.03-3.221-4.065c-0.426-0.563-1.672-2.277-1.672-2.277"/>
- <path fill="#DFDFDD" d="M260.653,571l-19.769,0.619c0,0,1.094-0.354,1.473-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.188c1.526-0.098,4.588-0.186,6.121-0.178 c1.295,0.012,3.89,0.104,5.185,0.174c0.707,0.041,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 262 571.783" dur="4s" to="359 262 571.783" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M259.11,571.778c-0.009,1.435,1.2,2.604,2.694,2.609c1.498,0.002,2.715-1.156,2.722-2.59 c0.006-1.439-1.2-2.604-2.7-2.613C260.329,569.183,259.114,570.338,259.11,571.778"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M260.09,571.783c-0.004,0.893,0.768,1.62,1.721,1.627c0.951,0.002,1.732-0.72,1.734-1.615 c0.004-0.894-0.771-1.619-1.721-1.627C260.87,570.167,260.092,570.888,260.09,571.783"/>
- </g>
- </g>
- </g>
- <g id="_x23_49">
- <g>
- <path fill="#DFDFDD" d="M211.282,572.034l-1.38,28.777c0,0,1.095,0.432,2.063,0.434c0.996,0.004,2.147-0.42,2.147-0.42 l-1.143-28.783L211.282,572.034L211.282,572.034z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 212 572.031)">
- <g>
- <path fill="#3E4484" d="M210.98,570.982l2.203,0.853c0,0,5.845-12.162,6.27-18.756 C215.137,558.298,210.98,570.982,210.98,570.982"/>
- <path fill="#3E4484" d="M213.069,571.834l-1.812,1.508c0,0,7.766,11.027,13.318,14.619 C222.12,581.643,213.069,571.834,213.069,571.834"/>
- <path fill="#3E4484" d="M211.159,573.415l0.02-2.363c0,0-13.438-1.195-19.766,0.729 C197.821,573.979,211.159,573.415,211.159,573.415"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M213.075,571.55l6.379-18.719c0,0-0.063,1.146-0.111,1.526c-0.039,0.32-0.166,0.959-0.235,1.271 c-0.058,0.26-0.244,1.035-0.244,1.035s-0.34,1.344-0.474,1.785c-0.446,1.467-1.438,4.356-1.987,5.789 c-0.468,1.211-1.461,3.604-1.983,4.795c-0.283,0.647-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M211.555,573.385l13.238,14.691c0,0-0.974-0.611-1.281-0.843c-0.262-0.19-0.752-0.608-0.996-0.823 c-0.198-0.174-0.783-0.717-0.783-0.717s-1.01-0.953-1.327-1.287c-1.063-1.104-3.108-3.379-4.089-4.562 c-0.827-0.994-2.438-3.029-3.221-4.065c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M210.952,571.249l-19.771,0.619c0,0,1.097-0.354,1.477-0.438c0.311-0.072,0.947-0.182,1.27-0.227 c0.265-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.836-0.188c1.525-0.098,4.589-0.186,6.121-0.178 c1.297,0.012,3.892,0.104,5.187,0.174c0.705,0.041,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 212 572.031" dur="4s" to="359 212 572.031" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M209.407,572.027c-0.007,1.435,1.202,2.604,2.695,2.609c1.498,0.002,2.716-1.157,2.723-2.59 c0.006-1.44-1.201-2.604-2.701-2.613C210.627,569.432,209.413,570.588,209.407,572.027"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M210.389,572.031c-0.004,0.894,0.771,1.621,1.722,1.628c0.95,0.002,1.731-0.72,1.733-1.615 c0.004-0.894-0.77-1.619-1.723-1.627C211.168,570.417,210.391,571.137,210.389,572.031"/>
- </g>
- </g>
- </g>
- <g id="_x23_48">
- <g>
- <path fill="#DFDFDD" d="M161.387,571.786l-1.377,28.778c0,0,1.094,0.431,2.062,0.433c0.997,0.004,2.149-0.42,2.149-0.42 l-1.139-28.783L161.387,571.786L161.387,571.786z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 162 571.784)">
- <g>
- <path fill="#3E4484" d="M161.088,570.734l2.203,0.853c0,0,5.842-12.162,6.268-18.756 C165.245,558.05,161.088,570.734,161.088,570.734"/>
- <path fill="#3E4484" d="M163.178,571.586l-1.813,1.508c0,0,7.771,11.027,13.321,14.619 C172.226,581.396,163.178,571.586,163.178,571.586"/>
- <path fill="#3E4484" d="M161.264,573.167l0.021-2.363c0,0-13.441-1.195-19.77,0.729 C147.926,573.732,161.264,573.167,161.264,573.167"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M163.183,571.301l6.377-18.719c0,0-0.063,1.147-0.109,1.526c-0.041,0.32-0.164,0.959-0.236,1.271 c-0.057,0.26-0.244,1.035-0.244,1.035s-0.34,1.344-0.473,1.785c-0.445,1.467-1.439,4.356-1.988,5.789 c-0.467,1.211-1.461,3.604-1.983,4.795c-0.282,0.647-1.17,2.57-1.17,2.57"/>
- <path fill="#DFDFDD" d="M161.663,573.137l13.239,14.691c0,0-0.978-0.611-1.28-0.842c-0.266-0.191-0.756-0.609-0.996-0.824 c-0.199-0.174-0.789-0.717-0.789-0.717s-1.006-0.953-1.322-1.287c-1.064-1.104-3.11-3.379-4.092-4.562 c-0.826-0.992-2.437-3.028-3.219-4.065c-0.427-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M161.057,571l-19.766,0.619c0,0,1.094-0.354,1.471-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.266-0.037,1.057-0.135,1.057-0.135s1.375-0.156,1.836-0.188c1.529-0.098,4.59-0.186,6.121-0.178 c1.297,0.012,3.889,0.104,5.186,0.174c0.705,0.041,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 162 571.784" dur="4s" to="359 162 571.784" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M159.514,571.779c-0.006,1.435,1.201,2.604,2.697,2.609c1.498,0.002,2.715-1.156,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.612C160.735,569.184,159.519,570.339,159.514,571.779"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M160.495,571.784c-0.002,0.893,0.77,1.62,1.721,1.627c0.953,0.002,1.734-0.72,1.736-1.615 c0.002-0.894-0.771-1.619-1.725-1.627C161.275,570.168,160.497,570.889,160.495,571.784"/>
- </g>
- </g>
- </g>
- <g id="_x23_45">
- <g>
- <path fill="#DFDFDD" d="M22.668,571.788l-1.377,28.778c0,0,1.096,0.429,2.061,0.433c0.998,0.002,2.15-0.422,2.15-0.422 l-1.142-28.783L22.668,571.788L22.668,571.788z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 23 571.786)">
- <g>
- <path fill="#3E4484" d="M22.369,570.736l2.202,0.851c0,0,5.843-12.16,6.269-18.754 C26.527,558.051,22.369,570.736,22.369,570.736"/>
- <path fill="#3E4484" d="M24.457,571.586l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C33.508,581.398,24.457,571.586,24.457,571.586"/>
- <path fill="#3E4484" d="M22.545,573.167l0.021-2.363c0,0-13.44-1.193-19.767,0.729 C9.209,573.734,22.545,573.167,22.545,573.167"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M24.463,571.303l6.377-18.721c0,0-0.062,1.149-0.109,1.528c-0.039,0.32-0.164,0.957-0.232,1.271 c-0.061,0.261-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.469-1.438,4.359-1.987,5.789 c-0.465,1.211-1.461,3.606-1.984,4.797c-0.282,0.646-1.172,2.57-1.172,2.57"/>
- <path fill="#DFDFDD" d="M22.941,573.137L36.18,587.83c0,0-0.975-0.613-1.28-0.842c-0.263-0.191-0.754-0.609-0.994-0.826 c-0.2-0.174-0.786-0.715-0.786-0.715s-1.009-0.955-1.324-1.287c-1.064-1.104-3.111-3.379-4.092-4.562 c-0.828-0.994-2.437-3.028-3.22-4.065c-0.429-0.563-1.672-2.277-1.672-2.277"/>
- <path fill="#DFDFDD" d="M22.338,571.002L2.572,571.62c0,0,1.095-0.353,1.472-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.267-0.039,1.058-0.138,1.058-0.138s1.375-0.153,1.836-0.188c1.526-0.096,4.59-0.186,6.123-0.176 c1.295,0.012,3.887,0.104,5.184,0.174c0.705,0.041,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 23 571.786" dur="4s" to="359 23 571.786" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M20.797,571.781c-0.008,1.433,1.199,2.604,2.695,2.607c1.498,0.005,2.715-1.154,2.721-2.588 c0.006-1.439-1.201-2.604-2.701-2.612C22.014,569.184,20.801,570.339,20.797,571.781"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M21.775,571.786c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.72,1.735-1.613 c0.002-0.893-0.771-1.621-1.724-1.627C22.557,570.17,21.779,570.891,21.775,571.786"/>
- </g>
- </g>
- </g>
- <g id="_x23_46">
- <g>
- <path fill="#DFDFDD" d="M69.98,571.788l-1.377,28.778c0,0,1.094,0.429,2.063,0.433c0.996,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L69.98,571.788L69.98,571.788z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 71 571.786)">
- <g>
- <path fill="#3E4484" d="M69.679,570.736l2.203,0.851c0,0,5.842-12.16,6.271-18.754 C73.837,558.051,69.679,570.736,69.679,570.736"/>
- <path fill="#3E4484" d="M71.771,571.586l-1.813,1.51c0,0,7.768,11.027,13.319,14.617 C80.819,581.398,71.771,571.586,71.771,571.586"/>
- <path fill="#3E4484" d="M69.855,573.167l0.021-2.363c0,0-13.438-1.193-19.767,0.729 C56.519,573.734,69.855,573.167,69.855,573.167"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M71.775,571.303l6.378-18.721c0,0-0.063,1.149-0.11,1.528c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.261-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.785c-0.443,1.469-1.438,4.359-1.988,5.789 c-0.465,1.211-1.461,3.606-1.98,4.797c-0.283,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#DFDFDD" d="M70.255,573.137l13.236,14.693c0,0-0.975-0.613-1.281-0.842c-0.263-0.191-0.754-0.609-0.994-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.01-0.955-1.325-1.287c-1.063-1.104-3.108-3.379-4.091-4.562 c-0.827-0.994-2.436-3.028-3.219-4.065c-0.426-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M69.65,571.002l-19.77,0.617c0,0,1.096-0.353,1.473-0.438c0.313-0.072,0.949-0.182,1.271-0.227 c0.266-0.039,1.055-0.138,1.055-0.138s1.377-0.153,1.838-0.188c1.525-0.096,4.588-0.186,6.123-0.176 c1.293,0.012,3.885,0.104,5.184,0.174c0.706,0.041,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 71 571.786" dur="4s" to="359 71 571.786" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M68.105,571.781c-0.006,1.433,1.203,2.604,2.697,2.607c1.498,0.005,2.715-1.154,2.721-2.588 c0.007-1.439-1.202-2.604-2.699-2.612C69.327,569.184,68.112,570.339,68.105,571.781"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M69.087,571.786c-0.004,0.893,0.769,1.618,1.719,1.625c0.953,0.004,1.736-0.72,1.736-1.613 c0.004-0.894-0.771-1.621-1.722-1.627C69.866,570.17,69.089,570.891,69.087,571.786"/>
- </g>
- </g>
- </g>
- <g id="_x23_47">
- <g>
- <path fill="#DFDFDD" d="M118.503,571.788l-1.377,28.778c0,0,1.096,0.429,2.062,0.433c0.997,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L118.503,571.788L118.503,571.788z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 119 571.786)">
- <g>
- <path fill="#3E4484" d="M118.205,570.736l2.203,0.851c0,0,5.842-12.16,6.268-18.754 C122.363,558.051,118.205,570.736,118.205,570.736"/>
- <path fill="#3E4484" d="M120.294,571.586l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C129.343,581.398,120.294,571.586,120.294,571.586"/>
- <path fill="#3E4484" d="M118.38,573.167l0.021-2.363c0,0-13.439-1.193-19.766,0.729 C105.044,573.734,118.38,573.167,118.38,573.167"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M120.3,571.303l6.377-18.721c0,0-0.063,1.149-0.11,1.528c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.261-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.469-1.438,4.359-1.987,5.789 c-0.465,1.211-1.461,3.606-1.984,4.797c-0.283,0.646-1.172,2.57-1.172,2.57"/>
- <path fill="#DFDFDD" d="M118.779,573.137l13.24,14.693c0,0-0.978-0.613-1.283-0.842c-0.263-0.191-0.754-0.609-0.993-0.826 c-0.201-0.174-0.787-0.715-0.787-0.715s-1.009-0.955-1.324-1.287c-1.064-1.104-3.111-3.379-4.09-4.562 c-0.828-0.994-2.438-3.028-3.22-4.065c-0.431-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M118.173,571.002l-19.766,0.617c0,0,1.094-0.353,1.471-0.438c0.313-0.072,0.951-0.182,1.271-0.227 c0.268-0.039,1.059-0.138,1.059-0.138s1.375-0.153,1.836-0.188c1.526-0.096,4.59-0.186,6.123-0.176 c1.295,0.012,3.887,0.104,5.184,0.174c0.705,0.041,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 119 571.786" dur="4s" to="359 119 571.786" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M116.632,571.781c-0.008,1.433,1.199,2.604,2.695,2.607c1.498,0.005,2.715-1.154,2.721-2.588 c0.006-1.439-1.201-2.604-2.701-2.612C117.85,569.184,116.636,570.339,116.632,571.781"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M117.611,571.786c-0.002,0.893,0.771,1.618,1.722,1.625c0.953,0.004,1.733-0.72,1.735-1.613 c0.002-0.893-0.771-1.621-1.724-1.627C118.392,570.17,117.615,570.891,117.611,571.786"/>
- </g>
- </g>
- </g>
- <g id="_x23_75">
- <g>
- <path fill="#E0E0DF" d="M1610.42,74.184l-1.379,28.778c0,0,1.094,0.431,2.063,0.435c0.995,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1610.42,74.184L1610.42,74.184z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1611 74.1839)">
- <g>
- <path fill="#42478C" d="M1610.12,73.131l2.203,0.853c0,0,5.843-12.162,6.269-18.754 C1614.278,60.452,1610.12,73.131,1610.12,73.131"/>
- <path fill="#42478C" d="M1612.209,73.984l-1.813,1.51c0,0,7.767,11.027,13.319,14.617 C1621.258,83.794,1612.209,73.984,1612.209,73.984"/>
- <path fill="#42478C" d="M1610.295,75.563l0.021-2.361c0,0-13.438-1.197-19.767,0.729 C1596.959,76.131,1610.295,75.563,1610.295,75.563"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1612.215,73.702l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.987,5.789 c-0.468,1.211-1.461,3.608-1.983,4.797c-0.28,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#E0E0DF" d="M1610.694,75.539l13.238,14.691c0,0-0.975-0.613-1.281-0.843c-0.262-0.192-0.754-0.61-0.993-0.825 c-0.198-0.177-0.785-0.718-0.785-0.718s-1.011-0.954-1.325-1.286c-1.063-1.103-3.11-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.672-2.279-1.672-2.279"/>
- <path fill="#E0E0DF" d="M1610.09,73.398l-19.769,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.948-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.839-0.186c1.524-0.098,4.586-0.188,6.12-0.176 c1.296,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1611 74.184" dur="4s" to="359 1611 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1608.547,74.176c-0.006,1.435,1.201,2.605,2.696,2.611c1.498,0.004,2.714-1.158,2.72-2.59 c0.006-1.439-1.201-2.604-2.701-2.613C1609.767,71.583,1608.553,72.739,1608.547,74.176"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1609.528,74.184c-0.004,0.893,0.77,1.618,1.72,1.625c0.953,0.004,1.733-0.722,1.735-1.613 c0.004-0.896-0.771-1.623-1.724-1.627C1610.308,72.566,1609.531,73.289,1609.528,74.184"/>
- </g>
- </g>
- </g>
- <g id="_x23_76">
- <g>
- <path fill="#E0E0DF" d="M1657.454,74.184l-1.377,28.778c0,0,1.095,0.431,2.063,0.435c0.998,0.004,2.149-0.422,2.149-0.422 l-1.143-28.783L1657.454,74.184L1657.454,74.184z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1658 74.1839)">
- <g>
- <path fill="#42478C" d="M1657.155,73.131l2.203,0.853c0,0,5.844-12.162,6.271-18.754 C1661.314,60.452,1657.155,73.131,1657.155,73.131"/>
- <path fill="#42478C" d="M1659.244,73.984l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1668.293,83.794,1659.244,73.984,1659.244,73.984"/>
- <path fill="#42478C" d="M1657.332,75.563l0.021-2.361c0,0-13.44-1.197-19.767,0.729 C1643.994,76.131,1657.332,75.563,1657.332,75.563"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1659.25,73.702l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.162,0.957-0.234,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.981,4.797c-0.283,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#E0E0DF" d="M1657.732,75.539l13.236,14.691c0,0-0.976-0.613-1.279-0.843c-0.264-0.192-0.756-0.61-0.996-0.825 c-0.199-0.177-0.785-0.718-0.785-0.718s-1.01-0.954-1.326-1.286c-1.063-1.103-3.108-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.43-0.563-1.676-2.279-1.676-2.279"/>
- <path fill="#E0E0DF" d="M1657.125,73.398l-19.77,0.617c0,0,1.097-0.349,1.474-0.435c0.313-0.074,0.951-0.184,1.271-0.229 c0.267-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.838-0.186c1.526-0.098,4.588-0.188,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1658 74.184" dur="4s" to="359 1658 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1655.584,74.176c-0.009,1.435,1.198,2.605,2.693,2.611c1.498,0.004,2.716-1.158,2.723-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1656.802,71.583,1655.587,72.739,1655.584,74.176"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1656.564,74.184c-0.002,0.893,0.771,1.618,1.721,1.625c0.953,0.004,1.732-0.722,1.732-1.613 c0.006-0.896-0.771-1.623-1.721-1.627C1657.343,72.566,1656.568,73.289,1656.564,74.184"/>
- </g>
- </g>
- </g>
- <g id="_x23_77">
- <g>
- <path fill="#E0E0DF" d="M1711.668,74.184l-1.377,28.778c0,0,1.094,0.431,2.062,0.435c0.998,0.004,2.149-0.422,2.149-0.422 l-1.142-28.783L1711.668,74.184L1711.668,74.184z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1712 74.1839)">
- <g>
- <path fill="#42478C" d="M1711.368,73.131l2.203,0.853c0,0,5.845-12.162,6.271-18.754 C1715.526,60.452,1711.368,73.131,1711.368,73.131"/>
- <path fill="#42478C" d="M1713.457,73.984l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1722.508,83.794,1713.457,73.984,1713.457,73.984"/>
- <path fill="#42478C" d="M1711.545,75.563l0.021-2.361c0,0-13.439-1.197-19.767,0.729 C1698.207,76.131,1711.545,75.563,1711.545,75.563"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1713.465,73.702l6.377-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.36-1.989,5.789 c-0.465,1.211-1.461,3.608-1.981,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#E0E0DF" d="M1711.944,75.539l13.238,14.691c0,0-0.977-0.613-1.281-0.843c-0.262-0.192-0.754-0.61-0.995-0.825 c-0.198-0.177-0.785-0.718-0.785-0.718s-1.011-0.954-1.325-1.286c-1.063-1.103-3.108-3.382-4.089-4.558 c-0.827-0.996-2.438-3.033-3.222-4.067c-0.428-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#E0E0DF" d="M1711.338,73.398l-19.769,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.951-0.184,1.271-0.229 c0.267-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.839-0.186c1.526-0.098,4.588-0.188,6.12-0.176 c1.298,0.012,3.891,0.102,5.186,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1712 74.184" dur="4s" to="359 1712 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1709.797,74.176c-0.009,1.435,1.198,2.605,2.694,2.611c1.498,0.004,2.715-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C1711.017,71.583,1709.801,72.739,1709.797,74.176"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1710.776,74.184c-0.002,0.893,0.771,1.618,1.723,1.625c0.952,0.004,1.732-0.722,1.732-1.613 c0.004-0.896-0.771-1.623-1.722-1.627C1711.558,72.566,1710.781,73.289,1710.776,74.184"/>
- </g>
- </g>
- </g>
- <g id="_x23_78">
- <g>
- <path fill="#E0E0DF" d="M1756.523,74.184l-1.377,28.778c0,0,1.095,0.431,2.062,0.435c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1756.523,74.184L1756.523,74.184z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1757 74.1839)">
- <g>
- <path fill="#42478C" d="M1756.221,73.131l2.203,0.853c0,0,5.845-12.162,6.271-18.754 C1760.379,60.452,1756.221,73.131,1756.221,73.131"/>
- <path fill="#42478C" d="M1758.312,73.984l-1.813,1.51c0,0,7.77,11.027,13.319,14.617 C1767.363,83.794,1758.312,73.984,1758.312,73.984"/>
- <path fill="#42478C" d="M1756.4,75.563l0.021-2.361c0,0-13.438-1.197-19.768,0.729 C1743.062,76.131,1756.4,75.563,1756.4,75.563"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1758.318,73.702l6.38-18.719c0,0-0.063,1.147-0.11,1.526c-0.041,0.322-0.166,0.957-0.235,1.275 c-0.061,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.474,1.785c-0.446,1.467-1.438,4.36-1.989,5.789 c-0.465,1.211-1.461,3.608-1.98,4.797c-0.283,0.646-1.173,2.569-1.173,2.569"/>
- <path fill="#E0E0DF" d="M1756.797,75.539l13.237,14.691c0,0-0.976-0.613-1.28-0.843c-0.265-0.192-0.754-0.61-0.996-0.825 c-0.198-0.177-0.784-0.718-0.784-0.718s-1.011-0.954-1.326-1.286c-1.063-1.103-3.108-3.382-4.09-4.558 c-0.826-0.996-2.438-3.033-3.22-4.067c-0.429-0.563-1.674-2.279-1.674-2.279"/>
- <path fill="#E0E0DF" d="M1756.193,73.398l-19.769,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.074,0.95-0.184,1.271-0.229 c0.265-0.037,1.056-0.136,1.056-0.136s1.377-0.155,1.84-0.186c1.525-0.098,4.588-0.188,6.119-0.176 c1.299,0.012,3.891,0.102,5.186,0.172c0.707,0.043,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1757 74.184" dur="4s" to="359 1757 74.184" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1754.65,74.176c-0.006,1.435,1.201,2.605,2.696,2.611c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C1755.87,71.583,1754.656,72.739,1754.65,74.176"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1755.629,74.184c-0.004,0.893,0.771,1.618,1.722,1.625c0.952,0.004,1.733-0.722,1.733-1.613 c0.004-0.896-0.771-1.623-1.722-1.627C1756.411,72.566,1755.631,73.289,1755.629,74.184"/>
- </g>
- </g>
- </g>
- <g id="_x23_80">
- <g>
- <path fill="#E0E0DF" d="M1242.267,320.078l-1.379,28.779c0,0,1.096,0.43,2.063,0.434c0.995,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1242.267,320.078L1242.267,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1243 320.078)">
- <g>
- <path fill="#42478C" d="M1241.964,319.028l2.202,0.852c0,0,5.845-12.162,6.271-18.754 C1246.123,306.345,1241.964,319.028,1241.964,319.028"/>
- <path fill="#42478C" d="M1244.056,319.878l-1.813,1.511c0,0,7.769,11.026,13.32,14.617 C1253.105,329.69,1244.056,319.878,1244.056,319.878"/>
- <path fill="#42478C" d="M1242.142,321.457l0.021-2.36c0,0-13.44-1.196-19.768,0.729 C1228.804,322.028,1242.142,321.457,1242.142,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1244.062,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.039,0.321-0.164,0.957-0.235,1.274 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.475,1.785c-0.445,1.467-1.438,4.361-1.988,5.789 c-0.465,1.211-1.462,3.609-1.982,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1242.539,321.433l13.238,14.69c0,0-0.976-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.995-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.324-1.287c-1.063-1.104-3.109-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.22-4.066c-0.428-0.563-1.673-2.278-1.673-2.278"/>
- <path fill="#E0E0DF" d="M1241.937,319.292l-19.771,0.617c0,0,1.096-0.35,1.474-0.436c0.313-0.072,0.95-0.184,1.271-0.229 c0.266-0.037,1.056-0.135,1.056-0.135s1.379-0.156,1.838-0.187c1.526-0.099,4.588-0.187,6.123-0.177 c1.295,0.013,3.889,0.103,5.184,0.173c0.707,0.043,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1243 320.078" dur="4s" to="359 1243 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1240.394,320.073c-0.008,1.434,1.201,2.604,2.695,2.61c1.498,0.004,2.716-1.157,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1241.613,317.478,1240.398,318.632,1240.394,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1241.371,320.078c-0.002,0.894,0.771,1.619,1.722,1.625c0.952,0.004,1.733-0.721,1.735-1.612 c0.003-0.896-0.771-1.623-1.723-1.628C1242.153,318.46,1241.375,319.183,1241.371,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_82">
- <g>
- <path fill="#E0E0DF" d="M1337.796,320.078l-1.38,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1337.796,320.078L1337.796,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1338 320.078)">
- <g>
- <path fill="#42478C" d="M1337.495,319.028l2.203,0.852c0,0,5.843-12.162,6.269-18.754 C1341.655,306.345,1337.495,319.028,1337.495,319.028"/>
- <path fill="#42478C" d="M1339.584,319.878l-1.813,1.511c0,0,7.771,11.026,13.322,14.617 C1348.634,329.69,1339.584,319.878,1339.584,319.878"/>
- <path fill="#42478C" d="M1337.671,321.457l0.021-2.36c0,0-13.439-1.196-19.769,0.729 C1324.332,322.028,1337.671,321.457,1337.671,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1339.591,319.595l6.377-18.72c0,0-0.062,1.148-0.109,1.527c-0.039,0.321-0.164,0.957-0.234,1.274 c-0.061,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1338.071,321.433l13.236,14.69c0,0-0.973-0.612-1.279-0.842c-0.264-0.192-0.756-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.063-1.104-3.109-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.428-0.563-1.672-2.278-1.672-2.278"/>
- <path fill="#E0E0DF" d="M1337.466,319.292l-19.771,0.617c0,0,1.096-0.35,1.473-0.436c0.313-0.072,0.95-0.184,1.271-0.229 c0.266-0.037,1.056-0.135,1.056-0.135s1.378-0.156,1.839-0.187c1.525-0.099,4.587-0.187,6.121-0.177 c1.297,0.013,3.889,0.103,5.187,0.173c0.705,0.043,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1338 320.078" dur="4s" to="359 1338 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1335.923,320.073c-0.007,1.434,1.2,2.604,2.694,2.61c1.498,0.004,2.715-1.157,2.721-2.59 c0.009-1.438-1.2-2.604-2.7-2.613C1337.142,317.478,1335.927,318.632,1335.923,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1336.903,320.078c-0.002,0.894,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.721,1.736-1.612 c0.004-0.896-0.771-1.623-1.725-1.628C1337.683,318.46,1336.906,319.183,1336.903,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_81">
- <g>
- <path fill="#E0E0DF" d="M1290.101,320.078l-1.38,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1290.101,320.078L1290.101,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1291 320.078)">
- <g>
- <path fill="#42478C" d="M1289.799,319.028l2.201,0.852c0,0,5.844-12.162,6.271-18.754 C1293.957,306.345,1289.799,319.028,1289.799,319.028"/>
- <path fill="#42478C" d="M1291.889,319.878l-1.813,1.511c0,0,7.77,11.026,13.321,14.617 C1300.937,329.69,1291.889,319.878,1291.889,319.878"/>
- <path fill="#42478C" d="M1289.976,321.457l0.021-2.36c0,0-13.438-1.196-19.768,0.729 C1276.637,322.028,1289.976,321.457,1289.976,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1291.894,319.595l6.377-18.72c0,0-0.062,1.148-0.109,1.527c-0.038,0.321-0.163,0.957-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.445,1.467-1.438,4.361-1.988,5.789 c-0.466,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1290.373,321.433l13.236,14.69c0,0-0.974-0.612-1.279-0.842c-0.264-0.192-0.755-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.063-1.104-3.11-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.427-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1289.769,319.292l-19.768,0.617c0,0,1.094-0.35,1.473-0.436c0.312-0.072,0.949-0.184,1.271-0.229 c0.267-0.037,1.057-0.135,1.057-0.135s1.379-0.156,1.838-0.187c1.526-0.099,4.588-0.187,6.123-0.177 c1.295,0.013,3.887,0.103,5.186,0.173c0.704,0.043,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1291 320.078" dur="4s" to="359 1291 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1288.228,320.073c-0.008,1.434,1.2,2.604,2.694,2.61c1.499,0.004,2.716-1.157,2.722-2.59 c0.008-1.438-1.201-2.604-2.701-2.613C1289.446,317.478,1288.23,318.632,1288.228,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1289.205,320.078c-0.003,0.894,0.771,1.619,1.722,1.625c0.952,0.004,1.732-0.721,1.734-1.612 c0.003-0.896-0.771-1.623-1.724-1.628C1289.987,318.46,1289.209,319.183,1289.205,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_83">
- <g>
- <path fill="#E0E0DF" d="M1382.533,320.078l-1.379,28.779c0,0,1.094,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1382.533,320.078L1382.533,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1383 320.078)">
- <g>
- <path fill="#42478C" d="M1382.232,319.028l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1386.389,306.345,1382.232,319.028,1382.232,319.028"/>
- <path fill="#42478C" d="M1384.323,319.878l-1.813,1.511c0,0,7.77,11.026,13.32,14.617 C1393.37,329.69,1384.323,319.878,1384.323,319.878"/>
- <path fill="#42478C" d="M1382.408,321.457l0.021-2.36c0,0-13.438-1.196-19.766,0.729 C1369.071,322.028,1382.408,321.457,1382.408,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1384.328,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.039,0.321-0.164,0.957-0.232,1.274 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.473,1.785c-0.447,1.467-1.439,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.983,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1382.806,321.433l13.238,14.69c0,0-0.974-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.996-0.826 c-0.195-0.176-0.783-0.717-0.783-0.717s-1.01-0.955-1.323-1.287c-1.066-1.104-3.111-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.223-4.066c-0.426-0.563-1.673-2.278-1.673-2.278"/>
- <path fill="#E0E0DF" d="M1382.203,319.292l-19.77,0.617c0,0,1.096-0.35,1.474-0.436c0.312-0.072,0.95-0.184,1.271-0.229 c0.268-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.839-0.187c1.526-0.099,4.587-0.187,6.122-0.177 c1.295,0.013,3.887,0.103,5.185,0.173c0.704,0.043,2.817,0.194,2.817,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1383 320.078" dur="4s" to="359 1383 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1380.66,320.073c-0.007,1.434,1.201,2.604,2.693,2.61c1.5,0.004,2.718-1.157,2.724-2.59 c0.007-1.438-1.202-2.604-2.702-2.613C1381.878,317.478,1380.663,318.632,1380.66,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1381.639,320.078c-0.003,0.894,0.771,1.619,1.722,1.625c0.951,0.004,1.732-0.721,1.734-1.612 c0.003-0.896-0.771-1.623-1.724-1.628C1382.418,318.46,1381.642,319.183,1381.639,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_84">
- <g>
- <path fill="#E0E0DF" d="M1435.513,320.078l-1.379,28.779c0,0,1.094,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1435.513,320.078L1435.513,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1436 320.078)">
- <g>
- <path fill="#42478C" d="M1435.212,319.028l2.202,0.852c0,0,5.843-12.162,6.269-18.754 C1439.37,306.345,1435.212,319.028,1435.212,319.028"/>
- <path fill="#42478C" d="M1437.302,319.878l-1.813,1.511c0,0,7.771,11.026,13.32,14.617 C1446.351,329.69,1437.302,319.878,1437.302,319.878"/>
- <path fill="#42478C" d="M1435.388,321.457l0.021-2.36c0,0-13.438-1.196-19.766,0.729 C1422.05,322.028,1435.388,321.457,1435.388,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1437.308,319.595l6.377-18.72c0,0-0.062,1.148-0.109,1.527c-0.039,0.321-0.164,0.957-0.233,1.274 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.785c-0.444,1.467-1.438,4.361-1.987,5.789 c-0.468,1.211-1.461,3.609-1.982,4.797c-0.281,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1435.786,321.433l13.237,14.69c0,0-0.974-0.612-1.28-0.842c-0.263-0.192-0.754-0.611-0.995-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.323-1.287c-1.063-1.104-3.11-3.381-4.091-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.427-0.563-1.673-2.278-1.673-2.278"/>
- <path fill="#E0E0DF" d="M1435.183,319.292l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.072,0.949-0.184,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.379-0.156,1.838-0.187c1.526-0.099,4.59-0.187,6.123-0.177 c1.295,0.013,3.889,0.103,5.186,0.173c0.705,0.043,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1436 320.078" dur="4s" to="359 1436 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1433.64,320.073c-0.006,1.434,1.201,2.604,2.694,2.61c1.498,0.004,2.716-1.157,2.724-2.59 c0.008-1.438-1.201-2.604-2.701-2.613C1434.86,317.478,1433.644,318.632,1433.64,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1434.62,320.078c-0.004,0.894,0.769,1.619,1.72,1.625c0.953,0.004,1.733-0.721,1.735-1.612 c0.004-0.896-0.771-1.623-1.724-1.628C1435.401,318.46,1434.623,319.183,1434.62,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_85">
- <g>
- <path fill="#E0E0DF" d="M1486.991,320.078l-1.38,28.779c0,0,1.095,0.43,2.063,0.434c0.995,0.004,2.146-0.422,2.146-0.422 l-1.142-28.783L1486.991,320.078L1486.991,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1488 320.078)">
- <g>
- <path fill="#42478C" d="M1486.691,319.028l2.203,0.852c0,0,5.842-12.162,6.269-18.754 C1490.849,306.345,1486.691,319.028,1486.691,319.028"/>
- <path fill="#42478C" d="M1488.781,319.878l-1.813,1.511c0,0,7.768,11.026,13.319,14.617 C1497.828,329.69,1488.781,319.878,1488.781,319.878"/>
- <path fill="#42478C" d="M1486.866,321.457l0.021-2.36c0,0-13.438-1.196-19.767,0.729 C1473.531,322.028,1486.866,321.457,1486.866,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1488.786,319.595l6.377-18.72c0,0-0.062,1.148-0.11,1.527c-0.038,0.321-0.163,0.957-0.233,1.274 c-0.06,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.785c-0.444,1.467-1.438,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.983,4.797c-0.28,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1487.264,321.433l13.238,14.69c0,0-0.975-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.993-0.826 c-0.199-0.176-0.785-0.717-0.785-0.717s-1.011-0.955-1.326-1.287c-1.063-1.104-3.109-3.381-4.09-4.559 c-0.828-0.994-2.438-3.031-3.222-4.066c-0.426-0.563-1.672-2.278-1.672-2.278"/>
- <path fill="#E0E0DF" d="M1486.661,319.292l-19.769,0.617c0,0,1.097-0.35,1.474-0.436c0.313-0.072,0.948-0.184,1.271-0.229 c0.267-0.037,1.058-0.135,1.058-0.135s1.377-0.156,1.838-0.187c1.524-0.099,4.586-0.187,6.121-0.177 c1.295,0.013,3.887,0.103,5.184,0.173c0.705,0.043,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1488 320.078" dur="4s" to="359 1488 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1485.118,320.073c-0.006,1.434,1.201,2.604,2.696,2.61c1.498,0.004,2.714-1.157,2.72-2.59 c0.007-1.438-1.2-2.604-2.7-2.613C1486.336,317.478,1485.123,318.632,1485.118,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1486.099,320.078c-0.005,0.894,0.769,1.619,1.719,1.625c0.953,0.004,1.733-0.721,1.735-1.612 c0.005-0.896-0.771-1.623-1.724-1.628C1486.877,318.46,1486.101,319.183,1486.099,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_86">
- <g>
- <path fill="#E0E0DF" d="M1534.933,320.078l-1.378,28.779c0,0,1.095,0.43,2.063,0.434c0.998,0.004,2.149-0.422,2.149-0.422 l-1.142-28.783L1534.933,320.078L1534.933,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1536 320.078)">
- <g>
- <path fill="#42478C" d="M1534.631,319.028l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1538.788,306.345,1534.631,319.028,1534.631,319.028"/>
- <path fill="#42478C" d="M1536.721,319.878l-1.813,1.511c0,0,7.769,11.026,13.321,14.617 C1545.773,329.69,1536.721,319.878,1536.721,319.878"/>
- <path fill="#42478C" d="M1534.81,321.457l0.021-2.36c0,0-13.438-1.196-19.766,0.729 C1521.471,322.028,1534.81,321.457,1534.81,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1536.73,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.041,0.321-0.164,0.957-0.235,1.274 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.475,1.785c-0.443,1.467-1.438,4.361-1.989,5.789 c-0.465,1.211-1.461,3.609-1.98,4.797c-0.282,0.646-1.173,2.57-1.173,2.57"/>
- <path fill="#E0E0DF" d="M1535.207,321.433l13.237,14.69c0,0-0.976-0.612-1.28-0.842c-0.263-0.192-0.755-0.611-0.996-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.104-3.108-3.381-4.088-4.559 c-0.828-0.994-2.438-3.031-3.222-4.066c-0.429-0.563-1.675-2.278-1.675-2.278"/>
- <path fill="#E0E0DF" d="M1534.603,319.292l-19.769,0.617c0,0,1.096-0.35,1.474-0.436c0.312-0.072,0.95-0.184,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.838-0.187c1.526-0.099,4.59-0.187,6.121-0.177 c1.297,0.013,3.891,0.103,5.186,0.173c0.707,0.043,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1536 320.078" dur="4s" to="359 1536 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1533.062,320.073c-0.009,1.434,1.198,2.604,2.694,2.61c1.498,0.004,2.715-1.157,2.722-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1534.281,317.478,1533.066,318.632,1533.062,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1534.038,320.078c-0.002,0.894,0.771,1.619,1.722,1.625c0.953,0.004,1.733-0.721,1.733-1.612 c0.004-0.896-0.771-1.623-1.722-1.628C1534.822,318.46,1534.043,319.183,1534.038,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_87">
- <g>
- <path fill="#E0E0DF" d="M1580.907,320.078l-1.377,28.779c0,0,1.095,0.43,2.062,0.434c0.998,0.004,2.149-0.422,2.149-0.422 l-1.142-28.783L1580.907,320.078L1580.907,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1582 320.078)">
- <g>
- <path fill="#42478C" d="M1580.607,319.028l2.203,0.852c0,0,5.844-12.162,6.271-18.754 C1584.764,306.345,1580.607,319.028,1580.607,319.028"/>
- <path fill="#42478C" d="M1582.697,319.878l-1.813,1.511c0,0,7.77,11.026,13.321,14.617 C1591.746,329.69,1582.697,319.878,1582.697,319.878"/>
- <path fill="#42478C" d="M1580.784,321.457l0.021-2.36c0,0-13.439-1.196-19.767,0.729 C1567.447,322.028,1580.784,321.457,1580.784,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1582.703,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.041,0.321-0.164,0.957-0.234,1.274 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.785c-0.443,1.467-1.438,4.361-1.988,5.789 c-0.467,1.211-1.463,3.609-1.981,4.797c-0.283,0.646-1.173,2.57-1.173,2.57"/>
- <path fill="#E0E0DF" d="M1581.183,321.433l13.237,14.69c0,0-0.976-0.612-1.28-0.842c-0.263-0.192-0.755-0.611-0.996-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.104-3.108-3.381-4.089-4.559 c-0.827-0.994-2.438-3.031-3.221-4.066c-0.429-0.563-1.675-2.278-1.675-2.278"/>
- <path fill="#E0E0DF" d="M1580.577,319.292l-19.769,0.617c0,0,1.097-0.35,1.474-0.436c0.313-0.072,0.951-0.184,1.271-0.229 c0.268-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.187c1.525-0.099,4.588-0.187,6.121-0.177 c1.297,0.013,3.89,0.103,5.185,0.173c0.707,0.043,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1582 320.078" dur="4s" to="359 1582 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1579.036,320.073c-0.009,1.434,1.198,2.604,2.694,2.61c1.498,0.004,2.715-1.157,2.722-2.59 c0.007-1.438-1.202-2.604-2.7-2.613C1580.254,317.478,1579.038,318.632,1579.036,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1580.014,320.078c-0.002,0.894,0.771,1.619,1.722,1.625c0.953,0.004,1.733-0.721,1.733-1.612 c0.005-0.896-0.771-1.623-1.721-1.628C1580.795,318.46,1580.019,319.183,1580.014,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_88">
- <g>
- <path fill="#E0E0DF" d="M1627.439,320.078l-1.379,28.779c0,0,1.096,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1627.439,320.078L1627.439,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1628 320.078)">
- <g>
- <path fill="#42478C" d="M1627.137,319.028l2.203,0.852c0,0,5.843-12.162,6.271-18.754 C1631.295,306.345,1627.137,319.028,1627.137,319.028"/>
- <path fill="#42478C" d="M1629.228,319.878l-1.813,1.511c0,0,7.769,11.026,13.32,14.617 C1638.278,329.69,1629.228,319.878,1629.228,319.878"/>
- <path fill="#42478C" d="M1627.316,321.457l0.021-2.36c0,0-13.438-1.196-19.768,0.729 C1613.978,322.028,1627.316,321.457,1627.316,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1629.234,319.595l6.38-18.72c0,0-0.063,1.148-0.11,1.527c-0.041,0.321-0.166,0.957-0.235,1.274 c-0.061,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.474,1.785c-0.446,1.467-1.438,4.361-1.989,5.789 c-0.465,1.211-1.461,3.609-1.982,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1627.713,321.433l13.236,14.69c0,0-0.975-0.612-1.28-0.842c-0.264-0.192-0.755-0.611-0.995-0.826 c-0.198-0.176-0.786-0.717-0.786-0.717s-1.009-0.955-1.324-1.287c-1.063-1.104-3.108-3.381-4.09-4.559 c-0.826-0.994-2.437-3.031-3.22-4.066c-0.428-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1627.109,319.292l-19.769,0.617c0,0,1.097-0.35,1.474-0.436c0.312-0.072,0.949-0.184,1.271-0.229 c0.267-0.037,1.058-0.135,1.058-0.135s1.377-0.156,1.838-0.187c1.525-0.099,4.588-0.187,6.121-0.177 c1.297,0.013,3.889,0.103,5.185,0.173c0.706,0.043,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1628 320.078" dur="4s" to="359 1628 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1625.566,320.073c-0.006,1.434,1.201,2.604,2.695,2.61c1.499,0.004,2.717-1.157,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1626.785,317.478,1625.572,318.632,1625.566,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1626.545,320.078c-0.004,0.894,0.771,1.619,1.721,1.625c0.952,0.004,1.732-0.721,1.734-1.612 c0.004-0.896-0.771-1.623-1.723-1.628C1627.327,318.46,1626.547,319.183,1626.545,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_89">
- <g>
- <path fill="#E0E0DF" d="M1671.742,320.078l-1.377,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.143-28.783L1671.742,320.078L1671.742,320.078z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1672 320.078)">
- <g>
- <path fill="#42478C" d="M1671.443,319.028l2.201,0.852c0,0,5.846-12.162,6.271-18.754 C1675.599,306.345,1671.443,319.028,1671.443,319.028"/>
- <path fill="#42478C" d="M1673.533,319.878l-1.813,1.511c0,0,7.77,11.026,13.322,14.617 C1682.58,329.69,1673.533,319.878,1673.533,319.878"/>
- <path fill="#42478C" d="M1671.619,321.457l0.021-2.36c0,0-13.44-1.196-19.77,0.729 C1658.281,322.028,1671.619,321.457,1671.619,321.457"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1673.538,319.595l6.377-18.72c0,0-0.063,1.148-0.11,1.527c-0.038,0.321-0.163,0.957-0.235,1.274 c-0.058,0.258-0.243,1.033-0.243,1.033s-0.341,1.344-0.474,1.785c-0.447,1.467-1.438,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.98,4.797c-0.283,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1672.017,321.433l13.238,14.69c0,0-0.976-0.612-1.281-0.842c-0.262-0.192-0.754-0.611-0.994-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.326-1.287c-1.063-1.104-3.108-3.381-4.09-4.559 c-0.826-0.994-2.438-3.031-3.221-4.066c-0.428-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1671.413,319.292l-19.771,0.617c0,0,1.097-0.35,1.474-0.436c0.312-0.072,0.95-0.184,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.187c1.525-0.099,4.588-0.187,6.123-0.177 c1.295,0.013,3.888,0.103,5.183,0.173c0.707,0.043,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 1672 320.078" dur="4s" to="359 1672 320.078" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1669.869,320.073c-0.006,1.434,1.203,2.604,2.697,2.61c1.498,0.004,2.715-1.157,2.721-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1671.089,317.478,1669.873,318.632,1669.869,320.073"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1670.849,320.078c-0.002,0.894,0.771,1.619,1.723,1.625c0.951,0.004,1.732-0.721,1.734-1.612 c0.002-0.896-0.771-1.623-1.724-1.628C1671.63,318.46,1670.853,319.183,1670.849,320.078"/>
- </g>
- </g>
- </g>
- <g id="_x23_79">
- <g>
- <path fill="#DFDFDD" d="M1195.968,317.925l-1.377,28.778c0,0,1.094,0.431,2.063,0.435c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1195.968,317.925L1195.968,317.925z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1197 317.925)">
- <g>
- <path fill="#3E4484" d="M1195.666,316.875l2.203,0.853c0,0,5.845-12.162,6.271-18.755 C1199.824,304.193,1195.666,316.875,1195.666,316.875"/>
- <path fill="#3E4484" d="M1197.758,317.726l-1.813,1.511c0,0,7.77,11.026,13.321,14.616 C1206.808,327.537,1197.758,317.726,1197.758,317.726"/>
- <path fill="#3E4484" d="M1195.845,319.304l0.021-2.36c0,0-13.438-1.197-19.768,0.729 C1182.507,319.875,1195.845,319.304,1195.845,319.304"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M1197.764,317.443l6.378-18.72c0,0-0.063,1.147-0.11,1.527c-0.039,0.321-0.164,0.956-0.234,1.274 c-0.059,0.258-0.244,1.032-0.244,1.032s-0.341,1.345-0.473,1.785c-0.447,1.467-1.439,4.36-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#DFDFDD" d="M1196.243,319.281l13.237,14.69c0,0-0.976-0.612-1.282-0.842c-0.263-0.192-0.753-0.61-0.993-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.011-0.955-1.326-1.287c-1.063-1.103-3.109-3.381-4.09-4.558 c-0.827-0.996-2.438-3.032-3.22-4.067c-0.429-0.563-1.675-2.278-1.675-2.278"/>
- <path fill="#DFDFDD" d="M1195.639,317.14l-19.77,0.617c0,0,1.097-0.349,1.474-0.435c0.312-0.073,0.951-0.185,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.188c1.524-0.098,4.588-0.186,6.122-0.176 c1.296,0.013,3.888,0.103,5.183,0.172c0.707,0.043,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1197 317.925" dur="4s" to="359 1197 317.925" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M1194.095,317.92c-0.006,1.435,1.202,2.604,2.696,2.61c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.438-1.203-2.604-2.701-2.613C1195.314,315.326,1194.1,316.48,1194.095,317.92"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M1195.074,317.925c-0.002,0.894,0.771,1.619,1.723,1.625c0.951,0.004,1.731-0.722,1.733-1.613 c0.003-0.895-0.771-1.622-1.723-1.627C1195.857,316.308,1195.077,317.031,1195.074,317.925"/>
- </g>
- </g>
- </g>
- <g id="_x23_90">
- <g>
- <path fill="#E0E0DF" d="M1719.235,321.374l-1.379,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.142-28.783L1719.235,321.374L1719.235,321.374z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1720 321.374)">
- <g>
- <path fill="#42478C" d="M1718.933,320.324l2.203,0.853c0,0,5.844-12.162,6.271-18.755 C1723.092,307.64,1718.933,320.324,1718.933,320.324"/>
- <path fill="#42478C" d="M1721.025,321.173l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1730.073,330.986,1721.025,321.173,1721.025,321.173"/>
- <path fill="#42478C" d="M1719.11,322.752l0.021-2.361c0,0-13.439-1.195-19.769,0.729 C1705.773,323.324,1719.11,322.752,1719.11,322.752"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1721.031,320.89l6.377-18.719c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.235,1.274 c-0.058,0.259-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.361-1.987,5.789 c-0.467,1.211-1.463,3.609-1.983,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1719.509,322.728l13.237,14.691c0,0-0.975-0.613-1.28-0.842c-0.263-0.193-0.754-0.611-0.996-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.064-1.102-3.109-3.381-4.091-4.557 c-0.826-0.996-2.438-3.033-3.221-4.068c-0.427-0.563-1.673-2.279-1.673-2.279"/>
- <path fill="#E0E0DF" d="M1718.906,320.588l-19.771,0.617c0,0,1.096-0.348,1.475-0.435c0.312-0.073,0.949-0.185,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.379-0.156,1.838-0.188c1.526-0.098,4.589-0.186,6.123-0.176 c1.295,0.012,3.888,0.102,5.183,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1720 321.374" dur="4s" to="359 1720 321.374" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1717.362,321.369c-0.008,1.435,1.201,2.604,2.695,2.609c1.497,0.006,2.717-1.156,2.723-2.59 c0.005-1.438-1.203-2.604-2.702-2.611C1718.58,318.775,1717.366,319.927,1717.362,321.369"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1718.341,321.374c-0.002,0.893,0.771,1.619,1.721,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.771-1.623-1.723-1.627C1719.121,319.756,1718.345,320.478,1718.341,321.374"/>
- </g>
- </g>
- </g>
- <g id="_x23_91">
- <g>
- <path fill="#E0E0DF" d="M1769.069,321.374l-1.381,28.779c0,0,1.096,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1769.069,321.374L1769.069,321.374z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1770 321.374)">
- <g>
- <path fill="#42478C" d="M1768.769,320.324l2.201,0.853c0,0,5.844-12.162,6.271-18.755 C1772.926,307.64,1768.769,320.324,1768.769,320.324"/>
- <path fill="#42478C" d="M1770.859,321.173l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1779.906,330.986,1770.859,321.173,1770.859,321.173"/>
- <path fill="#42478C" d="M1768.944,322.752l0.021-2.361c0,0-13.438-1.195-19.767,0.729 C1755.605,323.324,1768.944,322.752,1768.944,322.752"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1770.864,320.89l6.377-18.719c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.232,1.274 c-0.062,0.259-0.246,1.033-0.246,1.033s-0.34,1.344-0.475,1.784c-0.443,1.468-1.438,4.361-1.986,5.789 c-0.468,1.211-1.461,3.609-1.983,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1769.342,322.728l13.238,14.691c0,0-0.975-0.613-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.196-0.176-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.063-1.102-3.109-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.222-4.068c-0.426-0.563-1.673-2.279-1.673-2.279"/>
- <path fill="#E0E0DF" d="M1768.739,320.588l-19.77,0.617c0,0,1.094-0.348,1.473-0.435c0.313-0.073,0.949-0.185,1.271-0.229 c0.268-0.037,1.057-0.135,1.057-0.135s1.379-0.156,1.838-0.188c1.525-0.098,4.588-0.186,6.123-0.176 c1.295,0.012,3.887,0.102,5.184,0.172c0.705,0.043,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1770 321.374" dur="4s" to="359 1770 321.374" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1767.196,321.369c-0.008,1.435,1.199,2.604,2.693,2.609c1.5,0.006,2.717-1.156,2.723-2.59 c0.007-1.438-1.202-2.604-2.701-2.611C1768.413,318.775,1767.199,319.927,1767.196,321.369"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1768.175,321.374c-0.003,0.893,0.77,1.619,1.721,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.003-0.895-0.771-1.623-1.725-1.627C1768.954,319.756,1768.178,320.478,1768.175,321.374"/>
- </g>
- </g>
- </g>
- <g id="_x23_92">
- <g>
- <path fill="#E0E0DF" d="M1232.36,695.798l-1.379,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1232.36,695.798L1232.36,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1233 695.798)">
- <g>
- <path fill="#42478C" d="M1232.062,694.75l2.203,0.854c0,0,5.842-12.162,6.268-18.757 C1236.219,682.067,1232.062,694.75,1232.062,694.75"/>
- <path fill="#42478C" d="M1234.15,695.599l-1.813,1.512c0,0,7.769,11.025,13.321,14.615 C1243.198,705.412,1234.15,695.599,1234.15,695.599"/>
- <path fill="#42478C" d="M1232.235,697.177l0.021-2.359c0,0-13.439-1.196-19.769,0.729 C1218.898,697.75,1232.235,697.177,1232.235,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1234.156,695.317l6.377-18.721c0,0-0.062,1.148-0.109,1.527c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.06,0.258-0.246,1.031-0.246,1.031s-0.34,1.346-0.473,1.784c-0.445,1.469-1.438,4.361-1.988,5.789 c-0.467,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1232.635,697.155l13.236,14.689c0,0-0.973-0.611-1.279-0.842c-0.264-0.193-0.755-0.611-0.995-0.826 c-0.197-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.324-1.287c-1.063-1.102-3.109-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.673-2.277-1.673-2.277"/>
- <path fill="#E0E0DF" d="M1232.031,695.013l-19.77,0.617c0,0,1.095-0.348,1.472-0.434c0.313-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.838-0.188c1.525-0.098,4.587-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.188,0.172c0.704,0.043,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1233 695.798" dur="4s" to="359 1233 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1230.488,695.794c-0.007,1.436,1.2,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.721-2.591 c0.009-1.438-1.2-2.604-2.7-2.611C1231.705,693.201,1230.491,694.353,1230.488,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1231.467,695.798c-0.002,0.895,0.771,1.619,1.722,1.625c0.952,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.771-1.621-1.725-1.627C1232.246,694.181,1231.471,694.905,1231.467,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_93">
- <g>
- <path fill="#E0E0DF" d="M1277.58,695.798l-1.379,28.779c0,0,1.095,0.43,2.063,0.434c0.996,0.004,2.146-0.422,2.146-0.422 l-1.14-28.783L1277.58,695.798L1277.58,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1278 695.798)">
- <g>
- <path fill="#42478C" d="M1277.28,694.75l2.203,0.854c0,0,5.843-12.162,6.27-18.757 C1281.439,682.067,1277.28,694.75,1277.28,694.75"/>
- <path fill="#42478C" d="M1279.37,695.599l-1.813,1.512c0,0,7.769,11.025,13.319,14.615 C1288.418,705.412,1279.37,695.599,1279.37,695.599"/>
- <path fill="#42478C" d="M1277.455,697.177l0.021-2.359c0,0-13.439-1.196-19.767,0.729 C1264.118,697.75,1277.455,697.177,1277.455,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1279.375,695.317l6.379-18.721c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.784c-0.446,1.469-1.438,4.361-1.988,5.789 c-0.466,1.211-1.461,3.609-1.982,4.797c-0.282,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1277.855,697.155l13.238,14.689c0,0-0.975-0.611-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.196-0.176-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.109-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.222-4.068c-0.426-0.563-1.672-2.277-1.672-2.277"/>
- <path fill="#E0E0DF" d="M1277.25,695.013l-19.768,0.617c0,0,1.095-0.348,1.473-0.434c0.312-0.074,0.949-0.187,1.271-0.229 c0.266-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.839-0.188c1.525-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.187,0.172c0.704,0.043,2.817,0.195,2.817,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1278 695.798" dur="4s" to="359 1278 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1275.707,695.794c-0.007,1.436,1.201,2.604,2.695,2.61c1.498,0.005,2.716-1.157,2.723-2.591 c0.007-1.438-1.202-2.604-2.701-2.611C1276.928,693.201,1275.714,694.353,1275.707,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1276.689,695.798c-0.004,0.895,0.769,1.619,1.72,1.625c0.952,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.771-1.621-1.724-1.627C1277.469,694.181,1276.691,694.905,1276.689,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_94">
- <g>
- <path fill="#E0E0DF" d="M1330.047,695.798l-1.381,28.779c0,0,1.096,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1330.047,695.798L1330.047,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1331 695.798)">
- <g>
- <path fill="#42478C" d="M1329.745,694.75l2.203,0.854c0,0,5.843-12.162,6.27-18.757 C1333.903,682.067,1329.745,694.75,1329.745,694.75"/>
- <path fill="#42478C" d="M1331.834,695.599l-1.813,1.512c0,0,7.771,11.025,13.321,14.615 C1340.885,705.412,1331.834,695.599,1331.834,695.599"/>
- <path fill="#42478C" d="M1329.922,697.177l0.021-2.359c0,0-13.438-1.196-19.766,0.729 C1316.582,697.75,1329.922,697.177,1329.922,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1331.842,695.317l6.377-18.721c0,0-0.063,1.148-0.11,1.527c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.245,1.031-0.245,1.031s-0.341,1.346-0.475,1.784c-0.443,1.469-1.438,4.361-1.987,5.789 c-0.468,1.211-1.461,3.609-1.983,4.797c-0.28,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1330.319,697.155l13.238,14.689c0,0-0.973-0.611-1.281-0.842c-0.262-0.193-0.754-0.611-0.995-0.826 c-0.196-0.176-0.785-0.717-0.785-0.717s-1.009-0.955-1.322-1.287c-1.064-1.102-3.111-3.381-4.091-4.557 c-0.827-0.996-2.438-3.033-3.222-4.068c-0.427-0.563-1.673-2.277-1.673-2.277"/>
- <path fill="#E0E0DF" d="M1329.717,695.013l-19.77,0.617c0,0,1.094-0.348,1.475-0.434c0.312-0.074,0.947-0.187,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.38-0.156,1.839-0.188c1.525-0.098,4.588-0.186,6.123-0.176 c1.295,0.014,3.887,0.104,5.185,0.172c0.704,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1331 695.798" dur="4s" to="359 1331 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1328.174,695.794c-0.008,1.436,1.199,2.604,2.693,2.61c1.498,0.005,2.715-1.157,2.725-2.591 c0.006-1.438-1.203-2.604-2.703-2.611C1329.394,693.201,1328.178,694.353,1328.174,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1329.153,695.798c-0.004,0.895,0.771,1.619,1.72,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.004-0.895-0.77-1.621-1.723-1.627C1329.935,694.181,1329.156,694.905,1329.153,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_95">
- <g>
- <path fill="#E0E0DF" d="M1374.525,695.798l-1.379,28.779c0,0,1.094,0.43,2.063,0.434c0.994,0.004,2.146-0.422,2.146-0.422 l-1.141-28.783L1374.525,695.798L1374.525,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1375 695.798)">
- <g>
- <path fill="#42478C" d="M1374.224,694.75l2.203,0.854c0,0,5.842-12.162,6.268-18.757 C1378.382,682.067,1374.224,694.75,1374.224,694.75"/>
- <path fill="#42478C" d="M1376.314,695.599l-1.813,1.512c0,0,7.768,11.025,13.319,14.615 C1385.362,705.412,1376.314,695.599,1376.314,695.599"/>
- <path fill="#42478C" d="M1374.4,697.177l0.021-2.359c0,0-13.438-1.196-19.768,0.729 C1361.064,697.75,1374.4,697.177,1374.4,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1376.319,695.317l6.377-18.721c0,0-0.062,1.148-0.109,1.527c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.061,0.258-0.246,1.031-0.246,1.031s-0.34,1.346-0.474,1.784c-0.444,1.469-1.438,4.361-1.987,5.789 c-0.468,1.211-1.462,3.609-1.984,4.797c-0.28,0.646-1.17,2.57-1.17,2.57"/>
- <path fill="#E0E0DF" d="M1374.798,697.155l13.236,14.689c0,0-0.974-0.611-1.279-0.842c-0.264-0.193-0.755-0.611-0.994-0.826 c-0.199-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.326-1.287c-1.063-1.102-3.11-3.381-4.09-4.557 c-0.828-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.673-2.277-1.673-2.277"/>
- <path fill="#E0E0DF" d="M1374.194,695.013l-19.769,0.617c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.949-0.187,1.271-0.229 c0.267-0.037,1.058-0.135,1.058-0.135s1.377-0.156,1.838-0.188c1.524-0.098,4.586-0.186,6.121-0.176 c1.295,0.014,3.887,0.104,5.184,0.172c0.705,0.043,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1375 695.798" dur="4s" to="359 1375 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1372.651,695.794c-0.006,1.436,1.201,2.604,2.697,2.61c1.498,0.005,2.713-1.157,2.719-2.591 c0.006-1.438-1.201-2.604-2.701-2.611C1373.869,693.201,1372.656,694.353,1372.651,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1373.632,695.798c-0.005,0.895,0.768,1.619,1.719,1.625c0.953,0.004,1.733-0.721,1.735-1.613 c0.005-0.895-0.771-1.621-1.725-1.627C1374.41,694.181,1373.634,694.905,1373.632,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_96">
- <g>
- <path fill="#E0E0DF" d="M1419.739,695.798l-1.377,28.779c0,0,1.096,0.43,2.063,0.434c0.998,0.004,2.148-0.422,2.148-0.422 l-1.141-28.783L1419.739,695.798L1419.739,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1420 695.798)">
- <g>
- <path fill="#42478C" d="M1419.439,694.75l2.203,0.854c0,0,5.844-12.162,6.27-18.757 C1423.597,682.067,1419.439,694.75,1419.439,694.75"/>
- <path fill="#42478C" d="M1421.528,695.599l-1.813,1.512c0,0,7.769,11.025,13.32,14.615 C1430.578,705.412,1421.528,695.599,1421.528,695.599"/>
- <path fill="#42478C" d="M1419.615,697.177l0.021-2.359c0,0-13.44-1.196-19.768,0.729 C1406.278,697.75,1419.615,697.177,1419.615,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1421.535,695.317l6.379-18.721c0,0-0.063,1.148-0.11,1.527c-0.041,0.322-0.164,0.957-0.236,1.275 c-0.057,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.445,1.469-1.438,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.981,4.797c-0.281,0.646-1.172,2.57-1.172,2.57"/>
- <path fill="#E0E0DF" d="M1420.015,697.155l13.238,14.689c0,0-0.977-0.611-1.281-0.842c-0.262-0.193-0.754-0.611-0.996-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.102-3.107-3.381-4.089-4.557 c-0.827-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#E0E0DF" d="M1419.408,695.013l-19.768,0.617c0,0,1.096-0.348,1.473-0.434c0.313-0.074,0.951-0.187,1.271-0.229 c0.267-0.037,1.056-0.135,1.056-0.135s1.377-0.156,1.838-0.188c1.527-0.098,4.589-0.186,6.121-0.176 c1.297,0.014,3.89,0.104,5.186,0.172c0.707,0.043,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1420 695.798" dur="4s" to="359 1420 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1417.867,695.794c-0.008,1.436,1.199,2.604,2.695,2.61c1.498,0.005,2.715-1.157,2.721-2.591 c0.007-1.438-1.202-2.604-2.699-2.611C1419.087,693.201,1417.871,694.353,1417.867,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1418.847,695.798c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.721,1.734-1.613 c0.004-0.895-0.771-1.621-1.722-1.627C1419.628,694.181,1418.851,694.905,1418.847,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_97">
- <g>
- <path fill="#E0E0DF" d="M1465.409,695.798l-1.377,28.779c0,0,1.095,0.43,2.063,0.434c0.998,0.004,2.149-0.422,2.149-0.422 l-1.143-28.783L1465.409,695.798L1465.409,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1466 695.798)">
- <g>
- <path fill="#42478C" d="M1465.109,694.75l2.203,0.854c0,0,5.845-12.162,6.271-18.757 C1469.269,682.067,1465.109,694.75,1465.109,694.75"/>
- <path fill="#42478C" d="M1467.198,695.599l-1.813,1.512c0,0,7.768,11.025,13.321,14.615 C1476.248,705.412,1467.198,695.599,1467.198,695.599"/>
- <path fill="#42478C" d="M1465.286,697.177l0.021-2.359c0,0-13.44-1.196-19.767,0.729 C1451.948,697.75,1465.286,697.177,1465.286,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1467.205,695.317l6.377-18.721c0,0-0.063,1.148-0.109,1.527c-0.041,0.322-0.163,0.957-0.235,1.275 c-0.058,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.445,1.469-1.438,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.98,4.797c-0.282,0.646-1.172,2.57-1.172,2.57"/>
- <path fill="#E0E0DF" d="M1465.687,697.155l13.237,14.689c0,0-0.977-0.611-1.28-0.842c-0.264-0.193-0.754-0.611-0.996-0.826 c-0.199-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.326-1.287c-1.063-1.102-3.107-3.381-4.088-4.557 c-0.828-0.996-2.438-3.033-3.221-4.068c-0.429-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#E0E0DF" d="M1465.078,695.013l-19.768,0.617c0,0,1.096-0.348,1.473-0.434c0.313-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.055-0.135,1.055-0.135s1.377-0.156,1.838-0.188c1.527-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.89,0.104,5.186,0.172c0.706,0.043,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1466 695.798" dur="4s" to="359 1466 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1463.537,695.794c-0.008,1.436,1.199,2.604,2.695,2.61c1.498,0.005,2.715-1.157,2.721-2.591 c0.006-1.438-1.203-2.604-2.699-2.611C1464.758,693.201,1463.541,694.353,1463.537,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1464.519,695.798c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.004,1.733-0.721,1.733-1.613 c0.005-0.895-0.771-1.621-1.723-1.627C1465.299,694.181,1464.521,694.905,1464.519,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_98">
- <g>
- <path fill="#E0E0DF" d="M1512.882,695.798l-1.38,28.779c0,0,1.097,0.43,2.063,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.141-28.783L1512.882,695.798L1512.882,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1513 695.798)">
- <g>
- <path fill="#42478C" d="M1512.58,694.75l2.202,0.854c0,0,5.845-12.162,6.271-18.757 C1516.739,682.067,1512.58,694.75,1512.58,694.75"/>
- <path fill="#42478C" d="M1514.671,695.599l-1.813,1.512c0,0,7.77,11.025,13.319,14.615 C1523.722,705.412,1514.671,695.599,1514.671,695.599"/>
- <path fill="#42478C" d="M1512.758,697.177l0.021-2.359c0,0-13.438-1.196-19.766,0.729 C1499.421,697.75,1512.758,697.177,1512.758,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1514.677,695.317l6.379-18.721c0,0-0.063,1.148-0.11,1.527c-0.041,0.322-0.166,0.957-0.234,1.275 c-0.062,0.258-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.784c-0.445,1.469-1.438,4.361-1.988,5.789 c-0.467,1.211-1.463,3.609-1.982,4.797c-0.282,0.646-1.172,2.57-1.172,2.57"/>
- <path fill="#E0E0DF" d="M1513.156,697.155l13.236,14.689c0,0-0.975-0.611-1.28-0.842c-0.263-0.193-0.755-0.611-0.995-0.826 c-0.197-0.176-0.786-0.717-0.786-0.717s-1.009-0.955-1.323-1.287c-1.063-1.102-3.11-3.381-4.09-4.557 c-0.827-0.996-2.438-3.033-3.221-4.068c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#E0E0DF" d="M1512.552,695.013l-19.77,0.617c0,0,1.098-0.348,1.475-0.434c0.311-0.074,0.948-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.378-0.156,1.838-0.188c1.525-0.098,4.589-0.186,6.121-0.176 c1.298,0.014,3.89,0.104,5.185,0.172c0.707,0.043,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1513 695.798" dur="4s" to="359 1513 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1511.009,695.794c-0.006,1.436,1.201,2.604,2.694,2.61c1.5,0.005,2.718-1.157,2.724-2.591 c0.006-1.438-1.203-2.604-2.701-2.611C1512.23,693.201,1511.015,694.353,1511.009,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1511.989,695.798c-0.004,0.895,0.771,1.619,1.723,1.625c0.951,0.004,1.731-0.721,1.732-1.613 c0.004-0.895-0.771-1.621-1.723-1.627C1512.771,694.181,1511.99,694.905,1511.989,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_99">
- <g>
- <path fill="#E0E0DF" d="M1566.187,695.798l-1.377,28.779c0,0,1.094,0.43,2.062,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1566.187,695.798L1566.187,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1567 695.798)">
- <g>
- <path fill="#42478C" d="M1565.885,694.75l2.203,0.854c0,0,5.845-12.162,6.271-18.757 C1570.041,682.067,1565.885,694.75,1565.885,694.75"/>
- <path fill="#42478C" d="M1567.976,695.599l-1.813,1.512c0,0,7.771,11.025,13.32,14.615 C1577.025,705.412,1567.976,695.599,1567.976,695.599"/>
- <path fill="#42478C" d="M1566.064,697.177l0.021-2.359c0,0-13.438-1.196-19.767,0.729 C1552.726,697.75,1566.064,697.177,1566.064,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1567.982,695.317l6.377-18.721c0,0-0.063,1.148-0.11,1.527c-0.038,0.322-0.163,0.957-0.234,1.275 c-0.059,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.447,1.469-1.439,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.981,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1566.459,697.155l13.238,14.689c0,0-0.975-0.611-1.281-0.842c-0.263-0.193-0.754-0.611-0.994-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.102-3.11-3.381-4.091-4.557 c-0.827-0.996-2.438-3.033-3.22-4.068c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#E0E0DF" d="M1565.857,695.013l-19.77,0.617c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.839-0.188c1.524-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.184,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1567 695.798" dur="4s" to="359 1567 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1564.314,695.794c-0.006,1.436,1.201,2.604,2.696,2.61c1.498,0.005,2.716-1.157,2.722-2.591 c0.006-1.438-1.203-2.604-2.701-2.611C1565.531,693.201,1564.318,694.353,1564.314,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1565.291,695.798c-0.002,0.895,0.771,1.619,1.724,1.625c0.951,0.004,1.73-0.721,1.733-1.613 c0.003-0.895-0.771-1.621-1.723-1.627C1566.073,694.181,1565.296,694.905,1565.291,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_100">
- <g>
- <path fill="#E0E0DF" d="M1612.187,695.798l-1.377,28.779c0,0,1.094,0.43,2.062,0.434c0.996,0.004,2.147-0.422,2.147-0.422 l-1.14-28.783L1612.187,695.798L1612.187,695.798z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1613 695.798)">
- <g>
- <path fill="#42478C" d="M1611.885,694.75l2.203,0.854c0,0,5.845-12.162,6.271-18.757 C1616.041,682.067,1611.885,694.75,1611.885,694.75"/>
- <path fill="#42478C" d="M1613.976,695.599l-1.813,1.512c0,0,7.771,11.025,13.32,14.615 C1623.025,705.412,1613.976,695.599,1613.976,695.599"/>
- <path fill="#42478C" d="M1612.064,697.177l0.021-2.359c0,0-13.438-1.196-19.767,0.729 C1598.726,697.75,1612.064,697.177,1612.064,697.177"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1613.982,695.317l6.377-18.721c0,0-0.063,1.148-0.11,1.527c-0.038,0.322-0.163,0.957-0.234,1.275 c-0.059,0.258-0.244,1.031-0.244,1.031s-0.34,1.346-0.473,1.784c-0.447,1.469-1.439,4.361-1.99,5.789 c-0.465,1.211-1.461,3.609-1.981,4.797c-0.281,0.646-1.171,2.57-1.171,2.57"/>
- <path fill="#E0E0DF" d="M1612.459,697.155l13.238,14.689c0,0-0.975-0.611-1.281-0.842c-0.263-0.193-0.754-0.611-0.994-0.826 c-0.198-0.176-0.785-0.717-0.785-0.717s-1.01-0.955-1.325-1.287c-1.063-1.102-3.11-3.381-4.091-4.557 c-0.827-0.996-2.438-3.033-3.22-4.068c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#E0E0DF" d="M1611.857,695.013l-19.77,0.617c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.951-0.187,1.271-0.229 c0.266-0.037,1.057-0.135,1.057-0.135s1.377-0.156,1.839-0.188c1.524-0.098,4.588-0.186,6.121-0.176 c1.297,0.014,3.889,0.104,5.184,0.172c0.707,0.043,2.819,0.195,2.819,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 1613 695.798" dur="4s" to="359 1613 695.798" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1610.314,695.794c-0.006,1.436,1.201,2.604,2.696,2.61c1.498,0.005,2.716-1.157,2.722-2.591 c0.006-1.438-1.203-2.604-2.701-2.611C1611.531,693.201,1610.318,694.353,1610.314,695.794"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1611.291,695.798c-0.002,0.895,0.771,1.619,1.724,1.625c0.951,0.004,1.73-0.721,1.733-1.613 c0.003-0.895-0.771-1.621-1.723-1.627C1612.073,694.181,1611.296,694.905,1611.291,695.798"/>
- </g>
- </g>
- </g>
- <g id="_x23_101">
- <g>
- <path fill="#E0E0DF" d="M1223.213,580.103l-1.379,28.779c0,0,1.094,0.43,2.063,0.436c0.996,0.004,2.146-0.424,2.146-0.424 l-1.142-28.781L1223.213,580.103L1223.213,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1224 580.103)">
- <g>
- <path fill="#42478C" d="M1222.912,579.053l2.203,0.854c0,0,5.842-12.162,6.269-18.755 C1227.072,566.372,1222.912,579.053,1222.912,579.053"/>
- <path fill="#42478C" d="M1225.002,579.905l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1234.051,589.715,1225.002,579.905,1225.002,579.905"/>
- <path fill="#42478C" d="M1223.088,581.483l0.021-2.361c0,0-13.438-1.196-19.768,0.729 C1209.75,582.053,1223.088,581.483,1223.088,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1225.008,579.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.475,1.784c-0.443,1.468-1.438,4.359-1.987,5.788 c-0.468,1.212-1.461,3.608-1.982,4.798c-0.283,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1223.488,581.459l13.237,14.691c0,0-0.974-0.613-1.28-0.844c-0.263-0.191-0.755-0.609-0.996-0.825 c-0.196-0.177-0.784-0.718-0.784-0.718s-1.009-0.955-1.324-1.286c-1.063-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.672-2.278-1.672-2.278"/>
- <path fill="#E0E0DF" d="M1222.883,579.319l-19.77,0.615c0,0,1.096-0.348,1.473-0.434c0.313-0.074,0.949-0.185,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.378-0.154,1.838-0.187c1.524-0.1,4.587-0.188,6.121-0.177 c1.297,0.013,3.889,0.103,5.188,0.173c0.704,0.043,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1224 580.103" dur="4s" to="359 1224 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1221.34,580.098c-0.006,1.437,1.201,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.722-2.59 c0.008-1.438-1.201-2.604-2.701-2.612C1222.56,577.504,1221.344,578.659,1221.34,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1222.319,580.103c-0.002,0.895,0.771,1.619,1.723,1.625c0.952,0.006,1.732-0.721,1.734-1.611 c0.004-0.896-0.771-1.623-1.724-1.627C1223.101,578.487,1222.323,579.209,1222.319,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_102">
- <g>
- <path fill="#E0E0DF" d="M1269.435,580.103l-1.38,28.779c0,0,1.095,0.43,2.063,0.436c0.996,0.004,2.146-0.424,2.146-0.424 l-1.141-28.781L1269.435,580.103L1269.435,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1270 580.103)">
- <g>
- <path fill="#42478C" d="M1269.132,579.053l2.204,0.854c0,0,5.842-12.162,6.269-18.755 C1273.289,566.372,1269.132,579.053,1269.132,579.053"/>
- <path fill="#42478C" d="M1271.224,579.905l-1.813,1.51c0,0,7.769,11.027,13.319,14.617 C1280.273,589.715,1271.224,579.905,1271.224,579.905"/>
- <path fill="#42478C" d="M1269.31,581.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1255.971,582.053,1269.31,581.483,1269.31,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1271.23,579.622l6.377-18.719c0,0-0.062,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.232,1.275 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.475,1.784c-0.445,1.468-1.438,4.359-1.986,5.788 c-0.467,1.212-1.462,3.608-1.983,4.798c-0.282,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1269.707,581.459l13.237,14.691c0,0-0.974-0.613-1.28-0.844c-0.263-0.191-0.755-0.609-0.996-0.825 c-0.196-0.177-0.785-0.718-0.785-0.718s-1.008-0.955-1.323-1.286c-1.065-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1269.105,579.319l-19.769,0.615c0,0,1.095-0.348,1.474-0.434c0.311-0.074,0.948-0.185,1.271-0.229 c0.268-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.588-0.188,6.123-0.177 c1.295,0.013,3.887,0.103,5.185,0.173c0.705,0.043,2.817,0.193,2.817,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1270 580.103" dur="4s" to="359 1270 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1267.562,580.098c-0.008,1.437,1.201,2.604,2.694,2.61c1.499,0.005,2.716-1.157,2.724-2.59 c0.006-1.438-1.203-2.604-2.703-2.612C1268.781,577.504,1267.568,578.659,1267.562,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1268.539,580.103c-0.003,0.895,0.771,1.619,1.721,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.003-0.896-0.771-1.623-1.724-1.627C1269.322,578.487,1268.543,579.209,1268.539,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_103">
- <g>
- <path fill="#E0E0DF" d="M1323.9,580.103l-1.379,28.779c0,0,1.095,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.139-28.781L1323.9,580.103L1323.9,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1325 580.103)">
- <g>
- <path fill="#42478C" d="M1323.599,579.053l2.202,0.854c0,0,5.843-12.162,6.27-18.755 C1327.756,566.372,1323.599,579.053,1323.599,579.053"/>
- <path fill="#42478C" d="M1325.689,579.905l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1334.738,589.715,1325.689,579.905,1325.689,579.905"/>
- <path fill="#42478C" d="M1323.775,581.483l0.021-2.361c0,0-13.439-1.196-19.767,0.729 C1310.437,582.053,1323.775,581.483,1323.775,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1325.694,579.622l6.377-18.719c0,0-0.062,1.146-0.109,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.061,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.987,5.788 c-0.468,1.212-1.461,3.608-1.983,4.798c-0.281,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1324.172,581.459l13.237,14.691c0,0-0.974-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.996-0.825 c-0.196-0.177-0.784-0.718-0.784-0.718s-1.009-0.955-1.324-1.286c-1.063-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.427-0.563-1.672-2.278-1.672-2.278"/>
- <path fill="#E0E0DF" d="M1323.569,579.319l-19.769,0.615c0,0,1.095-0.348,1.474-0.434c0.313-0.074,0.948-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.379-0.154,1.838-0.187c1.526-0.1,4.588-0.188,6.123-0.177 c1.295,0.013,3.888,0.103,5.185,0.173c0.705,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1325 580.103" dur="4s" to="359 1325 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1322.026,580.098c-0.006,1.437,1.201,2.604,2.694,2.61c1.498,0.005,2.716-1.157,2.724-2.59 c0.007-1.438-1.202-2.604-2.702-2.612C1323.245,577.504,1322.031,578.659,1322.026,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1323.006,580.103c-0.004,0.895,0.769,1.619,1.72,1.625c0.952,0.006,1.733-0.721,1.735-1.611 c0.004-0.896-0.771-1.623-1.725-1.627C1323.786,578.487,1323.008,579.209,1323.006,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_104">
- <g>
- <path fill="#E0E0DF" d="M1376.375,580.103l-1.379,28.779c0,0,1.095,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.142-28.781L1376.375,580.103L1376.375,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1377 580.103)">
- <g>
- <path fill="#42478C" d="M1376.076,579.053l2.203,0.854c0,0,5.842-12.162,6.269-18.755 C1380.235,566.372,1376.076,579.053,1376.076,579.053"/>
- <path fill="#42478C" d="M1378.164,579.905l-1.813,1.51c0,0,7.767,11.027,13.319,14.617 C1387.214,589.715,1378.164,579.905,1378.164,579.905"/>
- <path fill="#42478C" d="M1376.25,581.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1362.914,582.053,1376.25,581.483,1376.25,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1378.171,579.622l6.377-18.719c0,0-0.062,1.146-0.109,1.525c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.988,5.788 c-0.467,1.212-1.461,3.608-1.983,4.798c-0.281,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#E0E0DF" d="M1376.651,581.459l13.236,14.691c0,0-0.974-0.613-1.279-0.844c-0.264-0.191-0.754-0.609-0.994-0.825 c-0.199-0.177-0.785-0.718-0.785-0.718s-1.01-0.955-1.326-1.286c-1.063-1.103-3.11-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.672-2.278-1.672-2.278"/>
- <path fill="#E0E0DF" d="M1376.046,579.319l-19.769,0.615c0,0,1.096-0.348,1.474-0.434c0.313-0.074,0.948-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.839-0.187c1.524-0.1,4.586-0.188,6.12-0.177 c1.296,0.013,3.888,0.103,5.185,0.173c0.705,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1377 580.103" dur="4s" to="359 1377 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1374.503,580.098c-0.007,1.437,1.2,2.604,2.696,2.61c1.498,0.005,2.713-1.157,2.72-2.59 c0.006-1.438-1.201-2.604-2.701-2.612C1375.722,577.504,1374.509,578.659,1374.503,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1375.485,580.103c-0.004,0.895,0.768,1.619,1.719,1.625c0.953,0.006,1.734-0.721,1.736-1.611 c0.004-0.896-0.771-1.623-1.725-1.627C1376.263,578.487,1375.487,579.209,1375.485,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_105">
- <g>
- <path fill="#E0E0DF" d="M1424.591,580.103l-1.377,28.779c0,0,1.096,0.43,2.063,0.436c0.998,0.004,2.148-0.424,2.148-0.424 l-1.142-28.781L1424.591,580.103L1424.591,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1425 580.103)">
- <g>
- <path fill="#42478C" d="M1424.289,579.053l2.203,0.854c0,0,5.845-12.162,6.271-18.755 C1428.449,566.372,1424.289,579.053,1424.289,579.053"/>
- <path fill="#42478C" d="M1426.38,579.905l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C1435.431,589.715,1426.38,579.905,1426.38,579.905"/>
- <path fill="#42478C" d="M1424.468,581.483l0.021-2.361c0,0-13.44-1.196-19.768,0.729 C1411.13,582.053,1424.468,581.483,1424.468,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1426.388,579.622l6.379-18.719c0,0-0.063,1.146-0.111,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.989,5.788 c-0.465,1.212-1.461,3.608-1.982,4.798c-0.281,0.646-1.172,2.568-1.172,2.568"/>
- <path fill="#E0E0DF" d="M1424.867,581.459l13.238,14.691c0,0-0.977-0.613-1.281-0.844c-0.262-0.191-0.754-0.609-0.996-0.825 c-0.198-0.177-0.784-0.718-0.784-0.718s-1.011-0.955-1.326-1.286c-1.063-1.103-3.107-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1424.261,579.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.526-0.1,4.588-0.188,6.121-0.177 c1.297,0.013,3.889,0.103,5.186,0.173c0.707,0.043,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1425 580.103" dur="4s" to="359 1425 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1422.72,580.098c-0.009,1.437,1.198,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.722-2.59 c0.007-1.438-1.202-2.604-2.699-2.612C1423.941,577.504,1422.726,578.659,1422.72,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1423.699,580.103c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.006,1.734-0.721,1.734-1.611 c0.004-0.896-0.771-1.623-1.721-1.627C1424.482,578.487,1423.703,579.209,1423.699,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_106">
- <g>
- <path fill="#E0E0DF" d="M1471.262,580.103l-1.377,28.779c0,0,1.095,0.43,2.063,0.436c0.998,0.004,2.149-0.424,2.149-0.424 l-1.142-28.781L1471.262,580.103L1471.262,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1472 580.103)">
- <g>
- <path fill="#42478C" d="M1470.961,579.053l2.203,0.854c0,0,5.844-12.162,6.271-18.755 C1475.12,566.372,1470.961,579.053,1470.961,579.053"/>
- <path fill="#42478C" d="M1473.051,579.905l-1.813,1.51c0,0,7.769,11.027,13.321,14.617 C1482.103,589.715,1473.051,579.905,1473.051,579.905"/>
- <path fill="#42478C" d="M1471.139,581.483l0.021-2.361c0,0-13.44-1.196-19.767,0.729 C1457.801,582.053,1471.139,581.483,1471.139,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1473.06,579.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.784c-0.444,1.468-1.438,4.359-1.989,5.788 c-0.465,1.212-1.461,3.608-1.981,4.798c-0.281,0.646-1.172,2.568-1.172,2.568"/>
- <path fill="#E0E0DF" d="M1471.537,581.459l13.238,14.691c0,0-0.977-0.613-1.281-0.844c-0.264-0.191-0.754-0.609-0.996-0.825 c-0.198-0.177-0.784-0.718-0.784-0.718s-1.011-0.955-1.326-1.286c-1.063-1.103-3.107-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1470.933,579.319l-19.77,0.615c0,0,1.097-0.348,1.475-0.434c0.312-0.074,0.95-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.839-0.187c1.525-0.1,4.588-0.188,6.12-0.177 c1.298,0.013,3.89,0.103,5.186,0.173c0.706,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1472 580.103" dur="4s" to="359 1472 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1469.392,580.098c-0.009,1.437,1.198,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.721-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1470.61,577.504,1469.396,578.659,1469.392,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1470.37,580.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.953,0.006,1.733-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.722-1.627C1471.151,578.487,1470.373,579.209,1470.37,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_107">
- <g>
- <path fill="#E0E0DF" d="M1518.735,580.103l-1.379,28.779c0,0,1.096,0.43,2.063,0.436c0.996,0.004,2.148-0.424,2.148-0.424 l-1.141-28.781L1518.735,580.103L1518.735,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1519 580.103)">
- <g>
- <path fill="#42478C" d="M1518.435,579.053l2.201,0.854c0,0,5.844-12.162,6.271-18.755 C1522.591,566.372,1518.435,579.053,1518.435,579.053"/>
- <path fill="#42478C" d="M1520.525,579.905l-1.813,1.51c0,0,7.769,11.027,13.318,14.617 C1529.574,589.715,1520.525,579.905,1520.525,579.905"/>
- <path fill="#42478C" d="M1518.61,581.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1505.275,582.053,1518.61,581.483,1518.61,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1520.53,579.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.166,0.957-0.234,1.275 c-0.061,0.258-0.245,1.033-0.245,1.033s-0.341,1.344-0.474,1.784c-0.445,1.468-1.438,4.359-1.988,5.788 c-0.467,1.212-1.463,3.608-1.983,4.798c-0.281,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1519.009,581.459l13.237,14.691c0,0-0.975-0.613-1.281-0.844c-0.264-0.191-0.754-0.609-0.995-0.825 c-0.197-0.177-0.785-0.718-0.785-0.718s-1.01-0.955-1.324-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1518.405,579.319l-19.77,0.615c0,0,1.098-0.348,1.475-0.434c0.312-0.074,0.949-0.185,1.271-0.229 c0.265-0.037,1.056-0.137,1.056-0.137s1.379-0.154,1.838-0.187c1.526-0.1,4.59-0.188,6.121-0.177 c1.299,0.013,3.89,0.103,5.187,0.173c0.705,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1519 580.103" dur="4s" to="359 1519 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1516.862,580.098c-0.006,1.437,1.201,2.604,2.694,2.61c1.5,0.005,2.718-1.157,2.724-2.59 c0.006-1.438-1.203-2.604-2.701-2.612C1518.08,577.504,1516.867,578.659,1516.862,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1517.841,580.103c-0.005,0.895,0.77,1.619,1.723,1.625c0.951,0.006,1.731-0.721,1.732-1.611 c0.004-0.896-0.771-1.623-1.723-1.627C1518.623,578.487,1517.843,579.209,1517.841,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_108">
- <g>
- <path fill="#E0E0DF" d="M1564.037,580.103l-1.377,28.779c0,0,1.095,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.14-28.781L1564.037,580.103L1564.037,580.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1565 580.103)">
- <g>
- <path fill="#42478C" d="M1563.738,579.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1567.896,566.372,1563.738,579.053,1563.738,579.053"/>
- <path fill="#42478C" d="M1565.828,579.905l-1.813,1.51c0,0,7.769,11.027,13.32,14.617 C1574.877,589.715,1565.828,579.905,1565.828,579.905"/>
- <path fill="#42478C" d="M1563.914,581.483l0.021-2.361c0,0-13.439-1.196-19.768,0.729 C1550.577,582.053,1563.914,581.483,1563.914,581.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1565.832,579.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.341,1.344-0.474,1.784c-0.446,1.468-1.438,4.359-1.989,5.788 c-0.465,1.212-1.461,3.608-1.981,4.798c-0.282,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1564.314,581.459l13.237,14.691c0,0-0.976-0.613-1.28-0.844c-0.264-0.191-0.754-0.609-0.996-0.825 c-0.197-0.177-0.784-0.718-0.784-0.718s-1.009-0.955-1.326-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.827-0.996-2.438-3.033-3.22-4.067c-0.429-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1563.707,579.319l-19.77,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.589-0.188,6.122-0.177 c1.296,0.013,3.889,0.103,5.184,0.173c0.707,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1565 580.103" dur="4s" to="359 1565 580.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1562.164,580.098c-0.006,1.437,1.202,2.604,2.697,2.61c1.498,0.005,2.715-1.157,2.721-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1563.384,577.504,1562.17,578.659,1562.164,580.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1563.146,580.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.952,0.006,1.731-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.722-1.627C1563.926,578.487,1563.15,579.209,1563.146,580.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_109">
- <g>
- <path fill="#E0E0DF" d="M1225.704,450.103l-1.377,28.779c0,0,1.095,0.43,2.063,0.436c0.996,0.004,2.147-0.424,2.147-0.424 l-1.141-28.781L1225.704,450.103L1225.704,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1226 450.103)">
- <g>
- <path fill="#42478C" d="M1225.405,449.053l2.203,0.854c0,0,5.844-12.162,6.271-18.755 C1229.562,436.372,1225.405,449.053,1225.405,449.053"/>
- <path fill="#42478C" d="M1227.495,449.905l-1.813,1.51c0,0,7.77,11.027,13.321,14.617 C1236.543,459.715,1227.495,449.905,1227.495,449.905"/>
- <path fill="#42478C" d="M1225.582,451.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1212.244,452.053,1225.582,451.483,1225.582,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1227.5,449.622l6.378-18.719c0,0-0.063,1.146-0.111,1.525c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.243,1.033-0.243,1.033s-0.342,1.344-0.474,1.783c-0.447,1.469-1.438,4.36-1.99,5.788 c-0.465,1.212-1.461,3.609-1.981,4.799c-0.281,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1225.98,451.459l13.238,14.691c0,0-0.976-0.613-1.281-0.844c-0.263-0.191-0.754-0.609-0.994-0.824 c-0.198-0.178-0.785-0.719-0.785-0.719s-1.01-0.955-1.326-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1225.375,449.319l-19.77,0.615c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.951-0.185,1.271-0.229 c0.265-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.524-0.1,4.589-0.188,6.122-0.176 c1.296,0.012,3.889,0.102,5.184,0.172c0.707,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1226 450.103" dur="4s" to="359 1226 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1223.832,450.098c-0.007,1.437,1.201,2.604,2.696,2.61c1.498,0.005,2.715-1.157,2.722-2.59 c0.006-1.438-1.203-2.604-2.701-2.612C1225.051,447.505,1223.837,448.659,1223.832,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1224.812,450.103c-0.002,0.895,0.771,1.619,1.723,1.625s1.732-0.721,1.734-1.611 c0.002-0.896-0.771-1.623-1.723-1.627C1225.593,448.487,1224.816,449.209,1224.812,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_110">
- <g>
- <path fill="#E0E0DF" d="M1274.88,450.103l-1.38,28.779c0,0,1.095,0.43,2.063,0.436c0.996,0.004,2.147-0.424,2.147-0.424 l-1.141-28.781L1274.88,450.103L1274.88,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1275 450.103)">
- <g>
- <path fill="#42478C" d="M1274.579,449.053l2.203,0.854c0,0,5.843-12.162,6.269-18.755 C1278.739,436.372,1274.579,449.053,1274.579,449.053"/>
- <path fill="#42478C" d="M1276.668,449.905l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1285.718,459.715,1276.668,449.905,1276.668,449.905"/>
- <path fill="#42478C" d="M1274.755,451.483l0.021-2.361c0,0-13.439-1.196-19.769,0.729 C1261.416,452.053,1274.755,451.483,1274.755,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1276.675,449.622l6.377-18.719c0,0-0.062,1.146-0.109,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.987,5.788 c-0.468,1.212-1.462,3.609-1.983,4.799c-0.282,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1275.155,451.459l13.236,14.691c0,0-0.973-0.613-1.279-0.844c-0.264-0.191-0.756-0.609-0.996-0.824 c-0.197-0.178-0.785-0.719-0.785-0.719s-1.008-0.955-1.323-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.827-0.996-2.438-3.033-3.221-4.067c-0.428-0.563-1.672-2.278-1.672-2.278"/>
- <path fill="#E0E0DF" d="M1274.55,449.319l-19.771,0.615c0,0,1.096-0.348,1.474-0.434c0.313-0.074,0.949-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.378-0.154,1.838-0.187c1.525-0.1,4.587-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.187,0.172c0.705,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1275 450.103" dur="4s" to="359 1275 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1273.007,450.098c-0.007,1.437,1.2,2.604,2.694,2.61c1.498,0.005,2.715-1.157,2.721-2.59 c0.009-1.438-1.2-2.604-2.7-2.612C1274.226,447.505,1273.011,448.659,1273.007,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1273.987,450.103c-0.002,0.895,0.771,1.619,1.721,1.625c0.953,0.006,1.734-0.721,1.736-1.611 c0.004-0.896-0.771-1.623-1.725-1.627C1274.767,448.487,1273.99,449.209,1273.987,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_111">
- <g>
- <path fill="#E0E0DF" d="M1321.101,450.103l-1.379,28.779c0,0,1.094,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.141-28.781L1321.101,450.103L1321.101,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1322 450.103)">
- <g>
- <path fill="#42478C" d="M1320.799,449.053l2.203,0.854c0,0,5.843-12.162,6.269-18.755 C1324.957,436.372,1320.799,449.053,1320.799,449.053"/>
- <path fill="#42478C" d="M1322.89,449.905l-1.813,1.51c0,0,7.769,11.027,13.32,14.617 C1331.939,459.715,1322.89,449.905,1322.89,449.905"/>
- <path fill="#42478C" d="M1320.976,451.483l0.021-2.361c0,0-13.438-1.196-19.766,0.729 C1307.638,452.053,1320.976,451.483,1320.976,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1322.896,449.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.234,1.275 c-0.059,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.475,1.783c-0.445,1.469-1.438,4.36-1.988,5.788 c-0.466,1.212-1.461,3.609-1.982,4.799c-0.281,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#E0E0DF" d="M1321.373,451.459l13.238,14.691c0,0-0.975-0.613-1.281-0.844c-0.262-0.191-0.754-0.609-0.995-0.824 c-0.197-0.178-0.785-0.719-0.785-0.719s-1.009-0.955-1.324-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.221-4.067c-0.427-0.563-1.673-2.278-1.673-2.278"/>
- <path fill="#E0E0DF" d="M1320.771,449.319l-19.768,0.615c0,0,1.096-0.348,1.473-0.434c0.312-0.074,0.949-0.185,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.588-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1322 450.103" dur="4s" to="359 1322 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1319.228,450.098c-0.006,1.437,1.201,2.604,2.695,2.61c1.499,0.005,2.716-1.157,2.723-2.59 c0.006-1.438-1.203-2.604-2.701-2.612C1320.448,447.505,1319.234,448.659,1319.228,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1320.207,450.103c-0.004,0.895,0.769,1.619,1.72,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.004-0.896-0.77-1.623-1.723-1.627C1320.989,448.487,1320.209,449.209,1320.207,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_112">
- <g>
- <path fill="#E0E0DF" d="M1375.568,450.103l-1.381,28.779c0,0,1.096,0.43,2.063,0.436c0.995,0.004,2.146-0.424,2.146-0.424 l-1.14-28.781L1375.568,450.103L1375.568,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1376 450.103)">
- <g>
- <path fill="#42478C" d="M1375.265,449.053l2.203,0.854c0,0,5.842-12.162,6.27-18.755 C1379.423,436.372,1375.265,449.053,1375.265,449.053"/>
- <path fill="#42478C" d="M1377.355,449.905l-1.813,1.51c0,0,7.771,11.027,13.322,14.617 C1386.405,459.715,1377.355,449.905,1377.355,449.905"/>
- <path fill="#42478C" d="M1375.443,451.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1362.103,452.053,1375.443,451.483,1375.443,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1377.362,449.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.232,1.275 c-0.062,0.258-0.246,1.033-0.246,1.033s-0.342,1.344-0.475,1.783c-0.443,1.469-1.438,4.36-1.986,5.788 c-0.469,1.212-1.462,3.609-1.983,4.799c-0.281,0.646-1.171,2.568-1.171,2.568"/>
- <path fill="#E0E0DF" d="M1375.839,451.459l13.237,14.691c0,0-0.973-0.613-1.28-0.844c-0.263-0.191-0.755-0.609-0.996-0.824 c-0.197-0.178-0.785-0.719-0.785-0.719s-1.008-0.955-1.322-1.286c-1.063-1.103-3.11-3.382-4.092-4.558 c-0.826-0.996-2.438-3.033-3.221-4.067c-0.427-0.563-1.673-2.278-1.673-2.278"/>
- <path fill="#E0E0DF" d="M1375.237,449.319l-19.77,0.615c0,0,1.094-0.348,1.475-0.434c0.312-0.074,0.947-0.185,1.271-0.229 c0.268-0.037,1.057-0.137,1.057-0.137s1.379-0.154,1.838-0.187c1.525-0.1,4.588-0.188,6.123-0.176 c1.295,0.012,3.887,0.102,5.185,0.172c0.704,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1376 450.103" dur="4s" to="359 1376 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1373.694,450.098c-0.008,1.437,1.199,2.604,2.693,2.61c1.498,0.005,2.715-1.157,2.725-2.59 c0.006-1.438-1.203-2.604-2.703-2.612C1374.911,447.505,1373.698,448.659,1373.694,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1374.673,450.103c-0.005,0.895,0.77,1.619,1.719,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.005-0.896-0.77-1.623-1.723-1.627C1375.453,448.487,1374.675,449.209,1374.673,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_113">
- <g>
- <path fill="#E0E0DF" d="M1422.043,450.103l-1.38,28.779c0,0,1.095,0.43,2.063,0.436c0.994,0.004,2.146-0.424,2.146-0.424 l-1.141-28.781L1422.043,450.103L1422.043,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1423 450.103)">
- <g>
- <path fill="#42478C" d="M1421.743,449.053l2.203,0.854c0,0,5.843-12.162,6.269-18.755 C1425.901,436.372,1421.743,449.053,1421.743,449.053"/>
- <path fill="#42478C" d="M1423.832,449.905l-1.813,1.51c0,0,7.768,11.027,13.32,14.617 C1432.881,459.715,1423.832,449.905,1423.832,449.905"/>
- <path fill="#42478C" d="M1421.918,451.483l0.021-2.361c0,0-13.438-1.196-19.766,0.729 C1408.582,452.053,1421.918,451.483,1421.918,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1423.838,449.622l6.377-18.719c0,0-0.063,1.146-0.11,1.525c-0.039,0.322-0.164,0.957-0.233,1.275 c-0.06,0.258-0.246,1.033-0.246,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.987,5.788 c-0.468,1.212-1.461,3.609-1.983,4.799c-0.28,0.646-1.17,2.568-1.17,2.568"/>
- <path fill="#E0E0DF" d="M1422.318,451.459l13.238,14.691c0,0-0.974-0.613-1.281-0.844c-0.262-0.191-0.754-0.609-0.993-0.824 c-0.199-0.178-0.785-0.719-0.785-0.719s-1.011-0.955-1.326-1.286c-1.063-1.103-3.109-3.382-4.09-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.426-0.563-1.672-2.278-1.672-2.278"/>
- <path fill="#E0E0DF" d="M1421.713,449.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.312-0.074,0.948-0.185,1.271-0.229 c0.267-0.037,1.058-0.137,1.058-0.137s1.377-0.154,1.839-0.187c1.524-0.1,4.586-0.188,6.12-0.176 c1.296,0.012,3.888,0.102,5.186,0.172c0.704,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1423 450.103" dur="4s" to="359 1423 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1420.17,450.098c-0.006,1.437,1.201,2.604,2.696,2.61c1.498,0.005,2.714-1.157,2.72-2.59 c0.006-1.438-1.201-2.604-2.701-2.612C1421.389,447.505,1420.176,448.659,1420.17,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1421.151,450.103c-0.004,0.895,0.77,1.619,1.72,1.625c0.953,0.006,1.733-0.721,1.735-1.611 c0.004-0.896-0.771-1.623-1.724-1.627C1421.93,448.487,1421.153,449.209,1421.151,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_114">
- <g>
- <path fill="#E0E0DF" d="M1476.258,450.103l-1.377,28.779c0,0,1.095,0.43,2.062,0.436c0.998,0.004,2.149-0.424,2.149-0.424 l-1.141-28.781L1476.258,450.103L1476.258,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1477 450.103)">
- <g>
- <path fill="#42478C" d="M1475.957,449.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1480.116,436.372,1475.957,449.053,1475.957,449.053"/>
- <path fill="#42478C" d="M1478.047,449.905l-1.813,1.51c0,0,7.77,11.027,13.322,14.617 C1487.099,459.715,1478.047,449.905,1478.047,449.905"/>
- <path fill="#42478C" d="M1476.135,451.483l0.021-2.361c0,0-13.44-1.196-19.767,0.729 C1462.797,452.053,1476.135,451.483,1476.135,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1478.055,449.622l6.378-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.989,5.788 c-0.465,1.212-1.461,3.609-1.981,4.799c-0.281,0.646-1.172,2.568-1.172,2.568"/>
- <path fill="#E0E0DF" d="M1476.534,451.459l13.237,14.691c0,0-0.976-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.995-0.824 c-0.199-0.178-0.785-0.719-0.785-0.719s-1.011-0.955-1.326-1.286c-1.063-1.103-3.108-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.429-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1475.928,449.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.526-0.1,4.589-0.188,6.121-0.176 c1.297,0.012,3.89,0.102,5.185,0.172c0.707,0.043,2.819,0.193,2.819,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1477 450.103" dur="4s" to="359 1477 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1474.387,450.098c-0.008,1.437,1.199,2.604,2.694,2.61c1.498,0.005,2.716-1.157,2.722-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1475.607,447.505,1474.392,448.659,1474.387,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1475.366,450.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.952,0.006,1.732-0.721,1.732-1.611 c0.005-0.896-0.771-1.623-1.721-1.627C1476.148,448.487,1475.37,449.209,1475.366,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_115">
- <g>
- <path fill="#E0E0DF" d="M1522.929,450.103l-1.377,28.779c0,0,1.094,0.43,2.063,0.436c0.998,0.004,2.148-0.424,2.148-0.424 l-1.142-28.781L1522.929,450.103L1522.929,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1524 450.103)">
- <g>
- <path fill="#42478C" d="M1522.628,449.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1526.786,436.372,1522.628,449.053,1522.628,449.053"/>
- <path fill="#42478C" d="M1524.718,449.905l-1.813,1.51c0,0,7.769,11.027,13.322,14.617 C1533.769,459.715,1524.718,449.905,1524.718,449.905"/>
- <path fill="#42478C" d="M1522.806,451.483l0.021-2.361c0,0-13.44-1.196-19.766,0.729 C1509.468,452.053,1522.806,451.483,1522.806,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1524.726,449.622l6.377-18.719c0,0-0.063,1.146-0.109,1.525c-0.041,0.322-0.164,0.957-0.235,1.275 c-0.058,0.258-0.244,1.033-0.244,1.033s-0.34,1.344-0.474,1.783c-0.444,1.469-1.438,4.36-1.989,5.788 c-0.465,1.212-1.461,3.609-1.98,4.799c-0.283,0.646-1.172,2.568-1.172,2.568"/>
- <path fill="#E0E0DF" d="M1523.204,451.459l13.237,14.691c0,0-0.976-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.995-0.824 c-0.199-0.178-0.785-0.719-0.785-0.719s-1.011-0.955-1.326-1.286c-1.063-1.103-3.108-3.382-4.088-4.558 c-0.828-0.996-2.438-3.033-3.222-4.067c-0.429-0.563-1.674-2.278-1.674-2.278"/>
- <path fill="#E0E0DF" d="M1522.599,449.319l-19.769,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.951-0.185,1.271-0.229 c0.267-0.037,1.056-0.137,1.056-0.137s1.377-0.154,1.838-0.187c1.526-0.1,4.588-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.706,0.043,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1524 450.103" dur="4s" to="359 1524 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1521.058,450.098c-0.008,1.437,1.199,2.604,2.694,2.61c1.498,0.005,2.716-1.157,2.722-2.59 c0.006-1.438-1.203-2.604-2.699-2.612C1522.278,447.505,1521.062,448.659,1521.058,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1522.036,450.103c-0.002,0.895,0.771,1.619,1.722,1.625c0.953,0.006,1.733-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.722-1.627C1522.819,448.487,1522.039,449.209,1522.036,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_116">
- <g>
- <path fill="#E0E0DF" d="M1570.401,450.103l-1.379,28.779c0,0,1.097,0.43,2.063,0.436c0.996,0.004,2.147-0.424,2.147-0.424 l-1.14-28.781L1570.401,450.103L1570.401,450.103z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 1571 450.103)">
- <g>
- <path fill="#42478C" d="M1570.101,449.053l2.202,0.854c0,0,5.845-12.162,6.271-18.755 C1574.258,436.372,1570.101,449.053,1570.101,449.053"/>
- <path fill="#42478C" d="M1572.191,449.905l-1.813,1.51c0,0,7.77,11.027,13.319,14.617 C1581.241,459.715,1572.191,449.905,1572.191,449.905"/>
- <path fill="#42478C" d="M1570.278,451.483l0.021-2.361c0,0-13.438-1.196-19.767,0.729 C1556.941,452.053,1570.278,451.483,1570.278,451.483"/>
- </g>
- <g>
- <path fill="#E0E0DF" d="M1572.197,449.622l6.379-18.719c0,0-0.063,1.146-0.11,1.525c-0.041,0.322-0.166,0.957-0.235,1.275 c-0.06,0.258-0.244,1.033-0.244,1.033s-0.342,1.344-0.473,1.783c-0.447,1.469-1.438,4.36-1.99,5.788 c-0.465,1.212-1.461,3.609-1.981,4.799c-0.282,0.646-1.172,2.568-1.172,2.568"/>
- <path fill="#E0E0DF" d="M1570.676,451.459l13.236,14.691c0,0-0.975-0.613-1.28-0.844c-0.263-0.191-0.754-0.609-0.994-0.824 c-0.199-0.178-0.787-0.719-0.787-0.719s-1.009-0.955-1.323-1.286c-1.063-1.103-3.109-3.382-4.091-4.558 c-0.826-0.996-2.437-3.033-3.219-4.067c-0.429-0.563-1.675-2.278-1.675-2.278"/>
- <path fill="#E0E0DF" d="M1570.072,449.319l-19.77,0.615c0,0,1.097-0.348,1.474-0.434c0.313-0.074,0.949-0.185,1.271-0.229 c0.266-0.037,1.057-0.137,1.057-0.137s1.377-0.154,1.838-0.187c1.525-0.1,4.589-0.188,6.121-0.176 c1.297,0.012,3.889,0.102,5.186,0.172c0.705,0.043,2.818,0.193,2.818,0.193"/>
- </g>
-
- <animateTransform restart="always" from="0 1571 450.103" dur="4s" to="359 1571 450.103" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#66ADC5" d="M1568.528,450.098c-0.006,1.437,1.201,2.604,2.695,2.61c1.5,0.005,2.717-1.157,2.723-2.59 c0.007-1.438-1.202-2.604-2.7-2.612C1569.748,447.505,1568.534,448.659,1568.528,450.098"/>
- </g>
- <g>
- <path fill="#BADBE5" d="M1569.508,450.103c-0.004,0.895,0.771,1.619,1.722,1.625s1.732-0.721,1.733-1.611 c0.004-0.896-0.771-1.623-1.723-1.627C1570.289,448.487,1569.51,449.209,1569.508,450.103"/>
- </g>
- </g>
- </g>
- <g id="_x23_34">
- <g>
- <path fill="#DFDFDD" d="M23.467,332.381l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L23.467,332.381L23.467,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 24 332.377)">
- <g>
- <path fill="#3E4484" d="M23.166,331.329l2.203,0.854c0,0,5.844-12.161,6.27-18.758 C27.324,318.649,23.166,331.329,23.166,331.329"/>
- <path fill="#3E4484" d="M25.256,332.18l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C34.307,341.992,25.256,332.18,25.256,332.18"/>
- <path fill="#3E4484" d="M23.342,333.76l0.021-2.36c0,0-13.44-1.197-19.767,0.728C10.006,334.329,23.342,333.76,23.342,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M25.262,331.899l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M23.74,333.735l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
- <path fill="#DFDFDD" d="M23.137,331.594l-19.768,0.619c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 24 332.377" dur="4s" to="359 24 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M21.596,332.375c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C22.813,329.781,21.598,330.937,21.596,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M22.574,332.377c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C23.354,330.766,22.578,331.487,22.574,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_35">
- <g>
- <path fill="#DFDFDD" d="M65.69,332.381l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L65.69,332.381L65.69,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 66 332.377)">
- <g>
- <path fill="#3E4484" d="M65.389,331.329l2.203,0.854c0,0,5.844-12.161,6.269-18.758 C69.545,318.649,65.389,331.329,65.389,331.329"/>
- <path fill="#3E4484" d="M67.479,332.18l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C76.531,341.992,67.479,332.18,67.479,332.18"/>
- <path fill="#3E4484" d="M65.565,333.76l0.021-2.36c0,0-13.441-1.197-19.767,0.728C52.229,334.329,65.565,333.76,65.565,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M67.486,331.899l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
- <path fill="#DFDFDD" d="M65.963,333.735l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M65.361,331.594l-19.771,0.619c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 66 332.377" dur="4s" to="359 66 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M63.815,332.375c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C65.035,329.781,63.822,330.937,63.815,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M64.797,332.377c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C65.578,330.766,64.801,331.487,64.797,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_36">
- <g>
- <path fill="#DFDFDD" d="M116.185,332.381l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L116.185,332.381L116.185,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 117 332.377)">
- <g>
- <path fill="#3E4484" d="M115.883,331.329l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C120.043,318.649,115.883,331.329,115.883,331.329"/>
- <path fill="#3E4484" d="M117.974,332.18l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C127.023,341.992,117.974,332.18,117.974,332.18"/>
- <path fill="#3E4484" d="M116.06,333.76l0.021-2.36c0,0-13.44-1.197-19.768,0.728C102.723,334.329,116.06,333.76,116.06,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M117.98,331.899l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M116.459,333.735l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M115.855,331.594l-19.767,0.619c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 117 332.377" dur="4s" to="359 117 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M114.312,332.375c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C115.531,329.781,114.316,330.937,114.312,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M115.291,332.377c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C116.073,330.766,115.295,331.487,115.291,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_42">
- <g>
- <path fill="#DFDFDD" d="M402.034,332.381l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L402.034,332.381L402.034,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 403 332.377)">
- <g>
- <path fill="#3E4484" d="M401.732,331.329l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C405.892,318.647,401.732,331.329,401.732,331.329"/>
- <path fill="#3E4484" d="M403.823,332.18l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C412.873,341.992,403.823,332.18,403.823,332.18"/>
- <path fill="#3E4484" d="M401.909,333.76l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C388.572,334.329,401.909,333.76,401.909,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M403.83,331.899l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M402.308,333.735l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M401.705,331.594l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 403 332.377" dur="4s" to="359 403 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M400.162,332.375c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C401.381,329.781,400.166,330.937,400.162,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M401.14,332.377c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C401.922,330.766,401.144,331.487,401.14,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_41">
- <g>
- <path fill="#DFDFDD" d="M354.758,332.381l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L354.758,332.381L354.758,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 355 332.377)">
- <g>
- <path fill="#3E4484" d="M354.457,331.329l2.202,0.854c0,0,5.843-12.161,6.271-18.756 C358.616,318.647,354.457,331.329,354.457,331.329"/>
- <path fill="#3E4484" d="M356.549,332.18l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C365.598,341.992,356.549,332.18,356.549,332.18"/>
- <path fill="#3E4484" d="M354.633,333.76l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C341.297,334.329,354.633,333.76,354.633,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M356.555,331.899l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M355.032,333.735l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M354.428,331.594l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 355 332.377" dur="4s" to="359 355 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M352.887,332.375c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C354.103,329.781,352.89,330.937,352.887,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M353.863,332.377c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C354.646,330.766,353.866,331.487,353.863,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_40">
- <g>
- <path fill="#DFDFDD" d="M309.192,332.381l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L309.192,332.381L309.192,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 310 332.377)">
- <g>
- <path fill="#3E4484" d="M308.891,331.329l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C313.05,318.647,308.891,331.329,308.891,331.329"/>
- <path fill="#3E4484" d="M310.981,332.18l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C320.031,341.992,310.981,332.18,310.981,332.18"/>
- <path fill="#3E4484" d="M309.067,333.76l0.021-2.36c0,0-13.441-1.195-19.767,0.729 C295.731,334.329,309.067,333.76,309.067,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M310.987,331.899l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
- <path fill="#DFDFDD" d="M309.466,333.735l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M308.862,331.594l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 310 332.377" dur="4s" to="359 310 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M307.321,332.375c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C308.537,329.781,307.323,330.937,307.321,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M308.3,332.377c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C309.078,330.766,308.304,331.487,308.3,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_39">
- <g>
- <path fill="#DFDFDD" d="M259.722,332.381l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L259.722,332.381L259.722,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 260 332.377)">
- <g>
- <path fill="#3E4484" d="M259.419,331.329l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C263.578,318.647,259.419,331.329,259.419,331.329"/>
- <path fill="#3E4484" d="M261.511,332.18l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C270.559,341.992,261.511,332.18,261.511,332.18"/>
- <path fill="#3E4484" d="M259.597,333.76l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C246.259,334.329,259.597,333.76,259.597,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M261.516,331.899l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M259.994,333.735l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M259.391,331.594l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 260 332.377" dur="4s" to="359 260 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M257.848,332.375c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C259.067,329.781,257.854,330.937,257.848,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M258.826,332.377c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C259.608,330.766,258.83,331.487,258.826,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_38">
- <g>
- <path fill="#DFDFDD" d="M210.198,332.381l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L210.198,332.381L210.198,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 211 332.377)">
- <g>
- <path fill="#3E4484" d="M209.897,331.329l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C214.056,318.647,209.897,331.329,209.897,331.329"/>
- <path fill="#3E4484" d="M211.988,332.18l-1.813,1.511c0,0,7.769,11.024,13.32,14.618 C221.037,341.992,211.988,332.18,211.988,332.18"/>
- <path fill="#3E4484" d="M210.073,333.76l0.021-2.36c0,0-13.44-1.195-19.766,0.729 C196.738,334.329,210.073,333.76,210.073,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M211.992,331.899l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M210.472,333.735l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M209.867,331.594l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 211 332.377" dur="4s" to="359 211 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M208.326,332.375c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C209.544,329.781,208.328,330.937,208.326,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M209.306,332.377c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C210.085,330.766,209.309,331.487,209.306,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_37">
- <g>
- <path fill="#DFDFDD" d="M161.673,332.381l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L161.673,332.381L161.673,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 162 332.377)">
- <g>
- <path fill="#3E4484" d="M161.369,331.329l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C165.529,318.647,161.369,331.329,161.369,331.329"/>
- <path fill="#3E4484" d="M163.462,332.18l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C172.511,341.992,163.462,332.18,163.462,332.18"/>
- <path fill="#3E4484" d="M161.546,333.76l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C148.21,334.329,161.546,333.76,161.546,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M163.468,331.899l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M161.947,333.735l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M161.341,331.594l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 162 332.377" dur="4s" to="359 162 332.377" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M159.8,332.375c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C161.016,329.781,159.804,330.937,159.8,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M160.776,332.377c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C161.557,330.766,160.781,331.487,160.776,332.377"/>
- </g>
- </g>
- </g>
- <g id="_x23_43">
- <g>
- <path fill="#DFDFDD" d="M456.853,332.381l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L456.853,332.381L456.853,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 457 332.379)">
- <g>
- <path fill="#3E4484" d="M456.552,331.331l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C460.71,318.649,456.552,331.331,456.552,331.331"/>
- <path fill="#3E4484" d="M458.642,332.18l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C467.692,341.993,458.642,332.18,458.642,332.18"/>
- <path fill="#3E4484" d="M456.728,333.76l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C443.392,334.329,456.728,333.76,456.728,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M458.647,331.901l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M457.126,333.735l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
- <path fill="#DFDFDD" d="M456.522,331.596l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 457 332.379" dur="4s" to="359 457 332.379" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M454.981,332.375c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C456.198,329.781,454.983,330.937,454.981,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M455.96,332.379c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C456.739,330.766,455.964,331.489,455.96,332.379"/>
- </g>
- </g>
- </g>
- <g id="_x23_44">
- <g>
- <path fill="#DFDFDD" d="M509.371,332.381l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L509.371,332.381L509.371,332.381z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 510 332.379)">
- <g>
- <path fill="#3E4484" d="M509.067,331.331l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C513.228,318.649,509.067,331.331,509.067,331.331"/>
- <path fill="#3E4484" d="M511.158,332.18l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C520.211,341.993,511.158,332.18,511.158,332.18"/>
- <path fill="#3E4484" d="M509.246,333.76l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C495.906,334.329,509.246,333.76,509.246,333.76"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M511.166,331.901l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
- <path fill="#DFDFDD" d="M509.644,333.735l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
- <path fill="#DFDFDD" d="M509.041,331.596l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 510 332.379" dur="4s" to="359 510 332.379" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M507.498,332.375c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C508.717,329.781,507.502,330.937,507.498,332.375"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M508.476,332.379c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C509.258,330.766,508.478,331.489,508.476,332.379"/>
- </g>
- </g>
- </g>
- <g id="_x23_34">
- <g>
- <path fill="#DFDFDD" d="M24.7,201.586l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L24.7,201.586L24.7,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 25 201.582)">
- <g>
- <path fill="#3E4484" d="M24.399,200.534l2.203,0.854c0,0,5.844-12.161,6.27-18.758 C28.557,187.854,24.399,200.534,24.399,200.534"/>
- <path fill="#3E4484" d="M26.489,201.385l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C35.54,211.197,26.489,201.385,26.489,201.385"/>
- <path fill="#3E4484" d="M24.575,202.965l0.021-2.36c0,0-13.44-1.197-19.767,0.728 C11.239,203.534,24.575,202.965,24.575,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M26.495,201.104l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M24.973,202.94l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
- <path fill="#DFDFDD" d="M24.37,200.799l-19.768,0.619c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 25 201.582" dur="4s" to="359 25 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M22.829,201.58c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C24.046,198.986,22.831,200.142,22.829,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M23.807,201.582c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C24.587,199.971,23.811,200.692,23.807,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_35">
- <g>
- <path fill="#DFDFDD" d="M66.923,201.586l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L66.923,201.586L66.923,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 68 201.582)">
- <g>
- <path fill="#3E4484" d="M66.622,200.534l2.203,0.854c0,0,5.844-12.161,6.269-18.758 C70.778,187.854,66.622,200.534,66.622,200.534"/>
- <path fill="#3E4484" d="M68.712,201.385l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C77.763,211.197,68.712,201.385,68.712,201.385"/>
- <path fill="#3E4484" d="M66.798,202.965l0.021-2.36c0,0-13.441-1.197-19.767,0.728 C53.462,203.534,66.798,202.965,66.798,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M68.719,201.104l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
- <path fill="#DFDFDD" d="M67.196,202.94l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M66.594,200.799l-19.771,0.619c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 68 201.582" dur="4s" to="359 68 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M65.048,201.58c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C66.268,198.986,65.054,200.142,65.048,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M66.03,201.582c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C66.811,199.971,66.034,200.692,66.03,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_36">
- <g>
- <path fill="#DFDFDD" d="M117.418,201.586l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L117.418,201.586L117.418,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 118 201.582)">
- <g>
- <path fill="#3E4484" d="M117.116,200.534l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C121.276,187.854,117.116,200.534,117.116,200.534"/>
- <path fill="#3E4484" d="M119.207,201.385l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C128.256,211.197,119.207,201.385,119.207,201.385"/>
- <path fill="#3E4484" d="M117.293,202.965l0.021-2.36c0,0-13.44-1.197-19.768,0.728 C103.956,203.534,117.293,202.965,117.293,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M119.213,201.104l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M117.692,202.94l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M117.088,200.799l-19.767,0.619c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 118 201.582" dur="4s" to="359 118 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M115.545,201.58c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C116.764,198.986,115.549,200.142,115.545,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M116.524,201.582c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C117.305,199.971,116.528,200.692,116.524,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_42">
- <g>
- <path fill="#DFDFDD" d="M403.267,201.586l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L403.267,201.586L403.267,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 404 201.582)">
- <g>
- <path fill="#3E4484" d="M402.965,200.534l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C407.125,187.853,402.965,200.534,402.965,200.534"/>
- <path fill="#3E4484" d="M405.056,201.385l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C414.106,211.197,405.056,201.385,405.056,201.385"/>
- <path fill="#3E4484" d="M403.142,202.965l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C389.804,203.534,403.142,202.965,403.142,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M405.063,201.104l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M403.541,202.94l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M402.938,200.799l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 404 201.582" dur="4s" to="359 404 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M401.395,201.58c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C402.614,198.986,401.399,200.142,401.395,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M402.373,201.582c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C403.155,199.971,402.377,200.692,402.373,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_41">
- <g>
- <path fill="#DFDFDD" d="M355.991,201.586l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L355.991,201.586L355.991,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 357 201.582)">
- <g>
- <path fill="#3E4484" d="M355.69,200.534l2.202,0.854c0,0,5.843-12.161,6.271-18.756 C359.849,187.853,355.69,200.534,355.69,200.534"/>
- <path fill="#3E4484" d="M357.782,201.385l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C366.831,211.197,357.782,201.385,357.782,201.385"/>
- <path fill="#3E4484" d="M355.866,202.965l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C342.53,203.534,355.866,202.965,355.866,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M357.788,201.104l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M356.265,202.94l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M355.661,200.799l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 357 201.582" dur="4s" to="359 357 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M354.12,201.58c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C355.336,198.986,354.123,200.142,354.12,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M355.095,201.582c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C355.879,199.971,355.099,200.692,355.095,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_40">
- <g>
- <path fill="#DFDFDD" d="M310.425,201.586l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L310.425,201.586L310.425,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 311 201.582)">
- <g>
- <path fill="#3E4484" d="M310.124,200.534l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C314.283,187.853,310.124,200.534,310.124,200.534"/>
- <path fill="#3E4484" d="M312.214,201.385l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C321.264,211.197,312.214,201.385,312.214,201.385"/>
- <path fill="#3E4484" d="M310.3,202.965l0.021-2.36c0,0-13.441-1.195-19.767,0.729C296.964,203.534,310.3,202.965,310.3,202.965 "/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M312.219,201.104l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
- <path fill="#DFDFDD" d="M310.699,202.94l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M310.094,200.799l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 311 201.582" dur="4s" to="359 311 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M308.553,201.58c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C309.77,198.986,308.555,200.142,308.553,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M309.533,201.582c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C310.311,199.971,309.537,200.692,309.533,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_39">
- <g>
- <path fill="#DFDFDD" d="M260.955,201.586l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L260.955,201.586L260.955,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 262 201.582)">
- <g>
- <path fill="#3E4484" d="M260.652,200.534l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C264.811,187.853,260.652,200.534,260.652,200.534"/>
- <path fill="#3E4484" d="M262.744,201.385l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C271.792,211.197,262.744,201.385,262.744,201.385"/>
- <path fill="#3E4484" d="M260.83,202.965l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C247.492,203.534,260.83,202.965,260.83,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M262.749,201.104l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M261.227,202.94l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M260.624,200.799l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 262 201.582" dur="4s" to="359 262 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M259.081,201.58c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C260.3,198.986,259.087,200.142,259.081,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M260.059,201.582c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C260.841,199.971,260.063,200.692,260.059,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_38">
- <g>
- <path fill="#DFDFDD" d="M211.431,201.586l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L211.431,201.586L211.431,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 212 201.582)">
- <g>
- <path fill="#3E4484" d="M211.13,200.534l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C215.289,187.853,211.13,200.534,211.13,200.534"/>
- <path fill="#3E4484" d="M213.22,201.385l-1.813,1.511c0,0,7.769,11.024,13.32,14.618 C222.27,211.197,213.22,201.385,213.22,201.385"/>
- <path fill="#3E4484" d="M211.306,202.965l0.021-2.36c0,0-13.44-1.195-19.766,0.729 C197.97,203.534,211.306,202.965,211.306,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M213.225,201.104l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M211.705,202.94l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M211.1,200.799l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 212 201.582" dur="4s" to="359 212 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M209.559,201.58c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C210.777,198.986,209.561,200.142,209.559,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M210.539,201.582c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C211.318,199.971,210.542,200.692,210.539,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_37">
- <g>
- <path fill="#DFDFDD" d="M162.906,201.586l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L162.906,201.586L162.906,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 164 201.582)">
- <g>
- <path fill="#3E4484" d="M162.602,200.534l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C166.761,187.853,162.602,200.534,162.602,200.534"/>
- <path fill="#3E4484" d="M164.695,201.385l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C173.744,211.197,164.695,201.385,164.695,201.385"/>
- <path fill="#3E4484" d="M162.779,202.965l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C149.443,203.534,162.779,202.965,162.779,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M164.701,201.104l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M163.179,202.94l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M162.574,200.799l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 164 201.582" dur="4s" to="359 164 201.582" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M161.033,201.58c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C162.249,198.986,161.037,200.142,161.033,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M162.009,201.582c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C162.79,199.971,162.013,200.692,162.009,201.582"/>
- </g>
- </g>
- </g>
- <g id="_x23_43">
- <g>
- <path fill="#DFDFDD" d="M458.086,201.586l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L458.086,201.586L458.086,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 459 201.584)">
- <g>
- <path fill="#3E4484" d="M457.785,200.536l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C461.943,187.854,457.785,200.536,457.785,200.536"/>
- <path fill="#3E4484" d="M459.875,201.385l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C468.925,211.198,459.875,201.385,459.875,201.385"/>
- <path fill="#3E4484" d="M457.961,202.965l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C444.625,203.534,457.961,202.965,457.961,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M459.88,201.106l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M458.359,202.94l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
- <path fill="#DFDFDD" d="M457.755,200.801l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 459 201.584" dur="4s" to="359 459 201.584" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M456.214,201.58c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C457.43,198.986,456.216,200.142,456.214,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M457.193,201.584c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C457.971,199.971,457.197,200.694,457.193,201.584"/>
- </g>
- </g>
- </g>
- <g id="_x23_44">
- <g>
- <path fill="#DFDFDD" d="M510.604,201.586l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L510.604,201.586L510.604,201.586z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 511 201.584)">
- <g>
- <path fill="#3E4484" d="M510.3,200.536l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C514.461,187.854,510.3,200.536,510.3,200.536"/>
- <path fill="#3E4484" d="M512.391,201.385l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C521.444,211.198,512.391,201.385,512.391,201.385"/>
- <path fill="#3E4484" d="M510.479,202.965l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C497.139,203.534,510.479,202.965,510.479,202.965"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M512.399,201.106l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
- <path fill="#DFDFDD" d="M510.877,202.94l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
- <path fill="#DFDFDD" d="M510.274,200.801l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 511 201.584" dur="4s" to="359 511 201.584" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M508.731,201.58c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C509.95,198.986,508.735,200.142,508.731,201.58"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M509.709,201.584c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C510.491,199.971,509.711,200.694,509.709,201.584"/>
- </g>
- </g>
- </g>
- <g id="_x23_34">
- <g>
- <path fill="#DFDFDD" d="M27.199,72.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L27.199,72.388L27.199,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 28 72.384)">
- <g>
- <path fill="#3E4484" d="M26.899,71.336l2.203,0.854c0,0,5.844-12.161,6.27-18.758C31.057,58.656,26.899,71.336,26.899,71.336"/>
- <path fill="#3E4484" d="M28.989,72.187l-1.813,1.513c0,0,7.769,11.022,13.319,14.616 C38.039,81.999,28.989,72.187,28.989,72.187"/>
- <path fill="#3E4484" d="M27.074,73.767l0.021-2.36c0,0-13.44-1.197-19.767,0.728C13.739,74.336,27.074,73.767,27.074,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M28.994,71.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.235,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.343-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.463,3.608-1.984,4.797c-0.282,0.646-1.172,2.569-1.172,2.569"/>
- <path fill="#DFDFDD" d="M27.473,73.742l13.239,14.69c0,0-0.975-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.786-0.717-0.786-0.717s-1.009-0.953-1.322-1.287c-1.065-1.102-3.111-3.379-4.092-4.557 c-0.828-0.996-2.438-3.033-3.22-4.07c-0.429-0.563-1.675-2.275-1.675-2.275"/>
- <path fill="#DFDFDD" d="M26.869,71.601L7.102,72.22c0,0,1.094-0.352,1.473-0.438c0.313-0.072,0.951-0.184,1.271-0.229 c0.267-0.037,1.058-0.136,1.058-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.59-0.188,6.121-0.181 c1.295,0.017,3.889,0.104,5.184,0.175c0.705,0.044,2.82,0.194,2.82,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 28 72.384" dur="4s" to="359 28 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M25.328,72.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C26.545,69.788,25.33,70.943,25.328,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M26.307,72.384c-0.002,0.896,0.769,1.621,1.722,1.627c0.95,0.002,1.733-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.722-1.625C27.086,70.772,26.311,71.494,26.307,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_35">
- <g>
- <path fill="#DFDFDD" d="M69.422,72.388l-1.379,28.777c0,0,1.095,0.43,2.063,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.139-28.783L69.422,72.388L69.422,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 70 72.384)">
- <g>
- <path fill="#3E4484" d="M69.121,71.336l2.203,0.854c0,0,5.844-12.161,6.269-18.758C73.278,58.656,69.121,71.336,69.121,71.336"/>
- <path fill="#3E4484" d="M71.211,72.187l-1.813,1.513c0,0,7.766,11.022,13.316,14.616 C80.263,81.999,71.211,72.187,71.211,72.187"/>
- <path fill="#3E4484" d="M69.297,73.767l0.021-2.36c0,0-13.441-1.197-19.767,0.728C55.961,74.336,69.297,73.767,69.297,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M71.218,71.906l6.377-18.722c0,0-0.063,1.148-0.11,1.529c-0.039,0.32-0.166,0.957-0.236,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.471,1.784c-0.447,1.469-1.44,4.358-1.99,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.646-1.171,2.569-1.171,2.569"/>
- <path fill="#DFDFDD" d="M69.696,73.742l13.24,14.69c0,0-0.977-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.326-1.287c-1.063-1.102-3.108-3.379-4.088-4.557 c-0.828-0.996-2.436-3.033-3.221-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M69.093,71.601L49.322,72.22c0,0,1.096-0.352,1.475-0.438c0.313-0.072,0.949-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.836-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.297,0.017,3.89,0.104,5.186,0.175c0.705,0.044,2.818,0.194,2.818,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 70 72.384" dur="4s" to="359 70 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M67.547,72.382c-0.006,1.434,1.203,2.604,2.697,2.609c1.5,0.004,2.717-1.158,2.724-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C68.768,69.788,67.554,70.943,67.547,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M68.53,72.384c-0.002,0.896,0.768,1.621,1.721,1.627c0.951,0.002,1.732-0.719,1.734-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C69.311,70.772,68.533,71.494,68.53,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_36">
- <g>
- <path fill="#DFDFDD" d="M119.917,72.388l-1.379,28.777c0,0,1.097,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L119.917,72.388L119.917,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 121 72.384)">
- <g>
- <path fill="#3E4484" d="M119.615,71.336l2.205,0.854c0,0,5.842-12.161,6.268-18.758 C123.776,58.656,119.615,71.336,119.615,71.336"/>
- <path fill="#3E4484" d="M121.706,72.187l-1.813,1.513c0,0,7.77,11.022,13.32,14.616 C130.755,81.999,121.706,72.187,121.706,72.187"/>
- <path fill="#3E4484" d="M119.792,73.767l0.021-2.36c0,0-13.44-1.197-19.768,0.728 C106.455,74.336,119.792,73.767,119.792,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M121.712,71.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.244,1.034-0.244,1.034s-0.34,1.343-0.473,1.784c-0.445,1.469-1.439,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.983,4.797c-0.283,0.646-1.17,2.569-1.17,2.569"/>
- <path fill="#DFDFDD" d="M120.192,73.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.263-0.189-0.752-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.953-1.324-1.287c-1.064-1.102-3.11-3.379-4.092-4.557 c-0.828-0.996-2.436-3.033-3.219-4.07c-0.426-0.563-1.674-2.275-1.674-2.275"/>
- <path fill="#DFDFDD" d="M119.587,71.601L99.821,72.22c0,0,1.094-0.352,1.471-0.438c0.313-0.072,0.953-0.184,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.374-0.155,1.835-0.186c1.527-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.889,0.104,5.185,0.175c0.704,0.044,2.819,0.194,2.819,0.194"/>
- </g>
-
- <animateTransform restart="always" from="0 121 72.384" dur="4s" to="359 121 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M118.044,72.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.7-2.613C119.264,69.788,118.048,70.943,118.044,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M119.024,72.384c-0.002,0.896,0.77,1.621,1.721,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.725-1.625C119.805,70.772,119.028,71.494,119.024,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_42">
- <g>
- <path fill="#DFDFDD" d="M405.767,72.388l-1.38,28.777c0,0,1.098,0.43,2.063,0.434c0.998,0.002,2.149-0.422,2.149-0.422 l-1.14-28.783L405.767,72.388L405.767,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 406 72.384)">
- <g>
- <path fill="#3E4484" d="M405.464,71.336l2.205,0.854c0,0,5.842-12.161,6.27-18.756 C409.624,58.654,405.464,71.336,405.464,71.336"/>
- <path fill="#3E4484" d="M407.556,72.187l-1.813,1.511c0,0,7.768,11.024,13.32,14.618 C416.606,81.999,407.556,72.187,407.556,72.187"/>
- <path fill="#3E4484" d="M405.642,73.767l0.021-2.36c0,0-13.439-1.195-19.766,0.729 C392.304,74.336,405.642,73.767,405.642,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M407.563,71.906l6.377-18.722c0,0-0.063,1.148-0.109,1.529c-0.041,0.32-0.166,0.957-0.238,1.271 c-0.057,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.471,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.465,1.211-1.461,3.608-1.982,4.797c-0.283,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M406.04,73.742l13.24,14.69c0,0-0.979-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.197-0.174-0.785-0.717-0.785-0.717s-1.008-0.955-1.323-1.287c-1.065-1.102-3.11-3.379-4.093-4.559 c-0.828-0.994-2.437-3.031-3.219-4.066c-0.426-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M405.438,71.601l-19.771,0.619c0,0,1.097-0.352,1.474-0.436c0.313-0.074,0.952-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.375-0.155,1.837-0.186c1.526-0.101,4.591-0.188,6.122-0.181 c1.296,0.017,3.889,0.104,5.186,0.174c0.705,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 406 72.384" dur="4s" to="359 406 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M403.895,72.382c-0.01,1.434,1.199,2.604,2.693,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.008-1.439-1.199-2.604-2.699-2.613C405.114,69.788,403.899,70.943,403.895,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M404.872,72.384c-0.002,0.896,0.771,1.621,1.721,1.627c0.951,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.771-1.618-1.724-1.625C405.655,70.772,404.876,71.494,404.872,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_41">
- <g>
- <path fill="#DFDFDD" d="M358.49,72.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L358.49,72.388L358.49,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 359 72.384)">
- <g>
- <path fill="#3E4484" d="M358.19,71.336l2.202,0.854c0,0,5.843-12.161,6.271-18.756C362.349,58.654,358.19,71.336,358.19,71.336 "/>
- <path fill="#3E4484" d="M360.281,72.187l-1.815,1.511c0,0,7.771,11.024,13.324,14.618 C369.33,81.999,360.281,72.187,360.281,72.187"/>
- <path fill="#3E4484" d="M358.365,73.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C345.03,74.336,358.365,73.767,358.365,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M360.287,71.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.041,0.32-0.164,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.338,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.988,5.789 c-0.466,1.211-1.461,3.608-1.981,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M358.765,73.742l13.237,14.69c0,0-0.975-0.61-1.281-0.844c-0.262-0.189-0.756-0.607-0.995-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.011-0.955-1.324-1.287c-1.066-1.102-3.111-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M358.16,71.601l-19.766,0.619c0,0,1.094-0.352,1.471-0.436c0.312-0.074,0.949-0.186,1.271-0.229 c0.268-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.526-0.101,4.588-0.188,6.123-0.181 c1.295,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 359 72.384" dur="4s" to="359 359 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M356.619,72.382c-0.008,1.434,1.199,2.604,2.695,2.609c1.498,0.004,2.715-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.701-2.613C357.835,69.788,356.622,70.943,356.619,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M357.595,72.384c-0.002,0.896,0.771,1.621,1.725,1.627c0.951,0.002,1.732-0.719,1.732-1.613 c0.005-0.895-0.771-1.618-1.721-1.625C358.378,70.772,357.599,71.494,357.595,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_40">
- <g>
- <path fill="#DFDFDD" d="M312.924,72.388l-1.377,28.777c0,0,1.094,0.43,2.063,0.434c0.995,0.002,2.146-0.422,2.146-0.422 l-1.139-28.783L312.924,72.388L312.924,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 314 72.384)">
- <g>
- <path fill="#3E4484" d="M312.623,71.336l2.203,0.854c0,0,5.844-12.161,6.27-18.756 C316.782,58.654,312.623,71.336,312.623,71.336"/>
- <path fill="#3E4484" d="M314.713,72.187l-1.813,1.511c0,0,7.766,11.024,13.318,14.618 C323.764,81.999,314.713,72.187,314.713,72.187"/>
- <path fill="#3E4484" d="M312.799,73.767l0.021-2.36c0,0-13.441-1.195-19.767,0.729 C299.463,74.336,312.799,73.767,312.799,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M314.719,71.906l6.377-18.722c0,0-0.063,1.148-0.107,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.059,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.473,1.784c-0.445,1.469-1.438,4.358-1.986,5.789 c-0.467,1.211-1.463,3.608-1.982,4.797c-0.283,0.647-1.174,2.571-1.174,2.571"/>
- <path fill="#DFDFDD" d="M313.198,73.742l13.239,14.69c0,0-0.976-0.61-1.28-0.844c-0.266-0.189-0.754-0.607-0.996-0.824 c-0.199-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.324-1.287c-1.063-1.102-3.107-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M312.594,71.601l-19.768,0.619c0,0,1.094-0.352,1.473-0.436c0.313-0.074,0.951-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.377-0.155,1.838-0.186c1.527-0.101,4.588-0.188,6.121-0.181 c1.295,0.017,3.891,0.104,5.186,0.174c0.704,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 314 72.384" dur="4s" to="359 314 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M311.053,72.382c-0.01,1.434,1.199,2.604,2.695,2.609c1.496,0.004,2.713-1.158,2.721-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C312.27,69.788,311.055,70.943,311.053,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M312.032,72.384c-0.002,0.896,0.769,1.621,1.719,1.627c0.953,0.002,1.734-0.719,1.736-1.613 c0.004-0.895-0.77-1.618-1.723-1.625C312.811,70.772,312.036,71.494,312.032,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_39">
- <g>
- <path fill="#DFDFDD" d="M263.454,72.388l-1.379,28.777c0,0,1.094,0.43,2.063,0.434c0.998,0.002,2.147-0.422,2.147-0.422 l-1.142-28.783L263.454,72.388L263.454,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 264 72.384)">
- <g>
- <path fill="#3E4484" d="M263.152,71.336l2.202,0.854c0,0,5.845-12.161,6.271-18.756 C267.311,58.654,263.152,71.336,263.152,71.336"/>
- <path fill="#3E4484" d="M265.243,72.187l-1.813,1.511c0,0,7.771,11.024,13.321,14.618 C274.291,81.999,265.243,72.187,265.243,72.187"/>
- <path fill="#3E4484" d="M263.329,73.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729 C249.991,74.336,263.329,73.767,263.329,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M265.248,71.906l6.377-18.722c0,0-0.061,1.148-0.11,1.529c-0.039,0.32-0.164,0.957-0.233,1.271 c-0.06,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.444,1.469-1.438,4.358-1.987,5.789 c-0.465,1.211-1.463,3.608-1.984,4.797c-0.279,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M263.727,73.742l13.237,14.69c0,0-0.976-0.61-1.28-0.844c-0.263-0.189-0.754-0.607-0.996-0.824 c-0.196-0.174-0.784-0.717-0.784-0.717s-1.009-0.955-1.324-1.287c-1.064-1.102-3.11-3.379-4.09-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.429-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M263.123,71.601l-19.768,0.619c0,0,1.096-0.352,1.471-0.436c0.312-0.074,0.951-0.186,1.273-0.229 c0.264-0.037,1.053-0.136,1.053-0.136s1.377-0.155,1.84-0.186c1.525-0.101,4.586-0.188,6.121-0.181 c1.295,0.017,3.887,0.104,5.182,0.174c0.709,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 264 72.384" dur="4s" to="359 264 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M261.58,72.382c-0.008,1.434,1.201,2.604,2.695,2.609c1.5,0.004,2.717-1.158,2.723-2.59 c0.004-1.439-1.205-2.604-2.703-2.613C262.799,69.788,261.586,70.943,261.58,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M262.559,72.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.002-0.895-0.771-1.618-1.724-1.625C263.34,70.772,262.563,71.494,262.559,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_38">
- <g>
- <path fill="#DFDFDD" d="M213.931,72.388l-1.377,28.777c0,0,1.094,0.43,2.062,0.434c0.996,0.002,2.147-0.422,2.147-0.422 l-1.14-28.783L213.931,72.388L213.931,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 215 72.384)">
- <g>
- <path fill="#3E4484" d="M213.629,71.336l2.203,0.854c0,0,5.845-12.161,6.271-18.756 C217.788,58.654,213.629,71.336,213.629,71.336"/>
- <path fill="#3E4484" d="M215.72,72.187l-1.813,1.511c0,0,7.769,11.024,13.32,14.618C224.77,81.999,215.72,72.187,215.72,72.187 "/>
- <path fill="#3E4484" d="M213.806,73.767l0.021-2.36c0,0-13.44-1.195-19.766,0.729C200.47,74.336,213.806,73.767,213.806,73.767 "/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M215.725,71.906l6.377-18.722c0,0-0.063,1.148-0.108,1.529c-0.041,0.32-0.166,0.957-0.236,1.271 c-0.06,0.26-0.245,1.034-0.245,1.034s-0.341,1.345-0.472,1.784c-0.446,1.469-1.438,4.358-1.987,5.789 c-0.468,1.211-1.464,3.608-1.983,4.797c-0.283,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M214.204,73.742l13.24,14.69c0,0-0.976-0.61-1.281-0.844c-0.262-0.189-0.754-0.607-0.996-0.824 c-0.198-0.174-0.787-0.717-0.787-0.717s-1.008-0.955-1.32-1.287c-1.066-1.102-3.111-3.379-4.094-4.559 c-0.826-0.994-2.438-3.031-3.219-4.066c-0.428-0.563-1.674-2.277-1.674-2.277"/>
- <path fill="#DFDFDD" d="M213.6,71.601l-19.769,0.619c0,0,1.094-0.352,1.474-0.436c0.313-0.074,0.95-0.186,1.271-0.229 c0.266-0.037,1.057-0.136,1.057-0.136s1.378-0.155,1.84-0.186c1.525-0.101,4.588-0.188,6.119-0.181 c1.296,0.017,3.891,0.104,5.186,0.174c0.707,0.045,2.82,0.195,2.82,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 215 72.384" dur="4s" to="359 215 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M212.059,72.382c-0.011,1.434,1.198,2.604,2.694,2.609c1.496,0.004,2.716-1.158,2.722-2.59 c0.007-1.439-1.202-2.604-2.702-2.613C213.277,69.788,212.061,70.943,212.059,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M213.038,72.384c-0.002,0.896,0.77,1.621,1.722,1.627c0.95,0.002,1.73-0.719,1.733-1.613 c0.004-0.895-0.769-1.618-1.721-1.625C213.818,70.772,213.041,71.494,213.038,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_37">
- <g>
- <path fill="#DFDFDD" d="M165.406,72.388l-1.379,28.777c0,0,1.094,0.43,2.061,0.434c0.998,0.002,2.148-0.422,2.148-0.422 l-1.14-28.783L165.406,72.388L165.406,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 166 72.384)">
- <g>
- <path fill="#3E4484" d="M165.102,71.336l2.203,0.854c0,0,5.842-12.161,6.271-18.756 C169.261,58.654,165.102,71.336,165.102,71.336"/>
- <path fill="#3E4484" d="M167.195,72.187l-1.816,1.511c0,0,7.771,11.024,13.322,14.618 C176.243,81.999,167.195,72.187,167.195,72.187"/>
- <path fill="#3E4484" d="M165.279,73.767l0.021-2.36c0,0-13.438-1.195-19.766,0.729 C151.943,74.336,165.279,73.767,165.279,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M167.2,71.906l6.377-18.722c0,0-0.063,1.148-0.111,1.529c-0.04,0.32-0.165,0.957-0.234,1.271 c-0.061,0.26-0.246,1.034-0.246,1.034s-0.34,1.345-0.474,1.784c-0.442,1.469-1.438,4.358-1.987,5.789 c-0.467,1.211-1.461,3.608-1.982,4.797c-0.282,0.647-1.17,2.571-1.17,2.571"/>
- <path fill="#DFDFDD" d="M165.679,73.742l13.237,14.69c0,0-0.975-0.61-1.283-0.844c-0.262-0.189-0.754-0.607-0.993-0.824 c-0.196-0.174-0.785-0.717-0.785-0.717s-1.01-0.955-1.323-1.287c-1.066-1.102-3.113-3.379-4.092-4.559 c-0.828-0.994-2.438-3.031-3.22-4.066c-0.427-0.563-1.675-2.277-1.675-2.277"/>
- <path fill="#DFDFDD" d="M165.073,71.601l-19.769,0.619c0,0,1.097-0.352,1.474-0.436c0.311-0.074,0.948-0.186,1.271-0.229 c0.268-0.037,1.056-0.136,1.056-0.136s1.378-0.155,1.839-0.186c1.524-0.101,4.588-0.188,6.123-0.181 c1.293,0.017,3.885,0.104,5.182,0.174c0.707,0.045,2.818,0.195,2.818,0.195"/>
- </g>
-
- <animateTransform restart="always" from="0 166 72.384" dur="4s" to="359 166 72.384" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M163.532,72.382c-0.008,1.434,1.201,2.604,2.694,2.609c1.498,0.004,2.716-1.158,2.722-2.59 c0.006-1.439-1.203-2.604-2.703-2.613C164.748,69.788,163.536,70.943,163.532,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M164.508,72.384c-0.002,0.896,0.771,1.621,1.722,1.627c0.953,0.002,1.735-0.719,1.735-1.613 c0.005-0.895-0.77-1.618-1.721-1.625C165.289,70.772,164.513,71.494,164.508,72.384"/>
- </g>
- </g>
- </g>
- <g id="_x23_43">
- <g>
- <path fill="#DFDFDD" d="M460.585,72.388l-1.377,28.779c0,0,1.094,0.428,2.063,0.432c0.994,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L460.585,72.388L460.585,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 461 72.386)">
- <g>
- <path fill="#3E4484" d="M460.284,71.338l2.203,0.852c0,0,5.844-12.159,6.271-18.756 C464.443,58.656,460.284,71.338,460.284,71.338"/>
- <path fill="#3E4484" d="M462.374,72.187l-1.813,1.513c0,0,7.769,11.024,13.318,14.616 C471.424,82,462.374,72.187,462.374,72.187"/>
- <path fill="#3E4484" d="M460.46,73.767l0.021-2.36c0,0-13.438-1.195-19.768,0.729C447.124,74.336,460.46,73.767,460.46,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M462.379,71.908l6.377-18.724c0,0-0.062,1.15-0.108,1.529c-0.038,0.322-0.166,0.957-0.234,1.273 c-0.059,0.26-0.246,1.031-0.246,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.985,5.789 c-0.468,1.211-1.464,3.608-1.984,4.797c-0.281,0.647-1.172,2.571-1.172,2.571"/>
- <path fill="#DFDFDD" d="M460.859,73.742l13.238,14.69c0,0-0.976-0.61-1.279-0.842c-0.266-0.188-0.755-0.606-0.996-0.826 c-0.199-0.174-0.787-0.715-0.787-0.715s-1.006-0.955-1.321-1.287c-1.064-1.104-3.109-3.379-4.093-4.559 c-0.828-0.996-2.438-3.031-3.219-4.068c-0.43-0.563-1.675-2.274-1.675-2.274"/>
- <path fill="#DFDFDD" d="M460.254,71.603l-19.769,0.617c0,0,1.095-0.35,1.474-0.436c0.313-0.074,0.95-0.184,1.271-0.229 c0.266-0.039,1.057-0.138,1.057-0.138s1.378-0.153,1.839-0.186c1.526-0.099,4.588-0.188,6.123-0.179 c1.293,0.015,3.887,0.104,5.183,0.176c0.707,0.04,2.819,0.191,2.819,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 461 72.386" dur="4s" to="359 461 72.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M458.713,72.382c-0.008,1.434,1.199,2.605,2.694,2.609c1.496,0.004,2.714-1.156,2.722-2.588 c0.006-1.441-1.203-2.605-2.703-2.613C459.93,69.788,458.715,70.943,458.713,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M459.693,72.386c-0.002,0.896,0.769,1.619,1.721,1.625c0.951,0.004,1.732-0.719,1.734-1.611 c0.004-0.895-0.77-1.62-1.723-1.629C460.471,70.772,459.697,71.496,459.693,72.386"/>
- </g>
- </g>
- </g>
- <g id="_x23_44">
- <g>
- <path fill="#DFDFDD" d="M513.104,72.388l-1.381,28.779c0,0,1.096,0.428,2.063,0.432c0.996,0.002,2.146-0.422,2.146-0.422 l-1.14-28.783L513.104,72.388L513.104,72.388z"/>
- </g>
- <g>
- <g transform="rotate(91.5214 514 72.386)">
- <g>
- <path fill="#3E4484" d="M512.799,71.338l2.205,0.852c0,0,5.842-12.159,6.271-18.756 C516.96,58.656,512.799,71.338,512.799,71.338"/>
- <path fill="#3E4484" d="M514.891,72.187l-1.813,1.513c0,0,7.771,11.024,13.322,14.616 C523.944,82,514.891,72.187,514.891,72.187"/>
- <path fill="#3E4484" d="M512.979,73.767l0.021-2.36c0,0-13.438-1.195-19.767,0.729 C499.639,74.336,512.979,73.767,512.979,73.767"/>
- </g>
- <g>
- <path fill="#DFDFDD" d="M514.899,71.908l6.377-18.724c0,0-0.063,1.15-0.11,1.529c-0.041,0.322-0.164,0.957-0.234,1.273 c-0.06,0.26-0.245,1.031-0.245,1.031s-0.341,1.346-0.474,1.785c-0.444,1.471-1.438,4.36-1.987,5.789 c-0.468,1.211-1.462,3.608-1.983,4.797c-0.28,0.647-1.171,2.571-1.171,2.571"/>
- <path fill="#DFDFDD" d="M513.376,73.742l13.237,14.69c0,0-0.975-0.61-1.28-0.842c-0.263-0.188-0.755-0.606-0.996-0.826 c-0.197-0.174-0.785-0.715-0.785-0.715s-1.008-0.955-1.322-1.287c-1.065-1.104-3.108-3.379-4.092-4.559 c-0.826-0.996-2.438-3.031-3.219-4.068c-0.429-0.563-1.674-2.274-1.674-2.274"/>
- <path fill="#DFDFDD" d="M512.774,71.603l-19.77,0.617c0,0,1.094-0.35,1.475-0.436c0.312-0.074,0.947-0.184,1.271-0.229 c0.266-0.039,1.055-0.138,1.055-0.138s1.379-0.153,1.838-0.186c1.527-0.099,4.59-0.188,6.123-0.179 c1.296,0.015,3.889,0.104,5.186,0.176c0.705,0.04,2.816,0.191,2.816,0.191"/>
- </g>
-
- <animateTransform restart="always" from="0 514 72.386" dur="4s" to="359 514 72.386" fill="remove" type="rotate" accumulate="none" additive="replace" calcMode="linear" attributeName="transform" attributeType="XML" repeatCount="indefinite">
- </animateTransform>
- </g>
- <g>
- <path fill="#63A5BA" d="M511.231,72.382c-0.01,1.434,1.199,2.605,2.695,2.609s2.713-1.156,2.723-2.588 c0.006-1.441-1.205-2.605-2.703-2.613C512.449,69.788,511.235,70.943,511.231,72.382"/>
- </g>
- <g>
- <path fill="#B6D6DE" d="M512.208,72.386c-0.005,0.896,0.771,1.619,1.721,1.625c0.953,0.004,1.734-0.719,1.734-1.611 c0.004-0.895-0.771-1.62-1.722-1.629C512.99,70.772,512.21,71.496,512.208,72.386"/>
- </g>
- </g>
- </g>
- </g>
- </svg>
- </template>
- </previewPicture>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import previewPicture from "../previewPicture.vue";
- import $ from "jquery";
- export default {
- components: {
- previewPicture,
- },
- props: { data: Array, zmmap: Object },
- data() {
- return {
- // graph: null,
- green: "#02A434",
- red: "#FF0000",
- datas: undefined,
- fjID:'',
- };
- },
- beforeUpdate() {
- if(this.fjID == ''){
- this.fjClcik();
- }
- },
- methods: {
- fjClcik(){
- var that = this;
- $('#fan g').click(function(){
- if($(this).attr('id') != undefined){
- if(that.fjID == ''){
- that.fjID = $(this).attr('id');
- var p = that.$route.path.split('/');
- var pData = p[p.length - 1].split('_')[0].substr(0,1);
- var wpId = p[p.length - 1];
- var id = parseInt($(this).attr('id').split('_')[2]);
- if(id<10){
- id = '0'+id
- }
- if (wpId.indexOf("FDC") !== -1) {
- that.$router.replace(`/monitor/windsite/info/${wpId}/${pData[0] + 'G01_'+id}`);
- }
- }
- }
- })
- },
- refreshFan: function (data) {
- if (data) {
- data.forEach((element) => {
- let wtNum = parseInt(element["wtnum"]);
- let state = element["fjzt"];
- let color = this.getWtColor(state);
- if (document.getElementById("_x23_" + wtNum)) {
- let ele1 = document.getElementById("_x23_" + wtNum).children[1]
- .children[0].children[0];
- ele1.children[0].setAttribute("fill", color);
- ele1.children[1].setAttribute("fill", color);
- ele1.children[2].setAttribute("fill", color);
- let speed = 0;
- if ("1" == state || "5" == state) speed = 2;
- document
- .getElementById("_x23_" + wtNum)
- .children[1].children[0].children[2].setAttribute("dur", speed);
- }
- });
- }
- },
- refreshDLQ: function (data) {
- console.log(data);
- if (data) {
- for (let dlq in data) {
- if (document.getElementById(dlq)) {
- if ("1" == data[dlq]) {
- document.getElementById(dlq).setAttribute("fill", "#E60612");
- } else {
- document.getElementById(dlq).setAttribute("fill", "#05bb4c");
- }
- }
- }
- }
- },
- getWtColor: function (stateCode) {
- if ("0" == stateCode) return "#05bb4c";
- if ("1" == stateCode) return "#4b55ae";
- if ("2" == stateCode) return "#ba3237";
- if ("3" == stateCode) return "#606769";
- if ("4" == stateCode) return "#e17e23";
- if ("5" == stateCode) return "#c531c7";
- if ("6" == stateCode) return "#c531c7";
- },
- },
- watch: {
- data(value) {
- this.datas = value;
- this.refreshFan(value);
- },
- zmmap(value) {
- this.refreshDLQ(value);
- },
- },
- };
- </script>
- <style scoped>
- .center-bar {
- position: relative;
- box-sizing: border-box;
- height: 90vh;
- background-color: #000000;
- padding-top: 10px;
- padding-left: 5px;
- padding-right: 5px;
- padding-bottom: 5px;
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 3px;
- margin-left: 0;
- display: flex;
- flex-direction: column;
- }
- .svg {
- margin-left: 5%;
- width: 90%;
- height: 90%;
- }
- .light #other text[font-size="17.3469"],
- .light #other text[font-size="16.5927"],
- .light #other text[font-size="10.7967"]{
- fill:#000000;
- }
- </style>
|