123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333 |
- <?xml version="1.0" encoding="UTF-8"?>
- <svg width="1440px" height="854px" viewBox="0 0 1440 854" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
- <!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com -->
- <title>签名banner</title>
- <desc>Created with Sketch.</desc>
- <defs>
- <polygon id="path-1" points="-1.8189894e-12 0 1440 0 1440 880 -1.8189894e-12 880"></polygon>
- <linearGradient x1="36.0625747%" y1="61.1644808%" x2="8.1791636%" y2="42.8630661%" id="linearGradient-3">
- <stop stop-color="#8FFFFF" stop-opacity="0.353747815" offset="0%"></stop>
- <stop stop-color="#7367F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="39.5131828%" y1="38.6870674%" x2="70.1051526%" y2="62.7726201%" id="linearGradient-4">
- <stop stop-color="#8FFFFF" stop-opacity="0.353747815" offset="0%"></stop>
- <stop stop-color="#7367F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="62.3403054%" y1="43.3481373%" x2="6.12063506%" y2="40.2177177%" id="linearGradient-5">
- <stop stop-color="#8FFFFF" stop-opacity="0.353747815" offset="0%"></stop>
- <stop stop-color="#7367F0" offset="100%"></stop>
- <stop stop-color="#7367F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="82.7552698%" y1="43.7527688%" x2="8.62261583%" y2="43.7527688%" id="linearGradient-6">
- <stop stop-color="#8FFFFF" stop-opacity="0.353747815" offset="0%"></stop>
- <stop stop-color="#8EFAFF" stop-opacity="0.373613188" offset="5.90713013%"></stop>
- <stop stop-color="#7367F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="97.6668823%" y1="53.2761582%" x2="8.1791636%" y2="42.8630661%" id="linearGradient-7">
- <stop stop-color="#8FFFFF" stop-opacity="0.353747815" offset="0%"></stop>
- <stop stop-color="#7367F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="20.3978294%" y1="58.539993%" x2="66.4845852%" y2="44.9933122%" id="linearGradient-8">
- <stop stop-color="#8FFFFF" stop-opacity="0.151988636" offset="0%"></stop>
- <stop stop-color="#7367F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="53.2897904%" y1="59.9894651%" x2="37.28223%" y2="28.0154048%" id="linearGradient-9">
- <stop stop-color="#D8F6FB" offset="0%"></stop>
- <stop stop-color="#D8F6FB" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="75.0343445%" y1="14.4031606%" x2="9.62858195%" y2="74.6072222%" id="linearGradient-10">
- <stop stop-color="#226EF3" offset="0%"></stop>
- <stop stop-color="#25CDBF" stop-opacity="0.939739948" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="59.9479173%" y1="25.9861832%" x2="7.58931564%" y2="76.2734959%" id="linearGradient-11">
- <stop stop-color="#226EF3" offset="0%"></stop>
- <stop stop-color="#25CDBF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="44.6977828%" y1="27.974527%" x2="54.4865146%" y2="68.6361803%" id="linearGradient-12">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#06B3F5" stop-opacity="0.9171" offset="8.78%"></stop>
- <stop stop-color="#1B70DF" stop-opacity="0.5926" offset="41.06%"></stop>
- <stop stop-color="#2B3ECF" stop-opacity="0.3207" offset="68.1%"></stop>
- <stop stop-color="#341FC6" stop-opacity="0.1152" offset="88.54%"></stop>
- <stop stop-color="#3814C2" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="59.4762758%" y1="19.8899709%" x2="41.9914742%" y2="74.1023367%" id="linearGradient-13">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#06B3F5" stop-opacity="0.9171" offset="8.78%"></stop>
- <stop stop-color="#1B70DF" stop-opacity="0.5926" offset="41.06%"></stop>
- <stop stop-color="#2B3ECF" stop-opacity="0.3207" offset="68.1%"></stop>
- <stop stop-color="#341FC6" stop-opacity="0.1152" offset="88.54%"></stop>
- <stop stop-color="#3814C2" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.25562925%" y1="49.9996987%" x2="100.25526%" y2="49.9996987%" id="linearGradient-14">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-59.8732669%" y1="42.2089887%" x2="123.279409%" y2="59.9113552%" id="linearGradient-15">
- <stop stop-color="#240EA8" offset="0%"></stop>
- <stop stop-color="#1811B7" stop-opacity="0.5227" offset="47.73%"></stop>
- <stop stop-color="#0F13C2" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="78.3088386%" y1="113.640326%" x2="28.9447752%" y2="7.43421955%" id="linearGradient-16">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#00B6F8" offset="12.37%"></stop>
- <stop stop-color="#0085F1" offset="52.42%"></stop>
- <stop stop-color="#0066EC" offset="82.9%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-40.5813327%" y1="35.2819496%" x2="131.199849%" y2="62.7605522%" id="linearGradient-17">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-8.54492058%" y1="50.5949959%" x2="138.028819%" y2="49.1176549%" id="linearGradient-18">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="78.3088386%" y1="113.640216%" x2="28.9447752%" y2="7.4339998%" id="linearGradient-19">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#00B6F8" offset="12.37%"></stop>
- <stop stop-color="#0085F1" offset="52.42%"></stop>
- <stop stop-color="#0066EC" offset="82.9%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-40.5813327%" y1="35.2838606%" x2="131.199849%" y2="62.7622148%" id="linearGradient-20">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-8.54492058%" y1="50.5953725%" x2="138.028819%" y2="49.1179937%" id="linearGradient-21">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-8.54530164%" y1="50.5946706%" x2="138.029418%" y2="49.1173402%" id="linearGradient-22">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5793621%" y1="-1.70201008%" x2="76.3478416%" y2="101.017445%" id="linearGradient-23">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8492658%" y1="20.1894553%" x2="58.2577854%" y2="99.1649009%" id="linearGradient-24">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5793621%" y1="-1.70719583%" x2="76.3478416%" y2="101.011222%" id="linearGradient-25">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8492658%" y1="20.1832232%" x2="58.2577854%" y2="99.1586688%" id="linearGradient-26">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4232924%" y1="-1.70512153%" x2="6.50070342%" y2="128.645079%" id="linearGradient-27">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#006FED" offset="22.83%"></stop>
- <stop stop-color="#00A2F5" offset="69.2%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1516882%" y1="20.1857161%" x2="41.7431687%" y2="99.1611617%" id="linearGradient-28">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4232924%" y1="-1.70097293%" x2="3.4064691%" y2="133.634814%" id="linearGradient-29">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1516882%" y1="20.1919481%" x2="41.7431687%" y2="99.1661473%" id="linearGradient-30">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1996612%" y1="50.01108%" x2="126.171247%" y2="49.5396613%" id="linearGradient-31">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5414458%" y1="43.7179299%" x2="94.1008688%" y2="58.5016604%" id="linearGradient-32">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1996612%" y1="50.0097504%" x2="126.171247%" y2="49.5383317%" id="linearGradient-33">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5414458%" y1="43.7181364%" x2="94.1008688%" y2="58.5018669%" id="linearGradient-34">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5740532%" y1="-1.69889862%" x2="76.3443023%" y2="101.01952%" id="linearGradient-35">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8476757%" y1="20.1931946%" x2="58.2561952%" y2="99.1686402%" id="linearGradient-36">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5740532%" y1="-1.70408438%" x2="76.3443023%" y2="101.014334%" id="linearGradient-37">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8476757%" y1="20.1869625%" x2="58.2561952%" y2="99.1624081%" id="linearGradient-38">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4215227%" y1="-1.70304723%" x2="9.44628707%" y2="123.90115%" id="linearGradient-39">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0070ED" offset="23.53%"></stop>
- <stop stop-color="#00A5F6" offset="71.74%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1510522%" y1="20.1894553%" x2="41.7428507%" y2="99.1636545%" id="linearGradient-40">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4215227%" y1="-1.70823298%" x2="12.5299035%" y2="118.92801%" id="linearGradient-41">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0067EC" offset="17.3%"></stop>
- <stop stop-color="#0086F1" offset="48.4%"></stop>
- <stop stop-color="#00B9F9" offset="89.48%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1510522%" y1="20.1819768%" x2="41.7428507%" y2="99.1574224%" id="linearGradient-42">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1925578%" y1="50.01108%" x2="126.163598%" y2="49.5396613%" id="linearGradient-43">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5398066%" y1="43.7179299%" x2="94.099776%" y2="58.5016604%" id="linearGradient-44">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1925578%" y1="50.0112278%" x2="126.163598%" y2="49.539809%" id="linearGradient-45">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5398066%" y1="43.7181364%" x2="94.099776%" y2="58.5018669%" id="linearGradient-46">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6144706%" y1="-21.2525525%" x2="91.0899367%" y2="178.384413%" id="linearGradient-47">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6064632%" y1="-21.2511889%" x2="91.0819293%" y2="178.385776%" id="linearGradient-48">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6222534%" y1="-21.2449912%" x2="91.0977194%" y2="178.390537%" id="linearGradient-49">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.614397%" y1="-21.244601%" x2="91.0907018%" y2="178.39155%" id="linearGradient-50">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="50%" x2="100.00152%" y2="50%" id="linearGradient-51">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="50.0006179%" x2="100.00152%" y2="50.0006179%" id="linearGradient-52">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="50.0020886%" x2="625.411426%" y2="50.0020886%" id="linearGradient-53">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="49.9937343%" x2="625.411426%" y2="49.9937343%" id="linearGradient-54">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="49.9981465%" x2="100.001013%" y2="49.9981465%" id="linearGradient-55">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="50.0012356%" x2="100.001013%" y2="50.0012356%" id="linearGradient-56">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="49.9958229%" x2="625.411426%" y2="49.9958229%" id="linearGradient-57">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="50.0062657%" x2="625.411426%" y2="50.0062657%" id="linearGradient-58">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="26.6173819%" y1="-21.2534326%" x2="91.0936866%" y2="178.382718%" id="linearGradient-59">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6103643%" y1="-21.2538571%" x2="91.086669%" y2="178.383731%" id="linearGradient-60">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00253279976%" y1="49.9993821%" x2="99.9994934%" y2="49.9993821%" id="linearGradient-61">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00253279976%" y1="49.9993822%" x2="99.9994934%" y2="49.9993822%" id="linearGradient-62">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-269.756289%" y1="49.9916458%" x2="625.400943%" y2="49.9916458%" id="linearGradient-63">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-269.756289%" y1="50%" x2="625.400943%" y2="50%" id="linearGradient-64">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="12.5802469%" y1="-1.70408438%" x2="76.3487265%" y2="101.015371%" id="linearGradient-65">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8495839%" y1="20.1869625%" x2="58.2577854%" y2="99.1624081%" id="linearGradient-66">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5802469%" y1="-1.69889862%" x2="76.3487265%" y2="101.01952%" id="linearGradient-67">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8495839%" y1="20.1931946%" x2="58.2577854%" y2="99.1686402%" id="linearGradient-68">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4268317%" y1="-1.70719583%" x2="9.4507112%" y2="123.895964%" id="linearGradient-69">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0070ED" offset="23.53%"></stop>
- <stop stop-color="#00A5F6" offset="71.74%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1529604%" y1="20.1832232%" x2="41.7444408%" y2="99.1586688%" id="linearGradient-70">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4268317%" y1="-1.70304723%" x2="12.5343276%" y2="118.933195%" id="linearGradient-71">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0067EC" offset="17.3%"></stop>
- <stop stop-color="#0086F1" offset="48.4%"></stop>
- <stop stop-color="#00B9F9" offset="89.48%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1529604%" y1="20.1894553%" x2="41.7444408%" y2="99.1636545%" id="linearGradient-72">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.2007541%" y1="50.0103414%" x2="126.172887%" y2="49.5389226%" id="linearGradient-73">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5425387%" y1="43.7189624%" x2="94.1025081%" y2="58.5026928%" id="linearGradient-74">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.2007541%" y1="50.0104891%" x2="126.172887%" y2="49.5390704%" id="linearGradient-75">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5425387%" y1="43.7191688%" x2="94.1025081%" y2="58.5028993%" id="linearGradient-76">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="54.2973159%" y1="69.2959163%" x2="34.1365465%" y2="-15.1345038%" id="linearGradient-77">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="65.1708352%" y1="101.193951%" x2="13.1446186%" y2="-71.4309403%" id="linearGradient-78">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <polygon id="path-79" points="17.738809 30.6150618 0.458268995 20.5307395 0.608781268 0.426050713 17.8893213 10.510373"></polygon>
- <linearGradient x1="54.2953788%" y1="69.2985288%" x2="34.1348587%" y2="-15.1319725%" id="linearGradient-81">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="36.7125017%" y1="127.257616%" x2="71.9878657%" y2="-79.9354346%" id="linearGradient-82">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.296537%" y1="92.3002702%" x2="50.5327184%" y2="-0.769087995%" id="linearGradient-83">
- <stop stop-color="#FFFFFF" offset="0%"></stop>
- <stop stop-color="#6AF9BE" stop-opacity="0.9711" offset="14.51%"></stop>
- <stop stop-color="#5AB1C6" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="4.31244192%" y1="76.4730601%" x2="75.0231877%" y2="35.4997062%" id="linearGradient-84">
- <stop stop-color="#311563" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#130624" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-18.6415932%" y1="60.1988904%" x2="116.711652%" y2="38.7330532%" id="linearGradient-85">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-37.1173019%" y1="49.9998957%" x2="119.284295%" y2="49.9998957%" id="linearGradient-86">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="108.631259%" y1="69.0183407%" x2="-53.2464877%" y2="20.1973008%" id="linearGradient-87">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-25.0761907%" y1="32.4114057%" x2="-2.89425452%" y2="37.6080023%" id="linearGradient-88">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50%" y1="192.437994%" x2="50%" y2="119.618175%" id="linearGradient-89">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-85.2941701%" y1="49.9954155%" x2="14.7156576%" y2="49.9954155%" id="linearGradient-90">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00557923069%" y1="50.0067113%" x2="100.008343%" y2="50.0067113%" id="linearGradient-91">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9988752%" y1="50.0003529%" x2="-0.000862412276%" y2="50.0003529%" id="linearGradient-92">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.000693%" y1="50.0005949%" x2="0.00113668973%" y2="50.0005949%" id="linearGradient-93">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="57.1983767%" y1="-68.4899712%" x2="49.3116308%" y2="59.7886375%" id="linearGradient-94">
- <stop stop-color="#30E4E5" offset="61.15%"></stop>
- <stop stop-color="#2AFADF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="77.0910063%" y1="-73.4286747%" x2="49.8658484%" y2="49.7615845%" id="linearGradient-95">
- <stop stop-color="#30E4E5" offset="61.15%"></stop>
- <stop stop-color="#2AFADF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="239.084188%" y1="49.9998034%" x2="8.78295851%" y2="49.9998034%" id="linearGradient-96">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#30E5E5" offset="75.28%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="242.571466%" y1="49.9989656%" x2="142.563624%" y2="49.9989656%" id="linearGradient-97">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="215.994584%" y1="49.9997965%" x2="56.4849534%" y2="49.9997965%" id="linearGradient-98">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="215.994584%" y1="49.9924236%" x2="56.4849534%" y2="49.9924236%" id="linearGradient-99">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="215.994584%" y1="49.9938845%" x2="56.4849534%" y2="49.9938845%" id="linearGradient-100">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="215.971479%" y1="49.9994262%" x2="56.4752072%" y2="49.9994262%" id="linearGradient-101">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9982847%" y1="49.9976224%" x2="-0.000754374967%" y2="49.9976224%" id="linearGradient-102">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.002515%" y1="50.0007326%" x2="0.000988582445%" y2="50.0007326%" id="linearGradient-103">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="239.084886%" y1="49.9997346%" x2="8.77710359%" y2="49.9997346%" id="linearGradient-104">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#30E5E5" offset="75.28%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="242.544309%" y1="49.9963482%" x2="142.544835%" y2="49.9963482%" id="linearGradient-105">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.6210017%" y1="30.0229527%" x2="22.625194%" y2="-420.812079%" id="linearGradient-106">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="189.919134%" y1="49.9982659%" x2="-62.3754122%" y2="49.9982659%" id="linearGradient-107">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="95.2976278%" y1="51.9838669%" x2="21.6951876%" y2="49.0101871%" id="linearGradient-108">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="246.104441%" y1="49.9962329%" x2="-158.386353%" y2="49.9962329%" id="linearGradient-109">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="48.8267433%" y1="75.8741337%" x2="54.2108986%" y2="-66.3667645%" id="linearGradient-110">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9987251%" y1="-30.30335%" x2="49.9987251%" y2="139.275852%" id="linearGradient-111">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0017652%" y1="105.106804%" x2="50.0017652%" y2="-23.0457161%" id="linearGradient-112">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="78.8912748%" y1="59.9529515%" x2="52.8423744%" y2="50.9796384%" id="linearGradient-113">
- <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#1C22A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="78.2217493%" y1="23.05089%" x2="16.0404888%" y2="82.4102922%" id="linearGradient-114">
- <stop stop-color="#130CB6" offset="0%"></stop>
- <stop stop-color="#244EC8" offset="24.52%"></stop>
- <stop stop-color="#3DACE1" offset="61.64%"></stop>
- <stop stop-color="#4CE8F1" offset="87.63%"></stop>
- <stop stop-color="#52FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="33.1044854%" y1="62.5866838%" x2="180.700225%" y2="-47.4300249%" id="linearGradient-115">
- <stop stop-color="#B2FFAA" offset="0%"></stop>
- <stop stop-color="#B2FFAA" offset="0.54%"></stop>
- <stop stop-color="#B1FFAB" offset="1.24%"></stop>
- <stop stop-color="#6DFFCB" offset="36.17%"></stop>
- <stop stop-color="#3CFFE2" offset="65.42%"></stop>
- <stop stop-color="#1DFFF1" offset="87.56%"></stop>
- <stop stop-color="#12FFF6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="206.739604%" y1="45.151412%" x2="19.6276518%" y2="50.939598%" id="linearGradient-116">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="97.3498909%" y1="45.7993125%" x2="-99.1273213%" y2="63.227094%" id="linearGradient-117">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-17.6541726%" y1="50.0001615%" x2="123.985788%" y2="50.0001615%" id="linearGradient-118">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="103.36346%" y1="20.7637169%" x2="21.0264687%" y2="50.542185%" id="linearGradient-119">
- <stop stop-color="#311563" offset="0%"></stop>
- <stop stop-color="#6638B6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="80.0463749%" y1="55.9856822%" x2="-68.2900432%" y2="26.4355837%" id="linearGradient-120">
- <stop stop-color="#0396FF" offset="0%"></stop>
- <stop stop-color="#36AEFF" offset="16.66%"></stop>
- <stop stop-color="#73CAFF" offset="38.53%"></stop>
- <stop stop-color="#A3E0FF" offset="58.59%"></stop>
- <stop stop-color="#C6F1FF" offset="76.16%"></stop>
- <stop stop-color="#DBFAFF" offset="90.57%"></stop>
- <stop stop-color="#E3FEFF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="218.605254%" y1="73.3962662%" x2="-51.8395034%" y2="35.8686136%" id="linearGradient-121">
- <stop stop-color="#0396FF" offset="0%"></stop>
- <stop stop-color="#36AEFF" offset="16.66%"></stop>
- <stop stop-color="#73CAFF" offset="38.53%"></stop>
- <stop stop-color="#A3E0FF" offset="58.59%"></stop>
- <stop stop-color="#C6F1FF" offset="76.16%"></stop>
- <stop stop-color="#DBFAFF" offset="90.57%"></stop>
- <stop stop-color="#E3FEFF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.000247200374%" y1="50.0000766%" x2="99.9999407%" y2="50.0000766%" id="linearGradient-122">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-74.9833636%" y1="50.000225%" x2="25.0164328%" y2="50.000225%" id="linearGradient-123">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.08%" y1="50.0007924%" x2="2.46%" y2="50.0007924%" id="linearGradient-124">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0086281%" y1="323.144953%" x2="50.0086281%" y2="-103.591458%" id="linearGradient-125">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9956841%" y1="323.178679%" x2="49.9956841%" y2="-103.60164%" id="linearGradient-126">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.002158%" y1="323.221839%" x2="50.002158%" y2="-103.657747%" id="linearGradient-127">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0086319%" y1="323.217523%" x2="50.0086319%" y2="-103.651273%" id="linearGradient-128">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0064711%" y1="323.108283%" x2="50.0064711%" y2="-103.54616%" id="linearGradient-129">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9892148%" y1="323.192407%" x2="49.9892148%" y2="-103.602243%" id="linearGradient-130">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9956822%" y1="323.395941%" x2="49.9956822%" y2="-103.719775%" id="linearGradient-131">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0064711%" y1="323.091027%" x2="50.0064711%" y2="-103.554789%" id="linearGradient-132">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9913644%" y1="323.329016%" x2="49.9913644%" y2="-103.726252%" id="linearGradient-133">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50%" y1="323.101812%" x2="50%" y2="-103.544003%" id="linearGradient-134">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0086319%" y1="323.288735%" x2="50.0086319%" y2="-103.640483%" id="linearGradient-135">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0037327%" y1="323.368794%" x2="50.0037327%" y2="-103.678611%" id="linearGradient-136">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0064739%" y1="323.247734%" x2="50.0064739%" y2="-103.621062%" id="linearGradient-137">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.001865%" y1="323.177919%" x2="50.001865%" y2="-103.593808%" id="linearGradient-138">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.00373%" y1="323.105185%" x2="50.00373%" y2="-103.535994%" id="linearGradient-139">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0086319%" y1="323.39016%" x2="50.0086319%" y2="-103.690117%" id="linearGradient-140">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0064739%" y1="323.202417%" x2="50.0064739%" y2="-103.577902%" id="linearGradient-141">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.997842%" y1="323.139836%" x2="49.997842%" y2="-103.638325%" id="linearGradient-142">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.014917%" y1="323.19276%" x2="50.014917%" y2="-103.601418%" id="linearGradient-143">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.99627%" y1="323.11451%" x2="49.99627%" y2="-103.534129%" id="linearGradient-144">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0130524%" y1="323.141898%" x2="50.0130524%" y2="-103.593138%" id="linearGradient-145">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9915374%" y1="-2.61072848%" x2="49.9915374%" y2="70.3426227%" id="linearGradient-146">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9943583%" y1="-2.61055029%" x2="49.9943583%" y2="70.3429852%" id="linearGradient-147">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0084446%" y1="-2.61042121%" x2="50.0084446%" y2="70.3427904%" id="linearGradient-148">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0130548%" y1="-2.61025337%" x2="50.0130548%" y2="70.3423949%" id="linearGradient-149">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0056402%" y1="-2.61074284%" x2="50.0056402%" y2="70.3422145%" id="linearGradient-150">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9971791%" y1="-2.6106974%" x2="49.9971791%" y2="70.3423746%" id="linearGradient-151">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9999423%" y1="132.436122%" x2="49.9999423%" y2="18.0382348%" id="linearGradient-152">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9997831%" y1="-106.025695%" x2="49.9997831%" y2="163.045954%" id="linearGradient-153">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="45.93%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9997927%" y1="102.610819%" x2="49.9997927%" y2="29.6574535%" id="linearGradient-154">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0000345%" y1="31.865305%" x2="50.0000345%" y2="203.854684%" id="linearGradient-155">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9998587%" y1="-106.023086%" x2="49.9998587%" y2="163.044798%" id="linearGradient-156">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="45.93%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-16.1762527%" y1="49.9998097%" x2="180.77305%" y2="49.9998097%" id="linearGradient-157">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-131.277951%" y1="50.0001739%" x2="54.6771047%" y2="50.0001739%" id="linearGradient-158">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-259.838891%" y1="50.0003822%" x2="39.904112%" y2="50.0003822%" id="linearGradient-159">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-170.748631%" y1="49.9974843%" x2="-70.7493872%" y2="49.9974843%" id="linearGradient-160">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-178.17156%" y1="50.0005811%" x2="-78.1723159%" y2="50.0005811%" id="linearGradient-161">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-201.371357%" y1="50.0018661%" x2="-101.372113%" y2="50.0018661%" id="linearGradient-162">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-21.0753131%" y1="-2.32696555%" x2="62.2769193%" y2="59.474086%" id="linearGradient-163">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#30E4E5" offset="61.15%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9998995%" y1="-143.615238%" x2="49.9998995%" y2="45.6466329%" id="linearGradient-164">
- <stop stop-color="#30E4E5" offset="61.15%"></stop>
- <stop stop-color="#2AFADF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="498.310794%" y1="50.0001004%" x2="48.179862%" y2="50.0001004%" id="linearGradient-165">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-230.915145%" y1="49.9997163%" x2="45.8651534%" y2="49.9997163%" id="linearGradient-166">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-517.263276%" y1="50.0003575%" x2="-183.613187%" y2="50.0003575%" id="linearGradient-167">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#12A6F7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.998714%" y1="-91.4591087%" x2="49.998714%" y2="29.7079874%" id="linearGradient-168">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="48.7360683%" y1="-300.163388%" x2="49.4564558%" y2="-100.504122%" id="linearGradient-169">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9948973%" y1="-108.260672%" x2="49.9948973%" y2="30.2479279%" id="linearGradient-170">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9987305%" y1="-100.941794%" x2="49.9987305%" y2="30.4484243%" id="linearGradient-171">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.999766%" y1="12.4417392%" x2="49.999766%" y2="57.4006927%" id="linearGradient-172">
- <stop stop-color="#30E4E5" offset="0%"></stop>
- <stop stop-color="#2AFADF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="196.304957%" y1="49.9996836%" x2="-359.093654%" y2="49.9996836%" id="linearGradient-173">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-164.894941%" y1="50.0001767%" x2="64.6717234%" y2="50.0001767%" id="linearGradient-174">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-145.619933%" y1="50.0000252%" x2="-45.6202731%" y2="50.0000252%" id="linearGradient-175">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-87.1187368%" y1="49.9993742%" x2="12.882297%" y2="49.9993742%" id="linearGradient-176">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-139.086948%" y1="50.0004975%" x2="91.219094%" y2="50.0004975%" id="linearGradient-177">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#30E5E5" offset="75.28%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-142.553824%" y1="50.0016928%" x2="-42.5512868%" y2="50.0016928%" id="linearGradient-178">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.000164%" y1="22.1603239%" x2="50.000164%" y2="67.1192563%" id="linearGradient-179">
- <stop stop-color="#30E4E5" offset="0%"></stop>
- <stop stop-color="#2AFADF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-234.303955%" y1="49.9997578%" x2="99.1375539%" y2="49.9997578%" id="linearGradient-180">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#30E4E5" offset="61.15%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0004433%" y1="17.5204297%" x2="50.0004433%" y2="78.1526738%" id="linearGradient-181">
- <stop stop-color="#30E4E5" offset="0%"></stop>
- <stop stop-color="#2AFADF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-167.631994%" y1="49.9999957%" x2="117.137222%" y2="49.9999957%" id="linearGradient-182">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-48.5312886%" y1="50.0003572%" x2="51.4687435%" y2="50.0003572%" id="linearGradient-183">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-81.4479041%" y1="49.9996035%" x2="18.5529564%" y2="49.9996035%" id="linearGradient-184">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0000867%" y1="22.1606604%" x2="50.0000867%" y2="67.1195449%" id="linearGradient-185">
- <stop stop-color="#30E4E5" offset="0%"></stop>
- <stop stop-color="#2AFADF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0155602%" y1="323.272822%" x2="50.0155602%" y2="-103.729253%" id="linearGradient-186">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9896266%" y1="323.272822%" x2="49.9896266%" y2="-103.724066%" id="linearGradient-187">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9948133%" y1="323.0861%" x2="49.9948133%" y2="-103.672199%" id="linearGradient-188">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0207469%" y1="323.205394%" x2="50.0207469%" y2="-103.552905%" id="linearGradient-189">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9896319%" y1="323.1639%" x2="49.9896319%" y2="-103.620332%" id="linearGradient-190">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50%" y1="323.343718%" x2="50%" y2="-103.639668%" id="linearGradient-191">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0126199%" y1="323.104493%" x2="50.0126199%" y2="-103.543665%" id="linearGradient-192">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50%" y1="323.153244%" x2="50%" y2="-103.590003%" id="linearGradient-193">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.997476%" y1="323.218072%" x2="49.997476%" y2="-103.649672%" id="linearGradient-194">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0048948%" y1="323.179964%" x2="50.0048948%" y2="-103.600914%" id="linearGradient-195">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.997476%" y1="323.2105%" x2="49.997476%" y2="-103.541141%" id="linearGradient-196">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00925263832%" y1="49.9999312%" x2="99.9995616%" y2="49.9999312%" id="linearGradient-197">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00956764562%" y1="49.9965437%" x2="99.9877991%" y2="49.9965437%" id="linearGradient-198">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00456901224%" y1="49.9983543%" x2="99.997925%" y2="49.9983543%" id="linearGradient-199">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="8.52042772e-05%" y1="49.99929%" x2="100.00017%" y2="49.99929%" id="linearGradient-200">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.011243845%" y1="49.9983233%" x2="100.00349%" y2="49.9983233%" id="linearGradient-201">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.000164656485%" y1="49.9994542%" x2="100%" y2="49.9994542%" id="linearGradient-202">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9968939%" y1="50.0024738%" x2="-0.00957109425%" y2="50.0024738%" id="linearGradient-203">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9983237%" y1="50.0035857%" x2="-0.00814130706%" y2="50.0035857%" id="linearGradient-204">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.002613%" y1="50.001579%" x2="-0.00528173268%" y2="50.001579%" id="linearGradient-205">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.004043%" y1="50.0048034%" x2="-0.0024221583%" y2="50.0048034%" id="linearGradient-206">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.005473%" y1="49.999355%" x2="-0.00385194549%" y2="49.999355%" id="linearGradient-207">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9940352%" y1="50.001579%" x2="-0.00242181203%" y2="50.001579%" id="linearGradient-208">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9954648%" y1="50.0036914%" x2="0.000437353551%" y2="50.0036914%" id="linearGradient-209">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9840281%" y1="50.0013618%" x2="-0.0109993088%" y2="50.0013618%" id="linearGradient-210">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="4653.19272%" y1="-7455.22791%" x2="4629.89508%" y2="-7417.24235%" id="linearGradient-211">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00103949324%" y1="49.9991232%" x2="100.000094%" y2="49.9991232%" id="linearGradient-212">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00156189601%" y1="50.0009975%" x2="99.9971081%" y2="50.0009975%" id="linearGradient-213">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00268853633%" y1="49.9974485%" x2="100.003853%" y2="49.9974485%" id="linearGradient-214">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00153839331%" y1="49.9975714%" x2="100.000881%" y2="49.9975714%" id="linearGradient-215">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00310605242%" y1="50.000645%" x2="100.011001%" y2="50.000645%" id="linearGradient-216">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0%" y1="50.0001076%" x2="99.9998057%" y2="50.0001076%" id="linearGradient-217">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.000121901418%" y1="50%" x2="99.9996952%" y2="50%" id="linearGradient-218">
- <stop stop-color="#B3FFAB" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00690245791%" y1="49.9986707%" x2="100.000992%" y2="49.9986707%" id="linearGradient-219">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00976203229%" y1="50.0052319%" x2="99.9995626%" y2="50.0052319%" id="linearGradient-220">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00167626523%" y1="50.0010005%" x2="100.011001%" y2="50.0010005%" id="linearGradient-221">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00118330915%" y1="50.0054489%" x2="100.008141%" y2="50.0054489%" id="linearGradient-222">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00690245791%" y1="50.0041198%" x2="100.000992%" y2="50.0041198%" id="linearGradient-223">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0083322451%" y1="50.0043368%" x2="99.9995626%" y2="50.0043368%" id="linearGradient-224">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00167626523%" y1="49.9940847%" x2="100.011001%" y2="49.9940847%" id="linearGradient-225">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.000246478043%" y1="50.0021126%" x2="100.008141%" y2="50.0021126%" id="linearGradient-226">
- <stop stop-color="#B3FFAB" offset="0%"></stop>
- <stop stop-color="#B3FFAB" offset="0.54%"></stop>
- <stop stop-color="#B0FFAD" offset="2.15%"></stop>
- <stop stop-color="#6DFFCC" offset="36.71%"></stop>
- <stop stop-color="#3CFFE3" offset="65.69%"></stop>
- <stop stop-color="#1DFFF2" offset="87.64%"></stop>
- <stop stop-color="#12FFF7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.002364%" y1="49.9972791%" x2="-0.000976182191%" y2="49.9972791%" id="linearGradient-227">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.033828%" y1="50.0108858%" x2="0.0260983213%" y2="50.0108858%" id="linearGradient-228">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.000232147463%" y1="50.0005457%" x2="100.000555%" y2="50.0005457%" id="linearGradient-229">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.657961763%" y1="54.8549371%" x2="55.6566923%" y2="49.4431968%" id="linearGradient-230">
- <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#1C22A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.7026334%" y1="53.4452425%" x2="102.139263%" y2="31.7399823%" id="linearGradient-231">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-93.2146711%" y1="-33.3990327%" x2="304.756003%" y2="167.042282%" id="linearGradient-232">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="89.0528225%" y1="50.0002542%" x2="13.1403105%" y2="50.0002542%" id="linearGradient-233">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00216550566%" y1="50.0028652%" x2="100.000654%" y2="50.0028652%" id="linearGradient-234">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00179401159%" y1="50.0020862%" x2="100.000897%" y2="50.0020862%" id="linearGradient-235">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-85.253772%" y1="49.9850408%" x2="14.7360516%" y2="49.9850408%" id="linearGradient-236">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.0172249506%" y1="49.9980541%" x2="100.008971%" y2="49.9980541%" id="linearGradient-237">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9847909%" y1="323.110266%" x2="49.9847909%" y2="-103.646388%" id="linearGradient-238">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0132042%" y1="323.169014%" x2="50.0132042%" y2="-103.613556%" id="linearGradient-239">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9885845%" y1="323.203957%" x2="49.9885845%" y2="-103.546423%" id="linearGradient-240">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9885845%" y1="323.238204%" x2="49.9885845%" y2="-103.671994%" id="linearGradient-241">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="41.04%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9946908%" y1="50.0001095%" x2="0.00300534822%" y2="50.0001095%" id="linearGradient-242">
- <stop stop-color="#200E40" offset="0%"></stop>
- <stop stop-color="#1F0C42" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9997523%" y1="50.0001931%" x2="0.00485340785%" y2="50.0001931%" id="linearGradient-243">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="136.785185%" y1="50.0003553%" x2="36.7857496%" y2="50.0003553%" id="linearGradient-244">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-37.1166673%" y1="50.0002413%" x2="119.285309%" y2="50.0002413%" id="linearGradient-245">
- <stop stop-color="#3E197F" offset="0%"></stop>
- <stop stop-color="#7A43B5" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-37.1165332%" y1="50%" x2="119.286078%" y2="50%" id="linearGradient-246">
- <stop stop-color="#3E197F" offset="0%"></stop>
- <stop stop-color="#7A43B5" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-37.1166673%" y1="50.0006647%" x2="119.285309%" y2="50.0006647%" id="linearGradient-247">
- <stop stop-color="#3E197F" offset="0%"></stop>
- <stop stop-color="#7A43B5" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-37.1165332%" y1="50.0001941%" x2="119.286078%" y2="50.0001941%" id="linearGradient-248">
- <stop stop-color="#3E197F" offset="0%"></stop>
- <stop stop-color="#7A43B5" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="66.7844998%" y1="61.3031554%" x2="-15.0734268%" y2="-9.55331657%" id="linearGradient-249">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="21.0647381%" y1="95.3721863%" x2="64.9992493%" y2="24.875836%" id="linearGradient-250">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-7415.15517%" y1="2975.48329%" x2="-7311.29732%" y2="2934.80848%" id="linearGradient-251">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.00225%" y1="50.0009079%" x2="0.00130587959%" y2="50.0009079%" id="linearGradient-252">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="80.3510887%" y1="50.0015181%" x2="180.349902%" y2="50.0015181%" id="linearGradient-253">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00173335154%" y1="50.0003251%" x2="100.000558%" y2="50.0003251%" id="linearGradient-254">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.000274076787%" y1="50.0015345%" x2="100.001382%" y2="50.0015345%" id="linearGradient-255">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="34.8572902%" y1="101.318843%" x2="49.6851694%" y2="51.0068613%" id="linearGradient-256">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="228.55526%" y1="50.00071%" x2="-174.041045%" y2="50.00071%" id="linearGradient-257">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#6A36C8" offset="2.24%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00928284552%" y1="49.9985859%" x2="99.9956919%" y2="49.9985859%" id="linearGradient-258">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.023617535%" y1="50.0100486%" x2="99.9880046%" y2="50.0100486%" id="linearGradient-259">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-85.3013686%" y1="50.0063884%" x2="14.7097553%" y2="50.0063884%" id="linearGradient-260">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-85.2833573%" y1="50.020441%" x2="14.7317401%" y2="50.020441%" id="linearGradient-261">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-85.2833573%" y1="50.0169597%" x2="14.7317401%" y2="50.0169597%" id="linearGradient-262">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-85.3154314%" y1="50.0120057%" x2="14.6999763%" y2="50.0120057%" id="linearGradient-263">
- <stop stop-color="#733ADC" offset="0%"></stop>
- <stop stop-color="#382251" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.023617535%" y1="49.9856281%" x2="99.9880046%" y2="49.9856281%" id="linearGradient-264">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0116848578%" y1="50.0025282%" x2="99.999439%" y2="50.0025282%" id="linearGradient-265">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0116848578%" y1="50.0094176%" x2="99.999439%" y2="50.0094176%" id="linearGradient-266">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0355223473%" y1="49.9910594%" x2="99.9838538%" y2="49.9910594%" id="linearGradient-267">
- <stop stop-color="#4C82FF" offset="0%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0007344%" y1="220.900168%" x2="50.0007344%" y2="-42.5134869%" id="linearGradient-268">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9989914%" y1="49.9992876%" x2="-0.000307947826%" y2="49.9992876%" id="linearGradient-269">
- <stop stop-color="#3A4CD3" offset="0%"></stop>
- <stop stop-color="#230E6F" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.001015%" y1="49.9964954%" x2="0.000157271699%" y2="49.9964954%" id="linearGradient-270">
- <stop stop-color="#2200C1" offset="10.75%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.00353%" y1="50.0001946%" x2="-0.00011840719%" y2="50.0001946%" id="linearGradient-271">
- <stop stop-color="#3A4CD3" offset="0%"></stop>
- <stop stop-color="#230E6F" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="100.001522%" y1="49.9990761%" x2="-0.000119103972%" y2="49.9990761%" id="linearGradient-272">
- <stop stop-color="#2200C1" offset="10.75%"></stop>
- <stop stop-color="#2AF9DE" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="47.4744593%" y1="31.3657772%" x2="53.0351281%" y2="92.968025%" id="linearGradient-273">
- <stop stop-color="#110B0E" offset="0%"></stop>
- <stop stop-color="#110B29" stop-opacity="0" offset="88.98%"></stop>
- </linearGradient>
- <linearGradient x1="16.6712733%" y1="86.5668326%" x2="69.0961209%" y2="47.8858675%" id="linearGradient-274">
- <stop stop-color="#3A4CD3" offset="0%"></stop>
- <stop stop-color="#230E6F" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9994357%" y1="83.8155822%" x2="49.9994357%" y2="-12.6305291%" id="linearGradient-275">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9970482%" y1="9.09025695%" x2="49.9970482%" y2="-169.888918%" id="linearGradient-276">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9994206%" y1="178.664456%" x2="49.9994206%" y2="-39.0468201%" id="linearGradient-277">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-4.98381401e-05%" y1="49.9999355%" x2="100.000175%" y2="49.9999355%" id="linearGradient-278">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.000129535856%" y1="49.9999004%" x2="100.000289%" y2="49.9999004%" id="linearGradient-279">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.000593714856%" y1="50.0003443%" x2="100.000194%" y2="50.0003443%" id="linearGradient-280">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9988917%" y1="136.36123%" x2="49.9988917%" y2="43.3242654%" id="linearGradient-281">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0143745%" y1="127.932657%" x2="50.0143745%" y2="54.3394038%" id="linearGradient-282">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9940683%" y1="115.354772%" x2="49.9940683%" y2="37.2044047%" id="linearGradient-283">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.9237696%" y1="121.537676%" x2="50.003101%" y2="47.9536006%" id="linearGradient-284">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="50.0083933%" y1="119.416628%" x2="50.0083933%" y2="48.9696052%" id="linearGradient-285">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00207047996%" y1="50.0018404%" x2="100.001201%" y2="50.0018404%" id="linearGradient-286">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00317729675%" y1="49.9969672%" x2="100.003177%" y2="49.9969672%" id="linearGradient-287">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00173445207%" y1="49.9983962%" x2="99.9992755%" y2="49.9983962%" id="linearGradient-288">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.00395170415%" y1="49.9968087%" x2="100.002293%" y2="49.9968087%" id="linearGradient-289">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.0024606436%" y1="50.0006569%" x2="100.002362%" y2="50.0006569%" id="linearGradient-290">
- <stop stop-color="#4C83FF" offset="0%"></stop>
- <stop stop-color="#2AFADF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="44.6977828%" y1="27.974527%" x2="54.4865146%" y2="68.6361803%" id="linearGradient-291">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#06B3F5" stop-opacity="0.9171" offset="8.78%"></stop>
- <stop stop-color="#1B70DF" stop-opacity="0.5926" offset="41.06%"></stop>
- <stop stop-color="#2B3ECF" stop-opacity="0.3207" offset="68.1%"></stop>
- <stop stop-color="#341FC6" stop-opacity="0.1152" offset="88.54%"></stop>
- <stop stop-color="#3814C2" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="59.4762758%" y1="19.8899709%" x2="41.9914742%" y2="74.1023367%" id="linearGradient-292">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#06B3F5" stop-opacity="0.9171" offset="8.78%"></stop>
- <stop stop-color="#1B70DF" stop-opacity="0.5926" offset="41.06%"></stop>
- <stop stop-color="#2B3ECF" stop-opacity="0.3207" offset="68.1%"></stop>
- <stop stop-color="#341FC6" stop-opacity="0.1152" offset="88.54%"></stop>
- <stop stop-color="#3814C2" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.25562925%" y1="49.9996987%" x2="100.25526%" y2="49.9996987%" id="linearGradient-293">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-59.8732669%" y1="43.88288%" x2="123.279409%" y2="57.7819101%" id="linearGradient-294">
- <stop stop-color="#240EA8" offset="0%"></stop>
- <stop stop-color="#1811B7" stop-opacity="0.5227" offset="47.73%"></stop>
- <stop stop-color="#0F13C2" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="78.3088386%" y1="113.640326%" x2="28.9447752%" y2="7.43421955%" id="linearGradient-295">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#00B6F8" offset="12.37%"></stop>
- <stop stop-color="#0085F1" offset="52.42%"></stop>
- <stop stop-color="#0066EC" offset="82.9%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-40.5813327%" y1="35.2819496%" x2="131.199849%" y2="62.7605522%" id="linearGradient-296">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-8.54492058%" y1="50.5949959%" x2="138.028819%" y2="49.1176549%" id="linearGradient-297">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="78.3088386%" y1="113.640216%" x2="28.9447752%" y2="7.4339998%" id="linearGradient-298">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#00B6F8" offset="12.37%"></stop>
- <stop stop-color="#0085F1" offset="52.42%"></stop>
- <stop stop-color="#0066EC" offset="82.9%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-40.5813327%" y1="35.2838606%" x2="131.199849%" y2="62.7622148%" id="linearGradient-299">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-8.54492058%" y1="50.5953725%" x2="138.028819%" y2="49.1179937%" id="linearGradient-300">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-8.54530164%" y1="50.5946706%" x2="138.029418%" y2="49.1173402%" id="linearGradient-301">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5793621%" y1="-1.70201008%" x2="76.3478416%" y2="101.017445%" id="linearGradient-302">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8492658%" y1="20.1894553%" x2="58.2577854%" y2="99.1649009%" id="linearGradient-303">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5793621%" y1="-1.70719583%" x2="76.3478416%" y2="101.011222%" id="linearGradient-304">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8492658%" y1="20.1832232%" x2="58.2577854%" y2="99.1586688%" id="linearGradient-305">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4232924%" y1="-1.70512153%" x2="6.50070342%" y2="128.645079%" id="linearGradient-306">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#006FED" offset="22.83%"></stop>
- <stop stop-color="#00A2F5" offset="69.2%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1516882%" y1="20.1857161%" x2="41.7431687%" y2="99.1611617%" id="linearGradient-307">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4232924%" y1="-1.70097293%" x2="3.4064691%" y2="133.634814%" id="linearGradient-308">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1516882%" y1="20.1919481%" x2="41.7431687%" y2="99.1661473%" id="linearGradient-309">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1996612%" y1="50.01108%" x2="126.171247%" y2="49.5396613%" id="linearGradient-310">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5414458%" y1="43.7179299%" x2="94.1008688%" y2="58.5016604%" id="linearGradient-311">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1996612%" y1="50.0097504%" x2="126.171247%" y2="49.5383317%" id="linearGradient-312">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5414458%" y1="43.7181364%" x2="94.1008688%" y2="58.5018669%" id="linearGradient-313">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5740532%" y1="-1.69889862%" x2="76.3443023%" y2="101.01952%" id="linearGradient-314">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8476757%" y1="20.1931946%" x2="58.2561952%" y2="99.1686402%" id="linearGradient-315">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5740532%" y1="-1.70408438%" x2="76.3443023%" y2="101.014334%" id="linearGradient-316">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8476757%" y1="20.1869625%" x2="58.2561952%" y2="99.1624081%" id="linearGradient-317">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4215227%" y1="-1.70304723%" x2="9.44628707%" y2="123.90115%" id="linearGradient-318">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0070ED" offset="23.53%"></stop>
- <stop stop-color="#00A5F6" offset="71.74%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1510522%" y1="20.1894553%" x2="41.7428507%" y2="99.1636545%" id="linearGradient-319">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4215227%" y1="-1.70823298%" x2="12.5299035%" y2="118.92801%" id="linearGradient-320">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0067EC" offset="17.3%"></stop>
- <stop stop-color="#0086F1" offset="48.4%"></stop>
- <stop stop-color="#00B9F9" offset="89.48%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1510522%" y1="20.1819768%" x2="41.7428507%" y2="99.1574224%" id="linearGradient-321">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1925578%" y1="50.01108%" x2="126.163598%" y2="49.5396613%" id="linearGradient-322">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5398066%" y1="43.7179299%" x2="94.099776%" y2="58.5016604%" id="linearGradient-323">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.1925578%" y1="50.0112278%" x2="126.163598%" y2="49.539809%" id="linearGradient-324">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5398066%" y1="43.7181364%" x2="94.099776%" y2="58.5018669%" id="linearGradient-325">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6144706%" y1="-21.2525525%" x2="91.0899367%" y2="178.384413%" id="linearGradient-326">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6064632%" y1="-21.2511889%" x2="91.0819293%" y2="178.385776%" id="linearGradient-327">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6222534%" y1="-21.2449912%" x2="91.0977194%" y2="178.390537%" id="linearGradient-328">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.614397%" y1="-21.244601%" x2="91.0907018%" y2="178.39155%" id="linearGradient-329">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="50%" x2="100.00152%" y2="50%" id="linearGradient-330">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="50.0006179%" x2="100.00152%" y2="50.0006179%" id="linearGradient-331">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="50.0020886%" x2="625.411426%" y2="50.0020886%" id="linearGradient-332">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="49.9937343%" x2="625.411426%" y2="49.9937343%" id="linearGradient-333">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="49.9981465%" x2="100.001013%" y2="49.9981465%" id="linearGradient-334">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.0010131199%" y1="50.0012356%" x2="100.001013%" y2="50.0012356%" id="linearGradient-335">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="49.9958229%" x2="625.411426%" y2="49.9958229%" id="linearGradient-336">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-269.748428%" y1="50.0062657%" x2="625.411426%" y2="50.0062657%" id="linearGradient-337">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="26.6173819%" y1="-21.2534326%" x2="91.0936866%" y2="178.382718%" id="linearGradient-338">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.6103643%" y1="-21.2538571%" x2="91.086669%" y2="178.383731%" id="linearGradient-339">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00253279976%" y1="49.9993821%" x2="99.9994934%" y2="49.9993821%" id="linearGradient-340">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00253279976%" y1="49.9993822%" x2="99.9994934%" y2="49.9993822%" id="linearGradient-341">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-269.756289%" y1="49.9916458%" x2="625.400943%" y2="49.9916458%" id="linearGradient-342">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="-269.756289%" y1="50%" x2="625.400943%" y2="50%" id="linearGradient-343">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0066EC" offset="17.1%"></stop>
- <stop stop-color="#0085F1" offset="47.58%"></stop>
- <stop stop-color="#00B6F8" offset="87.63%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="12.5802469%" y1="-1.70408438%" x2="76.3487265%" y2="101.015371%" id="linearGradient-344">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8495839%" y1="20.1869625%" x2="58.2577854%" y2="99.1624081%" id="linearGradient-345">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="12.5802469%" y1="-1.69889862%" x2="76.3487265%" y2="101.01952%" id="linearGradient-346">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="39.8495839%" y1="20.1931946%" x2="58.2577854%" y2="99.1686402%" id="linearGradient-347">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4268317%" y1="-1.70719583%" x2="9.4507112%" y2="123.895964%" id="linearGradient-348">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0070ED" offset="23.53%"></stop>
- <stop stop-color="#00A5F6" offset="71.74%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1529604%" y1="20.1832232%" x2="41.7444408%" y2="99.1586688%" id="linearGradient-349">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="87.4268317%" y1="-1.70304723%" x2="12.5343276%" y2="118.933195%" id="linearGradient-350">
- <stop stop-color="#005BEA" offset="0%"></stop>
- <stop stop-color="#0067EC" offset="17.3%"></stop>
- <stop stop-color="#0086F1" offset="48.4%"></stop>
- <stop stop-color="#00B9F9" offset="89.48%"></stop>
- <stop stop-color="#00C6FB" offset="99.46%"></stop>
- </linearGradient>
- <linearGradient x1="60.1529604%" y1="20.1894553%" x2="41.7444408%" y2="99.1636545%" id="linearGradient-351">
- <stop stop-color="#009FFC" offset="0.68%"></stop>
- <stop stop-color="#1595F4" offset="55.86%"></stop>
- <stop stop-color="#2090F0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.2007541%" y1="50.0103414%" x2="126.172887%" y2="49.5389226%" id="linearGradient-352">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5425387%" y1="43.7189624%" x2="94.1025081%" y2="58.5026928%" id="linearGradient-353">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="26.2007541%" y1="50.0104891%" x2="126.172887%" y2="49.5390704%" id="linearGradient-354">
- <stop stop-color="#36BBC0" offset="0.54%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="41.5425387%" y1="43.7191688%" x2="94.1025081%" y2="58.5028993%" id="linearGradient-355">
- <stop stop-color="#55FFB5" offset="0.54%"></stop>
- <stop stop-color="#6DFFCB" offset="58.8%"></stop>
- <stop stop-color="#78FFD6" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="54.2973159%" y1="69.2959163%" x2="34.1365465%" y2="-15.1345038%" id="linearGradient-356">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="65.1708352%" y1="101.193951%" x2="13.1446186%" y2="-71.4309403%" id="linearGradient-357">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <polygon id="path-358" points="22.5330532 38.8893537 0.582124746 26.0795551 0.773315769 0.541198872 22.7242443 13.3509974"></polygon>
- <linearGradient x1="54.2953788%" y1="69.2985288%" x2="34.1348587%" y2="-15.1319725%" id="linearGradient-360">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="36.7125017%" y1="127.257616%" x2="71.9878657%" y2="-79.9354346%" id="linearGradient-361">
- <stop stop-color="#52E5E7" offset="0.68%"></stop>
- <stop stop-color="#130CB7" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.296537%" y1="92.3002702%" x2="50.5327184%" y2="-0.769087995%" id="linearGradient-362">
- <stop stop-color="#FFFFFF" offset="0%"></stop>
- <stop stop-color="#6AF9BE" stop-opacity="0.9711" offset="14.51%"></stop>
- <stop stop-color="#5AB1C6" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.657961763%" y1="55.3107913%" x2="55.6566923%" y2="49.3909158%" id="linearGradient-363">
- <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#1C22A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-81.4942262%" y1="43.0919639%" x2="61.438615%" y2="49.6111849%" id="linearGradient-364">
- <stop stop-color="#1E2275" offset="0%"></stop>
- <stop stop-color="#0046BC" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="94.5012442%" y1="50.1729675%" x2="13.2944211%" y2="49.8681371%" id="linearGradient-365">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.20826217%" y1="50.0764151%" x2="61.4954829%" y2="50.0139415%" id="linearGradient-366">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.4935971,0.593159727 C52.4894418,0.60666424 52.4868448,0.620688156 52.4816508,0.634712073 C52.4406178,0.754175065 52.3782893,0.87156044 52.3024563,0.986348794 C52.2889518,1.00712497 52.2754473,1.02790114 52.2609039,1.04815791 C52.1783187,1.16190745 52.0791124,1.27254057 51.9617271,1.37849905 C51.8853746,1.44757983 51.788246,1.51042775 51.6973503,1.57483388 C51.6189202,1.63041014 51.5524365,1.68962224 51.4636183,1.74156267 L24.3600624,17.5439195 C24.19645,17.6394899 24.0177749,17.720517 23.8339058,17.7942724 C23.7861206,17.8134904 23.7372966,17.8316695 23.6879532,17.8498487 C23.5736842,17.891401 23.4531824,17.9251623 23.3337194,17.9589236 C23.2101012,17.9937237 23.0854442,18.0264461 22.9571513,18.0529358 C22.8060047,18.0841 22.6543386,18.1126673 22.4985173,18.1324046 C22.4616396,18.1370793 22.4252813,18.1438315 22.3878842,18.1479868 C22.1785642,18.1708405 21.9666473,18.181748 21.7542109,18.1843451 C21.7204496,18.1843451 21.6866884,18.1848645 21.6529271,18.1848645 C21.4436071,18.1838257 21.2348066,18.1723988 21.0275643,18.1511032 C20.9964,18.1479868 20.9652358,18.1443509 20.9340715,18.1407151 C20.7289068,18.1163031 20.5263391,18.0820224 20.3289655,18.037873 C20.2926072,18.0295626 20.2567683,18.0202133 20.2209294,18.0113834 C20.0406961,17.9672341 19.8661762,17.9137354 19.6973698,17.8529651 C19.6672444,17.8420576 19.6355607,17.8337471 19.6059547,17.8223203 C19.403387,17.7444096 19.2101686,17.6550721 19.0309741,17.5517106 L1.45173506,7.43579217 C0.707428677,7.00728361 0.334496379,6.44372993 0.335535187,5.88121506 L0.312161993,22.3369826 C0.311123185,22.9000168 0.684055483,23.4630511 1.42836187,23.8915597 L19.0076009,34.0079975 C19.1779655,34.1061649 19.3602764,34.1929054 19.552456,34.2682191 C19.5623247,34.2718549 19.5732322,34.2744519 19.5831009,34.2786072 C19.6127069,34.2900341 19.6443906,34.2983445 19.674516,34.309252 C19.7846298,34.3492461 19.8952629,34.3897597 20.0105706,34.4224822 C20.0718603,34.4396225 20.1357471,34.453127 20.198595,34.4681897 C20.2344339,34.4770196 20.2697534,34.4863689 20.3061117,34.4946794 C20.3388342,34.501951 20.3705178,34.5113003 20.4037597,34.5185719 C20.5268585,34.5440228 20.6515156,34.5653183 20.7772114,34.5829781 C20.8213608,34.5892109 20.8670683,34.5928468 20.9117371,34.5980408 C20.9434208,34.6016766 20.9740656,34.6053125 21.0057493,34.6084289 C21.0519763,34.6131035 21.0976839,34.6198558 21.1439108,34.6234916 C21.2670097,34.6333603 21.3906279,34.6395932 21.5147655,34.6427096 C21.5537208,34.6437484 21.5921568,34.6416708 21.6311121,34.6421902 C21.6648734,34.6421902 21.6981152,34.6421902 21.7313571,34.6416708 C21.7874528,34.6411514 21.8440679,34.6427096 21.9001635,34.640632 C22.0398833,34.6354379 22.1790836,34.6260886 22.3177646,34.6120647 C22.3338661,34.6105065 22.3494483,34.6068707 22.3655498,34.6053125 C22.4029469,34.6011572 22.4387858,34.594405 22.4761829,34.5897303 C22.5836996,34.5757064 22.6922551,34.5637601 22.7982136,34.5445422 C22.84496,34.5362317 22.8880705,34.5201302 22.9342975,34.5107809 C23.0631098,34.4837719 23.1872474,34.4510494 23.3119045,34.4162493 C23.3773494,34.3975507 23.447469,34.3871627 23.5113557,34.3663865 C23.564335,34.3492461 23.613159,34.3269118 23.6650994,34.3076938 C23.7144428,34.2895146 23.7632668,34.2713355 23.8115714,34.2521175 C23.9954405,34.1778427 24.1735962,34.0973351 24.3372086,34.0017647 L51.4412839,18.1988884 C51.4568661,18.1895391 51.4724482,18.1807092 51.4875109,18.17136 C51.5591887,18.1282494 51.6100903,18.0783866 51.6744965,18.032679 C51.7659116,17.9677535 51.8635596,17.9049055 51.9399121,17.8353054 C51.9471837,17.8285531 51.9580912,17.8233591 51.9648435,17.8166068 C52.0531422,17.7350603 52.1310529,17.6509168 52.1985754,17.5646957 C52.2136381,17.5449583 52.2245456,17.5247016 52.2385696,17.5049642 C52.2536323,17.484188 52.2666174,17.4634119 52.2806413,17.4426357 C52.3034951,17.4078356 52.3305041,17.3740743 52.3502415,17.3387548 C52.3902356,17.2681158 52.4234775,17.1964381 52.4504865,17.1242409 C52.4546417,17.1133334 52.4562,17.1024259 52.4598358,17.0915184 C52.4645104,17.0780139 52.4671075,17.06399 52.4712627,17.0504854 C52.485806,17.0042585 52.5013881,16.9585509 52.5107374,16.9123239 C52.5252807,16.8406461 52.5330718,16.7679295 52.5351494,16.6957323 C52.5356688,16.6848248 52.5356688,16.6739173 52.5356688,16.6624904 L52.559042,0.206722917 C52.5574838,0.335535187 52.5335912,0.464866862 52.4935971,0.593159727 Z" id="path-367"></path>
- <path d="M52.4935971,0.593159727 C52.4894418,0.60666424 52.4868448,0.620688156 52.4816508,0.634712073 C52.4406178,0.754175065 52.3782893,0.87156044 52.3024563,0.986348794 C52.2889518,1.00712497 52.2754473,1.02790114 52.2609039,1.04815791 C52.1783187,1.16190745 52.0791124,1.27254057 51.9617271,1.37849905 C51.8853746,1.44757983 51.788246,1.51042775 51.6973503,1.57483388 C51.6189202,1.63041014 51.5524365,1.68962224 51.4636183,1.74156267 L24.3600624,17.5439195 C24.19645,17.6394899 24.0177749,17.720517 23.8339058,17.7942724 C23.7861206,17.8134904 23.7372966,17.8316695 23.6879532,17.8498487 C23.5736842,17.891401 23.4531824,17.9251623 23.3337194,17.9589236 C23.2101012,17.9937237 23.0854442,18.0264461 22.9571513,18.0529358 C22.8060047,18.0841 22.6543386,18.1126673 22.4985173,18.1324046 C22.4616396,18.1370793 22.4252813,18.1438315 22.3878842,18.1479868 C22.1785642,18.1708405 21.9666473,18.181748 21.7542109,18.1843451 C21.7204496,18.1843451 21.6866884,18.1848645 21.6529271,18.1848645 C21.4436071,18.1838257 21.2348066,18.1723988 21.0275643,18.1511032 C20.9964,18.1479868 20.9652358,18.1443509 20.9340715,18.1407151 C20.7289068,18.1163031 20.5263391,18.0820224 20.3289655,18.037873 C20.2926072,18.0295626 20.2567683,18.0202133 20.2209294,18.0113834 C20.0406961,17.9672341 19.8661762,17.9137354 19.6973698,17.8529651 C19.6672444,17.8420576 19.6355607,17.8337471 19.6059547,17.8223203 C19.403387,17.7444096 19.2101686,17.6550721 19.0309741,17.5517106 L1.45173506,7.43579217 C0.707428677,7.00728361 0.334496379,6.44372993 0.335535187,5.88121506 L0.312161993,22.3369826 C0.311123185,22.9000168 0.684055483,23.4630511 1.42836187,23.8915597 L19.0076009,34.0079975 C19.1779655,34.1061649 19.3602764,34.1929054 19.552456,34.2682191 C19.5623247,34.2718549 19.5732322,34.2744519 19.5831009,34.2786072 C19.6127069,34.2900341 19.6443906,34.2983445 19.674516,34.309252 C19.7846298,34.3492461 19.8952629,34.3897597 20.0105706,34.4224822 C20.0718603,34.4396225 20.1357471,34.453127 20.198595,34.4681897 C20.2344339,34.4770196 20.2697534,34.4863689 20.3061117,34.4946794 C20.3388342,34.501951 20.3705178,34.5113003 20.4037597,34.5185719 C20.5268585,34.5440228 20.6515156,34.5653183 20.7772114,34.5829781 C20.8213608,34.5892109 20.8670683,34.5928468 20.9117371,34.5980408 C20.9434208,34.6016766 20.9740656,34.6053125 21.0057493,34.6084289 C21.0519763,34.6131035 21.0976839,34.6198558 21.1439108,34.6234916 C21.2670097,34.6333603 21.3906279,34.6395932 21.5147655,34.6427096 C21.5537208,34.6437484 21.5921568,34.6416708 21.6311121,34.6421902 C21.6648734,34.6421902 21.6981152,34.6421902 21.7313571,34.6416708 C21.7874528,34.6411514 21.8440679,34.6427096 21.9001635,34.640632 C22.0398833,34.6354379 22.1790836,34.6260886 22.3177646,34.6120647 C22.3338661,34.6105065 22.3494483,34.6068707 22.3655498,34.6053125 C22.4029469,34.6011572 22.4387858,34.594405 22.4761829,34.5897303 C22.5836996,34.5757064 22.6922551,34.5637601 22.7982136,34.5445422 C22.84496,34.5362317 22.8880705,34.5201302 22.9342975,34.5107809 C23.0631098,34.4837719 23.1872474,34.4510494 23.3119045,34.4162493 C23.3773494,34.3975507 23.447469,34.3871627 23.5113557,34.3663865 C23.564335,34.3492461 23.613159,34.3269118 23.6650994,34.3076938 C23.7144428,34.2895146 23.7632668,34.2713355 23.8115714,34.2521175 C23.9954405,34.1778427 24.1735962,34.0973351 24.3372086,34.0017647 L51.4412839,18.1988884 C51.4568661,18.1895391 51.4724482,18.1807092 51.4875109,18.17136 C51.5591887,18.1282494 51.6100903,18.0783866 51.6744965,18.032679 C51.7659116,17.9677535 51.8635596,17.9049055 51.9399121,17.8353054 C51.9471837,17.8285531 51.9580912,17.8233591 51.9648435,17.8166068 C52.0531422,17.7350603 52.1310529,17.6509168 52.1985754,17.5646957 C52.2136381,17.5449583 52.2245456,17.5247016 52.2385696,17.5049642 C52.2536323,17.484188 52.2666174,17.4634119 52.2806413,17.4426357 C52.3034951,17.4078356 52.3305041,17.3740743 52.3502415,17.3387548 C52.3902356,17.2681158 52.4234775,17.1964381 52.4504865,17.1242409 C52.4546417,17.1133334 52.4562,17.1024259 52.4598358,17.0915184 C52.4645104,17.0780139 52.4671075,17.06399 52.4712627,17.0504854 C52.485806,17.0042585 52.5013881,16.9585509 52.5107374,16.9123239 C52.5252807,16.8406461 52.5330718,16.7679295 52.5351494,16.6957323 C52.5356688,16.6848248 52.5356688,16.6739173 52.5356688,16.6624904 L52.559042,0.206722917 C52.5574838,0.335535187 52.5335912,0.464866862 52.4935971,0.593159727 Z" id="path-369"></path>
- <radialGradient cx="50.0986996%" cy="50.3905142%" fx="50.0986996%" fy="50.3905142%" r="70.4761664%" gradientTransform="translate(0.500987,0.503905),scale(0.579949,1.000000),rotate(-0.078961),translate(-0.500987,-0.503905)" id="radialGradient-371">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <linearGradient x1="96.1706375%" y1="49.4999982%" x2="2.02805147%" y2="51.299718%" id="linearGradient-372">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="96.7011813%" y1="49.9678894%" x2="8.78133576%" y2="50.0392732%" id="linearGradient-373">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.20715092%" y1="50.0770704%" x2="61.4965942%" y2="50.0145968%" id="linearGradient-374">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.4619134,0.711064507 C52.4577582,0.725088423 52.4551612,0.738592936 52.4499671,0.752616852 C52.4089342,0.872079844 52.3466056,0.98946522 52.2707726,1.10425357 C52.2572681,1.12502975 52.2437636,1.14580592 52.2292203,1.16606269 C52.146635,1.27981223 52.0474288,1.39044535 51.9300434,1.49692324 C51.853691,1.56600401 51.7565623,1.62833253 51.6656666,1.69325807 C51.5872365,1.74883433 51.5207528,1.80804642 51.4319347,1.85998685 L24.3283787,17.6628631 C24.1647663,17.7584335 23.9860913,17.8389412 23.8022221,17.913216 C23.7544369,17.932434 23.7056129,17.9511325 23.6562695,17.9687923 C23.5420006,18.0103446 23.4214988,18.0435865 23.3020358,18.0773478 C23.1784175,18.1121479 23.0537605,18.1448703 22.9254676,18.17136 C22.774321,18.2025242 22.6226549,18.2310914 22.4668336,18.2508288 C22.4299559,18.2555035 22.3935976,18.2622557 22.3562005,18.2664109 C22.1468806,18.2892647 21.9349636,18.3001722 21.7225273,18.3027692 C21.688766,18.3032886 21.6550047,18.3032886 21.6212434,18.3032886 C21.4119235,18.3022498 21.2031229,18.2908229 20.9958806,18.2695274 C20.9647164,18.2664109 20.9335521,18.2627751 20.9023878,18.2591393 C20.6972231,18.2347273 20.4946555,18.2004466 20.2972818,18.1562972 C20.2609235,18.1479868 20.2250846,18.1386375 20.1892457,18.1298076 C20.0090124,18.0856582 19.8344926,18.0321596 19.6656862,17.9713893 C19.6355607,17.9604818 19.6038771,17.9521713 19.574271,17.9407444 C19.3717033,17.8628338 19.1784849,17.7734962 18.9992904,17.6701348 L1.4200514,7.55369695 C0.675745013,7.12518839 0.302812716,6.56163471 0.303851524,5.99911984 L0.28047833,22.4548873 C0.279439521,23.0179216 0.652371819,23.5809559 1.3966782,24.0094644 L18.9759172,34.1253829 C19.1462819,34.2235503 19.3285928,34.3102908 19.5207724,34.3856044 C19.530641,34.3897597 19.5415485,34.3918373 19.5514172,34.3959925 C19.5810233,34.4074194 19.6127069,34.4157299 19.6428324,34.4266374 C19.7529461,34.4666315 19.8635792,34.5071451 19.978887,34.5398675 C20.0401767,34.5570079 20.1040634,34.5705124 20.1669113,34.5855751 C20.2027502,34.594405 20.2380697,34.6037543 20.274428,34.6120647 C20.3071505,34.6193364 20.3388342,34.6292051 20.372076,34.6359573 C20.4951749,34.6614081 20.6198319,34.6827037 20.7455277,34.7003635 C20.7896771,34.7065963 20.8353847,34.7102321 20.8800535,34.7154262 C20.9117371,34.719062 20.942382,34.7226978 20.9740656,34.7258143 C21.0202926,34.7304889 21.0660002,34.7372412 21.1122272,34.740877 C21.235326,34.7507457 21.3589442,34.7569785 21.4830819,34.760095 C21.5220372,34.7611338 21.5604731,34.7590561 21.5994284,34.7595756 C21.6331897,34.7595756 21.6664316,34.7590561 21.6996735,34.7590561 C21.7557691,34.7585367 21.8123842,34.760095 21.8684799,34.7580173 C22.0081996,34.7528233 22.1474,34.743474 22.2860809,34.7294501 C22.3021825,34.7278919 22.3177646,34.7242561 22.3338661,34.7226978 C22.3712632,34.7185426 22.4071021,34.7117904 22.4444992,34.7071157 C22.5520159,34.6936112 22.6605714,34.6811455 22.7665299,34.6619275 C22.8132763,34.6530977 22.8563869,34.6375155 22.9026139,34.6276469 C23.0314261,34.6011572 23.1555638,34.5679154 23.2802208,34.5331153 C23.3456657,34.5149361 23.4157853,34.5040286 23.479672,34.4832525 C23.5326513,34.4661121 23.5814753,34.4437777 23.6334157,34.4245598 C23.6827591,34.4063806 23.7315831,34.3882015 23.7798877,34.3689835 C23.9637569,34.2947087 24.1419125,34.214201 24.3055249,34.1186306 L51.4096003,18.3157544 C51.4251824,18.3069245 51.4407645,18.2975752 51.4558272,18.2887453 C51.527505,18.2456348 51.5784067,18.195772 51.6428128,18.1500644 C51.734228,18.0851388 51.831876,18.0222909 51.9082284,17.9526907 C51.9155001,17.9459385 51.9264076,17.9407444 51.9331598,17.9339922 C52.0214585,17.8524457 52.0993692,17.7683022 52.1668918,17.6820811 C52.1819545,17.6623437 52.192862,17.642087 52.2068859,17.6223496 C52.2219486,17.6015734 52.2349337,17.5807972 52.2489576,17.5600211 C52.2718114,17.525221 52.2988205,17.4914597 52.3185578,17.4561402 C52.3585519,17.3855012 52.3917938,17.3138234 52.4188028,17.2416262 C52.4229581,17.2307187 52.4245163,17.2198112 52.4281521,17.2089038 C52.4328268,17.1953992 52.4354238,17.1818947 52.439579,17.1678708 C52.4541223,17.1216438 52.4697045,17.0759363 52.4790537,17.0297093 C52.4935971,16.9580315 52.5013881,16.8858343 52.5034658,16.8131177 C52.5039852,16.8022102 52.5039852,16.7907833 52.5039852,16.7798758 L52.5273584,0.324108292 C52.5263195,0.452920562 52.5019075,0.582771641 52.4619134,0.711064507 Z" id="path-375"></path>
- <path d="M52.4619134,0.711064507 C52.4577582,0.725088423 52.4551612,0.738592936 52.4499671,0.752616852 C52.4089342,0.872079844 52.3466056,0.98946522 52.2707726,1.10425357 C52.2572681,1.12502975 52.2437636,1.14580592 52.2292203,1.16606269 C52.146635,1.27981223 52.0474288,1.39044535 51.9300434,1.49692324 C51.853691,1.56600401 51.7565623,1.62833253 51.6656666,1.69325807 C51.5872365,1.74883433 51.5207528,1.80804642 51.4319347,1.85998685 L24.3283787,17.6628631 C24.1647663,17.7584335 23.9860913,17.8389412 23.8022221,17.913216 C23.7544369,17.932434 23.7056129,17.9511325 23.6562695,17.9687923 C23.5420006,18.0103446 23.4214988,18.0435865 23.3020358,18.0773478 C23.1784175,18.1121479 23.0537605,18.1448703 22.9254676,18.17136 C22.774321,18.2025242 22.6226549,18.2310914 22.4668336,18.2508288 C22.4299559,18.2555035 22.3935976,18.2622557 22.3562005,18.2664109 C22.1468806,18.2892647 21.9349636,18.3001722 21.7225273,18.3027692 C21.688766,18.3032886 21.6550047,18.3032886 21.6212434,18.3032886 C21.4119235,18.3022498 21.2031229,18.2908229 20.9958806,18.2695274 C20.9647164,18.2664109 20.9335521,18.2627751 20.9023878,18.2591393 C20.6972231,18.2347273 20.4946555,18.2004466 20.2972818,18.1562972 C20.2609235,18.1479868 20.2250846,18.1386375 20.1892457,18.1298076 C20.0090124,18.0856582 19.8344926,18.0321596 19.6656862,17.9713893 C19.6355607,17.9604818 19.6038771,17.9521713 19.574271,17.9407444 C19.3717033,17.8628338 19.1784849,17.7734962 18.9992904,17.6701348 L1.4200514,7.55369695 C0.675745013,7.12518839 0.302812716,6.56163471 0.303851524,5.99911984 L0.28047833,22.4548873 C0.279439521,23.0179216 0.652371819,23.5809559 1.3966782,24.0094644 L18.9759172,34.1253829 C19.1462819,34.2235503 19.3285928,34.3102908 19.5207724,34.3856044 C19.530641,34.3897597 19.5415485,34.3918373 19.5514172,34.3959925 C19.5810233,34.4074194 19.6127069,34.4157299 19.6428324,34.4266374 C19.7529461,34.4666315 19.8635792,34.5071451 19.978887,34.5398675 C20.0401767,34.5570079 20.1040634,34.5705124 20.1669113,34.5855751 C20.2027502,34.594405 20.2380697,34.6037543 20.274428,34.6120647 C20.3071505,34.6193364 20.3388342,34.6292051 20.372076,34.6359573 C20.4951749,34.6614081 20.6198319,34.6827037 20.7455277,34.7003635 C20.7896771,34.7065963 20.8353847,34.7102321 20.8800535,34.7154262 C20.9117371,34.719062 20.942382,34.7226978 20.9740656,34.7258143 C21.0202926,34.7304889 21.0660002,34.7372412 21.1122272,34.740877 C21.235326,34.7507457 21.3589442,34.7569785 21.4830819,34.760095 C21.5220372,34.7611338 21.5604731,34.7590561 21.5994284,34.7595756 C21.6331897,34.7595756 21.6664316,34.7590561 21.6996735,34.7590561 C21.7557691,34.7585367 21.8123842,34.760095 21.8684799,34.7580173 C22.0081996,34.7528233 22.1474,34.743474 22.2860809,34.7294501 C22.3021825,34.7278919 22.3177646,34.7242561 22.3338661,34.7226978 C22.3712632,34.7185426 22.4071021,34.7117904 22.4444992,34.7071157 C22.5520159,34.6936112 22.6605714,34.6811455 22.7665299,34.6619275 C22.8132763,34.6530977 22.8563869,34.6375155 22.9026139,34.6276469 C23.0314261,34.6011572 23.1555638,34.5679154 23.2802208,34.5331153 C23.3456657,34.5149361 23.4157853,34.5040286 23.479672,34.4832525 C23.5326513,34.4661121 23.5814753,34.4437777 23.6334157,34.4245598 C23.6827591,34.4063806 23.7315831,34.3882015 23.7798877,34.3689835 C23.9637569,34.2947087 24.1419125,34.214201 24.3055249,34.1186306 L51.4096003,18.3157544 C51.4251824,18.3069245 51.4407645,18.2975752 51.4558272,18.2887453 C51.527505,18.2456348 51.5784067,18.195772 51.6428128,18.1500644 C51.734228,18.0851388 51.831876,18.0222909 51.9082284,17.9526907 C51.9155001,17.9459385 51.9264076,17.9407444 51.9331598,17.9339922 C52.0214585,17.8524457 52.0993692,17.7683022 52.1668918,17.6820811 C52.1819545,17.6623437 52.192862,17.642087 52.2068859,17.6223496 C52.2219486,17.6015734 52.2349337,17.5807972 52.2489576,17.5600211 C52.2718114,17.525221 52.2988205,17.4914597 52.3185578,17.4561402 C52.3585519,17.3855012 52.3917938,17.3138234 52.4188028,17.2416262 C52.4229581,17.2307187 52.4245163,17.2198112 52.4281521,17.2089038 C52.4328268,17.1953992 52.4354238,17.1818947 52.439579,17.1678708 C52.4541223,17.1216438 52.4697045,17.0759363 52.4790537,17.0297093 C52.4935971,16.9580315 52.5013881,16.8858343 52.5034658,16.8131177 C52.5039852,16.8022102 52.5039852,16.7907833 52.5039852,16.7798758 L52.5273584,0.324108292 C52.5263195,0.452920562 52.5019075,0.582771641 52.4619134,0.711064507 Z" id="path-377"></path>
- <radialGradient cx="50.0998926%" cy="50.3882784%" fx="50.0998926%" fy="50.3882784%" r="70.4761664%" gradientTransform="translate(0.500999,0.503883),scale(0.579949,1.000000),rotate(-0.078961),translate(-0.500999,-0.503883)" id="radialGradient-379">
- <stop stop-color="#FF7BAC" offset="0%"></stop>
- <stop stop-color="#FFFFFF" offset="100%"></stop>
- </radialGradient>
- <linearGradient x1="90.91901%" y1="49.9165593%" x2="-12.436242%" y2="50.2764734%" id="linearGradient-380">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="93.1855549%" y1="49.9712128%" x2="12.6189433%" y2="50.0366269%" id="linearGradient-381">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.20703409%" y1="50.0782522%" x2="61.496711%" y2="50.0157767%" id="linearGradient-382">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.4307491,0.828449882 C52.4265939,0.842473799 52.4239969,0.855978311 52.4188028,0.870002227 C52.3777699,0.98946522 52.3154414,1.10685059 52.2396084,1.22163895 C52.2261038,1.24241512 52.2125993,1.26319129 52.198056,1.28344806 C52.1154707,1.39719761 52.0162645,1.50783073 51.8988791,1.61378921 C51.8225267,1.68286998 51.7253981,1.7451985 51.6345023,1.81012404 C51.5560723,1.8657003 51.4895885,1.92491239 51.4007704,1.97685282 L24.2972144,17.7797291 C24.1336021,17.8752995 23.954927,17.9558072 23.7710579,18.030082 C23.7232727,18.0492999 23.6744487,18.0674791 23.6251053,18.0856582 C23.5108363,18.1272106 23.3903345,18.1604525 23.2708715,18.1942137 C23.1472533,18.2290138 23.0225963,18.2617363 22.8943034,18.2887453 C22.7431567,18.3199096 22.5914907,18.3484768 22.4356694,18.3682142 C22.3987917,18.3728888 22.3624334,18.3796411 22.3250363,18.3837963 C22.1157163,18.4066501 21.9037994,18.418077 21.691363,18.4201546 C21.6576017,18.420674 21.6238404,18.420674 21.5900792,18.420674 C21.3807592,18.4196352 21.1719587,18.4082083 20.9647164,18.3869127 C20.9335521,18.3837963 20.9023878,18.3801605 20.8712236,18.3765247 C20.6660589,18.3521127 20.4634912,18.317832 20.2661176,18.2736826 C20.2297593,18.2653721 20.1939204,18.2560229 20.1580815,18.247193 C19.9778482,18.2030436 19.8033283,18.149545 19.6345219,18.0887747 C19.6043965,18.0778672 19.5727128,18.0695567 19.5431067,18.0581298 C19.3405391,17.9802192 19.1473207,17.8908816 18.9681262,17.7875202 L1.38888714,7.67108232 C0.644580755,7.24257376 0.271648457,6.67953949 0.272687265,6.11650521 L0.249314071,22.5722727 C0.248275262,23.135307 0.62120756,23.6983413 1.36551394,24.1268498 L18.944753,34.2432877 C19.1151176,34.3414551 19.2974285,34.4281956 19.4896081,34.5035092 C19.4994768,34.5076645 19.5103843,34.5097421 19.520253,34.5138973 C19.549859,34.5253242 19.5815427,34.5336347 19.6116681,34.5445422 C19.7217818,34.5845363 19.832415,34.6245304 19.9477227,34.6572529 C20.0090124,34.6743932 20.0728991,34.6878978 20.1357471,34.7029605 C20.171586,34.7117904 20.2069055,34.7211396 20.2432638,34.7294501 C20.2759862,34.7367218 20.3076699,34.7465904 20.3409118,34.7533427 C20.4640106,34.7787935 20.5886676,34.8000891 20.7143635,34.8177488 C20.7585128,34.8239817 20.8042204,34.8270981 20.8488892,34.8328116 C20.8805729,34.8364474 20.9112177,34.8400832 20.9429014,34.8431996 C20.9891284,34.8478743 21.0348359,34.8546265 21.0810629,34.8582624 C21.2041617,34.8681311 21.32778,34.8748833 21.4519176,34.8774803 C21.4908729,34.8785191 21.5293088,34.8764415 21.5682642,34.8769609 C21.6020255,34.8769609 21.6352673,34.8769609 21.6685092,34.8764415 C21.7246049,34.8759221 21.7812199,34.8774803 21.8373156,34.8754027 C21.9770354,34.8702087 22.1162357,34.8608594 22.2549167,34.8468355 C22.2710182,34.8452773 22.2866003,34.8416414 22.3027019,34.8400832 C22.340099,34.835928 22.3759379,34.8291757 22.413335,34.8245011 C22.5208517,34.8109966 22.6294072,34.7985309 22.7353657,34.7793129 C22.7821121,34.7710024 22.8252226,34.7549009 22.8714496,34.7450322 C23.0002619,34.7185426 23.1243995,34.6853007 23.2490565,34.6505006 C23.3145015,34.6318021 23.3846211,34.621414 23.4485078,34.6006378 C23.501487,34.5834975 23.550311,34.5611631 23.6022515,34.5419451 C23.6515949,34.523766 23.7004189,34.5055868 23.7487235,34.4863689 C23.9325926,34.4120941 24.1107483,34.3315864 24.2743606,34.236016 L51.378436,18.4331397 C51.3940181,18.4243099 51.4096003,18.4149606 51.424663,18.4061307 C51.4963408,18.3630201 51.5472424,18.3131573 51.6116485,18.2674497 C51.7030637,18.2025242 51.8007117,18.1396763 51.8770641,18.0700761 C51.8843358,18.0633239 51.8952433,18.0581298 51.9019956,18.0513776 C51.9902943,17.9698311 52.0682049,17.8856876 52.1357275,17.7994665 C52.1507902,17.7797291 52.1616977,17.7594723 52.1757216,17.739735 C52.1907844,17.7189588 52.2037695,17.6981826 52.2177934,17.6774064 C52.2406472,17.6426064 52.2676562,17.6088451 52.2873936,17.5735256 C52.3273877,17.5028866 52.3606296,17.4312088 52.3876386,17.3590116 C52.3917938,17.3481041 52.393352,17.3371966 52.3969879,17.3257697 C52.4016625,17.3122652 52.4042595,17.2987607 52.4084148,17.2847368 C52.4229581,17.2385098 52.4385402,17.1928022 52.4478895,17.1460558 C52.4624328,17.074378 52.4702239,17.0021808 52.4723015,16.9294642 C52.4728209,16.9185567 52.4728209,16.9076493 52.4728209,16.8962224 L52.4961941,0.440454859 C52.4951553,0.570825342 52.4707433,0.700157016 52.4307491,0.828449882 Z" id="path-383"></path>
- <path d="M52.4307491,0.828449882 C52.4265939,0.842473799 52.4239969,0.855978311 52.4188028,0.870002227 C52.3777699,0.98946522 52.3154414,1.10685059 52.2396084,1.22163895 C52.2261038,1.24241512 52.2125993,1.26319129 52.198056,1.28344806 C52.1154707,1.39719761 52.0162645,1.50783073 51.8988791,1.61378921 C51.8225267,1.68286998 51.7253981,1.7451985 51.6345023,1.81012404 C51.5560723,1.8657003 51.4895885,1.92491239 51.4007704,1.97685282 L24.2972144,17.7797291 C24.1336021,17.8752995 23.954927,17.9558072 23.7710579,18.030082 C23.7232727,18.0492999 23.6744487,18.0674791 23.6251053,18.0856582 C23.5108363,18.1272106 23.3903345,18.1604525 23.2708715,18.1942137 C23.1472533,18.2290138 23.0225963,18.2617363 22.8943034,18.2887453 C22.7431567,18.3199096 22.5914907,18.3484768 22.4356694,18.3682142 C22.3987917,18.3728888 22.3624334,18.3796411 22.3250363,18.3837963 C22.1157163,18.4066501 21.9037994,18.418077 21.691363,18.4201546 C21.6576017,18.420674 21.6238404,18.420674 21.5900792,18.420674 C21.3807592,18.4196352 21.1719587,18.4082083 20.9647164,18.3869127 C20.9335521,18.3837963 20.9023878,18.3801605 20.8712236,18.3765247 C20.6660589,18.3521127 20.4634912,18.317832 20.2661176,18.2736826 C20.2297593,18.2653721 20.1939204,18.2560229 20.1580815,18.247193 C19.9778482,18.2030436 19.8033283,18.149545 19.6345219,18.0887747 C19.6043965,18.0778672 19.5727128,18.0695567 19.5431067,18.0581298 C19.3405391,17.9802192 19.1473207,17.8908816 18.9681262,17.7875202 L1.38888714,7.67108232 C0.644580755,7.24257376 0.271648457,6.67953949 0.272687265,6.11650521 L0.249314071,22.5722727 C0.248275262,23.135307 0.62120756,23.6983413 1.36551394,24.1268498 L18.944753,34.2432877 C19.1151176,34.3414551 19.2974285,34.4281956 19.4896081,34.5035092 C19.4994768,34.5076645 19.5103843,34.5097421 19.520253,34.5138973 C19.549859,34.5253242 19.5815427,34.5336347 19.6116681,34.5445422 C19.7217818,34.5845363 19.832415,34.6245304 19.9477227,34.6572529 C20.0090124,34.6743932 20.0728991,34.6878978 20.1357471,34.7029605 C20.171586,34.7117904 20.2069055,34.7211396 20.2432638,34.7294501 C20.2759862,34.7367218 20.3076699,34.7465904 20.3409118,34.7533427 C20.4640106,34.7787935 20.5886676,34.8000891 20.7143635,34.8177488 C20.7585128,34.8239817 20.8042204,34.8270981 20.8488892,34.8328116 C20.8805729,34.8364474 20.9112177,34.8400832 20.9429014,34.8431996 C20.9891284,34.8478743 21.0348359,34.8546265 21.0810629,34.8582624 C21.2041617,34.8681311 21.32778,34.8748833 21.4519176,34.8774803 C21.4908729,34.8785191 21.5293088,34.8764415 21.5682642,34.8769609 C21.6020255,34.8769609 21.6352673,34.8769609 21.6685092,34.8764415 C21.7246049,34.8759221 21.7812199,34.8774803 21.8373156,34.8754027 C21.9770354,34.8702087 22.1162357,34.8608594 22.2549167,34.8468355 C22.2710182,34.8452773 22.2866003,34.8416414 22.3027019,34.8400832 C22.340099,34.835928 22.3759379,34.8291757 22.413335,34.8245011 C22.5208517,34.8109966 22.6294072,34.7985309 22.7353657,34.7793129 C22.7821121,34.7710024 22.8252226,34.7549009 22.8714496,34.7450322 C23.0002619,34.7185426 23.1243995,34.6853007 23.2490565,34.6505006 C23.3145015,34.6318021 23.3846211,34.621414 23.4485078,34.6006378 C23.501487,34.5834975 23.550311,34.5611631 23.6022515,34.5419451 C23.6515949,34.523766 23.7004189,34.5055868 23.7487235,34.4863689 C23.9325926,34.4120941 24.1107483,34.3315864 24.2743606,34.236016 L51.378436,18.4331397 C51.3940181,18.4243099 51.4096003,18.4149606 51.424663,18.4061307 C51.4963408,18.3630201 51.5472424,18.3131573 51.6116485,18.2674497 C51.7030637,18.2025242 51.8007117,18.1396763 51.8770641,18.0700761 C51.8843358,18.0633239 51.8952433,18.0581298 51.9019956,18.0513776 C51.9902943,17.9698311 52.0682049,17.8856876 52.1357275,17.7994665 C52.1507902,17.7797291 52.1616977,17.7594723 52.1757216,17.739735 C52.1907844,17.7189588 52.2037695,17.6981826 52.2177934,17.6774064 C52.2406472,17.6426064 52.2676562,17.6088451 52.2873936,17.5735256 C52.3273877,17.5028866 52.3606296,17.4312088 52.3876386,17.3590116 C52.3917938,17.3481041 52.393352,17.3371966 52.3969879,17.3257697 C52.4016625,17.3122652 52.4042595,17.2987607 52.4084148,17.2847368 C52.4229581,17.2385098 52.4385402,17.1928022 52.4478895,17.1460558 C52.4624328,17.074378 52.4702239,17.0021808 52.4723015,16.9294642 C52.4728209,16.9185567 52.4728209,16.9076493 52.4728209,16.8962224 L52.4961941,0.440454859 C52.4951553,0.570825342 52.4707433,0.700157016 52.4307491,0.828449882 Z" id="path-385"></path>
- <linearGradient x1="-0.0530434808%" y1="50.0478063%" x2="99.9627463%" y2="49.9666005%" id="linearGradient-387">
- <stop stop-color="#00C6FF" offset="0%"></stop>
- <stop stop-color="#0072FF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="94.2032589%" y1="49.9415994%" x2="-15.5605071%" y2="49.9415994%" id="linearGradient-388">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="129.275251%" y1="50.1986376%" x2="24.2618087%" y2="49.939724%" id="linearGradient-389">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.20592271%" y1="50.0770049%" x2="61.4978224%" y2="50.0145312%" id="linearGradient-390">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.3990655,0.426950347 C52.3949103,0.440974263 52.3923132,0.454478775 52.3871192,0.468502692 C52.3455668,0.587965684 52.2837577,0.705351059 52.2079247,0.820139413 C52.1944202,0.840915586 52.1809157,0.861691758 52.1663724,0.881948526 C52.0837871,0.995698071 51.9845808,1.10633119 51.8671955,1.21228967 C51.790843,1.28137044 51.6937144,1.34369896 51.6028187,1.4086245 C51.5243886,1.46420076 51.4579049,1.52341286 51.3690867,1.57535329 L24.2655308,17.3777102 C24.1019184,17.4732806 23.9232433,17.5543076 23.7393742,17.628063 C23.691589,17.647281 23.642765,17.6654601 23.5934216,17.6836393 C23.4791526,17.7251916 23.3586508,17.7589529 23.2391879,17.7927142 C23.1155696,17.8275143 22.9909126,17.8602368 22.8626197,17.8867264 C22.7114731,17.9178906 22.559807,17.9464579 22.4039857,17.9661952 C22.367108,17.9708699 22.3307497,17.9776221 22.2933526,17.9817774 C22.0840327,18.0046312 21.8721157,18.0160581 21.6596793,18.0181357 C21.625918,18.0181357 21.5921568,18.0186551 21.5583955,18.0186551 C21.3490755,18.0176163 21.140275,18.0061894 20.9330327,17.9848938 C20.9018684,17.9817774 20.8707042,17.9781415 20.8395399,17.9745057 C20.6343752,17.9500937 20.4318075,17.915813 20.2344339,17.8716637 C20.1980756,17.8633532 20.1622367,17.8540039 20.1263978,17.845174 C19.9461645,17.8010247 19.7716446,17.747526 19.6028382,17.6867557 C19.5727128,17.6758482 19.5410291,17.6675378 19.5114231,17.6561109 C19.3088554,17.5782002 19.1151176,17.4888627 18.9364425,17.3855012 L1.35720347,7.26906338 C0.612897091,6.84055483 0.239964793,6.27752055 0.241003602,5.71448627 L0.217630408,22.1702538 C0.216591599,22.733288 0.589523897,23.2963223 1.33383028,23.7248309 L18.9130693,33.8412687 C19.0834339,33.9394361 19.2657448,34.0261767 19.4579244,34.1014903 C19.4677931,34.1051261 19.4787006,34.1077231 19.4885693,34.1118784 C19.5181753,34.1233053 19.549859,34.1316157 19.5799845,34.1425232 C19.6900982,34.1825174 19.8007313,34.2225115 19.916039,34.2557534 C19.9773288,34.2728937 20.0412155,34.2858788 20.1040634,34.3014609 C20.1399023,34.3102908 20.1752218,34.3196401 20.2115801,34.3279506 C20.2443026,34.3352222 20.2759862,34.3450909 20.3092281,34.3518432 C20.4323269,34.377294 20.556984,34.3985896 20.6826798,34.4162493 C20.7268292,34.4224822 20.7725368,34.4255986 20.8172055,34.431312 C20.8488892,34.4349479 20.879534,34.4385837 20.9112177,34.4417001 C20.9574447,34.4463748 21.0031523,34.453127 21.0493793,34.4572822 C21.1724781,34.4671509 21.2960963,34.4733838 21.4202339,34.4765002 C21.4591893,34.477539 21.4976252,34.4754614 21.5365805,34.4759808 C21.5703418,34.4759808 21.6035837,34.4759808 21.6368255,34.4754614 C21.6929212,34.474942 21.7495363,34.4765002 21.8056319,34.4744226 C21.9453517,34.4692285 22.0845521,34.4598793 22.223233,34.4458553 C22.2393345,34.4442971 22.2549167,34.4406613 22.2710182,34.4391031 C22.3084153,34.4349479 22.3442542,34.4281956 22.3816513,34.423521 C22.489168,34.4100164 22.5977235,34.3975507 22.703682,34.3783328 C22.7504284,34.3700223 22.7935389,34.3539208 22.8397659,34.3445715 C22.9685782,34.3175625 23.0927158,34.28484 23.2173729,34.2500399 C23.2828178,34.2313414 23.3529374,34.2209533 23.4168241,34.2001771 C23.4698034,34.1830368 23.5186274,34.1607024 23.5705678,34.1414844 C23.6199112,34.1233053 23.6687352,34.1051261 23.7170398,34.0859082 C23.9009089,34.0116333 24.0790646,33.9311257 24.242677,33.8355553 L51.3467523,18.032679 C51.3623345,18.0238491 51.3779166,18.0144998 51.3929793,18.00567 C51.4646571,17.9625594 51.5155587,17.9126966 51.5799649,17.866989 C51.67138,17.8020635 51.7690281,17.7392156 51.8453805,17.6696154 C51.8526521,17.6633825 51.8635596,17.6576691 51.8703119,17.6509168 C51.9586106,17.5693704 52.0365213,17.4852269 52.1040438,17.3990057 C52.1191066,17.3792684 52.1300141,17.3590116 52.144038,17.3392742 C52.1591007,17.3184981 52.1720858,17.2977219 52.1861097,17.2769457 C52.2089635,17.2421456 52.2359725,17.2083844 52.2557099,17.1730649 C52.295704,17.1024259 52.3289459,17.0307481 52.3559549,16.9585509 C52.3601102,16.9476434 52.3616684,16.9367359 52.3653042,16.9258284 C52.3699788,16.9123239 52.3725759,16.8983 52.3767311,16.8847955 C52.3912744,16.8385685 52.4068565,16.7928609 52.4162058,16.7461145 C52.4307491,16.6744367 52.4385402,16.6022395 52.4406178,16.5295229 C52.4411372,16.5186154 52.4411372,16.5077079 52.4411372,16.496281 L52.4645104,0.0405135366 C52.4634716,0.168806402 52.4390596,0.298657481 52.3990655,0.426950347 Z" id="path-391"></path>
- <path d="M52.3990655,0.426950347 C52.3949103,0.440974263 52.3923132,0.454478775 52.3871192,0.468502692 C52.3455668,0.587965684 52.2837577,0.705351059 52.2079247,0.820139413 C52.1944202,0.840915586 52.1809157,0.861691758 52.1663724,0.881948526 C52.0837871,0.995698071 51.9845808,1.10633119 51.8671955,1.21228967 C51.790843,1.28137044 51.6937144,1.34369896 51.6028187,1.4086245 C51.5243886,1.46420076 51.4579049,1.52341286 51.3690867,1.57535329 L24.2655308,17.3777102 C24.1019184,17.4732806 23.9232433,17.5543076 23.7393742,17.628063 C23.691589,17.647281 23.642765,17.6654601 23.5934216,17.6836393 C23.4791526,17.7251916 23.3586508,17.7589529 23.2391879,17.7927142 C23.1155696,17.8275143 22.9909126,17.8602368 22.8626197,17.8867264 C22.7114731,17.9178906 22.559807,17.9464579 22.4039857,17.9661952 C22.367108,17.9708699 22.3307497,17.9776221 22.2933526,17.9817774 C22.0840327,18.0046312 21.8721157,18.0160581 21.6596793,18.0181357 C21.625918,18.0181357 21.5921568,18.0186551 21.5583955,18.0186551 C21.3490755,18.0176163 21.140275,18.0061894 20.9330327,17.9848938 C20.9018684,17.9817774 20.8707042,17.9781415 20.8395399,17.9745057 C20.6343752,17.9500937 20.4318075,17.915813 20.2344339,17.8716637 C20.1980756,17.8633532 20.1622367,17.8540039 20.1263978,17.845174 C19.9461645,17.8010247 19.7716446,17.747526 19.6028382,17.6867557 C19.5727128,17.6758482 19.5410291,17.6675378 19.5114231,17.6561109 C19.3088554,17.5782002 19.1151176,17.4888627 18.9364425,17.3855012 L1.35720347,7.26906338 C0.612897091,6.84055483 0.239964793,6.27752055 0.241003602,5.71448627 L0.217630408,22.1702538 C0.216591599,22.733288 0.589523897,23.2963223 1.33383028,23.7248309 L18.9130693,33.8412687 C19.0834339,33.9394361 19.2657448,34.0261767 19.4579244,34.1014903 C19.4677931,34.1051261 19.4787006,34.1077231 19.4885693,34.1118784 C19.5181753,34.1233053 19.549859,34.1316157 19.5799845,34.1425232 C19.6900982,34.1825174 19.8007313,34.2225115 19.916039,34.2557534 C19.9773288,34.2728937 20.0412155,34.2858788 20.1040634,34.3014609 C20.1399023,34.3102908 20.1752218,34.3196401 20.2115801,34.3279506 C20.2443026,34.3352222 20.2759862,34.3450909 20.3092281,34.3518432 C20.4323269,34.377294 20.556984,34.3985896 20.6826798,34.4162493 C20.7268292,34.4224822 20.7725368,34.4255986 20.8172055,34.431312 C20.8488892,34.4349479 20.879534,34.4385837 20.9112177,34.4417001 C20.9574447,34.4463748 21.0031523,34.453127 21.0493793,34.4572822 C21.1724781,34.4671509 21.2960963,34.4733838 21.4202339,34.4765002 C21.4591893,34.477539 21.4976252,34.4754614 21.5365805,34.4759808 C21.5703418,34.4759808 21.6035837,34.4759808 21.6368255,34.4754614 C21.6929212,34.474942 21.7495363,34.4765002 21.8056319,34.4744226 C21.9453517,34.4692285 22.0845521,34.4598793 22.223233,34.4458553 C22.2393345,34.4442971 22.2549167,34.4406613 22.2710182,34.4391031 C22.3084153,34.4349479 22.3442542,34.4281956 22.3816513,34.423521 C22.489168,34.4100164 22.5977235,34.3975507 22.703682,34.3783328 C22.7504284,34.3700223 22.7935389,34.3539208 22.8397659,34.3445715 C22.9685782,34.3175625 23.0927158,34.28484 23.2173729,34.2500399 C23.2828178,34.2313414 23.3529374,34.2209533 23.4168241,34.2001771 C23.4698034,34.1830368 23.5186274,34.1607024 23.5705678,34.1414844 C23.6199112,34.1233053 23.6687352,34.1051261 23.7170398,34.0859082 C23.9009089,34.0116333 24.0790646,33.9311257 24.242677,33.8355553 L51.3467523,18.032679 C51.3623345,18.0238491 51.3779166,18.0144998 51.3929793,18.00567 C51.4646571,17.9625594 51.5155587,17.9126966 51.5799649,17.866989 C51.67138,17.8020635 51.7690281,17.7392156 51.8453805,17.6696154 C51.8526521,17.6633825 51.8635596,17.6576691 51.8703119,17.6509168 C51.9586106,17.5693704 52.0365213,17.4852269 52.1040438,17.3990057 C52.1191066,17.3792684 52.1300141,17.3590116 52.144038,17.3392742 C52.1591007,17.3184981 52.1720858,17.2977219 52.1861097,17.2769457 C52.2089635,17.2421456 52.2359725,17.2083844 52.2557099,17.1730649 C52.295704,17.1024259 52.3289459,17.0307481 52.3559549,16.9585509 C52.3601102,16.9476434 52.3616684,16.9367359 52.3653042,16.9258284 C52.3699788,16.9123239 52.3725759,16.8983 52.3767311,16.8847955 C52.3912744,16.8385685 52.4068565,16.7928609 52.4162058,16.7461145 C52.4307491,16.6744367 52.4385402,16.6022395 52.4406178,16.5295229 C52.4411372,16.5186154 52.4411372,16.5077079 52.4411372,16.496281 L52.4645104,0.0405135366 C52.4634716,0.168806402 52.4390596,0.298657481 52.3990655,0.426950347 Z" id="path-393"></path>
- <radialGradient cx="50.4143083%" cy="51.4517012%" fx="50.4143083%" fy="51.4517012%" r="67.7319046%" gradientTransform="translate(0.504143,0.514517),scale(0.611997,1.000000),rotate(-0.078961),translate(-0.504143,-0.514517)" id="radialGradient-395">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.4108246%" cy="51.4529793%" fx="50.4108246%" fy="51.4529793%" r="67.7319046%" gradientTransform="translate(0.504108,0.514530),scale(0.611997,1.000000),rotate(-0.078961),translate(-0.504108,-0.514530)" id="radialGradient-396">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.4116955%" cy="51.4546547%" fx="50.4116955%" fy="51.4546547%" r="67.7367464%" gradientTransform="translate(0.504117,0.514547),scale(0.611953,1.000000),rotate(-0.078961),translate(-0.504117,-0.514547)" id="radialGradient-397">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.4065%" cy="51.463591%" fx="50.4065%" fy="51.463591%" r="67.7319046%" gradientTransform="translate(0.504065,0.514636),scale(0.611997,1.000000),rotate(-0.078961),translate(-0.504065,-0.514636)" id="radialGradient-398">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.4030164%" cy="51.4644372%" fx="50.4030164%" fy="51.4644372%" r="67.7367464%" gradientTransform="translate(0.504030,0.514644),scale(0.611953,1.000000),rotate(-0.078961),translate(-0.504030,-0.514644)" id="radialGradient-399">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.4038976%" cy="51.4720992%" fx="50.4038976%" fy="51.4720992%" r="67.7332701%" gradientTransform="translate(0.504039,0.514721),scale(0.611984,1.000000),rotate(-0.078961),translate(-0.504039,-0.514721)" id="radialGradient-400">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.3987028%" cy="51.4758795%" fx="50.3987028%" fy="51.4758795%" r="67.7367464%" gradientTransform="translate(0.503987,0.514759),scale(0.611953,1.000000),rotate(-0.078961),translate(-0.503987,-0.514759)" id="radialGradient-401">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.3995737%" cy="51.476393%" fx="50.3995737%" fy="51.476393%" r="67.7332701%" gradientTransform="translate(0.503996,0.514764),scale(0.611984,1.000000),rotate(-0.078961),translate(-0.503996,-0.514764)" id="radialGradient-402">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.39609%" cy="51.4776711%" fx="50.39609%" fy="51.4776711%" r="67.7332701%" gradientTransform="translate(0.503961,0.514777),scale(0.611984,1.000000),rotate(-0.078961),translate(-0.503961,-0.514777)" id="radialGradient-403">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.3952595%" cy="51.4819598%" fx="50.3952595%" fy="51.4819598%" r="67.7360369%" gradientTransform="translate(0.503953,0.514820),scale(0.611959,1.000000),rotate(-0.078961),translate(-0.503953,-0.514820)" id="radialGradient-404">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.3917765%" cy="51.4891128%" fx="50.3917765%" fy="51.4891128%" r="67.7332701%" gradientTransform="translate(0.503918,0.514891),scale(0.611984,1.000000),rotate(-0.078961),translate(-0.503918,-0.514891)" id="radialGradient-405">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <radialGradient cx="50.3926467%" cy="51.4852682%" fx="50.3926467%" fy="51.4852682%" r="67.7319046%" gradientTransform="translate(0.503926,0.514853),scale(0.611997,1.000000),rotate(-0.078961),translate(-0.503926,-0.514853)" id="radialGradient-406">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <linearGradient x1="49.0983175%" y1="-174.444192%" x2="49.5450155%" y2="235.997795%" id="linearGradient-407">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1727881%" y1="-107.0749%" x2="49.6194861%" y2="303.367087%" id="linearGradient-408">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.2487086%" y1="-39.7091677%" x2="49.6954866%" y2="370.769581%" id="linearGradient-409">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.0445004%" y1="-225.481438%" x2="49.5238619%" y2="214.917131%" id="linearGradient-410">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1189898%" y1="-158.103612%" x2="49.5983513%" y2="282.294957%" id="linearGradient-411">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1950642%" y1="-90.7257893%" x2="49.6744256%" y2="349.67278%" id="linearGradient-412">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.0960648%" y1="-165.309412%" x2="49.5289107%" y2="232.35434%" id="linearGradient-413">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1705543%" y1="-97.9315858%" x2="49.6034001%" y2="299.732166%" id="linearGradient-414">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.2466286%" y1="-30.5537626%" x2="49.6794744%" y2="367.109989%" id="linearGradient-415">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.0873573%" y1="-160.702461%" x2="49.4783057%" y2="198.514788%" id="linearGradient-416">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1618279%" y1="-93.3331692%" x2="49.5527763%" y2="265.88408%" id="linearGradient-417">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.2377464%" y1="-25.9662058%" x2="49.6287648%" y2="333.283216%" id="linearGradient-418">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="183.033765%" y1="50.7614237%" x2="5.09479911%" y2="49.5671503%" id="linearGradient-419">
- <stop stop-color="#1E2275" offset="0%"></stop>
- <stop stop-color="#0046BC" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="106.249949%" y1="49.9587814%" x2="6.23580277%" y2="50.0399839%" id="linearGradient-420">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.20904304%" y1="50.0742505%" x2="61.494702%" y2="50.0117788%" id="linearGradient-421">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.4941165,0.700157016 C52.4899612,0.713661528 52.4873642,0.727685445 52.4821702,0.741709361 C52.4411372,0.861172354 52.3788087,0.978557729 52.3029757,1.09334608 C52.2894712,1.11412226 52.2759667,1.13489843 52.2614233,1.1551552 C52.1788381,1.26890474 52.0796318,1.37953786 51.9622465,1.48549634 C51.885894,1.55457711 51.7887654,1.61742504 51.6978697,1.68183117 C51.6194396,1.73740743 51.5529559,1.79661952 51.4641377,1.84855996 L24.3605818,17.6509168 C24.1969694,17.7464872 24.0182943,17.8275143 23.8344252,17.9012697 C23.78664,17.9204877 23.737816,17.9386668 23.6884726,17.956846 C23.5742036,17.9983983 23.4537018,18.0321596 23.3342388,18.0659209 C23.2106206,18.100721 23.0859636,18.1334434 22.9576707,18.1599331 C22.8065241,18.1910973 22.654858,18.2196646 22.4990367,18.2394019 C22.462159,18.2440766 22.4258007,18.2508288 22.3884036,18.254984 C22.1790836,18.2778378 21.9671667,18.2887453 21.7547303,18.2913423 C21.720969,18.2913423 21.6872078,18.2918618 21.6534465,18.2918618 C21.4441265,18.2908229 21.235326,18.279396 21.0280837,18.2581005 C20.9969194,18.254984 20.9657552,18.2513482 20.9345909,18.2477124 C20.7294262,18.2233004 20.5268585,18.1890197 20.3294849,18.1448703 C20.2931266,18.1365599 20.2572877,18.1272106 20.2214488,18.1183807 C20.0412155,18.0742313 19.8666956,18.0207327 19.6978892,17.9599624 C19.6677638,17.9490549 19.6360801,17.9407444 19.6064741,17.9293175 C19.4039064,17.8514069 19.210688,17.7620694 19.0314935,17.6587079 L1.45225446,7.54278946 C0.707948081,7.1142809 0.335015783,6.55072722 0.336054592,5.98821234 L0.312681397,22.4439798 C0.311642589,23.0070141 0.684574887,23.5700484 1.42888127,23.998557 L19.0081203,34.1149948 C19.1784849,34.2131622 19.3607958,34.2999027 19.5529754,34.3752164 C19.5628441,34.3788522 19.5737516,34.3814492 19.5836203,34.3856044 C19.6132263,34.3970313 19.64491,34.4053418 19.6750354,34.4162493 C19.7851492,34.4562434 19.8957823,34.496757 20.01109,34.5294794 C20.0723797,34.5466198 20.1362665,34.5601243 20.1991144,34.575187 C20.2349533,34.5840169 20.2702728,34.5933662 20.3066311,34.6016766 C20.3393536,34.6089483 20.3710372,34.6182976 20.4042791,34.6255692 C20.5273779,34.6510201 20.652035,34.6723156 20.7777308,34.6899754 C20.8223996,34.6962082 20.8675877,34.6998441 20.9122565,34.7050381 C20.9434208,34.7086739 20.974585,34.7123098 21.0062687,34.7154262 C21.0524957,34.7201008 21.0982033,34.7268531 21.1444302,34.7304889 C21.2675291,34.7403576 21.3911473,34.7465904 21.5152849,34.7497069 C21.5542403,34.7507457 21.5926762,34.7486681 21.6316315,34.7491875 C21.6653928,34.7491875 21.6986347,34.7491875 21.7318765,34.7486681 C21.7879722,34.7481487 21.8445873,34.7497069 21.9006829,34.7476293 C22.0404027,34.7424352 22.179603,34.7330859 22.318284,34.719062 C22.3343855,34.7175038 22.3499677,34.713868 22.3660692,34.7123098 C22.4034663,34.7081545 22.4393052,34.7014023 22.4767023,34.6967276 C22.584219,34.6832231 22.6927745,34.6707574 22.798733,34.6515395 C22.8454794,34.643229 22.8885899,34.6271275 22.9348169,34.6177782 C23.0636292,34.5907691 23.1877668,34.5580467 23.3124239,34.5232466 C23.3778688,34.504548 23.4479884,34.4941599 23.5118751,34.4733838 C23.5648544,34.4562434 23.6136784,34.433909 23.6656188,34.4146911 C23.7149622,34.3965119 23.7637862,34.3783328 23.8120908,34.3591148 C23.9959599,34.28484 24.1741156,34.2043323 24.337728,34.1087619 L51.4418033,18.3064051 C51.4573855,18.2970558 51.4724482,18.2882259 51.4880303,18.2788766 C51.5597081,18.2357661 51.6106097,18.1859033 51.6750159,18.1401957 C51.766431,18.0752702 51.864079,18.0124222 51.9404315,17.9428221 C51.9477031,17.9365892 51.9586106,17.9308758 51.9653629,17.9241235 C52.0536616,17.842577 52.1315723,17.7584335 52.1990948,17.6722124 C52.2141575,17.652475 52.225065,17.6322183 52.239089,17.6124809 C52.2541517,17.5917047 52.2671368,17.5709286 52.2811607,17.5501524 C52.3040145,17.5153523 52.3310235,17.481591 52.3507609,17.4467909 C52.390755,17.3761519 52.4239969,17.3044742 52.4510059,17.232277 C52.4551612,17.2213695 52.4567194,17.210462 52.4603552,17.1995545 C52.4650298,17.18605 52.4676269,17.1720261 52.4717821,17.1585215 C52.4863254,17.1122946 52.5019075,17.066587 52.5112568,17.02036 C52.5258001,16.9486822 52.5335912,16.8759656 52.5356688,16.8037684 C52.5356688,16.7928609 52.5361882,16.7819534 52.5361882,16.7705265 L52.5595614,0.314759015 C52.5580032,0.442532476 52.5335912,0.571864151 52.4941165,0.700157016 Z" id="path-422"></path>
- <path d="M52.4941165,0.700157016 C52.4899612,0.713661528 52.4873642,0.727685445 52.4821702,0.741709361 C52.4411372,0.861172354 52.3788087,0.978557729 52.3029757,1.09334608 C52.2894712,1.11412226 52.2759667,1.13489843 52.2614233,1.1551552 C52.1788381,1.26890474 52.0796318,1.37953786 51.9622465,1.48549634 C51.885894,1.55457711 51.7887654,1.61742504 51.6978697,1.68183117 C51.6194396,1.73740743 51.5529559,1.79661952 51.4641377,1.84855996 L24.3605818,17.6509168 C24.1969694,17.7464872 24.0182943,17.8275143 23.8344252,17.9012697 C23.78664,17.9204877 23.737816,17.9386668 23.6884726,17.956846 C23.5742036,17.9983983 23.4537018,18.0321596 23.3342388,18.0659209 C23.2106206,18.100721 23.0859636,18.1334434 22.9576707,18.1599331 C22.8065241,18.1910973 22.654858,18.2196646 22.4990367,18.2394019 C22.462159,18.2440766 22.4258007,18.2508288 22.3884036,18.254984 C22.1790836,18.2778378 21.9671667,18.2887453 21.7547303,18.2913423 C21.720969,18.2913423 21.6872078,18.2918618 21.6534465,18.2918618 C21.4441265,18.2908229 21.235326,18.279396 21.0280837,18.2581005 C20.9969194,18.254984 20.9657552,18.2513482 20.9345909,18.2477124 C20.7294262,18.2233004 20.5268585,18.1890197 20.3294849,18.1448703 C20.2931266,18.1365599 20.2572877,18.1272106 20.2214488,18.1183807 C20.0412155,18.0742313 19.8666956,18.0207327 19.6978892,17.9599624 C19.6677638,17.9490549 19.6360801,17.9407444 19.6064741,17.9293175 C19.4039064,17.8514069 19.210688,17.7620694 19.0314935,17.6587079 L1.45225446,7.54278946 C0.707948081,7.1142809 0.335015783,6.55072722 0.336054592,5.98821234 L0.312681397,22.4439798 C0.311642589,23.0070141 0.684574887,23.5700484 1.42888127,23.998557 L19.0081203,34.1149948 C19.1784849,34.2131622 19.3607958,34.2999027 19.5529754,34.3752164 C19.5628441,34.3788522 19.5737516,34.3814492 19.5836203,34.3856044 C19.6132263,34.3970313 19.64491,34.4053418 19.6750354,34.4162493 C19.7851492,34.4562434 19.8957823,34.496757 20.01109,34.5294794 C20.0723797,34.5466198 20.1362665,34.5601243 20.1991144,34.575187 C20.2349533,34.5840169 20.2702728,34.5933662 20.3066311,34.6016766 C20.3393536,34.6089483 20.3710372,34.6182976 20.4042791,34.6255692 C20.5273779,34.6510201 20.652035,34.6723156 20.7777308,34.6899754 C20.8223996,34.6962082 20.8675877,34.6998441 20.9122565,34.7050381 C20.9434208,34.7086739 20.974585,34.7123098 21.0062687,34.7154262 C21.0524957,34.7201008 21.0982033,34.7268531 21.1444302,34.7304889 C21.2675291,34.7403576 21.3911473,34.7465904 21.5152849,34.7497069 C21.5542403,34.7507457 21.5926762,34.7486681 21.6316315,34.7491875 C21.6653928,34.7491875 21.6986347,34.7491875 21.7318765,34.7486681 C21.7879722,34.7481487 21.8445873,34.7497069 21.9006829,34.7476293 C22.0404027,34.7424352 22.179603,34.7330859 22.318284,34.719062 C22.3343855,34.7175038 22.3499677,34.713868 22.3660692,34.7123098 C22.4034663,34.7081545 22.4393052,34.7014023 22.4767023,34.6967276 C22.584219,34.6832231 22.6927745,34.6707574 22.798733,34.6515395 C22.8454794,34.643229 22.8885899,34.6271275 22.9348169,34.6177782 C23.0636292,34.5907691 23.1877668,34.5580467 23.3124239,34.5232466 C23.3778688,34.504548 23.4479884,34.4941599 23.5118751,34.4733838 C23.5648544,34.4562434 23.6136784,34.433909 23.6656188,34.4146911 C23.7149622,34.3965119 23.7637862,34.3783328 23.8120908,34.3591148 C23.9959599,34.28484 24.1741156,34.2043323 24.337728,34.1087619 L51.4418033,18.3064051 C51.4573855,18.2970558 51.4724482,18.2882259 51.4880303,18.2788766 C51.5597081,18.2357661 51.6106097,18.1859033 51.6750159,18.1401957 C51.766431,18.0752702 51.864079,18.0124222 51.9404315,17.9428221 C51.9477031,17.9365892 51.9586106,17.9308758 51.9653629,17.9241235 C52.0536616,17.842577 52.1315723,17.7584335 52.1990948,17.6722124 C52.2141575,17.652475 52.225065,17.6322183 52.239089,17.6124809 C52.2541517,17.5917047 52.2671368,17.5709286 52.2811607,17.5501524 C52.3040145,17.5153523 52.3310235,17.481591 52.3507609,17.4467909 C52.390755,17.3761519 52.4239969,17.3044742 52.4510059,17.232277 C52.4551612,17.2213695 52.4567194,17.210462 52.4603552,17.1995545 C52.4650298,17.18605 52.4676269,17.1720261 52.4717821,17.1585215 C52.4863254,17.1122946 52.5019075,17.066587 52.5112568,17.02036 C52.5258001,16.9486822 52.5335912,16.8759656 52.5356688,16.8037684 C52.5356688,16.7928609 52.5361882,16.7819534 52.5361882,16.7705265 L52.5595614,0.314759015 C52.5580032,0.442532476 52.5335912,0.571864151 52.4941165,0.700157016 Z" id="path-424"></path>
- <radialGradient cx="50.0925109%" cy="50.3886086%" fx="50.0925109%" fy="50.3886086%" r="70.4761664%" gradientTransform="translate(0.500925,0.503886),scale(0.579949,1.000000),rotate(-0.078961),translate(-0.500925,-0.503886)" id="radialGradient-426">
- <stop stop-color="#29FFC4" offset="0%"></stop>
- <stop stop-color="#58FCCF" offset="22.7%"></stop>
- <stop stop-color="#9FF8E0" offset="59.8%"></stop>
- <stop stop-color="#CCF6EA" offset="86.54%"></stop>
- <stop stop-color="#DDF5EE" offset="100%"></stop>
- </radialGradient>
- <linearGradient x1="72.0218428%" y1="49.9439126%" x2="-9.70276221%" y2="49.9439126%" id="linearGradient-427">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="83.2718651%" y1="50.2236442%" x2="7.81933794%" y2="49.7286387%" id="linearGradient-428">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.2079318%" y1="50.0755632%" x2="61.4958133%" y2="50.0130896%" id="linearGradient-429">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.4624328,0.817542391 C52.4582776,0.831046904 52.4556806,0.84507082 52.4504865,0.859094737 C52.4094536,0.978557729 52.3471251,1.0959431 52.271292,1.21073146 C52.2577875,1.23150763 52.244283,1.2522838 52.2297397,1.27254057 C52.1471544,1.38629012 52.0479482,1.49692324 51.9305628,1.60340112 C51.8542104,1.67248189 51.7570818,1.73481041 51.666186,1.79973595 C51.5877559,1.85531221 51.5212722,1.9145243 51.4324541,1.96646474 L24.3288981,17.769341 C24.1652857,17.8649114 23.9866107,17.9454191 23.8027415,18.0196939 C23.7549563,18.0389119 23.7061323,18.0576104 23.6567889,18.0752702 C23.54252,18.1168225 23.4220182,18.1505838 23.3025552,18.1843451 C23.178937,18.2191451 23.0542799,18.2518676 22.925987,18.2783572 C22.7748404,18.3095215 22.6231743,18.3380887 22.467353,18.3578261 C22.4304753,18.3625007 22.394117,18.369253 22.3567199,18.3734082 C22.1474,18.396262 21.935483,18.4071695 21.7230467,18.4097665 C21.6892854,18.4102859 21.6555241,18.4102859 21.6217628,18.4102859 C21.4124429,18.4092471 21.2036423,18.3978202 20.9964,18.3765247 C20.9652358,18.3734082 20.9340715,18.3697724 20.9029072,18.3661366 C20.6977425,18.3417246 20.4951749,18.3074439 20.2978012,18.2632945 C20.2614429,18.254984 20.225604,18.2456348 20.1897651,18.2368049 C20.0095318,18.1926555 19.835012,18.1391569 19.6662056,18.0783866 C19.6360801,18.0674791 19.6043965,18.0591686 19.5747904,18.0477417 C19.3722227,17.9698311 19.1790043,17.8804935 18.9998098,17.7771321 L1.4205708,7.66069424 C0.676264418,7.23218568 0.30333212,6.668632 0.304370928,6.10611712 L0.280997734,22.5618846 C0.279958926,23.1249189 0.652891224,23.6879532 1.39719761,24.1164617 L18.9764366,34.2323802 C19.1468013,34.3305476 19.3291122,34.4172881 19.5212918,34.4926017 C19.5311604,34.496757 19.5420679,34.4988346 19.5519366,34.5029898 C19.5815427,34.5144167 19.6132263,34.5227272 19.6433518,34.5336347 C19.7534655,34.5736288 19.8640986,34.6141423 19.9794064,34.6468648 C20.0406961,34.6640052 20.1045828,34.6775097 20.1674307,34.6925724 C20.2032696,34.7014023 20.2385891,34.7107515 20.2749474,34.719062 C20.3076699,34.7263337 20.3393536,34.735683 20.3725954,34.7429546 C20.4956943,34.7684054 20.6203513,34.789701 20.7460471,34.8073607 C20.7907159,34.8135936 20.8359041,34.8172294 20.8805729,34.8224235 C20.9117371,34.8260593 20.9429014,34.8296951 20.974585,34.8328116 C21.020812,34.8374862 21.0665196,34.8442385 21.1127466,34.8478743 C21.2358454,34.857743 21.3594636,34.8639758 21.4836013,34.8670922 C21.5225566,34.8681311 21.5609925,34.8660534 21.5999478,34.8665728 C21.6337091,34.8665728 21.666951,34.8660534 21.7001929,34.8660534 C21.7562885,34.865534 21.8129036,34.8670922 21.8689993,34.8650146 C22.008719,34.8598206 22.1479194,34.8504713 22.2866003,34.8364474 C22.3027019,34.8348892 22.318284,34.8312533 22.3343855,34.8296951 C22.3717826,34.8255399 22.4076215,34.8187876 22.4450187,34.814113 C22.5525353,34.8006085 22.6610908,34.7881428 22.7670493,34.7689248 C22.8137957,34.760095 22.8569063,34.7445128 22.9031333,34.7346441 C23.0319455,34.7076351 23.1560832,34.6749126 23.2807402,34.6401126 C23.3461851,34.6219334 23.4163047,34.6110259 23.4801915,34.5902497 C23.5331707,34.5731094 23.5819947,34.550775 23.6339351,34.5315571 C23.6832785,34.5133779 23.7321025,34.4951988 23.7804071,34.4759808 C23.9642763,34.401706 24.142432,34.3211983 24.3060443,34.2256279 L51.4101197,18.4227516 C51.4257018,18.4139218 51.4407645,18.4045725 51.4563467,18.3957426 C51.5280244,18.3526321 51.5789261,18.3027692 51.6433322,18.2570617 C51.7347474,18.1921361 51.8323954,18.1292882 51.9087478,18.059688 C51.9160195,18.0529358 51.926927,18.0477417 51.9336792,18.0409895 C52.021978,17.959443 52.0998886,17.8752995 52.1674112,17.7890784 C52.1824739,17.769341 52.1933814,17.7490842 52.2074053,17.7293469 C52.222468,17.7085707 52.2354531,17.6877945 52.249477,17.6670184 C52.2723308,17.6322183 52.2993399,17.598457 52.3190772,17.5631375 C52.3590714,17.4924985 52.3923132,17.4208207 52.4193223,17.3486235 C52.4234775,17.337716 52.4250357,17.3268085 52.4286715,17.315901 C52.4333462,17.3023965 52.4359432,17.288892 52.4400984,17.2748681 C52.4546417,17.2286411 52.4702239,17.1829335 52.4795732,17.1367066 C52.4941165,17.0650288 52.5019075,16.9928316 52.5039852,16.920115 C52.5045046,16.9092075 52.5045046,16.8977806 52.5045046,16.8868731 L52.5278778,0.431105581 C52.5268389,0.559917851 52.5024269,0.68976893 52.4624328,0.817542391 Z" id="path-430"></path>
- <path d="M52.4624328,0.817542391 C52.4582776,0.831046904 52.4556806,0.84507082 52.4504865,0.859094737 C52.4094536,0.978557729 52.3471251,1.0959431 52.271292,1.21073146 C52.2577875,1.23150763 52.244283,1.2522838 52.2297397,1.27254057 C52.1471544,1.38629012 52.0479482,1.49692324 51.9305628,1.60340112 C51.8542104,1.67248189 51.7570818,1.73481041 51.666186,1.79973595 C51.5877559,1.85531221 51.5212722,1.9145243 51.4324541,1.96646474 L24.3288981,17.769341 C24.1652857,17.8649114 23.9866107,17.9454191 23.8027415,18.0196939 C23.7549563,18.0389119 23.7061323,18.0576104 23.6567889,18.0752702 C23.54252,18.1168225 23.4220182,18.1505838 23.3025552,18.1843451 C23.178937,18.2191451 23.0542799,18.2518676 22.925987,18.2783572 C22.7748404,18.3095215 22.6231743,18.3380887 22.467353,18.3578261 C22.4304753,18.3625007 22.394117,18.369253 22.3567199,18.3734082 C22.1474,18.396262 21.935483,18.4071695 21.7230467,18.4097665 C21.6892854,18.4102859 21.6555241,18.4102859 21.6217628,18.4102859 C21.4124429,18.4092471 21.2036423,18.3978202 20.9964,18.3765247 C20.9652358,18.3734082 20.9340715,18.3697724 20.9029072,18.3661366 C20.6977425,18.3417246 20.4951749,18.3074439 20.2978012,18.2632945 C20.2614429,18.254984 20.225604,18.2456348 20.1897651,18.2368049 C20.0095318,18.1926555 19.835012,18.1391569 19.6662056,18.0783866 C19.6360801,18.0674791 19.6043965,18.0591686 19.5747904,18.0477417 C19.3722227,17.9698311 19.1790043,17.8804935 18.9998098,17.7771321 L1.4205708,7.66069424 C0.676264418,7.23218568 0.30333212,6.668632 0.304370928,6.10611712 L0.280997734,22.5618846 C0.279958926,23.1249189 0.652891224,23.6879532 1.39719761,24.1164617 L18.9764366,34.2323802 C19.1468013,34.3305476 19.3291122,34.4172881 19.5212918,34.4926017 C19.5311604,34.496757 19.5420679,34.4988346 19.5519366,34.5029898 C19.5815427,34.5144167 19.6132263,34.5227272 19.6433518,34.5336347 C19.7534655,34.5736288 19.8640986,34.6141423 19.9794064,34.6468648 C20.0406961,34.6640052 20.1045828,34.6775097 20.1674307,34.6925724 C20.2032696,34.7014023 20.2385891,34.7107515 20.2749474,34.719062 C20.3076699,34.7263337 20.3393536,34.735683 20.3725954,34.7429546 C20.4956943,34.7684054 20.6203513,34.789701 20.7460471,34.8073607 C20.7907159,34.8135936 20.8359041,34.8172294 20.8805729,34.8224235 C20.9117371,34.8260593 20.9429014,34.8296951 20.974585,34.8328116 C21.020812,34.8374862 21.0665196,34.8442385 21.1127466,34.8478743 C21.2358454,34.857743 21.3594636,34.8639758 21.4836013,34.8670922 C21.5225566,34.8681311 21.5609925,34.8660534 21.5999478,34.8665728 C21.6337091,34.8665728 21.666951,34.8660534 21.7001929,34.8660534 C21.7562885,34.865534 21.8129036,34.8670922 21.8689993,34.8650146 C22.008719,34.8598206 22.1479194,34.8504713 22.2866003,34.8364474 C22.3027019,34.8348892 22.318284,34.8312533 22.3343855,34.8296951 C22.3717826,34.8255399 22.4076215,34.8187876 22.4450187,34.814113 C22.5525353,34.8006085 22.6610908,34.7881428 22.7670493,34.7689248 C22.8137957,34.760095 22.8569063,34.7445128 22.9031333,34.7346441 C23.0319455,34.7076351 23.1560832,34.6749126 23.2807402,34.6401126 C23.3461851,34.6219334 23.4163047,34.6110259 23.4801915,34.5902497 C23.5331707,34.5731094 23.5819947,34.550775 23.6339351,34.5315571 C23.6832785,34.5133779 23.7321025,34.4951988 23.7804071,34.4759808 C23.9642763,34.401706 24.142432,34.3211983 24.3060443,34.2256279 L51.4101197,18.4227516 C51.4257018,18.4139218 51.4407645,18.4045725 51.4563467,18.3957426 C51.5280244,18.3526321 51.5789261,18.3027692 51.6433322,18.2570617 C51.7347474,18.1921361 51.8323954,18.1292882 51.9087478,18.059688 C51.9160195,18.0529358 51.926927,18.0477417 51.9336792,18.0409895 C52.021978,17.959443 52.0998886,17.8752995 52.1674112,17.7890784 C52.1824739,17.769341 52.1933814,17.7490842 52.2074053,17.7293469 C52.222468,17.7085707 52.2354531,17.6877945 52.249477,17.6670184 C52.2723308,17.6322183 52.2993399,17.598457 52.3190772,17.5631375 C52.3590714,17.4924985 52.3923132,17.4208207 52.4193223,17.3486235 C52.4234775,17.337716 52.4250357,17.3268085 52.4286715,17.315901 C52.4333462,17.3023965 52.4359432,17.288892 52.4400984,17.2748681 C52.4546417,17.2286411 52.4702239,17.1829335 52.4795732,17.1367066 C52.4941165,17.0650288 52.5019075,16.9928316 52.5039852,16.920115 C52.5045046,16.9092075 52.5045046,16.8977806 52.5045046,16.8868731 L52.5278778,0.431105581 C52.5268389,0.559917851 52.5024269,0.68976893 52.4624328,0.817542391 Z" id="path-432"></path>
- <radialGradient cx="50.0931524%" cy="50.3844673%" fx="50.0931524%" fy="50.3844673%" r="70.4761664%" gradientTransform="translate(0.500932,0.503845),scale(0.579956,1.000000),rotate(-0.078961),translate(-0.500932,-0.503845)" id="radialGradient-434">
- <stop stop-color="#FF7BAC" offset="0%"></stop>
- <stop stop-color="#FFFFFF" offset="100%"></stop>
- </radialGradient>
- <linearGradient x1="88.4980451%" y1="50.0873395%" x2="-42.0982763%" y2="49.3675029%" id="linearGradient-435">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="85.8715202%" y1="50.7167296%" x2="-3.01331794%" y2="48.955235%" id="linearGradient-436">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.20781497%" y1="50.076745%" x2="61.4959301%" y2="50.0142695%" id="linearGradient-437">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.4312686,0.416042856 C52.4271133,0.430066773 52.4245163,0.443571285 52.4193223,0.457595201 C52.3782893,0.577058194 52.3159608,0.694443569 52.2401278,0.809231922 C52.2266233,0.830008095 52.2131187,0.850784268 52.1985754,0.871041036 C52.1159901,0.984790581 52.0167839,1.0954237 51.8993985,1.20138218 C51.8230461,1.27046295 51.7259175,1.33279147 51.6350217,1.39771701 C51.5565917,1.45329327 51.4901079,1.51250536 51.4012898,1.5644458 L24.2977338,17.3673221 C24.1341215,17.4628925 23.9554464,17.5434001 23.7715773,17.617675 C23.7237921,17.6368929 23.6749681,17.6550721 23.6256247,17.6732512 C23.5113557,17.7148036 23.3908539,17.7480454 23.2713909,17.7818067 C23.1477727,17.8166068 23.0231157,17.8493293 22.8948228,17.8763383 C22.7436761,17.9075026 22.5920101,17.9360698 22.4361888,17.9558072 C22.3993111,17.9604818 22.3629528,17.9672341 22.3255557,17.9713893 C22.1162357,17.9942431 21.9043188,18.00567 21.6918824,18.0077476 C21.6581211,18.008267 21.6243598,18.008267 21.5905986,18.008267 C21.3812786,18.0072282 21.1724781,17.9958013 20.9652358,17.9745057 C20.9340715,17.9713893 20.9029072,17.9677535 20.871743,17.9641176 C20.6665783,17.9397056 20.4640106,17.9054249 20.266637,17.8612756 C20.2302787,17.8529651 20.1944398,17.8436158 20.1586009,17.834786 C19.9783676,17.7906366 19.8038477,17.7371379 19.6350413,17.6763676 C19.6049159,17.6654601 19.5732322,17.6571497 19.5436262,17.6457228 C19.3410585,17.5678121 19.1478401,17.4784746 18.9686456,17.3751131 L1.38940654,7.2586753 C0.645100159,6.83016674 0.272167861,6.26661306 0.27320667,5.70409818 L0.249833475,22.1598657 C0.248794667,22.7229 0.621726965,23.2859342 1.36603335,23.7144428 L18.9452724,33.8308806 C19.115637,33.9290481 19.2979479,34.0157886 19.4901275,34.0911022 C19.4999962,34.0952574 19.5109037,34.0973351 19.5207724,34.1014903 C19.5503784,34.1129172 19.5820621,34.1212276 19.6121875,34.1321351 C19.7223012,34.1721293 19.8329344,34.2121234 19.9482421,34.2448459 C20.0095318,34.2619862 20.0734186,34.2754907 20.1362665,34.2905535 C20.1721054,34.2993833 20.2074249,34.3087326 20.2437832,34.3170431 C20.2765056,34.3243147 20.3081893,34.3341834 20.3414312,34.3409357 C20.46453,34.3663865 20.589187,34.3876821 20.7148829,34.4053418 C20.7595517,34.4115747 20.8047398,34.4146911 20.8494086,34.4204045 C20.8805729,34.4240404 20.9117371,34.4276762 20.9434208,34.4307926 C20.9896478,34.4354673 21.0353553,34.4422195 21.0815823,34.4458553 C21.2046811,34.455724 21.3282994,34.4624763 21.452437,34.4650733 C21.4913923,34.4661121 21.5298283,34.4640345 21.5687836,34.4645539 C21.6025449,34.4645539 21.6357867,34.4645539 21.6690286,34.4640345 C21.7251243,34.4635151 21.7817393,34.4650733 21.837835,34.4629957 C21.9775548,34.4578016 22.1167551,34.4484524 22.2554361,34.4344285 C22.2715376,34.4328702 22.2871197,34.4292344 22.3032213,34.4276762 C22.3406184,34.423521 22.3764573,34.4167687 22.4138544,34.4120941 C22.5213711,34.3985896 22.6299266,34.3861238 22.7358851,34.3669059 C22.7826315,34.3585954 22.825742,34.3424939 22.871969,34.3326252 C23.0007813,34.3061356 23.1249189,34.2728937 23.2495759,34.2380936 C23.3150209,34.2199145 23.3851405,34.209007 23.4490272,34.1882308 C23.5020064,34.1710905 23.5508304,34.1487561 23.6027709,34.1295381 C23.6521143,34.111359 23.7009383,34.0931798 23.7492429,34.0739619 C23.933112,33.999687 24.1112677,33.9191794 24.2748801,33.823609 L51.3789554,18.0207327 C51.3945375,18.0119028 51.4096003,18.0025535 51.4251824,17.9937237 C51.4968602,17.9506131 51.5477618,17.9007503 51.6121679,17.8550427 C51.7035831,17.7901172 51.8012311,17.7272693 51.8775836,17.6576691 C51.8848552,17.6509168 51.8957627,17.6457228 51.902515,17.6389705 C51.9908137,17.5574241 52.0687243,17.4732806 52.1362469,17.3870594 C52.1513096,17.3673221 52.1622171,17.3470653 52.176241,17.3273279 C52.1913038,17.3065518 52.2042889,17.2857756 52.2183128,17.2649994 C52.2411666,17.2301993 52.2681756,17.1964381 52.287913,17.1611186 C52.3279071,17.0904796 52.361149,17.0188018 52.388158,16.9466046 C52.3923132,16.9356971 52.3938714,16.9247896 52.3975073,16.9133627 C52.4021819,16.8998582 52.4047789,16.8863537 52.4089342,16.8723298 C52.4234775,16.8261028 52.4390596,16.7803952 52.4484089,16.7336488 C52.4629522,16.661971 52.4707433,16.5897738 52.4728209,16.5170572 C52.4733403,16.5061497 52.4733403,16.4952422 52.4733403,16.4838153 L52.4967135,0.028047833 C52.4951553,0.158418316 52.4712627,0.28774999 52.4312686,0.416042856 Z" id="path-438"></path>
- <path d="M52.4312686,0.416042856 C52.4271133,0.430066773 52.4245163,0.443571285 52.4193223,0.457595201 C52.3782893,0.577058194 52.3159608,0.694443569 52.2401278,0.809231922 C52.2266233,0.830008095 52.2131187,0.850784268 52.1985754,0.871041036 C52.1159901,0.984790581 52.0167839,1.0954237 51.8993985,1.20138218 C51.8230461,1.27046295 51.7259175,1.33279147 51.6350217,1.39771701 C51.5565917,1.45329327 51.4901079,1.51250536 51.4012898,1.5644458 L24.2977338,17.3673221 C24.1341215,17.4628925 23.9554464,17.5434001 23.7715773,17.617675 C23.7237921,17.6368929 23.6749681,17.6550721 23.6256247,17.6732512 C23.5113557,17.7148036 23.3908539,17.7480454 23.2713909,17.7818067 C23.1477727,17.8166068 23.0231157,17.8493293 22.8948228,17.8763383 C22.7436761,17.9075026 22.5920101,17.9360698 22.4361888,17.9558072 C22.3993111,17.9604818 22.3629528,17.9672341 22.3255557,17.9713893 C22.1162357,17.9942431 21.9043188,18.00567 21.6918824,18.0077476 C21.6581211,18.008267 21.6243598,18.008267 21.5905986,18.008267 C21.3812786,18.0072282 21.1724781,17.9958013 20.9652358,17.9745057 C20.9340715,17.9713893 20.9029072,17.9677535 20.871743,17.9641176 C20.6665783,17.9397056 20.4640106,17.9054249 20.266637,17.8612756 C20.2302787,17.8529651 20.1944398,17.8436158 20.1586009,17.834786 C19.9783676,17.7906366 19.8038477,17.7371379 19.6350413,17.6763676 C19.6049159,17.6654601 19.5732322,17.6571497 19.5436262,17.6457228 C19.3410585,17.5678121 19.1478401,17.4784746 18.9686456,17.3751131 L1.38940654,7.2586753 C0.645100159,6.83016674 0.272167861,6.26661306 0.27320667,5.70409818 L0.249833475,22.1598657 C0.248794667,22.7229 0.621726965,23.2859342 1.36603335,23.7144428 L18.9452724,33.8308806 C19.115637,33.9290481 19.2979479,34.0157886 19.4901275,34.0911022 C19.4999962,34.0952574 19.5109037,34.0973351 19.5207724,34.1014903 C19.5503784,34.1129172 19.5820621,34.1212276 19.6121875,34.1321351 C19.7223012,34.1721293 19.8329344,34.2121234 19.9482421,34.2448459 C20.0095318,34.2619862 20.0734186,34.2754907 20.1362665,34.2905535 C20.1721054,34.2993833 20.2074249,34.3087326 20.2437832,34.3170431 C20.2765056,34.3243147 20.3081893,34.3341834 20.3414312,34.3409357 C20.46453,34.3663865 20.589187,34.3876821 20.7148829,34.4053418 C20.7595517,34.4115747 20.8047398,34.4146911 20.8494086,34.4204045 C20.8805729,34.4240404 20.9117371,34.4276762 20.9434208,34.4307926 C20.9896478,34.4354673 21.0353553,34.4422195 21.0815823,34.4458553 C21.2046811,34.455724 21.3282994,34.4624763 21.452437,34.4650733 C21.4913923,34.4661121 21.5298283,34.4640345 21.5687836,34.4645539 C21.6025449,34.4645539 21.6357867,34.4645539 21.6690286,34.4640345 C21.7251243,34.4635151 21.7817393,34.4650733 21.837835,34.4629957 C21.9775548,34.4578016 22.1167551,34.4484524 22.2554361,34.4344285 C22.2715376,34.4328702 22.2871197,34.4292344 22.3032213,34.4276762 C22.3406184,34.423521 22.3764573,34.4167687 22.4138544,34.4120941 C22.5213711,34.3985896 22.6299266,34.3861238 22.7358851,34.3669059 C22.7826315,34.3585954 22.825742,34.3424939 22.871969,34.3326252 C23.0007813,34.3061356 23.1249189,34.2728937 23.2495759,34.2380936 C23.3150209,34.2199145 23.3851405,34.209007 23.4490272,34.1882308 C23.5020064,34.1710905 23.5508304,34.1487561 23.6027709,34.1295381 C23.6521143,34.111359 23.7009383,34.0931798 23.7492429,34.0739619 C23.933112,33.999687 24.1112677,33.9191794 24.2748801,33.823609 L51.3789554,18.0207327 C51.3945375,18.0119028 51.4096003,18.0025535 51.4251824,17.9937237 C51.4968602,17.9506131 51.5477618,17.9007503 51.6121679,17.8550427 C51.7035831,17.7901172 51.8012311,17.7272693 51.8775836,17.6576691 C51.8848552,17.6509168 51.8957627,17.6457228 51.902515,17.6389705 C51.9908137,17.5574241 52.0687243,17.4732806 52.1362469,17.3870594 C52.1513096,17.3673221 52.1622171,17.3470653 52.176241,17.3273279 C52.1913038,17.3065518 52.2042889,17.2857756 52.2183128,17.2649994 C52.2411666,17.2301993 52.2681756,17.1964381 52.287913,17.1611186 C52.3279071,17.0904796 52.361149,17.0188018 52.388158,16.9466046 C52.3923132,16.9356971 52.3938714,16.9247896 52.3975073,16.9133627 C52.4021819,16.8998582 52.4047789,16.8863537 52.4089342,16.8723298 C52.4234775,16.8261028 52.4390596,16.7803952 52.4484089,16.7336488 C52.4629522,16.661971 52.4707433,16.5897738 52.4728209,16.5170572 C52.4733403,16.5061497 52.4733403,16.4952422 52.4733403,16.4838153 L52.4967135,0.028047833 C52.4951553,0.158418316 52.4712627,0.28774999 52.4312686,0.416042856 Z" id="path-440"></path>
- <linearGradient x1="-0.0538010168%" y1="50.046332%" x2="99.9618782%" y2="49.9651263%" id="linearGradient-442">
- <stop stop-color="#00C6FF" offset="0%"></stop>
- <stop stop-color="#0072FF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="88.1652453%" y1="50.0154147%" x2="-7.97812567%" y2="49.8354391%" id="linearGradient-443">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="128.79854%" y1="49.9419724%" x2="6.31860444%" y2="50.0414167%" id="linearGradient-444">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-6.20670358%" y1="50.0761529%" x2="61.4970415%" y2="50.0136793%" id="linearGradient-445">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <path d="M52.3995849,0.533947636 C52.3954297,0.547971552 52.3928326,0.561476064 52.3876386,0.575499981 C52.3466056,0.694962973 52.2842771,0.812348348 52.2084441,0.927136702 C52.1949396,0.947912874 52.1814351,0.968689047 52.1668918,0.988945815 C52.0843065,1.10269536 51.9851002,1.21332848 51.8677149,1.31928696 C51.7913624,1.38836773 51.6942338,1.45069625 51.6033381,1.51562179 C51.524908,1.57119805 51.4584243,1.63041014 51.3696061,1.68235058 L24.2660502,17.4847074 C24.1024378,17.5802778 23.9237627,17.6613049 23.7398936,17.7350603 C23.6921084,17.7542783 23.6432844,17.7724574 23.593941,17.7906366 C23.479672,17.8321889 23.3591702,17.8659502 23.2397073,17.8991921 C23.116089,17.9339922 22.991432,17.9667147 22.8631391,17.9937237 C22.7119925,18.0248879 22.5603264,18.0534552 22.4045051,18.0731925 C22.3676274,18.0778672 22.3312691,18.0846194 22.293872,18.0887747 C22.0845521,18.1116285 21.8726351,18.1230554 21.6601987,18.125133 C21.6264375,18.1256524 21.5926762,18.1261718 21.5589149,18.1256524 C21.349595,18.1246136 21.1407944,18.1131867 20.9335521,18.0918911 C20.9023878,18.0887747 20.8712236,18.0851388 20.8400593,18.081503 C20.6348946,18.057091 20.4323269,18.0228103 20.2349533,17.978661 C20.198595,17.9703505 20.1627561,17.9610012 20.1269172,17.9521713 C19.9466839,17.908022 19.772164,17.8545233 19.6033576,17.793753 C19.5732322,17.7828455 19.5415485,17.7745351 19.5119425,17.7631082 C19.3093748,17.6851975 19.1161564,17.59586 18.9369619,17.4924985 L1.35772288,7.37606067 C0.613416496,6.94755211 0.240484198,6.38451784 0.241523006,5.82148356 L0.218149812,22.2772511 C0.217111004,22.8402853 0.590043302,23.4033196 1.33434968,23.8318282 L18.9135887,33.948266 C19.0839533,34.0464334 19.2662642,34.1331739 19.4584438,34.2084876 C19.4683125,34.2121234 19.47922,34.2147204 19.4890887,34.2188757 C19.5186947,34.2303026 19.5503784,34.238613 19.5805039,34.2495205 C19.6906176,34.2895146 19.8012507,34.3295088 19.9165584,34.3627507 C19.9778482,34.379891 20.0417349,34.3928761 20.1045828,34.4084582 C20.1404217,34.4172881 20.1757412,34.4266374 20.2120995,34.4349479 C20.244822,34.4422195 20.2765056,34.4520882 20.3097475,34.4588405 C20.4328463,34.4842913 20.5575034,34.5055868 20.6831992,34.5232466 C20.727868,34.5294794 20.7730562,34.5325959 20.8177249,34.5383093 C20.8488892,34.5419451 20.8800535,34.545581 20.9117371,34.5486974 C20.9579641,34.553372 21.0036717,34.5601243 21.0498987,34.5637601 C21.1729975,34.5736288 21.2966157,34.5803811 21.4207533,34.5829781 C21.4597087,34.5840169 21.4981446,34.5819393 21.5370999,34.5824587 C21.5708612,34.5824587 21.6041031,34.5824587 21.6373449,34.5819393 C21.6934406,34.5814199 21.7500557,34.5829781 21.8061513,34.5809005 C21.9458711,34.5757064 22.0850715,34.5663571 22.2237524,34.5523332 C22.2398539,34.550775 22.2554361,34.5471392 22.2715376,34.545581 C22.3089347,34.5414257 22.3447736,34.5346735 22.3821707,34.5299988 C22.4896874,34.5164943 22.5982429,34.5040286 22.7042014,34.4848107 C22.7509478,34.4765002 22.7940584,34.4603987 22.8402853,34.4510494 C22.9690976,34.4240404 23.0932352,34.3913179 23.2178923,34.3565178 C23.2833372,34.3378192 23.3534568,34.3274312 23.4173435,34.306655 C23.4703228,34.2895146 23.5191468,34.2671803 23.5710872,34.2479623 C23.6204306,34.2297832 23.6692546,34.211604 23.7175592,34.192386 C23.9014284,34.1181112 24.079584,34.0376036 24.2431964,33.9420332 L51.3472717,18.1391569 C51.3628539,18.130327 51.3779166,18.1209777 51.3934987,18.1121479 C51.4651765,18.0690373 51.5160782,18.0191745 51.5804843,17.9734669 C51.6718994,17.9085414 51.7695475,17.8456934 51.8458999,17.7760933 C51.8531716,17.7698604 51.864079,17.764147 51.8708313,17.7573947 C51.95913,17.6758482 52.0370407,17.5917047 52.1045632,17.5054836 C52.119626,17.4857463 52.1305335,17.4654895 52.1445574,17.4457521 C52.1596201,17.424976 52.1726052,17.4041998 52.1866291,17.3834236 C52.2094829,17.3486235 52.2364919,17.3148622 52.2562293,17.2795427 C52.2962234,17.2089038 52.3294653,17.137226 52.3564743,17.0650288 C52.3606296,17.0541213 52.3621878,17.0432138 52.3658236,17.0323063 C52.3704982,17.0188018 52.3730953,17.0047779 52.3772505,16.9912733 C52.3917938,16.9450464 52.407376,16.8993388 52.4167252,16.8525924 C52.4312686,16.7809146 52.4390596,16.7087174 52.4411372,16.6360008 C52.4416566,16.6250933 52.4416566,16.6141858 52.4416566,16.6027589 L52.4650298,0.146991421 C52.463991,0.275803691 52.439579,0.40565477 52.3995849,0.533947636 Z" id="path-446"></path>
- <path d="M52.3995849,0.533947636 C52.3954297,0.547971552 52.3928326,0.561476064 52.3876386,0.575499981 C52.3466056,0.694962973 52.2842771,0.812348348 52.2084441,0.927136702 C52.1949396,0.947912874 52.1814351,0.968689047 52.1668918,0.988945815 C52.0843065,1.10269536 51.9851002,1.21332848 51.8677149,1.31928696 C51.7913624,1.38836773 51.6942338,1.45069625 51.6033381,1.51562179 C51.524908,1.57119805 51.4584243,1.63041014 51.3696061,1.68235058 L24.2660502,17.4847074 C24.1024378,17.5802778 23.9237627,17.6613049 23.7398936,17.7350603 C23.6921084,17.7542783 23.6432844,17.7724574 23.593941,17.7906366 C23.479672,17.8321889 23.3591702,17.8659502 23.2397073,17.8991921 C23.116089,17.9339922 22.991432,17.9667147 22.8631391,17.9937237 C22.7119925,18.0248879 22.5603264,18.0534552 22.4045051,18.0731925 C22.3676274,18.0778672 22.3312691,18.0846194 22.293872,18.0887747 C22.0845521,18.1116285 21.8726351,18.1230554 21.6601987,18.125133 C21.6264375,18.1256524 21.5926762,18.1261718 21.5589149,18.1256524 C21.349595,18.1246136 21.1407944,18.1131867 20.9335521,18.0918911 C20.9023878,18.0887747 20.8712236,18.0851388 20.8400593,18.081503 C20.6348946,18.057091 20.4323269,18.0228103 20.2349533,17.978661 C20.198595,17.9703505 20.1627561,17.9610012 20.1269172,17.9521713 C19.9466839,17.908022 19.772164,17.8545233 19.6033576,17.793753 C19.5732322,17.7828455 19.5415485,17.7745351 19.5119425,17.7631082 C19.3093748,17.6851975 19.1161564,17.59586 18.9369619,17.4924985 L1.35772288,7.37606067 C0.613416496,6.94755211 0.240484198,6.38451784 0.241523006,5.82148356 L0.218149812,22.2772511 C0.217111004,22.8402853 0.590043302,23.4033196 1.33434968,23.8318282 L18.9135887,33.948266 C19.0839533,34.0464334 19.2662642,34.1331739 19.4584438,34.2084876 C19.4683125,34.2121234 19.47922,34.2147204 19.4890887,34.2188757 C19.5186947,34.2303026 19.5503784,34.238613 19.5805039,34.2495205 C19.6906176,34.2895146 19.8012507,34.3295088 19.9165584,34.3627507 C19.9778482,34.379891 20.0417349,34.3928761 20.1045828,34.4084582 C20.1404217,34.4172881 20.1757412,34.4266374 20.2120995,34.4349479 C20.244822,34.4422195 20.2765056,34.4520882 20.3097475,34.4588405 C20.4328463,34.4842913 20.5575034,34.5055868 20.6831992,34.5232466 C20.727868,34.5294794 20.7730562,34.5325959 20.8177249,34.5383093 C20.8488892,34.5419451 20.8800535,34.545581 20.9117371,34.5486974 C20.9579641,34.553372 21.0036717,34.5601243 21.0498987,34.5637601 C21.1729975,34.5736288 21.2966157,34.5803811 21.4207533,34.5829781 C21.4597087,34.5840169 21.4981446,34.5819393 21.5370999,34.5824587 C21.5708612,34.5824587 21.6041031,34.5824587 21.6373449,34.5819393 C21.6934406,34.5814199 21.7500557,34.5829781 21.8061513,34.5809005 C21.9458711,34.5757064 22.0850715,34.5663571 22.2237524,34.5523332 C22.2398539,34.550775 22.2554361,34.5471392 22.2715376,34.545581 C22.3089347,34.5414257 22.3447736,34.5346735 22.3821707,34.5299988 C22.4896874,34.5164943 22.5982429,34.5040286 22.7042014,34.4848107 C22.7509478,34.4765002 22.7940584,34.4603987 22.8402853,34.4510494 C22.9690976,34.4240404 23.0932352,34.3913179 23.2178923,34.3565178 C23.2833372,34.3378192 23.3534568,34.3274312 23.4173435,34.306655 C23.4703228,34.2895146 23.5191468,34.2671803 23.5710872,34.2479623 C23.6204306,34.2297832 23.6692546,34.211604 23.7175592,34.192386 C23.9014284,34.1181112 24.079584,34.0376036 24.2431964,33.9420332 L51.3472717,18.1391569 C51.3628539,18.130327 51.3779166,18.1209777 51.3934987,18.1121479 C51.4651765,18.0690373 51.5160782,18.0191745 51.5804843,17.9734669 C51.6718994,17.9085414 51.7695475,17.8456934 51.8458999,17.7760933 C51.8531716,17.7698604 51.864079,17.764147 51.8708313,17.7573947 C51.95913,17.6758482 52.0370407,17.5917047 52.1045632,17.5054836 C52.119626,17.4857463 52.1305335,17.4654895 52.1445574,17.4457521 C52.1596201,17.424976 52.1726052,17.4041998 52.1866291,17.3834236 C52.2094829,17.3486235 52.2364919,17.3148622 52.2562293,17.2795427 C52.2962234,17.2089038 52.3294653,17.137226 52.3564743,17.0650288 C52.3606296,17.0541213 52.3621878,17.0432138 52.3658236,17.0323063 C52.3704982,17.0188018 52.3730953,17.0047779 52.3772505,16.9912733 C52.3917938,16.9450464 52.407376,16.8993388 52.4167252,16.8525924 C52.4312686,16.7809146 52.4390596,16.7087174 52.4411372,16.6360008 C52.4416566,16.6250933 52.4416566,16.6141858 52.4416566,16.6027589 L52.4650298,0.146991421 C52.463991,0.275803691 52.439579,0.40565477 52.3995849,0.533947636 Z" id="path-448"></path>
- <linearGradient x1="-57.8785208%" y1="49.8347958%" x2="183.881272%" y2="49.8347958%" id="linearGradient-450">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-57.9048901%" y1="49.8247763%" x2="183.854952%" y2="49.8247763%" id="linearGradient-451">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-57.9268731%" y1="49.8278139%" x2="183.832969%" y2="49.8278139%" id="linearGradient-452">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.1378437%" y1="49.8233466%" x2="183.621999%" y2="49.8233466%" id="linearGradient-453">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.1598149%" y1="49.8270991%" x2="183.599978%" y2="49.8270991%" id="linearGradient-454">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.1861842%" y1="49.8341668%" x2="183.573658%" y2="49.8341668%" id="linearGradient-455">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.3971548%" y1="49.8270991%" x2="183.362688%" y2="49.8270991%" id="linearGradient-456">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.4191378%" y1="49.8341668%" x2="183.340705%" y2="49.8341668%" id="linearGradient-457">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.4411089%" y1="49.826304%" x2="183.318684%" y2="49.826304%" id="linearGradient-458">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.6520795%" y1="49.826304%" x2="183.107714%" y2="49.826304%" id="linearGradient-459">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.6784489%" y1="49.826304%" x2="183.081394%" y2="49.826304%" id="linearGradient-460">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-58.7004319%" y1="49.8219297%" x2="183.059411%" y2="49.8219297%" id="linearGradient-461">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.0918113%" y1="-170.625787%" x2="49.4266091%" y2="136.959312%" id="linearGradient-462">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1680964%" y1="-103.214504%" x2="49.5028094%" y2="204.331635%" id="linearGradient-463">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.242567%" y1="-35.8452118%" x2="49.5772799%" y2="271.700927%" id="linearGradient-464">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1224987%" y1="-129.633874%" x2="49.4315425%" y2="154.290519%" id="linearGradient-465">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1985731%" y1="-62.2560507%" x2="49.5076168%" y2="221.668342%" id="linearGradient-466">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.2730625%" y1="5.12177534%" x2="49.5821062%" y2="289.046168%" id="linearGradient-467">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1111539%" y1="-141.873794%" x2="49.4201769%" y2="142.042101%" id="linearGradient-468">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1713749%" y1="-74.4984707%" x2="49.4803979%" y2="209.417424%" id="linearGradient-469">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.2458029%" y1="-7.12340944%" x2="49.5548488%" y2="276.803022%" id="linearGradient-470">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.0290029%" y1="-241.164757%" x2="49.5182928%" y2="208.371971%" id="linearGradient-471">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="49.1636458%" y1="-106.418057%" x2="49.652972%" y2="343.135353%" id="linearGradient-472">
- <stop stop-color="#FB6583" offset="0.54%"></stop>
- <stop stop-color="#FC7688" offset="13.02%"></stop>
- <stop stop-color="#FDA797" offset="52.77%"></stop>
- <stop stop-color="#FFC6A0" offset="83.02%"></stop>
- <stop stop-color="#FFD1A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="20.1739677%" y1="64.4697211%" x2="53.4193295%" y2="48.3404961%" id="linearGradient-473">
- <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#1C22A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.657961763%" y1="54.830405%" x2="55.6566923%" y2="49.4460103%" id="linearGradient-474">
- <stop stop-color="#001563" stop-opacity="0" offset="0%"></stop>
- <stop stop-color="#1C22A3" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-21.9925286%" y1="49.9998799%" x2="152.935694%" y2="49.9998799%" id="linearGradient-475">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-20.3349617%" y1="49.9998799%" x2="159.960394%" y2="49.9998799%" id="linearGradient-476">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-38.3054216%" y1="49.9994588%" x2="61.694391%" y2="49.9994588%" id="linearGradient-477">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-26.1084283%" y1="-63.8473919%" x2="116.562719%" y2="149.569776%" id="linearGradient-478">
- <stop stop-color="#0396FF" offset="0%"></stop>
- <stop stop-color="#109CFF" offset="9.98%"></stop>
- <stop stop-color="#33ACFF" offset="28.51%"></stop>
- <stop stop-color="#6BC6FF" offset="53.56%"></stop>
- <stop stop-color="#B7EAFF" offset="83.84%"></stop>
- <stop stop-color="#E3FEFF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="4.45069039%" y1="14.6105526%" x2="195.467608%" y2="163.021415%" id="linearGradient-479">
- <stop stop-color="#0396FF" offset="0%"></stop>
- <stop stop-color="#36AEFF" offset="16.66%"></stop>
- <stop stop-color="#73CAFF" offset="38.53%"></stop>
- <stop stop-color="#A3E0FF" offset="58.59%"></stop>
- <stop stop-color="#C6F1FF" offset="76.16%"></stop>
- <stop stop-color="#DBFAFF" offset="90.57%"></stop>
- <stop stop-color="#E3FEFF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="21.5878471%" y1="35.9355219%" x2="126.030007%" y2="87.6367871%" id="linearGradient-480">
- <stop stop-color="#0396FF" offset="0%"></stop>
- <stop stop-color="#36AEFF" offset="16.66%"></stop>
- <stop stop-color="#73CAFF" offset="38.53%"></stop>
- <stop stop-color="#A3E0FF" offset="58.59%"></stop>
- <stop stop-color="#C6F1FF" offset="76.16%"></stop>
- <stop stop-color="#DBFAFF" offset="90.57%"></stop>
- <stop stop-color="#E3FEFF" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="99.9955889%" y1="49.9976301%" x2="-948.812528%" y2="49.9976301%" id="linearGradient-481">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="0.0017644464%" y1="49.9992101%" x2="1048.809%" y2="49.9992101%" id="linearGradient-482">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.00352920416%" y1="49.99921%" x2="1048.89624%" y2="49.99921%" id="linearGradient-483">
- <stop stop-color="#55FF94" offset="0.63%"></stop>
- <stop stop-color="#E9FFF9" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="29.5738268%" y1="-79.2368343%" x2="64.3318875%" y2="135.091659%" id="linearGradient-484">
- <stop stop-color="#D4FFF1" offset="0.54%"></stop>
- <stop stop-color="#C5FFEA" offset="11.72%"></stop>
- <stop stop-color="#94FFD5" offset="52.07%"></stop>
- <stop stop-color="#75FFC7" offset="82.77%"></stop>
- <stop stop-color="#6AFFC2" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="223.93255%" y1="371.835209%" x2="-0.810874138%" y2="-76.341069%" id="linearGradient-485">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="221.359993%" y1="309.272922%" x2="-22.3113136%" y2="-59.2769946%" id="linearGradient-486">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="218.61775%" y1="298.116565%" x2="-21.1374018%" y2="-54.5751195%" id="linearGradient-487">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="218.61775%" y1="298.10739%" x2="-21.1374018%" y2="-54.570324%" id="linearGradient-488">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="218.61775%" y1="298.106254%" x2="-21.1374018%" y2="-54.5705009%" id="linearGradient-489">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="218.61775%" y1="298.106269%" x2="-21.1374018%" y2="-54.5706778%" id="linearGradient-490">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="218.61775%" y1="298.116751%" x2="-21.1376239%" y2="-54.5752085%" id="linearGradient-491">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="218.61775%" y1="298.116574%" x2="-21.1376239%" y2="-54.5753854%" id="linearGradient-492">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="-0.000207629909%" y1="50.0005885%" x2="99.9995165%" y2="50.0005885%" id="linearGradient-493">
- <stop stop-color="#00C6FB" offset="0.54%"></stop>
- <stop stop-color="#005BEA" offset="100%"></stop>
- </linearGradient>
- <linearGradient x1="32.6917573%" y1="81.704511%" x2="48.0880783%" y2="26.5069661%" id="linearGradient-494">
- <stop stop-color="#FFFFFF" offset="0.04607372%"></stop>
- <stop stop-color="#6ADFFF" stop-opacity="0.56" offset="49.16%"></stop>
- <stop stop-color="#FFFFFF" stop-opacity="0" offset="100%"></stop>
- </linearGradient>
- </defs>
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
- <g id="ios签名">
- <g id="top" transform="translate(-83.000000, 0.000000)">
- <g id="签名banner" transform="translate(83.000000, 0.000000)">
- <mask id="mask-2" fill="white">
- <use xlink:href="#path-1"></use>
- </mask>
- <g id="banner尺寸"></g>
- <g id="Group-2" mask="url(#mask-2)">
- <g transform="translate(-800.000000, -157.000000)">
- <g id="分组-8">
- <polygon id="矩形" stroke="" stroke-width="0.452" opacity="0.953566778" stroke-linecap="round" stroke-linejoin="round" transform="translate(937.757082, 885.440936) rotate(35.000000) translate(-937.757082, -885.440936) " points="318.694439 629.280886 1556.81972 567.59861 1371.64306 1024.27336 546.043195 1203.28326"></polygon>
- <path d="M1052.34378,540.755 L1792.6081,190.953974" id="直线-12" stroke="url(#linearGradient-3)" stroke-width="0.5" opacity="0.443312872"></path>
- <path d="M1698.68841,279.755 L2158.61034,511.342655" id="直线-13" stroke="url(#linearGradient-4)" stroke-width="0.5" opacity="0.467912946"></path>
- <path d="M1740.68841,257.556026 L2200.61034,489.143681" id="直线-13-copy" stroke="url(#linearGradient-5)" stroke-width="0.5" opacity="0.326706659"></path>
- <path d="M1784.68841,236.655513 L2244.61034,468.243168" id="直线-13-copy-2" stroke="url(#linearGradient-5)" stroke-width="0.5" opacity="0.210379464"></path>
- <path d="M1823.68841,212.655513 L2283.61034,444.243168" id="直线-13-copy-3" stroke="url(#linearGradient-5)" stroke-width="0.5" opacity="0.467912946"></path>
- <path d="M1868.68841,185.755 L2328.61034,417.342655" id="直线-13-copy-4" stroke="url(#linearGradient-5)" stroke-width="0.5" opacity="0.179571243"></path>
- <path d="M803.343783,444.900513 L1543.6081,95.0994872" id="直线-12-copy-3" stroke="url(#linearGradient-6)" stroke-width="0.5" opacity="0.569289435"></path>
- <path d="M713.343783,410.801026 L1453.6081,61" id="直线-12-copy-4" stroke="url(#linearGradient-6)" stroke-width="0.5" opacity="0.257324219"></path>
- <path d="M656.343783,349.801026 L1396.6081,0" id="直线-12-copy-5" stroke="url(#linearGradient-6)" stroke-width="1.0252" opacity="0.276041667"></path>
- <path d="M869.343783,489.801026 L1609.6081,140" id="直线-12-copy-2" stroke="url(#linearGradient-7)" stroke-width="1.0252" opacity="0.171223958"></path>
- <path d="M1009.34378,489.801026 L1749.6081,140" id="直线-12-copy" stroke="url(#linearGradient-8)" stroke-width="1.0252" opacity="0.323242188"></path>
- <polygon id="矩形-copy" stroke="url(#linearGradient-9)" stroke-width="0.452" opacity="0.323893229" stroke-linecap="round" stroke-linejoin="round" transform="translate(874.757082, 950.440936) rotate(35.000000) translate(-874.757082, -950.440936) " points="255.694439 694.280886 1493.81972 632.59861 1308.64306 1089.27336 483.043195 1268.28326"></polygon>
- <polygon id="矩形-copy-2" stroke="url(#linearGradient-9)" stroke-width="0.452" opacity="0.505650112" stroke-linecap="round" stroke-linejoin="round" transform="translate(821.343783, 1011.440936) rotate(35.000000) translate(-821.343783, -1011.440936) " points="202.28114 755.280886 1440.40643 693.59861 1255.22976 1150.27336 429.629897 1329.28326"></polygon>
- <polygon id="矩形-copy-3" stroke="url(#linearGradient-9)" stroke-width="0.452" opacity="0.563151042" stroke-linecap="round" stroke-linejoin="round" transform="translate(745.757082, 1063.440936) rotate(35.000000) translate(-745.757082, -1063.440936) " points="126.694439 807.280886 1364.81972 745.59861 1179.64306 1202.27336 354.043195 1381.28326"></polygon>
- <polygon id="矩形-copy-4" stroke="url(#linearGradient-9)" stroke-width="0.452" opacity="0.351609003" stroke-linecap="round" stroke-linejoin="round" transform="translate(690.062643, 1130.440936) rotate(35.000000) translate(-690.062643, -1130.440936) " points="71 874.280886 1309.12529 812.59861 1123.94862 1269.27336 298.348756 1448.28326"></polygon>
- <polygon id="矩形" fill="#000487" opacity="0.05" transform="translate(1668.331493, 583.159853) rotate(-46.000000) translate(-1668.331493, -583.159853) " points="1279.72125 171.489284 1867.66179 394.567567 2056.94174 994.830422 1419.0156 835.4109"></polygon>
- <polygon id="矩形-copy-11" stroke="url(#linearGradient-10)" fill="#000487" opacity="0.08" transform="translate(1668.331493, 583.159853) rotate(-46.000000) translate(-1668.331493, -583.159853) " points="1346.86246 242.614685 1834.20202 426.205696 1989.80053 923.705021 1471.71327 782.536289"></polygon>
- <polygon id="矩形-copy-7" stroke="url(#linearGradient-11)" fill="#040781" opacity="0.1" transform="translate(1668.331493, 583.159853) rotate(-46.000000) translate(-1668.331493, -583.159853) " points="1424.67675 325.046517 1794.05166 464.197774 1911.98624 841.273189 1519.30637 734.27554"></polygon>
- </g>
- <g id="签名图" transform="translate(1303.000000, 309.000000)">
- <g id="09-copy" transform="translate(440.160000, 114.894000)">
- <polygon id="Path" fill="url(#linearGradient-12)" points="97.8493251 99.5083277 97.8493251 130.138296 61.7864885 153.158499 62.1562774 120.488681"></polygon>
- <polygon id="Path" fill="url(#linearGradient-13)" points="24.0502247 98.3975182 24.0502247 129.027487 61.7864885 153.158499 62.1562774 117.64674"></polygon>
- <path d="M108.486167,102.731118 L65.4108048,128.232609 C63.4652053,129.384292 61.0483532,129.389582 59.097945,128.246073 L14.0803495,101.852568 C12.8050826,101.104816 12.8291261,99.2534666 14.1231469,98.538894 L57.9986765,74.377106 C59.9803412,73.283127 62.3995976,73.3518914 64.3158641,74.5574322 L108.518866,100.329653 C109.409437,100.889867 109.391645,102.194948 108.486167,102.731118 Z" id="XMLID_1576_" stroke="url(#linearGradient-14)" stroke-width="1.192815"></path>
- <polygon id="Path" fill="url(#linearGradient-15)" transform="translate(33.043454, 114.552841) scale(-1, 1) translate(-33.043454, -114.552841) " points="-9.23705556e-14 119.523567 31.4637971 135.890499 66.0869078 112.972217 32.5512843 93.2151836"></polygon>
- <g id="XMLID_1574_" transform="translate(23.930007, 85.594839)" fill="url(#linearGradient-16)">
- <path d="M38.2262702,21.2203069 L39.9396096,35.8079756 L39.9396096,35.8079756 C38.8816959,36.4326256 37.5684402,36.4369534 36.5066795,35.8190356 L1.70853068,15.5647963 C0.725151778,14.9925611 0.12021747,13.9404178 0.12021747,12.8026797 L0.12021747,0.0504913374 L38.2262702,21.2203069 Z" id="XMLID_1575_"></path>
- </g>
- <g id="XMLID_1572_" transform="translate(61.918728, 86.556578)" fill="url(#linearGradient-17)">
- <path d="M35.9305974,0.232741022 L35.9305974,12.9522302 C35.9305974,14.0827553 35.333357,15.1291282 34.3600764,15.7042485 L1.89606994,34.8794158 C1.16322424,35.3121987 0.237549721,34.7842036 0.237549721,33.9330639 L0.237549721,19.1963256 L35.9305974,0.232741022 Z" id="XMLID_1573_"></path>
- </g>
- <path d="M97.3189256,87.8496374 L64.2182475,107.446047 C62.723223,108.330847 60.8661036,108.335175 59.3672321,107.456145 L24.7739339,87.1744961 C23.7939211,86.5998566 23.8121941,85.1769626 24.806633,84.6278092 L58.5223438,66.0609423 C60.0452587,65.2199009 61.9043016,65.2732775 63.3767252,66.1994328 L97.3439309,86.003578 C98.0286896,86.4349183 98.0152252,87.437532 97.3189256,87.8496374 Z" id="XMLID_1571_" fill="url(#linearGradient-18)"></path>
- <g id="XMLID_1567_" transform="translate(23.930007, 65.879174)" fill="url(#linearGradient-19)">
- <path d="M38.2262702,21.3212896 L39.9396096,35.9089583 L39.9396096,35.9089583 C38.8816959,36.5336082 37.5684402,36.5379361 36.5066795,35.9200183 L1.70853068,15.6657789 C0.725151778,15.0935438 0.12021747,14.0414005 0.12021747,12.9036623 L0.12021747,0.151474012 L38.2262702,21.3212896 Z" id="XMLID_1568_"></path>
- </g>
- <g id="XMLID_1565_" transform="translate(61.918728, 66.840913)" fill="url(#linearGradient-20)">
- <path d="M35.9305974,0.333242827 L35.9305974,13.052732 C35.9305974,14.1832571 35.333357,15.22963 34.3600764,15.8047503 L1.89606994,34.9794368 C1.16322424,35.4122197 0.237549721,34.8842245 0.237549721,34.0330849 L0.237549721,19.2958657 L35.9305974,0.333242827 Z" id="XMLID_1566_"></path>
- </g>
- <path d="M97.3189256,68.2344742 L64.2182475,87.8308835 C62.723223,88.7156841 60.8661036,88.7200119 59.3672321,87.8409818 L24.7739339,67.5593329 C23.7939211,66.9846934 23.8121941,65.5617994 24.806633,65.012646 L58.5223438,46.4457791 C60.0452587,45.6047376 61.9043016,45.6581142 63.3767252,46.5842696 L97.3439309,66.3884147 C98.0286896,66.8202359 98.0152252,67.8228496 97.3189256,68.2344742 Z" id="XMLID_1564_" fill="url(#linearGradient-21)"></path>
- <path d="M91.9788656,67.6280973 L63.7383393,84.3474621 C62.4630724,85.1024278 60.8781253,85.1057939 59.5994923,84.3561178 L30.0856226,67.052496 C29.2493898,66.5624896 29.2652585,65.3482932 30.113513,64.8799259 L58.8786683,49.0391103 C60.1779788,48.3216525 61.7638876,48.3668542 63.0204006,49.1574043 L92.0005048,66.0537293 C92.5842808,66.4211139 92.5727399,67.2765814 91.9788656,67.6280973 Z" id="XMLID_1561_" fill="url(#linearGradient-22)"></path>
- <path d="M52.1551457,83.6131738 C52.1551457,83.6131738 53.3755934,84.3138012 55.2062651,85.3645019 C56.1184752,85.8949014 57.1831211,86.5137809 58.3232636,87.1773813 C58.6084195,87.3432815 58.898384,87.5115859 59.1917146,87.6822947 C59.4864879,87.8621401 59.7764524,88.0198654 60.1034439,88.1371976 C60.7449243,88.37619 61.4479561,88.4911179 62.1404087,88.4324517 C62.8333422,88.3843647 63.5118496,88.1708585 64.1071665,87.8308835 C64.7048878,87.481772 65.2929917,87.1384309 65.8623416,86.8061498 C67.0000797,86.1382215 68.0618404,85.5145333 68.9716462,84.9802869 C70.79799,83.9218923 72.0150717,83.2159753 72.0150717,83.2159753 C72.0150717,83.2159753 70.8109735,83.9440123 69.0043454,85.0355869 C68.0979057,85.5765655 67.0409537,86.2074668 65.9080242,86.8835698 C65.3405978,87.2201788 64.7544174,87.5683286 64.1586196,87.9222488 C63.5541662,88.2732838 62.8602709,88.4988118 62.1490644,88.5517075 C61.4378578,88.6070075 60.7194382,88.4834239 60.0664169,88.2348142 C59.7403872,88.1165202 59.4258983,87.9419645 59.1426659,87.7659661 C58.850297,87.5933338 58.5617751,87.422625 58.2780619,87.2548014 C57.1422472,86.583507 56.08241,85.9569336 55.1740468,85.4202828 C53.36261,84.3359212 52.1551457,83.6131738 52.1551457,83.6131738 Z" id="Path" fill="#DCCAFF"></path>
- <path d="M65.7180806,93.2151836 C65.7180806,93.2151836 68.1873475,92.2510394 69.4150083,90.7608237 C69.9386756,90.1251137 69.6924702,88.4651509 68.4417276,88.5848875 C67.9358525,88.6334553 67.0649972,88.7411702 65.7180806,89.3571645 L65.7180806,93.2151836 L65.7180806,93.2151836 Z" id="Path" fill="url(#linearGradient-23)"></path>
- <path d="M65.7180806,90.2525442 L65.7180806,89.3571645 C65.7180806,89.3571645 67.9329673,91.2864145 65.7180806,93.2151836 L65.7180806,90.2525442 Z" id="Path" fill="url(#linearGradient-24)"></path>
- <path d="M65.7180806,97.9219379 C65.7180806,97.9219379 68.1873475,96.9577938 69.4150083,95.4675781 C69.9386756,94.8318681 69.6924702,93.1719053 68.4417276,93.2916419 C67.9358525,93.3402097 67.0649972,93.4479246 65.7180806,94.0639189 L65.7180806,97.9219379 L65.7180806,97.9219379 Z" id="Path" fill="url(#linearGradient-25)"></path>
- <path d="M65.7180806,94.9592986 L65.7180806,94.0639189 C65.7180806,94.0639189 67.9329673,95.9931688 65.7180806,97.9219379 L65.7180806,94.9592986 Z" id="Path" fill="url(#linearGradient-26)"></path>
- <path d="M57.9178903,93.2502871 C57.9178903,93.2502871 55.4486235,92.2861429 54.2209627,90.7959272 C53.6972954,90.1602172 53.9435008,88.5002544 55.1942433,88.619991 C55.7001184,88.6685588 56.5709738,88.7762737 57.9178903,89.392268 L57.9178903,93.2502871 L57.9178903,93.2502871 Z" id="Path" fill="url(#linearGradient-27)"></path>
- <path d="M57.9178903,90.2876477 L57.9178903,89.392268 C57.9178903,89.392268 55.7030037,91.321518 57.9178903,93.2502871 L57.9178903,90.2876477 Z" id="Path" fill="url(#linearGradient-28)"></path>
- <path d="M57.9178903,97.9565606 C57.9178903,97.9565606 55.4486235,96.9924165 54.2209627,95.5022007 C53.6972954,94.8664907 53.9435008,93.2065279 55.1942433,93.3262645 C55.7001184,93.3748324 56.5709738,93.4825472 57.9178903,94.0985415 L57.9178903,97.9565606 L57.9178903,97.9565606 Z" id="Path" fill="url(#linearGradient-29)"></path>
- <path d="M57.9178903,94.9939212 L57.9178903,94.0985415 C57.9178903,94.0985415 55.7030037,96.0277915 57.9178903,97.9565606 L57.9178903,94.9939212 Z" id="Path" fill="url(#linearGradient-30)"></path>
- <path d="M57.8832677,95.0328717 L59.3763687,95.9080549 C60.8747592,96.7866042 62.7323596,96.7827572 64.227384,95.8979566 L65.7180806,95.0150795 L66.1864479,95.2309901 L64.4673381,96.8553685 L60.8896662,97.3944237 L59.153245,96.690911 L57.3860482,95.2439736 L57.8832677,95.0328717 Z" id="Path" fill="url(#linearGradient-31)"></path>
- <path d="M66.1869288,95.231471 L64.2182475,96.3937335 C62.723223,97.278534 60.8661036,97.2828619 59.3672321,96.4038317 L57.3865291,95.2439736 L57.3865291,96.7394789 L59.3672321,97.9007797 C60.8656227,98.7793289 62.723223,98.775482 64.2182475,97.8906814 L66.1869288,96.7250528 L66.1869288,95.231471 Z" id="Path" fill="url(#linearGradient-32)"></path>
- <path d="M57.8832677,90.3030356 L59.3763687,91.1782187 C60.8747592,92.056768 62.7323596,92.0529211 64.227384,91.1681205 L65.7180806,90.2852434 L66.1864479,90.501154 L64.4673381,92.1255324 L60.8896662,92.6645875 L59.153245,91.9610749 L57.3860482,90.5141374 L57.8832677,90.3030356 Z" id="Path" fill="url(#linearGradient-33)"></path>
- <path d="M66.1869288,90.501154 L64.2182475,91.6634165 C62.723223,92.548217 60.8661036,92.5525449 59.3672321,91.6735147 L57.3865291,90.5136566 L57.3865291,92.0091619 L59.3672321,93.1704627 C60.8656227,94.0490119 62.723223,94.045165 64.2182475,93.1603644 L66.1869288,91.9947358 L66.1869288,90.501154 Z" id="Path" fill="url(#linearGradient-34)"></path>
- <path d="M66.0869078,113.077995 C66.0869078,113.077995 68.5561747,112.113851 69.7838355,110.623635 C70.3075028,109.987925 70.0612974,108.327962 68.8105548,108.447699 C68.3046797,108.496267 67.4338244,108.603981 66.0869078,109.219976 L66.0869078,113.077995 L66.0869078,113.077995 Z" id="Path" fill="url(#linearGradient-35)"></path>
- <path d="M66.0869078,110.115355 L66.0869078,109.219976 C66.0869078,109.219976 68.3017945,111.149226 66.0869078,113.077995 L66.0869078,110.115355 Z" id="Path" fill="url(#linearGradient-36)"></path>
- <path d="M66.0869078,117.784749 C66.0869078,117.784749 68.5561747,116.820605 69.7838355,115.330389 C70.3075028,114.694679 70.0612974,113.034717 68.8105548,113.154453 C68.3046797,113.203021 67.4338244,113.310736 66.0869078,113.92673 L66.0869078,117.784749 L66.0869078,117.784749 Z" id="Path" fill="url(#linearGradient-37)"></path>
- <path d="M66.0869078,114.82211 L66.0869078,113.92673 C66.0869078,113.92673 68.3017945,115.85598 66.0869078,117.784749 L66.0869078,114.82211 Z" id="Path" fill="url(#linearGradient-38)"></path>
- <path d="M58.2631549,113.113098 C58.2631549,113.113098 55.7938881,112.148954 54.5662273,110.658738 C54.04256,110.023028 54.2887653,108.363066 55.5395079,108.482802 C56.045383,108.53137 56.9162384,108.639085 58.2631549,109.255079 L58.2631549,113.113098 L58.2631549,113.113098 Z" id="Path" fill="url(#linearGradient-39)"></path>
- <path d="M58.2631549,110.150459 L58.2631549,109.255079 C58.2631549,109.255079 56.0482682,111.184329 58.2631549,113.113098 L58.2631549,110.150459 Z" id="Path" fill="url(#linearGradient-40)"></path>
- <path d="M58.2631549,117.819853 C58.2631549,117.819853 55.7938881,116.855709 54.5662273,115.365493 C54.04256,114.729783 54.2887653,113.06982 55.5395079,113.189557 C56.045383,113.238124 56.9162384,113.345839 58.2631549,113.961834 L58.2631549,117.819853 L58.2631549,117.819853 Z" id="Path" fill="url(#linearGradient-41)"></path>
- <path d="M58.2631549,114.857213 L58.2631549,113.961834 C58.2631549,113.961834 56.0482682,115.891084 58.2631549,117.819853 L58.2631549,114.857213 Z" id="Path" fill="url(#linearGradient-42)"></path>
- <path d="M58.2530566,114.832208 L59.7461576,115.707391 C61.2445482,116.585941 63.1021485,116.582094 64.597173,115.697293 L66.0883504,114.814416 L66.5567177,115.030327 L64.8376079,116.654705 L61.259936,117.19376 L59.5235149,116.490247 L57.756318,115.04331 L58.2530566,114.832208 Z" id="Path" fill="url(#linearGradient-43)"></path>
- <path d="M66.5567177,115.030807 L64.5880364,116.19307 C63.093012,117.07787 61.2358925,117.082198 59.7370211,116.203168 L57.756318,115.04331 L57.756318,116.538815 L59.7370211,117.700116 C61.2354116,118.578665 63.093012,118.574818 64.5880364,117.690018 L66.5567177,116.524389 L66.5567177,115.030807 Z" id="Path" fill="url(#linearGradient-44)"></path>
- <path d="M58.2530566,110.101891 L59.7461576,110.977074 C61.2445482,111.855624 63.1021485,111.851777 64.597173,110.966976 L66.0883504,110.084099 L66.5567177,110.30001 L64.8376079,111.924388 L61.259936,112.463443 L59.5235149,111.75993 L57.756318,110.312993 L58.2530566,110.101891 Z" id="Path" fill="url(#linearGradient-45)"></path>
- <path d="M66.5567177,110.30049 L64.5880364,111.462753 C63.093012,112.347553 61.2358925,112.351881 59.7370211,111.472851 L57.756318,110.312993 L57.756318,111.808498 L59.7370211,112.969799 C61.2354116,113.848348 63.093012,113.844501 64.5880364,112.959701 L66.5567177,111.794072 L66.5567177,110.30049 Z" id="Path" fill="url(#linearGradient-46)"></path>
- <path d="M38.3493714,82.725488 C38.3493714,83.6785721 37.6761536,84.0623063 36.8456913,83.582879 C36.015229,83.1034517 35.3420112,81.942151 35.3420112,80.9890669 C35.3420112,80.0359828 36.015229,79.6522486 36.8456913,80.1316759 C37.6761536,80.6111031 38.3493714,81.7724039 38.3493714,82.725488 Z" id="Path" fill="url(#linearGradient-47)"></path>
- <path d="M43.5783505,85.8049787 C43.5783505,86.7580628 42.9051327,87.141797 42.0746704,86.6623697 C41.2442081,86.1829424 40.5709903,85.0216417 40.5709903,84.0685576 C40.5709903,83.1154735 41.2442081,82.7317393 42.0746704,83.2111666 C42.9051327,83.6905938 43.5783505,84.8518946 43.5783505,85.8049787 Z" id="Path" fill="#987EF5"></path>
- <path d="M48.7606852,88.8426337 C48.7606852,89.7957178 48.0874674,90.179452 47.2570051,89.7000247 C46.4265428,89.2205975 45.753325,88.0592967 45.753325,87.1062126 C45.753325,86.1531285 46.4265428,85.7693943 47.2570051,86.2488216 C48.0869865,86.7282489 48.7606852,87.8895496 48.7606852,88.8426337 Z" id="Path" fill="url(#linearGradient-48)"></path>
- <path d="M37.630471,101.569336 C37.630471,102.52242 36.9572531,102.906154 36.1267909,102.426727 C35.2963286,101.9473 34.6231107,100.785999 34.6231107,99.8329148 C34.6231107,98.8798307 35.2963286,98.4960966 36.1267909,98.9755238 C36.9572531,99.4549511 37.630471,100.616252 37.630471,101.569336 Z" id="Path" fill="url(#linearGradient-49)"></path>
- <path d="M42.8599309,104.648827 C42.8599309,105.601911 42.1867131,105.985645 41.3562508,105.506218 C40.5257885,105.02679 39.8525707,103.86549 39.8525707,102.912406 C39.8525707,101.959321 40.5257885,101.575587 41.3562508,102.055015 C42.1867131,102.534442 42.8599309,103.695743 42.8599309,104.648827 Z" id="Path" fill="url(#linearGradient-50)"></path>
- <path d="M48.0417847,107.686963 C48.0417847,108.640047 47.3685669,109.023781 46.5381046,108.544354 C45.7076423,108.064926 45.0344245,106.903626 45.0344245,105.950541 C45.0344245,104.997457 45.7076423,104.613723 46.5381046,105.09315 C47.3685669,105.572578 48.0417847,106.733878 48.0417847,107.686963 Z" id="Path" fill="#987EF5"></path>
- <polygon id="Path" fill="url(#linearGradient-51)" points="86.7724874 99.994968 77.2796352 105.475923 77.2796352 103.173518 86.7724874 97.692563"></polygon>
- <polygon id="Path" fill="url(#linearGradient-52)" points="86.7724874 104.388195 77.2796352 109.868669 77.2796352 107.566264 86.7724874 102.08579"></polygon>
- <polygon id="Path" fill="url(#linearGradient-53)" opacity="0.2" points="86.7724874 99.994968 84.937488 98.7519193 86.7724874 97.692563"></polygon>
- <polygon id="Path" fill="url(#linearGradient-54)" opacity="0.2" points="86.7724874 104.388195 84.937488 103.145147 86.7724874 102.08579"></polygon>
- <polygon id="Path" fill="url(#linearGradient-55)" points="86.4132776 80.789025 76.9204254 86.2699799 76.9204254 83.967094 86.4132776 78.48662"></polygon>
- <polygon id="Path" fill="url(#linearGradient-56)" points="86.4132776 85.1817713 76.9204254 90.6627262 76.9204254 88.3603213 86.4132776 82.8793664"></polygon>
- <polygon id="Path" fill="url(#linearGradient-57)" opacity="0.2" points="86.4132776 80.789025 84.5782782 79.5459764 86.4132776 78.48662"></polygon>
- <polygon id="Path" fill="url(#linearGradient-58)" opacity="0.2" points="86.4132776 85.1817713 84.5782782 83.9392036 86.4132776 82.8793664"></polygon>
- <path d="M37.8824468,120.570428 C37.8824468,121.523512 37.209229,121.907247 36.3787667,121.427819 C35.5483044,120.948392 34.8750866,119.787091 34.8750866,118.834007 C34.8750866,117.880923 35.5483044,117.497189 36.3787667,117.976616 C37.209229,118.456044 37.8824468,119.617344 37.8824468,120.570428 Z" id="Path" fill="url(#linearGradient-59)"></path>
- <path d="M43.1119067,123.649919 C43.1119067,124.603003 42.4386889,124.986737 41.6082266,124.50731 C40.7777643,124.027883 40.1045465,122.866582 40.1045465,121.913498 C40.1045465,120.960414 40.7777643,120.57668 41.6082266,121.056107 C42.4386889,121.535534 43.1119067,122.696835 43.1119067,123.649919 Z" id="Path" fill="url(#linearGradient-60)"></path>
- <path d="M48.2937606,126.687574 C48.2937606,127.640658 47.6205427,128.024392 46.7900804,127.544965 C45.9596182,127.065538 45.2864003,125.904237 45.2864003,124.951153 C45.2864003,123.998069 45.9596182,123.614335 46.7900804,124.093762 C47.6205427,124.573189 48.2937606,125.73449 48.2937606,126.687574 Z" id="Path" fill="#987EF5"></path>
- <polygon id="Path" fill="url(#linearGradient-61)" points="87.0244633 118.99606 77.531611 124.476534 77.531611 122.174129 87.0244633 116.693655"></polygon>
- <polygon id="Path" fill="url(#linearGradient-62)" points="87.0244633 123.388807 77.531611 128.869762 77.531611 126.567357 87.0244633 121.086402"></polygon>
- <polygon id="Path" fill="url(#linearGradient-63)" opacity="0.2" points="87.0244633 118.99606 85.1894638 117.753012 87.0244633 116.693655"></polygon>
- <polygon id="Path" fill="url(#linearGradient-64)" opacity="0.2" points="87.0244633 123.388807 85.1894638 122.145758 87.0244633 121.086402"></polygon>
- <path d="M65.698365,130.118581 C65.698365,130.118581 68.1676318,129.154437 69.3952926,127.664221 C69.9189599,127.028511 69.6727545,125.368548 68.422012,125.488285 C67.9161369,125.536853 67.0452815,125.644567 65.698365,126.260562 L65.698365,130.118581 L65.698365,130.118581 Z" id="Path" fill="url(#linearGradient-65)"></path>
- <path d="M65.698365,127.155941 L65.698365,126.260562 C65.698365,126.260562 67.9132516,128.189812 65.698365,130.118581 L65.698365,127.155941 Z" id="Path" fill="url(#linearGradient-66)"></path>
- <path d="M65.698365,134.824854 C65.698365,134.824854 68.1676318,133.86071 69.3952926,132.370494 C69.9189599,131.734784 69.6727545,130.074822 68.422012,130.194558 C67.9161369,130.243126 67.0452815,130.350841 65.698365,130.966835 L65.698365,134.824854 L65.698365,134.824854 Z" id="Path" fill="url(#linearGradient-67)"></path>
- <path d="M65.698365,131.862215 L65.698365,130.966835 C65.698365,130.966835 67.9132516,132.896085 65.698365,134.824854 L65.698365,131.862215 Z" id="Path" fill="url(#linearGradient-68)"></path>
- <path d="M57.874612,130.153684 C57.874612,130.153684 55.4053452,129.18954 54.1776844,127.699324 C53.6540171,127.063614 53.9002225,125.403652 55.150965,125.523388 C55.6568401,125.571956 56.5276955,125.679671 57.874612,126.295665 L57.874612,130.153684 L57.874612,130.153684 Z" id="Path" fill="url(#linearGradient-69)"></path>
- <path d="M57.874612,127.191045 L57.874612,126.295665 C57.874612,126.295665 55.6597254,128.224915 57.874612,130.153684 L57.874612,127.191045 Z" id="Path" fill="url(#linearGradient-70)"></path>
- <path d="M57.874612,134.859958 C57.874612,134.859958 55.4053452,133.895814 54.1776844,132.405598 C53.6540171,131.769888 53.9002225,130.109925 55.150965,130.229662 C55.6568401,130.27823 56.5276955,130.385944 57.874612,131.001939 L57.874612,134.859958 L57.874612,134.859958 Z" id="Path" fill="url(#linearGradient-71)"></path>
- <path d="M57.874612,131.897318 L57.874612,131.001939 C57.874612,131.001939 55.6597254,132.931189 57.874612,134.859958 L57.874612,131.897318 Z" id="Path" fill="url(#linearGradient-72)"></path>
- <path d="M57.8645138,131.872794 L59.3576147,132.747977 C60.8564862,133.626526 62.7136056,133.62268 64.2086301,132.737879 L65.6993267,131.855002 L66.167694,132.070912 L64.4485842,133.695291 L60.8709123,134.234346 L59.1344911,133.530833 L57.3672943,132.083896 L57.8645138,131.872794 Z" id="Path" fill="url(#linearGradient-73)"></path>
- <path d="M66.1681748,132.070912 L64.1994936,133.233175 C62.7044691,134.117976 60.8473496,134.122303 59.3484782,133.243273 L57.3677752,132.083415 L57.3677752,133.57892 L59.3484782,134.740221 C60.8468688,135.61877 62.7044691,135.614923 64.1994936,134.730123 L66.1681748,133.564494 L66.1681748,132.070912 Z" id="Path" fill="url(#linearGradient-74)"></path>
- <path d="M57.8645138,127.142477 L59.3576147,128.01766 C60.8564862,128.896209 62.7136056,128.892363 64.2086301,128.007562 L65.6993267,127.124685 L66.167694,127.340595 L64.4485842,128.964974 L60.8709123,129.504029 L59.1344911,128.800516 L57.3672943,127.353579 L57.8645138,127.142477 Z" id="Path" fill="url(#linearGradient-75)"></path>
- <path d="M66.1681748,127.340595 L64.1994936,128.502858 C62.7044691,129.387659 60.8473496,129.391986 59.3484782,128.512956 L57.3677752,127.353098 L57.3677752,128.848603 L59.3484782,130.009904 C60.8468688,130.888453 62.7044691,130.884606 64.1994936,129.999806 L66.1681748,128.834177 L66.1681748,127.340595 Z" id="Path" fill="url(#linearGradient-76)"></path>
- <polygon id="Path" fill="url(#linearGradient-77)" points="44.1794379 67.3063953 60.439572 58.1410154 77.720112 68.2253377 61.459497 77.3907176"></polygon>
- <polygon id="Path" fill="url(#linearGradient-78)" points="61.3844813 60.9098642 44.1039413 50.8255419 44.2544536 30.7208531 61.5349936 40.8051754"></polygon>
- <g id="Clipped" transform="translate(43.645672, 30.294802)">
- <mask id="mask-80" fill="white">
- <use xlink:href="#path-79"></use>
- </mask>
- <g id="SVGID_1260_"></g>
- </g>
- <polygon id="Path" fill="url(#linearGradient-81)" points="44.2544536 30.7208531 60.5150685 21.5554732 77.7951277 31.6397955 61.5349936 40.8051754"></polygon>
- <polygon id="Path" fill="url(#linearGradient-82)" points="61.5349936 40.8051754 77.7951277 31.6397955 77.6446154 51.7444843 61.3844813 60.9098642"></polygon>
- <path d="M91.9668439,67.614152 L63.7263176,84.333036 C63.7263176,84.333036 61.8783347,85.6847612 59.5874705,84.3416917 L30.0736008,67.0380699 C30.0736008,67.0380699 29.5157918,66.8091759 29.4585682,66.0167023 L29.4571256,0.259188865 L92.4178998,0.941062354 L92.4193424,66.7091549 C92.4193424,66.7091549 92.5967834,67.240997 91.9668439,67.614152 Z" id="Path" fill="url(#linearGradient-83)" opacity="0.7"></path>
- <ellipse id="Oval" fill="#F3FFFF" cx="82.7283718" cy="57.6409107" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="43.9596803" cy="51.17273" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="68.6812008" cy="39.328424" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="58.4886829" cy="71.8953366" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="50.4408446" cy="35.5026232" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="74.9022145" cy="19.3199092" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="57.9178903" cy="56.3406386" rx="1" ry="1"></ellipse>
- </g>
- <g id="people_2" transform="translate(130.788600, 116.502967)" fill-rule="nonzero">
- <g id="Group">
- <path d="M73.3822362,88.1671843 L42.8928318,105.893824 C42.004872,106.409976 40.5660528,106.410959 39.6771102,105.896773 L1.0334142,83.5788354 C0.1454544,83.0651408 0.1439802,82.2314318 1.0304658,81.715771 L31.5203616,63.9910981 C32.4063558,63.4754373 33.8456664,63.473471 34.7336262,63.9856908 L73.3787964,86.3060863 C74.267739,86.818306 74.2692132,87.6525066 73.3822362,88.1671843 Z" id="Shape" fill="url(#linearGradient-84)" opacity="0.47"></path>
- <path d="M77.7085218,84.7492723 C77.7085218,85.4232199 77.2387434,86.2372659 76.6529946,86.5685866 L61.2589068,95.3505508 C60.076107,96.0284309 58.5591552,96.3897376 57.0161592,96.4354539 C56.5286904,96.4477433 56.0328678,96.4315213 55.5493302,96.3808893 C54.2952774,96.2530801 53.0947872,95.9011133 52.1247636,95.3412109 L28.6132392,81.6975828 C27.2525526,80.9115565 26.1508338,79.0003179 26.1464112,77.4267905 L26.1125046,58.3591382 L42.11298,57.4049937 L77.6323548,55.2848363 L77.7085218,84.7492723 Z" id="Shape" fill="url(#linearGradient-85)"></path>
- <path d="M57.0156678,96.4354539 C56.528199,96.4477433 56.0323764,96.4315213 55.5488388,96.3808893 C54.294786,96.2530801 53.0942958,95.9011133 52.1242722,95.3412109 L28.6127478,81.6975828 C27.2520612,80.9115565 26.1503424,79.0003179 26.1459198,77.4267905 L26.1120132,58.3591382 L42.1124886,57.4049937 L56.9468718,70.2827499 L57.0156678,96.4354539 Z" id="Shape" fill="url(#linearGradient-86)"></path>
- <path d="M29.6053758,64.2167304 C25.7306868,61.9633566 24.982776,57.4025358 27.938547,54.0288655 L42.8898834,36.9653592 C44.0726832,35.6150062 46.2864402,35.253208 47.8382814,36.1527878 L76.2795306,52.6878524 C77.8308804,53.5903817 78.1296516,55.4151033 76.9463604,56.7639815 L61.995024,73.8279794 C59.04171,77.2006666 53.5021578,78.1090948 49.6250118,75.8571957 L29.6053758,64.2167304 Z" id="Shape" fill="url(#linearGradient-87)"></path>
- <path d="M65.9964942,63.4793699 L65.6991972,63.8190473 L65.4294186,64.1297219 C64.9173798,64.7112536 63.9684864,64.8646246 63.2987082,64.4787392 L38.1409938,49.8485227 L38.1321486,49.843607 C37.466793,49.4572301 37.336572,48.6761194 37.8436968,48.0945878 L38.4156864,47.4432526 C38.9228112,46.8666366 39.8766186,46.7083499 40.5409914,47.0942353 L65.707551,61.7298591 C66.3788034,62.1157444 66.5031276,62.9022623 65.9964942,63.4793699 Z" id="Shape" fill="url(#linearGradient-88)"></path>
- <path d="M65.6991972,63.8190473 L65.4294186,64.1297219 C64.9173798,64.7112536 63.9684864,64.8646246 63.2987082,64.4787392 L38.1409938,49.8485227 L38.4156864,49.536865 C38.9228112,48.960249 39.8766186,48.8019623 40.5409914,49.1878477 L65.6991972,63.8190473 Z" id="Shape" fill="url(#linearGradient-89)"></path>
- <path d="M51.9193584,83.8634565 L51.9154272,84.2493419 C51.9129702,84.8697079 51.4770984,85.1189358 50.9390154,84.8102275 L50.609286,84.6190053 C50.0721858,84.310297 49.6407366,83.5567145 49.6441764,82.9368401 L49.6446678,82.5499716 C49.6456506,81.9310803 50.0820138,81.6793946 50.6176398,81.9900692 L50.950809,82.1822745 C51.4884006,82.4919659 51.9203412,83.2440737 51.9193584,83.8634565 Z" id="Shape" fill="url(#linearGradient-90)"></path>
- <path d="M51.9203412,89.1817924 L51.9193584,89.5691525 C51.9154272,90.1880438 51.4810296,90.4382548 50.9449122,90.1290549 L50.609286,89.9358665 C50.0721858,89.626175 49.6407366,88.8730841 49.6441764,88.2537013 L49.6456506,87.8648665 C49.6476162,87.2459752 50.0820138,86.9957642 50.6186226,87.3054556 L50.950809,87.498644 C51.4884006,87.8093186 51.9223068,88.5614264 51.9203412,89.1817924 Z" id="Shape" fill="url(#linearGradient-91)"></path>
- <g opacity="0.5" transform="translate(38.329200, 0.491574)" fill="url(#linearGradient-92)" id="Shape">
- <path d="M0.2353806,1.44276881 L0.1656018,26.2765806 C0.162162,27.1682953 0.7882056,28.2477912 1.5616692,28.6897159 L25.542972,42.4980212 C26.316927,42.9399459 26.9454276,42.5761814 26.9493588,41.6844667 L27.019629,16.8506549 C27.022086,15.9589402 26.3970252,14.8794444 25.6235616,14.4365364 L1.6407846,0.629214337 C0.867321,0.187781154 0.2378376,0.552037266 0.2353806,1.44276881 Z" opacity="0.8"></path>
- </g>
- <g opacity="0.1" transform="translate(39.312000, 0.000000)" fill="url(#linearGradient-93)" id="Shape">
- <path d="M0.1041768,1.2505635 L0.034398,26.0848669 C0.0314496,26.9755984 0.656019,28.0555858 1.4294826,28.4975106 L25.4117682,42.3058159 C26.1862146,42.747249 26.813241,42.3834845 26.8176636,41.4917698 L26.8874424,16.657958 C26.8903908,15.7672265 26.26533,14.6862559 25.4918664,14.2438396 L1.5095808,0.436517446 C0.7366086,-0.00491573701 0.1066338,0.359340375 0.1041768,1.2505635 Z" opacity="0.8"></path>
- </g>
- <path d="M65.3571828,41.4735816 L65.2962492,63.6351987 C65.2962492,64.5736129 64.6667658,64.9590067 63.8888796,64.4944696 L39.889395,49.9148852 C39.11544,49.4498564 38.4898878,48.3089139 38.4933276,47.3670587 L38.5468902,27.2454724 C38.7105264,28.0162599 39.2520492,28.8170335 39.889395,29.1827643 L63.8736462,42.9920527 C64.6476012,43.4300449 65.2770846,43.0682467 65.2770846,42.1760404 L65.280033,41.4278652 L65.3571828,41.4735816 Z" id="Shape" fill="url(#linearGradient-94)" opacity="0.2"></path>
- <path d="M66.14244,62.6554923 C66.14244,63.5939065 65.5129566,63.9793003 64.7350704,63.51378 L40.7350944,48.9346872 C39.9616308,48.4691669 39.3355872,47.3282244 39.3395184,46.3863691 L39.3896412,26.5204012 C39.5459064,27.3029865 40.0948002,28.1263724 40.7429568,28.497019 L64.7237682,42.3053243 C65.4982146,42.7477406 66.1267152,42.3854508 66.1311378,41.492753 L66.135069,40.4515999 L66.14244,62.6554923 Z" id="Shape" fill="url(#linearGradient-95)" opacity="0.2"></path>
- <path d="M46.9124838,12.3498061 C50.1611292,14.2261429 52.7842224,18.7712333 52.7729202,22.5052272 C52.7626008,26.2362716 50.1223086,27.742945 46.874646,25.8675913 C43.6269834,23.991746 41.0029074,19.4451809 41.0132268,15.7126618 C41.0250204,11.9796511 43.6662954,10.474944 46.9124838,12.3498061 Z M46.8810342,23.6992597 C49.0869288,24.9729272 50.882013,23.9504539 50.8884012,21.4154083 C50.8957722,18.8779048 49.112973,15.7913136 46.9070784,14.516663 C44.7016752,13.2429955 42.906591,14.2649772 42.9006942,16.8014975 C42.8928318,19.3365431 44.6741568,22.4255922 46.8810342,23.6992597 L46.8810342,23.6992597 Z" id="Shape" fill="url(#linearGradient-96)" opacity="0.4"></path>
- <path d="M46.8933192,12.3404662 L46.8933192,14.5122388 C46.8952848,14.5122388 46.9026558,14.5151882 46.9056042,14.5186293 C49.112973,15.7893473 50.8952808,18.8779048 50.8888926,21.4178662 C50.8829958,22.9437109 50.2274682,23.9253836 49.2250122,24.1765778 L50.2323822,26.5965951 C51.7635846,26.2613418 52.7675148,24.8057921 52.7724288,22.5052272 C52.7827482,18.7712333 50.1606378,14.2251598 46.9119924,12.3498061 C46.9056042,12.3468566 46.8987246,12.3434156 46.8933192,12.3404662 Z" id="Shape" fill="url(#linearGradient-97)"></path>
- <path d="M55.6146864,15.2697539 L55.614195,15.6172965 C55.6137036,15.7780411 55.7252514,15.9731958 55.8643176,16.0533224 L61.095762,19.0735512 C61.2348282,19.1546608 61.3473588,19.0892815 61.3478502,18.9280454 L61.348833,18.5809943 C61.3498158,18.4202497 61.2377766,18.225095 61.098219,18.1449684 L55.867266,15.1247396 C55.7286912,15.0441215 55.6161606,15.1085177 55.6146864,15.2697539 Z" id="Shape" fill="url(#linearGradient-98)"></path>
- <path d="M55.6146864,18.2408253 L55.614195,18.5883679 C55.6137036,18.7491125 55.7252514,18.9442673 55.8643176,19.0243938 L61.095762,22.0451142 C61.2348282,22.1257323 61.3473588,22.060353 61.3478502,21.9001 L61.348833,21.5525573 C61.3498158,21.3923043 61.2377766,21.1961664 61.098219,21.1160399 L55.867266,18.0958111 C55.7286912,18.015193 55.6161606,18.0795891 55.6146864,18.2408253 Z" id="Shape" fill="url(#linearGradient-99)"></path>
- <path d="M55.6146864,23.6397793 L55.614195,23.9873219 C55.6137036,24.1475749 55.7252514,24.3427297 55.8643176,24.4228562 L61.095762,27.4435766 C61.2348282,27.5241947 61.3473588,27.4588154 61.3478502,27.2980708 L61.348833,26.9505282 C61.3498158,26.7902751 61.2377766,26.5946288 61.098219,26.5149939 L55.867266,23.4942735 C55.7286912,23.4131638 55.6161606,23.4780515 55.6146864,23.6397793 Z" id="Shape" fill="url(#linearGradient-100)" opacity="0.4"></path>
- <path d="M54.3114936,27.7395039 L54.3105108,28.2458249 C54.3100194,28.4793224 54.4726728,28.7624688 54.6751296,28.8789718 L62.2854414,33.2726575 C62.4869154,33.3896521 62.6520258,33.2952699 62.6525172,33.0607893 L62.6530086,32.5559431 C62.6539914,32.3229371 62.4903552,32.038316 62.2883898,31.921813 L54.6785694,27.5281273 C54.4770954,27.4106411 54.311985,27.5055149 54.3114936,27.7395039 Z" id="Shape" fill="url(#linearGradient-101)" opacity="0.4"></path>
- <g opacity="0.5" transform="translate(68.796000, 17.205080)" fill="url(#linearGradient-102)" id="Shape">
- <path d="M0.3410316,0.61102611 L0.3115476,11.3548609 C0.309582,11.7402547 0.579852,12.2072497 0.914004,12.3984719 L11.2894236,18.3720755 C11.624067,18.5632977 11.8958112,18.4059941 11.8963026,18.0196172 L11.9272608,7.27725707 C11.9282436,6.89137171 11.6594478,6.42388512 11.324313,6.23266295 L0.9488934,0.259550914 C0.61425,0.0688203181 0.3420144,0.226123902 0.3410316,0.61102611 Z" opacity="0.8"></path>
- </g>
- <g opacity="0.1" transform="translate(69.287400, 16.221932)" fill="url(#linearGradient-103)" id="Shape">
- <path d="M0.488943,0.896630431 L0.4584762,11.6394821 C0.4560192,12.0253674 0.727272,12.4923625 1.0619154,12.6835846 L11.4363522,18.6566967 C11.771487,18.8484104 12.0427398,18.6906153 12.0451968,18.3047299 L12.0751722,7.56187824 C12.076155,7.17648446 11.8063764,6.7085063 11.471733,6.5177757 L1.0968048,0.544172087 C0.7621614,0.353441491 0.4904172,0.511236649 0.488943,0.896630431 Z" opacity="0.8"></path>
- </g>
- <path d="M74.5611048,23.4829673 C76.0947642,24.3687831 77.3321094,26.5149939 77.3276868,28.2777771 C77.3237556,30.0395773 76.076091,30.7508844 74.5443972,29.8655602 C73.0092636,28.9792528 71.7704442,26.8325505 71.7753582,25.0707503 C71.7817464,23.307967 73.0284282,22.5981346 74.5611048,23.4829673 Z M74.54538,28.8411206 C75.587148,29.4428068 76.4338302,28.960573 76.4377614,27.7635911 C76.4407098,26.5656259 75.5984502,25.1081099 74.557665,24.5064237 C73.5163884,23.9052291 72.6692148,24.3879545 72.665775,25.585428 C72.663318,26.7814268 73.5041034,28.2404175 74.54538,28.8411206 L74.54538,28.8411206 Z" id="Shape" fill="url(#linearGradient-104)" opacity="0.4"></path>
- <path d="M74.5517682,23.4790347 L74.5517682,24.5039658 C74.552751,24.5039658 74.5556994,24.5054406 74.5581564,24.5069153 C75.5989416,25.1066352 76.4412012,26.5651344 76.4382528,27.7645742 C76.4353044,28.4852212 76.1262138,28.9482837 75.6529956,29.0672445 L76.1286708,30.2096618 C76.8510288,30.0513751 77.3257212,29.364155 77.3276868,28.2782687 C77.3326008,26.5154854 76.0947642,24.3692747 74.5611048,23.4834588 C74.557665,23.4819841 74.5547166,23.4805094 74.5517682,23.4790347 Z" id="Shape" fill="url(#linearGradient-105)"></path>
- <path d="M42.3626112,32.7329096 C42.7827582,32.2983584 44.1385308,32.2477264 44.1385308,32.2477264 C44.1385308,32.2477264 44.695287,31.525113 44.8682598,31.274902 C45.1124856,30.9219521 45.7925832,29.8321332 45.7925832,29.8321332 C45.7925832,29.8321332 46.1822634,29.8272175 46.0682586,30.411207 C45.9891432,30.8280615 45.461871,31.918372 45.461871,31.918372 C45.461871,31.918372 44.9685054,32.8764491 44.8682598,33.2185844 C44.818137,33.3891605 44.7680142,33.7008182 44.7237882,34.0203411 C44.7970068,34.0434451 44.8785792,34.0660575 44.9645742,34.0837541 C45.3183822,34.1481503 45.9331236,33.9638101 46.395531,33.9446388 C47.024523,33.9171106 47.0004444,34.5001171 47.0004444,34.5001171 C47.0004444,34.5001171 45.8618706,34.680033 45.461871,34.9032075 C45.2019204,35.0472386 44.8682598,35.4282082 44.5213314,35.6213967 C44.1041328,35.8485037 43.4564676,36.1228018 43.4564676,36.1228018 L42.7793184,36.7588982 L41.9061006,36.2791223 L41.1021702,35.200118 C41.1026616,35.200118 41.7866904,33.3257475 42.3626112,32.7329096 Z" id="Shape" fill="#FBC9A5"></path>
- <path d="M41.1291972,34.9022243 L34.8667956,39.9379053 L36.7090542,44.0872789 L43.1134704,36.6846706 C43.1134704,36.6846706 43.2078192,35.847029 42.6004488,35.2709046 C42.2181396,34.9076317 41.7434472,34.856508 41.4392706,34.8658479 C41.2500816,34.8697805 41.1291972,34.9022243 41.1291972,34.9022243 Z" id="Shape" fill="url(#linearGradient-106)"></path>
- <path d="M34.7188842,92.6744235 L33.9783444,102.003018 C33.9783444,102.003018 35.002422,103.221629 35.363601,103.610464 C35.7311682,104.015029 36.4235508,104.525774 36.847629,104.820718 C37.0594224,104.968682 37.2058596,105.065522 37.2058596,105.065522 C37.2058596,105.065522 36.8687592,105.529567 35.9439444,105.374722 C35.218638,105.255269 33.6618828,104.600002 33.1115148,104.111869 C32.574906,103.63111 31.6009512,101.64466 31.6009512,101.64466 L30.943458,92.6749151 L34.7188842,92.6749151 L34.7188842,92.6744235 Z" id="Shape" fill="#FBC9A5"></path>
- <path d="M35.8584408,105.005058 C36.4554918,105.154988 36.9301842,104.873808 36.9301842,104.873808 C36.9301842,104.873808 37.7827632,105.292137 38.339028,105.463205 C38.6294454,105.550213 38.4628608,105.825003 38.3803056,105.884484 C38.0240406,106.152391 36.9837468,106.388838 36.4933296,106.412434 C36.0952956,106.431114 35.292348,106.376549 34.9026678,106.286099 C33.9095484,106.04572 32.4461592,104.962291 32.4461592,104.962291 L32.194071,106.3269 L31.3984944,106.412925 L31.3984944,101.533073 C31.3984944,101.533073 31.3984944,101.330545 31.4918604,101.237146 C31.6220814,101.10737 31.8997224,101.030193 32.3596728,101.418537 C32.8102866,101.799506 33.1124976,102.539816 33.5729394,103.080547 C34.2230616,103.850352 34.8687612,104.75878 35.8584408,105.005058 Z" id="Shape" fill="url(#linearGradient-107)"></path>
- <path d="M22.1272506,91.3275116 L25.1886726,92.8425418 L24.648624,97.8177592 L24.648624,97.8177592 C24.648624,97.8177592 24.6402702,99.7407955 25.8486228,102.133285 C27.0574668,104.528723 24.9577146,102.596347 24.9577146,102.596347 L24.3297054,101.040025 L23.4294606,98.4990803 L22.5926064,98.4548387 L22.1272506,91.3275116 Z" id="Shape" fill="#FBC9A5"></path>
- <path d="M36.0844848,74.9664641 C36.0358362,80.5625391 36.0088092,80.5310784 35.5414878,93.0902949 C35.5414878,93.0902949 34.1616366,93.4653656 32.1527934,93.6988631 C28.8781038,94.0847485 23.9405166,94.1063777 20.58966,91.5536355 C20.58966,91.5536355 23.1537852,78.1602185 22.7950632,73.4125996 C22.6048914,70.8652647 21.4314282,65.7573224 21.0353598,63.237024 C20.970495,62.823119 20.921355,62.4106886 20.8948194,62.0075982 C20.6663184,59.2370888 21.0894138,56.8416502 21.0894138,56.8416502 L35.1680238,59.1736758 C35.167041,59.1736758 36.1164258,71.0500964 36.0844848,74.9664641 Z" id="Shape" fill="url(#linearGradient-108)"></path>
- <path d="M23.3557506,97.6280117 C24.240762,97.68995 24.2933418,98.4956393 24.2933418,98.4956393 C24.2933418,98.4956393 24.6279852,100.214673 25.1641026,101.244028 C25.827984,102.503931 26.7459192,102.635673 26.7896538,103.014676 C26.8078356,103.14691 26.7464106,103.354845 26.5518162,103.410393 C25.3965348,103.724017 24.181794,103.506742 24.181794,103.506742 C24.181794,103.506742 23.913981,103.299298 23.7390426,102.933567 C23.5508364,102.53785 23.567544,102.441501 23.4564876,101.983846 L23.088429,103.648315 L22.557717,103.648315 L22.459437,98.2326474 C22.4589456,98.2316642 22.4142282,97.5621409 23.3557506,97.6280117 Z" id="Shape" fill="url(#linearGradient-109)"></path>
- <path d="M34.8638472,24.3353561 C34.8638472,24.3353561 34.9488594,27.8751783 33.9085656,29.8114871 C33.3655686,30.8280615 31.9842432,30.4466003 31.9842432,30.4466003 L29.862378,29.023986 L28.6849836,26.2062856 L29.2314204,24.4592326 L34.8638472,24.3353561 Z" id="Shape" fill="#FFCDA4"></path>
- <path d="M25.1282304,60.5972733 C27.8338788,61.6875837 30.1832622,61.6251539 32.0181498,61.1620914 C33.6726936,60.7417959 34.91397,59.9980449 35.6407506,59.4745189 C36.1208484,59.1230437 36.3778506,58.8708664 36.3778506,58.8708664 C36.3778506,58.8708664 35.7424704,57.2388417 35.2127412,55.5719153 C34.8569676,54.4467031 34.5016854,53.30871 34.4756412,52.6485265 C34.4137248,50.8882011 34.990137,48.5989424 35.3296944,47.7554019 L35.3296944,47.7436041 C35.6643378,47.5386179 35.491365,47.4235897 35.491365,47.4235897 C35.491365,47.4235897 37.3213386,45.2724631 37.4923458,43.334188 C37.6004538,42.1023043 37.024533,40.6654344 36.7385382,39.0058816 C36.724779,38.9360781 36.7228134,38.8598842 36.7095456,38.7900807 C36.5193738,37.5134638 36.6024204,36.3779286 36.2741652,35.6410596 L36.2741652,35.6376186 C36.2741652,35.6376186 36.2741652,35.6376186 36.2692512,35.6351607 C36.2363274,35.5456943 36.1925928,35.4719583 36.1414872,35.3952728 C34.2785898,32.6596651 31.7773638,32.2472348 31.7773638,32.2472348 L23.6427282,32.8705502 C23.6427282,32.8705502 21.5660718,37.3055282 21.5400276,39.1789155 C21.4997328,42.2478102 23.5862172,46.8853164 23.4476424,49.2758394 C23.3395344,51.0376395 20.977866,55.8904551 20.977866,55.8904551 C20.977866,55.8904551 20.6417484,58.7917231 25.1282304,60.5972733 Z" id="Shape" fill="url(#linearGradient-110)"></path>
- <path d="M34.8638472,24.3353561 C34.8638472,24.3353561 34.611759,24.6696262 34.4712186,25.0137278 C34.140015,25.8174508 33.9390324,26.1998951 33.572448,26.0770017 C33.4751508,26.0465241 33.4083204,25.9054425 33.34149,25.7240518 C33.2417358,25.4635177 33.1336278,25.1277729 32.8766256,24.9665367 C32.4830142,24.7192751 32.0628672,24.9055816 32.002425,25.3961721 C31.9051278,26.1325495 32.4957906,26.9711743 32.4957906,26.9711743 C32.4957906,26.9711743 32.5370682,29.7067819 32.3960364,32.2462516 C32.3493534,33.0927415 32.2830144,33.9171106 32.189157,34.6102296 C31.4682732,39.9501947 27.8102916,46.3136162 27.8102916,46.3136162 C27.8102916,46.3136162 27.5763852,46.4114394 22.1926068,44.3291332 C19.056492,43.1164209 18.6073524,41.4789889 18.6073524,41.4789889 C18.6073524,41.4789889 19.9587024,39.4153625 20.81079,36.7677465 C21.8466612,33.5444978 22.4908866,28.25369 22.4908866,28.25369 C22.4908866,28.25369 23.1709842,21.6199029 24.2348652,19.7204622 C24.6948156,18.9019919 26.3739294,15.797704 31.2933348,16.9297983 C37.8471366,18.4458116 34.8638472,24.3353561 34.8638472,24.3353561 Z" id="Shape" fill="#1E2275"></path>
- <path d="M32.1527934,93.6983716 C28.8781038,94.0842569 23.9405166,94.1058862 20.58966,91.5531439 C20.58966,91.5531439 23.1537852,78.1597269 22.7950632,73.4121081 C22.6048914,70.8647732 21.4314282,65.7568308 21.0353598,63.2365325 C20.970495,62.8226274 20.921355,62.4101971 20.8948194,62.0071066 C22.5832698,62.6215738 24.945921,63.9478396 27.0746658,66.7994586 C30.6427212,71.5864033 28.6766298,86.8802443 32.1527934,93.6983716 Z" id="Shape" fill="url(#linearGradient-111)"></path>
- <path d="M35.832888,65.4805664 C35.832888,65.4805664 36.0402588,65.9706654 36.2093004,66.7911019 C36.2672856,67.0649084 36.3164256,67.3716504 36.3547548,67.7128026 C36.402912,68.1645588 36.326745,68.9437031 36.16704,69.3787459 C36.1233054,69.4957404 36.0771138,69.5856984 36.0225684,69.6407546 C35.7208488,69.943564 35.1611442,70.283733 34.7478768,70.366809 C33.3051264,70.6578206 33.127731,70.0045192 33.0894018,69.7685638 C32.953284,68.9073267 33.5395242,67.7914544 33.6672882,66.3978429 C33.7183938,65.8089376 35.832888,65.4805664 35.832888,65.4805664 Z" id="Shape" fill="#FBC9A5"></path>
- <path d="M30.6638514,55.3276032 C30.9390354,56.810681 31.5016884,59.061597 32.0628672,61.1620914 C32.8437018,64.0751572 33.6181482,66.7267057 33.6181482,66.7267057 C33.6181482,66.7267057 34.4712186,66.9749505 35.4319056,66.5723516 C35.842716,66.3973514 36.1120032,66.1520561 36.2771136,65.9490361 C36.447138,65.7469994 36.5115114,65.5892042 36.5115114,65.5892042 C36.5115114,65.5892042 36.0766224,62.6692564 35.6869422,59.4745189 C35.5242888,58.157593 35.3729376,56.7974086 35.2618812,55.5719153 C35.1419796,54.306113 35.0191296,53.1912239 35.024535,52.4292846 C35.0358372,51.3360247 35.3729376,49.6346882 35.3729376,47.7558935 L35.3729376,47.7440957 C35.7070896,44.5832768 36.370971,40.9205612 36.7085628,38.7900807 C36.518391,37.5134638 36.6260076,36.3779286 36.2992266,35.6410596 L36.3065976,35.6376186 C36.3065976,35.6376186 36.3129858,35.6376186 36.3085632,35.6351607 C36.2363274,35.5860034 35.4235518,34.4789794 33.9002118,35.0791909 C32.3257662,35.7000485 31.8830148,37.0941515 31.6722042,37.8354446 C30.469257,42.023161 30.4923528,54.3911553 30.6638514,55.3276032 Z" id="Shape" fill="url(#linearGradient-112)"></path>
- </g>
- </g>
- <g id="main_system" transform="translate(240.862200, 0.000000)" fill-rule="nonzero">
- <g id="Group">
- <path d="M250.299995,357.251679 C249.021864,357.852873 247.715231,358.433913 246.397297,358.989883 C234.81893,363.961168 221.690687,367.702044 207.766377,370.200222 C179.92611,375.235903 148.916804,375.354863 120.854425,370.573326 C113.272614,369.281962 105.899648,367.637156 98.8564122,365.621704 C98.8564122,365.621704 98.847567,365.618755 98.825454,365.618755 C90.9895896,363.380128 83.5684668,360.692695 76.73211,357.565303 C76.51098,357.470429 76.2883758,357.360317 76.0480812,357.25217 C64.7478468,352.003638 56.076111,345.993166 50.044176,339.570264 C30.2967756,318.563354 38.7429588,293.214864 75.4751088,276.030431 C123.43968,253.603855 201.454344,253.603855 249.727514,276.030431 C297.999702,298.455532 298.26211,334.815272 250.299995,357.251679 Z" id="Shape" fill="url(#linearGradient-113)" opacity="0.5"></path>
- <path d="M144.582165,273.397071 C141.818531,274.987803 139.591507,278.856488 139.59986,282.028613 C139.60674,285.202213 141.853421,286.481288 144.613123,284.88564 C147.373317,283.289991 149.604764,279.424747 149.596411,276.254588 C149.587565,273.080006 147.343833,271.801422 144.582165,273.397071 Z" id="Shape" fill="url(#linearGradient-114)"></path>
- <path d="M144.58757,275.830852 C142.9974,276.747637 141.713863,278.97594 141.718286,280.802137 C141.7232,282.631774 143.016565,283.367168 144.607226,282.448909 C146.197397,281.532124 147.480442,279.30382 147.477494,277.477624 C147.472088,275.650936 146.180198,274.912592 144.58757,275.830852 Z" id="Shape" fill="url(#linearGradient-115)"></path>
- <path d="M202.808642,273.800653 L202.518716,314.830343 C200.756556,327.934223 191.272536,340.743159 174.02587,350.772246 C145.944817,367.092493 105.053949,371.538777 69.9050898,364.094385 C63.8019018,362.801546 57.8756178,361.154774 52.2181296,359.144729 C45.6918462,356.8304 39.520845,354.03777 33.8584428,350.772246 C24.7685256,345.523222 17.7965424,339.505377 12.9405276,333.089357 C12.6088326,332.653822 12.2908968,332.213372 11.9773836,331.773905 C7.103187,324.857955 4.6427472,317.508928 4.5980298,310.158427 L4.5980298,274.588154 L64.6097634,257.315237 C89.3104758,251.222672 117.440177,251.222672 142.208212,257.315237 L202.808642,273.800653 Z" id="Shape" fill="url(#linearGradient-116)"></path>
- <path d="M173.793929,315.199023 C172.765921,315.800218 171.714816,316.38175 170.654866,316.937228 C161.341853,321.908513 150.781176,325.649389 139.580204,328.147566 C117.186124,333.183247 92.2426596,333.302208 69.6697092,328.520671 C63.5709438,327.229307 57.6407286,325.584501 51.9748866,323.569049 C51.9748866,323.569049 51.968007,323.566099 51.9498252,323.566099 C45.6471288,321.327964 39.6766188,318.640039 34.1778528,315.512647 C34.0004574,315.417774 33.8210964,315.308153 33.6274848,315.199515 C24.5375676,309.950983 17.5631274,303.941002 12.710061,297.5181 C-3.1739526,276.510698 3.6201438,251.162209 33.167043,233.977775 C71.7488226,211.5512 134.502568,211.5512 173.333488,233.977775 C212.162441,256.403368 212.373743,292.763108 173.793929,315.199023 Z" id="Shape" fill="url(#linearGradient-117)"></path>
- <path d="M173.779187,315.19804 C172.748722,315.79776 171.6986,316.383716 170.642581,316.939194 C161.329077,321.909496 150.767417,325.651355 139.566445,328.148549 C127.901101,330.771587 115.537477,332.063442 103.179749,332.014777 C115.119787,331.971026 127.043116,330.685561 138.317798,328.148549 C149.518769,325.650863 160.08043,321.909496 169.393934,316.939194 C170.449952,316.383224 171.501057,315.797269 172.529066,315.19804 C205.630753,295.947522 210.175711,266.447693 186.274507,244.301315 C186.253868,244.27477 186.231755,244.253632 186.210625,244.23741 C182.126599,240.340705 177.175744,236.66865 171.356094,233.306777 C165.626861,229.999469 159.37871,227.180294 152.765449,224.853676 C160.107948,227.302696 167.025386,230.347995 173.31678,233.976301 C212.147699,256.401401 212.356544,292.763108 173.779187,315.19804 Z" id="Shape" fill="url(#linearGradient-118)"></path>
- <path d="M19.8903978,323.823192 C19.6333956,323.737167 19.3817988,323.651633 19.1292192,323.566099 C19.1518236,323.566099 19.1557548,323.566099 19.1557548,323.566099 C19.4024376,323.651633 19.6442064,323.737659 19.8903978,323.823192 Z" id="Shape" fill="url(#linearGradient-119)"></path>
- <path d="M184.000307,269.958513 L184.000307,265.641512 L183.625369,265.638563 C181.885813,255.187214 174.084838,244.999349 160.229815,236.995055 C128.682427,218.775859 77.700168,218.775859 46.358676,236.995055 C33.3940698,244.530388 25.825527,254.003013 23.6343744,263.810892 L22.9586994,263.803518 L22.960665,269.66406 L22.963122,269.66406 C22.889412,281.71204 30.8137284,293.785581 46.7331228,302.978501 C67.5591462,315.006818 96.8716476,319.090812 123.401351,315.237366 C134.015591,313.69235 144.190519,310.875633 153.195916,306.794096 C155.766429,305.621693 158.245051,304.354908 160.603771,302.978501 C176.28975,293.860792 184.081388,281.908669 184.000307,269.958513 Z" id="Shape" fill="url(#linearGradient-120)"></path>
- <path d="M160.603771,298.634956 C158.245051,300.012345 155.766429,301.281589 153.195916,302.450551 C144.191011,306.535037 134.015591,309.348313 123.401351,310.894804 C96.872139,314.74825 67.5591462,310.665731 46.7331228,298.634956 C15.1778718,280.41576 15.014727,250.874147 46.358676,232.652493 C77.700168,214.43133 128.681935,214.43133 160.229815,232.652493 C191.777204,250.880537 191.947228,280.416251 160.603771,298.634956 Z" id="Shape" fill="url(#linearGradient-121)"></path>
- <path d="M166.027844,258.182864 C164.887796,266.411808 158.902544,274.462802 148.063734,280.756912 C123.716338,294.908336 84.1139208,294.908336 59.5989576,280.756912 C48.5719416,274.386117 42.4785816,266.228451 41.3508186,257.904142 C39.9419748,247.731516 45.926244,237.289016 59.3183682,229.503472 C83.6628156,215.342708 123.261302,215.354014 147.772825,229.503472 C161.371829,237.353904 167.463715,247.91094 166.027844,258.182864 Z" id="Shape" fill="url(#linearGradient-122)"></path>
- <path d="M103.327661,286.291049 C88.3085112,286.291049 74.1679848,282.901156 63.5114844,276.745179 C52.759161,270.538078 46.8318942,262.264893 46.8186264,253.44901 C46.8073242,244.693099 52.6426992,236.474478 63.2490768,230.307686 C73.8407124,224.151217 87.9424182,220.760833 102.955671,220.760833 C117.967941,220.760833 132.106993,224.150234 142.764968,230.307686 C153.5168,236.51872 159.443575,244.795346 159.45586,253.610738 C159.467162,262.36419 153.632279,270.580845 143.026393,276.745179 C141.4318,277.67622 139.689787,278.575308 137.846054,279.412949 C131.665716,282.218361 124.666706,284.203335 117.040669,285.312817 C112.565981,285.964152 107.952226,286.291049 103.327661,286.291049 Z M102.955671,221.392997 C88.0520004,221.392997 74.063808,224.753395 63.5689782,230.856282 C53.1630918,236.905097 47.4407388,244.928563 47.452041,253.448027 C47.4648174,262.025496 53.2805364,270.107951 63.8294202,276.198057 C74.3910804,282.297996 88.4180934,285.65741 103.328152,285.65741 C107.921759,285.65741 112.505047,285.328547 116.948286,284.683603 C124.514863,283.584444 131.458345,281.615691 137.583646,278.836825 C139.408214,278.006557 141.131554,277.118775 142.707965,276.197566 C153.111886,270.149243 158.834731,262.12971 158.822446,253.611229 C158.811635,245.032285 152.996899,236.94983 142.447523,230.855299 C131.883898,224.753395 117.857376,221.392997 102.955671,221.392997 Z" id="Shape" fill="url(#linearGradient-123)" opacity="0.5"></path>
- <path d="M17.7881886,168.620102 L17.7759036,156.212291 C17.7759036,156.364679 17.7881886,156.516083 17.7881886,156.668963 L17.7881886,168.620102 Z" id="Shape" fill="url(#linearGradient-124)"></path>
- <ellipse id="Oval" fill="url(#linearGradient-125)" opacity="0.4" cx="87.9325902" cy="31.3727252" rx="1.1390652" ry="1.13946784"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-126)" opacity="0.4" cx="54.1689876" cy="126.979877" rx="1.1385738" ry="1.13897627"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-127)" opacity="0.4" cx="108.430358" cy="135.222585" rx="1.1385738" ry="1.13897627"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-128)" opacity="0.2" cx="173.724151" cy="116.850018" rx="1.1385738" ry="1.13897627"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-129)" opacity="0.2" cx="37.8948024" cy="121.507679" rx="1.1390652" ry="1.13946784"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-130)" opacity="0.2" cx="110.708489" cy="95.0610139" rx="1.1390652" ry="1.13946784"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-131)" opacity="0.3" cx="134.533035" cy="137.500538" rx="1.1380824" ry="1.13848469"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-132)" opacity="0.3" cx="149.595919" cy="48.6569481" rx="1.1390652" ry="1.13946784"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-133)" opacity="0.3" cx="75.0357972" cy="77.9041086" rx="1.1380824" ry="1.13848469"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-134)" opacity="0.3" cx="41.35131" cy="26.7337442" rx="1.1390652" ry="1.13946784"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-135)" opacity="0.3" cx="77.3124534" cy="163.380418" rx="1.1385738" ry="1.13897627"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-136)" opacity="0.8" cx="49.9414734" cy="169.834781" rx="1.3164606" ry="1.31692594"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-137)" opacity="0.3" cx="128.168914" cy="180.095399" rx="1.1385738" ry="1.13897627"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-138)" opacity="0.8" cx="160.502051" cy="201.826889" rx="1.3174434" ry="1.31790909"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-139)" opacity="0.8" cx="119.795949" cy="208.798387" rx="1.3174434" ry="1.31790909"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-140)" opacity="0.8" cx="144.067178" cy="214.294673" rx="1.1385738" ry="1.13897627"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-141)" opacity="0.3" cx="51.4456488" cy="228.141321" rx="1.1385738" ry="1.13897627"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-142)" opacity="0.8" cx="138.192491" cy="235.871317" rx="1.1385738" ry="1.13897627"></ellipse>
- <path d="M147.232285,252.745076 C147.232285,253.472114 146.642114,254.062002 145.91435,254.062002 C145.188061,254.062002 144.596907,253.471622 144.596907,252.745076 C144.596907,252.017056 145.188061,251.427659 145.91435,251.427659 C146.642605,251.427659 147.232285,252.017056 147.232285,252.745076 Z" id="Shape" fill="url(#linearGradient-143)" opacity="0.9"></path>
- <ellipse id="Oval" fill="url(#linearGradient-144)" opacity="0.8" cx="69.5119698" cy="255.128717" rx="1.3174434" ry="1.31790909"></ellipse>
- <path d="M121.113392,265.642987 C121.113392,266.369533 120.523221,266.961388 119.795458,266.961388 C119.068186,266.961388 118.478014,266.369533 118.478014,265.642987 C118.478014,264.914475 119.068186,264.325078 119.795458,264.325078 C120.523712,264.325078 121.113392,264.913983 121.113392,265.642987 Z" id="Shape" fill="url(#linearGradient-145)" opacity="0.9"></path>
- <path d="M82.0696968,22.5524183 C81.5886162,22.5524183 81.1984446,23.0400594 81.1984446,23.6422371 L81.1984446,132.164505 C81.1984446,132.766683 81.5886162,133.254816 82.0696968,133.254816 C82.550286,133.254816 82.9404576,132.766683 82.9404576,132.164505 L82.9404576,23.6422371 C82.9404576,23.0400594 82.550286,22.5524183 82.0696968,22.5524183 Z" id="Shape" fill="url(#linearGradient-146)" opacity="0.1"></path>
- <path d="M132.522226,48.6569481 C132.04262,48.6569481 131.65294,49.1445892 131.65294,49.746767 L131.65294,158.269035 C131.65294,158.871213 132.04262,159.359346 132.522226,159.359346 C133.00429,159.359346 133.394953,158.870721 133.394953,158.269035 L133.394953,49.746767 C133.394953,49.1450808 133.00429,48.6569481 132.522226,48.6569481 Z" id="Shape" fill="url(#linearGradient-147)" opacity="0.1"></path>
- <path d="M47.6893872,53.2148194 C47.208798,53.2148194 46.818135,53.7029521 46.818135,54.3051299 L46.818135,162.82789 C46.818135,163.430067 47.208798,163.917708 47.6893872,163.917708 C48.1699764,163.917708 48.5611308,163.430067 48.5611308,162.82789 L48.5611308,54.3051299 C48.5616222,53.7029521 48.1699764,53.2148194 47.6893872,53.2148194 Z" id="Shape" fill="url(#linearGradient-148)" opacity="0.2"></path>
- <path d="M158.575763,119.886469 C158.263724,119.886469 158.011144,120.203042 158.011144,120.59286 L158.011144,190.886425 C158.011144,191.276734 158.263232,191.592816 158.575763,191.592816 C158.888293,191.592816 159.140381,191.277226 159.140381,190.886425 L159.140381,120.59286 C159.140381,120.203042 158.888785,119.886469 158.575763,119.886469 Z" id="Shape" fill="url(#linearGradient-149)" opacity="0.4"></path>
- <path d="M65.4431778,139.638392 C64.9616058,139.638392 64.572417,140.126033 64.572417,140.728211 L64.572417,215.96799 C64.572417,216.569676 64.9616058,217.0583 65.4431778,217.0583 C65.9247498,217.0583 66.3149214,216.569676 66.3149214,215.96799 L66.3149214,140.728211 C66.3149214,140.126033 65.9247498,139.638392 65.4431778,139.638392 Z" id="Shape" fill="url(#linearGradient-150)" opacity="0.3"></path>
- <path d="M129.040166,190.097449 C128.558594,190.097449 128.168914,190.585582 128.168914,191.18776 L128.168914,299.710028 C128.168914,300.312697 128.558594,300.80083 129.040166,300.80083 C129.520755,300.80083 129.910927,300.312697 129.910927,299.710028 L129.910927,191.18776 C129.910927,190.585582 129.520755,190.097449 129.040166,190.097449 Z" id="Shape" fill="url(#linearGradient-151)" opacity="0.4"></path>
- <path d="M152.293705,250.591983 L152.282894,250.591983 C152.282894,251.362279 152.250462,252.135033 152.138914,252.907787 C151.362011,258.517626 147.622948,264.011945 140.909441,268.543272 C140.149246,269.051559 139.349246,269.556897 138.508461,270.040605 C136.473574,271.224315 134.296672,272.276283 132.006748,273.201424 C129.1925,274.332535 126.207245,275.276848 123.122236,276.016667 C120.233295,276.705853 117.253445,277.227904 114.222982,277.57643 C114.054923,277.590686 113.887847,277.610349 113.722736,277.62952 C107.848049,278.269057 101.805304,278.258243 95.9257026,277.598059 C95.7768084,277.578888 95.621526,277.559717 95.4731232,277.54202 C92.2986792,277.168424 89.1753408,276.609505 86.1581448,275.853956 C83.221047,275.121511 80.3841948,274.213083 77.697711,273.114416 C75.4760916,272.220243 73.353735,271.194329 71.3650392,270.040114 C70.3050894,269.431545 69.302142,268.795449 68.3699562,268.144606 C61.8805278,263.6354 58.260384,258.22219 57.5070678,252.701818 C57.4092792,251.997884 57.3753726,251.2969 57.3689844,250.591 L57.3498198,250.591 L57.3498198,125.677207 L57.3689844,86.6472384 C57.3252498,79.6074114 61.9050978,72.5690592 71.1444006,67.1976333 C89.6210406,56.4483912 119.679487,56.4547817 138.284383,67.1976333 C148.594446,73.1540319 153.217046,81.1504613 152.145794,88.9305982 L152.293705,250.591983 Z" id="Shape" fill="url(#linearGradient-152)" opacity="0.4"></path>
- <path d="M103.806284,71.8090862 C94.6981854,71.8090862 86.1212898,69.7528334 79.6574142,66.0188396 C73.1281824,62.2494525 69.5291688,57.2231114 69.5213064,51.8654496 C69.5139354,46.5441643 73.0574208,41.5512502 79.498692,37.8069333 C85.923747,34.0724479 94.4745984,32.0161951 103.580732,32.0161951 C112.683425,32.0161951 121.260812,34.0724479 127.725179,37.8069333 C134.25392,41.5782868 137.853916,46.6051194 137.860304,51.9632728 C137.868167,57.2830834 134.323207,62.2750143 127.88341,66.0188396 C126.915352,66.5841494 125.857859,67.1283215 124.739924,67.6371002 C120.992017,69.3384368 116.746812,70.5413177 112.121264,71.2157568 C109.407753,71.6095073 106.610213,71.8090862 103.806284,71.8090862 Z M103.580732,32.482207 C94.5571536,32.482207 86.0878746,34.5168306 79.7335812,38.2105153 C73.4416956,41.8683153 69.9797826,46.7176898 69.9871536,51.8654496 C69.9955074,57.0495859 73.5104916,61.9318959 79.8898464,65.6152576 C86.2844346,69.3084508 94.7792664,71.3415996 103.806284,71.3415996 C106.588591,71.3415996 109.36451,71.1434954 112.053451,70.7536775 C116.634773,70.0861204 120.839191,68.8945458 124.546804,67.2123806 C125.65098,66.7099922 126.694714,66.1736853 127.648521,65.6162408 C133.939424,61.959424 137.40232,57.1110326 137.394949,51.9647475 C137.387086,46.7801197 133.870628,41.8948602 127.490782,38.2105153 C121.096685,34.5168306 112.605293,32.482207 103.580732,32.482207 Z" id="Shape" fill="url(#linearGradient-153)" opacity="0.5"></path>
- <path d="M165.993446,41.5645227 L166.19148,255.045641 L166.174772,255.045641 C166.174772,256.064673 166.132021,257.081739 165.987058,258.101755 C164.959049,265.510262 160.023919,272.767365 151.159554,278.7508 C150.153167,279.420815 149.091251,280.090338 147.986584,280.729384 C145.302066,282.293571 142.424428,283.682267 139.397404,284.904811 C135.683894,286.401653 131.74434,287.64386 127.66572,288.619633 C123.850982,289.531994 119.917325,290.223147 115.914872,290.678836 C115.695216,290.699482 115.474577,290.722094 115.255413,290.748639 C115.08932,290.763878 114.923718,290.785999 114.757133,290.796322 C107.152718,291.595129 99.3507606,291.563177 91.751751,290.705381 C91.552734,290.684734 91.3497858,290.657698 91.1512602,290.635577 C86.9591268,290.141054 82.8392292,289.40271 78.8583978,288.405799 C74.9783034,287.441331 71.2264644,286.234518 67.6800306,284.786342 C64.7483382,283.603124 61.945884,282.251296 59.319351,280.729875 C57.9208266,279.924678 56.5974864,279.083104 55.3640724,278.225799 C53.0230428,276.600656 50.9596542,274.88064 49.1857002,273.100652 C44.464329,268.356474 41.737059,263.130062 41.0186322,257.833356 C40.8903768,256.90084 40.8471336,255.973241 40.8368142,255.045641 L40.8147012,255.045641 L40.8147012,90.089729 L40.8368142,38.5462602 C40.7832516,29.2506015 46.8274716,19.9598586 59.0308992,12.863009 C83.4294006,-1.3326563 123.122727,-1.32184168 147.68683,12.863009 C161.304016,20.7321208 167.407695,31.2876829 165.993446,41.5645227 Z" id="Shape" fill="url(#linearGradient-154)" opacity="0.4"></path>
- <path d="M103.942402,158.582659 C83.5040934,158.582659 64.2633264,153.96924 49.7626038,145.593316 C35.1365742,137.148571 27.0727002,125.894483 27.0535356,113.904509 C27.0358452,101.996627 34.9744122,90.8192244 49.4073216,82.4310108 C63.8171352,74.0531202 83.0058138,69.4392094 103.435769,69.4392094 C123.866707,69.4392094 143.105999,74.0536118 157.611636,82.4305192 C172.237174,90.879688 180.300065,102.136726 180.317264,114.126208 C180.332498,126.030649 172.394422,137.206085 157.964953,145.592824 C155.79837,146.859609 153.425891,148.080679 150.917294,149.223587 C142.505509,153.039182 132.979228,155.738905 122.602334,157.250003 C116.515363,158.134344 110.236745,158.582659 103.942402,158.582659 Z M103.435769,70.2473566 C83.1453714,70.2473566 64.1016558,74.8229246 49.8122352,83.1290454 C35.641242,91.3678206 27.8466552,102.295996 27.8633628,113.903525 C27.8800704,125.591673 35.8004556,136.598008 50.1660432,144.893315 C64.5448986,153.198944 83.6441424,157.772546 103.942894,157.772546 C110.197433,157.772546 116.438213,157.327671 122.485873,156.449229 C132.787582,154.949438 142.240644,152.26987 150.583633,148.48721 C153.066186,147.355607 155.414095,146.146828 157.56053,144.893806 C171.728575,136.657489 179.524636,125.73128 179.507929,114.1267 C179.493187,102.43806 171.57231,91.4292674 157.206231,83.129537 C142.822462,74.8229246 123.726658,70.2473566 103.435769,70.2473566 Z" id="Shape" fill="url(#linearGradient-155)" opacity="0.8"></path>
- <path d="M103.862795,60.2777504 C90.1099836,60.2777504 77.1611022,57.1734624 67.3999326,51.5346205 C57.5414658,45.8426886 52.105599,38.2522991 52.0947882,30.1619791 C52.0825032,22.127207 57.4333578,14.5874496 67.1606208,8.93386044 C76.8608568,3.29403537 89.7748488,0.188764301 103.523729,0.188764301 C117.271627,0.188764301 130.219526,3.29452694 139.982661,8.93287729 C149.841128,14.6277586 155.277486,22.2210976 155.287805,30.3104344 C155.299108,38.3442234 149.948744,45.8820145 140.222464,51.5341289 C138.760549,52.3870093 137.164973,53.2099037 135.474557,53.9792165 C129.816086,56.546706 123.403316,58.3640539 116.421505,59.3811199 C112.323229,59.9759241 108.100138,60.2777504 103.862795,60.2777504 Z M103.523729,0.894664136 C89.896716,0.894664136 77.1095052,3.96601662 67.5163944,9.54292026 C58.0132098,15.0662424 52.7891364,22.3887242 52.7979816,30.1619791 C52.8102666,37.9902903 58.1208264,45.3634043 67.7512836,50.9245776 C77.4072936,56.5014812 90.2323422,59.5718505 103.862795,59.5718505 C108.06574,59.5718505 112.255907,59.2734653 116.319785,58.6830853 C123.237715,57.6753592 129.585128,55.8776742 135.184631,53.3362381 C136.850969,52.5782315 138.42738,51.7656602 139.867182,50.9250691 C149.367418,45.4032217 154.593457,38.0831978 154.582646,30.3114175 C154.57331,22.4835979 149.262259,15.1075346 139.630327,9.54341183 C129.972843,3.96601662 117.150743,0.894664136 103.523729,0.894664136 Z" id="Shape" fill="url(#linearGradient-156)" opacity="0.8"></path>
- <path d="M53.0299224,74.6095816 L53.0299224,144.841208 C53.0299224,147.357082 51.2176392,150.331103 49.0594104,151.624433 C46.3847202,153.226472 43.781283,154.960744 42.0161742,156.212782 C14.007357,136.260297 10.2977784,108.664824 30.8063574,86.6098788 C34.6466484,82.479185 43.506099,76.0621819 49.1365602,72.4132303 C51.2466318,71.0451807 53.0299224,72.0946906 53.0299224,74.6095816 Z" id="Shape" fill="url(#linearGradient-157)" opacity="0.1"></path>
- <path d="M114.754676,183.820053 L114.754676,253.832929 C114.754676,256.348311 112.729126,258.046699 110.21414,258.046207 C89.611704,258.038833 64.5350706,248.088399 59.4367956,245.778002 C55.9488384,244.195626 52.6156722,242.479051 49.4083044,240.615987 C28.4353524,228.416602 17.91153,212.46012 17.8093188,196.477584 C17.7994908,196.223441 17.786223,195.970772 17.786223,195.716136 L17.786223,129.277984 L17.7744294,116.874597 C17.7744294,117.026493 17.786223,117.178881 17.786223,117.331269 L17.786223,116.748754 C17.786223,119.639207 18.1410138,122.543916 18.8343792,125.423064 C18.8614062,125.536125 18.8761482,125.663443 18.911529,125.777488 C19.0289736,126.260214 19.1926098,126.742939 19.3306932,127.224681 C19.48401,127.769345 19.6225848,128.3145 19.8127566,128.859655 C19.825533,128.91127 19.8505944,128.975667 19.8776214,129.037605 C23.9469048,140.846188 33.9002118,152.123872 49.7488446,161.266651 C56.7090342,165.287233 64.3788054,168.647631 72.5203206,171.350303 C72.6736374,171.402901 72.8240058,171.437311 72.9758484,171.490401 C84.6480726,175.327626 97.294743,177.805157 110.213158,178.926928 C112.719789,179.144695 114.754676,181.303687 114.754676,183.820053 Z" id="Shape" fill="url(#linearGradient-158)" opacity="0.4"></path>
- <path d="M104.8225,191.312128 L104.8225,217.709144 C93.7817244,216.424662 83.0190816,214.135895 72.9807624,210.828587 C72.827937,210.778446 72.6760944,210.739612 72.5237604,210.68898 C67.955706,209.174441 63.540477,207.451967 59.3149284,205.517133 L59.3149284,179.119625 C63.5409684,181.052001 67.955706,182.770051 72.5237604,184.284098 C72.675603,184.342104 72.8274456,184.372582 72.9807624,184.424197 C83.0190816,187.731505 93.7817244,190.018306 104.8225,191.312128 Z" id="Shape" fill="url(#linearGradient-159)"></path>
- <path d="M104.8225,226.486192 L104.8225,229.927208 C93.46428,228.432824 82.6475832,226.003467 72.631377,222.704024 C72.5237604,222.666173 72.4156524,222.635204 72.3016476,222.603743 C72.2638098,222.595878 72.2240064,222.585063 72.194031,222.573266 L72.1163898,222.545737 C67.6589004,221.06905 63.3640644,219.421787 59.314437,217.64229 L59.314437,214.295164 C63.540477,216.228524 67.9552146,217.944608 72.523269,219.459146 C72.6751116,219.516169 72.8269542,219.547629 72.980271,219.599736 C83.0190816,222.907044 93.7817244,225.194337 104.8225,226.486192 Z" id="Shape" fill="url(#linearGradient-160)"></path>
- <path d="M104.8225,234.400037 L104.8225,239.387544 C93.46428,237.894143 82.6475832,235.467735 72.631377,232.164852 C72.5237604,232.131916 72.4156524,232.100947 72.3016476,232.068995 C72.2638098,232.057197 72.2240064,232.049823 72.194031,232.037534 L72.1163898,232.006073 C67.6589004,230.528894 63.3640644,228.881631 59.314437,227.106558 L59.314437,222.470035 C62.950797,224.010136 66.7650438,225.440615 70.6923126,226.745743 C70.8249906,226.796867 70.9645482,226.835701 71.103123,226.872078 L71.2303956,226.909929 C81.69525,230.357827 92.9841822,232.874193 104.8225,234.400037 Z" id="Shape" fill="url(#linearGradient-161)"></path>
- <path d="M104.8225,243.870205 L104.8225,247.733482 C93.46428,246.233199 82.6475832,243.804825 72.631377,240.511773 C72.5237604,240.472939 72.4156524,240.442461 72.3016476,240.408051 C72.2638098,240.393795 72.2240064,240.388388 72.194031,240.376099 L72.1163898,240.351028 C67.6589004,238.868442 63.3640644,237.219704 59.314437,235.446598 L59.314437,231.928405 C62.950797,233.468505 66.7650438,234.900951 70.6923126,236.208045 C70.8249906,236.258677 70.9645482,236.301444 71.103123,236.338804 L71.2303956,236.377638 C81.69525,239.826519 92.9841822,242.340427 104.8225,243.870205 Z" id="Shape" fill="url(#linearGradient-162)"></path>
- <path d="M49.940982,196.203778 L49.181769,246.923369 C49.1360688,249.963752 46.6603956,251.118459 43.6810374,249.372389 C32.5031616,242.826594 22.0289706,235.121176 13.0840164,226.580574 C11.1257874,224.709645 9.2835288,222.842648 7.5582234,220.980567 C5.0825502,218.306897 3.2550336,213.538141 3.3007338,210.500707 L4.0604382,159.789964 C4.1061384,156.750564 6.0083478,156.588836 8.4879522,159.262506 C10.2108006,161.12262 12.0520764,162.988634 14.0093226,164.857597 C22.953294,173.395249 33.4269936,181.10165 44.6063436,187.64892 C47.5852104,189.393516 49.9866822,193.165361 49.940982,196.203778 Z" id="Shape" fill="url(#linearGradient-163)" opacity="0.7"></path>
- <path d="M49.4063388,240.154399 L48.6441774,290.872024 C48.601917,293.911916 46.1267352,295.069572 43.1463942,293.322027 C31.9670442,286.776232 21.4908876,279.07278 12.5474076,270.533654 C10.592127,268.662233 8.7483942,266.791795 7.022106,264.932171 C4.5464328,262.256044 2.7194076,257.490729 2.7670734,254.45182 L3.3995052,211.940526 C3.8068758,214.893901 5.447169,218.699665 7.5582234,220.979092 C9.2840202,222.844123 11.1267702,224.709153 13.0830336,226.580574 C22.0260222,235.120684 32.5041444,242.830035 43.6825116,249.374355 C46.6618698,251.1219 49.137543,249.964735 49.1802948,246.924844 L49.2982308,238.921041 C49.3724322,239.338878 49.4112528,239.752292 49.4063388,240.154399 Z" id="Shape" fill="url(#linearGradient-164)" opacity="0.3"></path>
- <path d="M146.975774,212.027535 L146.975774,246.251879 C146.975774,247.824915 148.233758,248.892122 149.772332,248.578006 C157.243086,247.058552 164.264209,244.564798 170.253392,241.108052 C171.743809,240.244849 173.132996,239.348218 174.417516,238.417178 C175.691225,237.494494 176.662723,235.392525 176.662723,233.81998 L176.662723,199.603501 C176.662723,198.030957 175.688276,197.580184 174.416042,198.502376 C173.131031,199.430467 171.741352,200.328572 170.253392,201.190301 C164.264209,204.645081 157.243086,207.141292 149.772332,208.659764 C148.233758,208.974371 146.975774,210.454991 146.975774,212.027535 Z" id="Shape" fill="url(#linearGradient-165)" opacity="0.8"></path>
- <path d="M163.634726,192.365079 C157.402791,195.196543 150.720242,197.539383 143.747276,199.39704 C141.318286,200.045918 139.331065,198.464033 139.331065,195.948651 L139.331065,166.003456 C139.331065,163.487581 141.318286,160.992353 143.747276,160.344459 C150.719751,158.484344 157.402791,156.141013 163.634726,153.310531 C166.867155,151.836793 169.995407,150.234754 172.964446,148.510806 C192.005705,137.44204 201.811592,123.061543 202.403237,108.567001 L202.403237,144.996054 C202.950657,160.371496 193.143296,175.829031 172.964446,187.569285 C169.995407,189.297659 166.867155,190.893307 163.634726,192.365079 Z" id="Shape" fill="url(#linearGradient-166)" opacity="0.3"></path>
- <path d="M192.507424,121.24567 C190.899563,119.312311 189.455339,115.82902 189.455339,113.313637 L189.455339,83.4505346 C189.455339,80.9346604 190.900055,80.3383815 192.509881,82.2687914 C204.185054,96.2663526 205.554586,112.416515 196.587518,126.890411 C195.406193,124.980156 194.045506,123.093004 192.507424,121.24567 Z" id="Shape" fill="url(#linearGradient-167)" opacity="0.2"></path>
- <g opacity="0.9" transform="translate(150.859800, 157.795158)" id="Shape">
- <polygon fill="url(#linearGradient-168)" points="26.6864598 21.6449732 26.6613984 14.0781792 22.8653334 16.2686316 22.8884292 24.3805808"></polygon>
- <path d="M3.9739518,34.1147233 C2.7257958,34.6082633 1.4589666,35.0742751 0.1739556,35.5206241 L0.095823,6.8766245 C1.3729716,6.46665204 2.6393094,6.03259246 3.8923794,5.58476882 L3.9739518,34.1147233 Z" fill="url(#linearGradient-169)"></path>
- <path d="M11.5685388,30.8280615 C10.8904068,31.1593822 10.2044124,31.4779219 9.50859,31.7954786 C8.9405316,32.0525716 8.3577312,32.3091731 7.7773878,32.5608588 L7.7164542,13.7714372 C7.734636,13.7655383 7.7582232,13.753249 7.7773878,13.7468585 C8.3582226,13.496156 8.9405316,13.2390629 9.50859,12.9819699 C10.1881962,12.6698206 10.8545346,12.3635702 11.5154676,12.0396231 L11.5685388,30.8280615 Z" fill="url(#linearGradient-170)"></path>
- <path d="M19.3719708,26.6201906 C18.9626346,26.8699101 18.5542812,27.1161885 18.1311858,27.360009 C17.3061252,27.8447007 16.4555118,28.3200525 15.5808198,28.7845896 L15.501213,2.42886566 L19.2992436,0.238904819 L19.3719708,26.6201906 Z" fill="url(#linearGradient-171)"></path>
- </g>
- <path d="M202.593901,148.018249 L202.593901,249.481518 L139.601335,291.370971 L139.601335,196.629972 C139.921727,198.742756 141.76546,199.985946 143.96251,199.396057 C150.94039,197.54135 157.622938,195.193594 163.849468,192.363112 C167.086319,190.893798 170.215555,189.297167 173.185085,187.570269 C192.042068,176.601785 201.838127,162.380066 202.593901,148.018249 Z" id="Shape" fill="url(#linearGradient-172)" opacity="0.2"></path>
- <path d="M157.876009,62.8255769 C157.211636,62.4416578 156.537927,62.0700281 155.85439,61.7106877 C154.726135,61.1158835 153.794441,58.63147 153.794441,56.116579 L153.794441,20.6033285 C153.794441,18.0879459 154.726135,16.4937724 155.85439,17.0871018 C156.537927,17.4474254 157.211636,17.8190551 157.876009,18.2014994 C180.374758,31.1962502 181.885322,51.7602528 162.325145,65.694401 C160.943328,64.6979811 159.465197,63.7418702 157.876009,62.8255769 Z" id="Shape" fill="url(#linearGradient-173)" opacity="0.2"></path>
- <path d="M175.933485,87.9258216 C175.988522,97.006171 170.060764,106.087012 158.148245,113.015252 C156.348247,114.058863 154.469624,115.022347 152.509921,115.915045 C145.666193,119.02474 137.927626,121.163577 129.854416,122.335489 C126.794959,122.785771 123.68538,123.089072 120.556145,123.252766 C118.044108,123.385982 116.004798,121.357257 116.004798,118.841383 L116.004798,83.2396495 C116.004798,80.7232837 118.044108,78.6744045 120.556145,78.5421712 C123.68538,78.3770025 126.794468,78.0741931 129.854416,77.6244031 C137.927626,76.4515083 145.666685,74.3048059 152.509921,71.2034674 C154.469624,70.3122443 156.348247,69.3477767 158.148245,68.3021995 C170.004253,61.4088614 175.933485,52.3835683 175.933865,43.3425448 L175.933485,87.9258216 Z" id="Shape" fill="url(#linearGradient-174)" opacity="0.3"></path>
- <path d="M143.977252,95.6966187 C143.996908,102.45674 139.243595,110.693058 133.361537,114.089832 C127.478988,117.488081 122.696683,114.758864 122.677027,107.998742 C122.657371,101.236654 127.409701,93.0027948 133.292741,89.6055289 C139.173325,86.2077715 143.958087,88.9330561 143.977252,95.6966187 Z M133.350727,110.161666 C137.347283,107.855694 140.574798,102.260602 140.562022,97.6693039 C140.548262,93.0730898 137.300108,91.2223148 133.305518,93.5297618 C129.307487,95.8381919 126.078989,101.430334 126.091766,106.025565 C126.104542,110.618338 129.355645,112.470588 133.350727,110.161666 L133.350727,110.161666 Z" id="Shape" fill="url(#linearGradient-175)" opacity="0.4"></path>
- <path d="M139.604283,102.302878 C138.365464,105.547264 136.016572,108.603869 133.317311,110.159209 C129.319772,112.468622 126.071618,110.615389 126.053928,106.02704 C126.042626,101.432792 129.273581,95.839175 133.270628,93.5292702 C133.276034,93.5238629 133.287336,93.5184556 133.294707,93.5184556 L133.294707,89.5902901 L133.258343,89.6084784 C127.375303,93.0042695 122.62543,101.234688 122.641646,107.996776 C122.659337,114.759355 127.446064,117.489556 133.328122,114.088357 C137.174801,111.861037 140.545314,107.564683 142.40428,102.965027 L139.604283,102.302878 Z" id="Shape" fill="url(#linearGradient-176)"></path>
- <path d="M170.120223,84.6986402 C170.135456,90.7798985 165.859294,98.1898805 160.567407,101.246486 C155.276012,104.302599 150.971839,101.848172 150.956114,95.7664221 C150.938424,89.6822144 155.211638,82.2751819 160.505982,79.2180851 C165.79492,76.1619714 170.100076,78.6144326 170.120223,84.6986402 Z M160.558562,97.713054 C164.153153,95.6381214 167.056835,90.6034235 167.04455,86.4737129 C167.03374,82.3390865 164.110401,80.6741264 160.516301,82.7495505 C156.919745,84.8259578 154.015079,89.8572147 154.026382,93.9918411 C154.039158,98.1225349 156.964462,99.7889697 160.558562,97.713054 L160.558562,97.713054 Z" id="Shape" fill="url(#linearGradient-177)" opacity="0.4"></path>
- <path d="M160.505982,79.2180851 C155.211638,82.2732156 150.938915,89.6822144 150.956114,95.7664221 C150.964468,99.5161463 152.601322,101.887498 155.096159,102.434128 L156.736944,98.4907236 C155.103039,98.0802595 154.035227,96.4816619 154.025399,93.9947905 C154.015079,89.8557399 156.920236,84.8235 160.517776,82.7515168 C160.522198,82.7466011 160.5335,82.7407022 160.537432,82.7407022 L160.537432,79.2028463 C160.528095,79.207762 160.517776,79.2126777 160.505982,79.2180851 Z" id="Shape" fill="url(#linearGradient-178)"></path>
- <path d="M175.94921,89.5917649 L175.94921,182.177214 L116.004798,199.953993 L116.004798,89.5917649 L116.015609,89.5917649 L116.015609,119.236608 C116.015609,121.750516 118.052462,123.776783 120.56499,123.648482 C123.696191,123.482331 126.803804,123.181979 129.863261,122.731697 C137.93942,121.557819 145.676513,119.418982 152.520732,116.309779 C154.476013,115.41364 156.3566,114.454088 158.158073,113.409494 C169.513344,106.799302 175.429309,98.2439536 175.906949,89.5917649 L175.94921,89.5917649 Z" id="Shape" fill="url(#linearGradient-179)" opacity="0.2"></path>
- <path d="M98.695233,107.101129 L98.695233,143.841839 C98.695233,146.043106 96.9350382,147.539947 94.7827062,147.082784 C86.705073,145.367192 79.1208054,142.626668 72.6225318,138.875961 C71.2004202,138.053558 69.8608638,137.202153 68.6053368,136.324202 C66.803373,135.062332 65.4431778,132.117806 65.4431778,129.91703 L65.4431778,93.1841855 C65.4431778,90.9829184 66.8048472,90.3551788 68.609268,91.6165569 C69.8628294,92.4930329 71.2009116,93.3434554 72.6225318,94.1643834 C79.1208054,97.9141076 86.705073,100.655123 94.7827062,102.371206 C96.9350382,102.827878 98.695233,104.899861 98.695233,107.101129 Z" id="Shape" fill="url(#linearGradient-180)" opacity="0.6"></path>
- <path d="M98.6957244,143.84233 L98.6957244,174.489492 L65.4441606,167.252544 L65.4441606,129.915064 C65.4441606,132.118297 66.80583,135.061349 68.6058282,136.32666 C69.8603724,137.200186 71.2009116,138.052575 72.6205662,138.878419 C79.1198226,142.625685 86.7035988,145.365225 94.7846718,147.080818 C96.9330726,147.541422 98.6957244,146.045072 98.6957244,143.84233 Z" id="Shape" fill="url(#linearGradient-181)" opacity="0.4"></path>
- <path d="M57.090852,50.3597594 L57.090852,98.016355 C57.090852,100.532721 55.154736,101.932723 52.7896278,101.081809 C43.4269836,97.7135456 34.5763782,93.6777255 26.4309318,88.968941 C17.4142332,83.7607176 9.796059,78.0501059 3.5857458,71.9899854 C1.7852562,70.2340841 0.4098276,66.6888546 0.4098276,64.1729804 L0.4098276,16.5232668 C0.4098276,14.0073926 1.7867304,13.473052 3.5882028,15.2289533 C9.8024472,21.2890738 17.4137418,26.9982108 26.4309318,32.2015184 C34.5763782,36.9083366 43.4269836,40.9456314 52.7896278,44.3153691 C55.154736,45.1667748 57.090852,47.8448683 57.090852,50.3597594 Z" id="Shape" fill="url(#linearGradient-182)" opacity="0.3"></path>
- <path d="M22.8638592,43.7741465 C30.7945638,48.3541387 37.1994714,59.4538728 37.1758842,68.5701071 C37.1493486,77.683392 30.700215,81.3608548 22.769019,76.7798795 C14.8422456,72.201362 8.4343896,61.0981869 8.459451,51.984902 C8.4854952,42.8691593 14.9365944,39.1951375 22.8638592,43.7741465 Z M22.7842524,71.4861223 C28.1724534,74.5977838 32.55525,72.1000979 32.5714662,65.9106934 C32.5886652,59.7158816 28.2368268,52.1771073 22.8481344,49.0649542 C17.4604248,45.9542759 13.083525,48.4499955 13.0653432,54.6457905 C13.04667,60.8347034 17.3975256,68.3759355 22.7842524,71.4861223 L22.7842524,71.4861223 Z" id="Shape" fill="url(#linearGradient-183)" opacity="0.4"></path>
- <path d="M22.8319182,43.7171239 C30.7611486,48.2976077 37.167039,59.3968503 37.1419776,68.5130846 L32.538051,65.8551456 C32.5562328,59.6588591 28.2009546,52.1195932 22.8171762,49.0089148 L22.8319182,43.7171239 Z" id="Shape" fill="url(#linearGradient-184)"></path>
- <path d="M57.0898692,98.0183212 L57.0898692,172.018351 L0.4093362,140.407213 L0.4093362,64.1759298 C0.4093362,66.6898377 1.7857476,70.2335925 3.5867286,71.9914601 C9.7980246,78.0496144 17.412759,83.7587513 26.4309318,88.9694326 C34.5768696,93.6762507 43.425018,97.7125624 52.7871708,101.078859 C55.1557188,101.931739 57.0898692,100.532721 57.0898692,98.0183212 Z" id="Shape" fill="url(#linearGradient-185)" opacity="0.2"></path>
- </g>
- </g>
- <g id="particle" transform="translate(33.000000, 266.924520)" fill-rule="nonzero">
- <ellipse id="Oval" fill="url(#linearGradient-186)" opacity="0.1" cx="362.025682" cy="101.139814" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-187)" opacity="0.1" cx="369.914126" cy="109.807733" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-188)" opacity="0.1" cx="354.267459" cy="110.809069" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-189)" opacity="0.2" cx="343.766241" cy="112.230209" rx="1" ry="1"></ellipse>
- <path d="M345.01538,130.078758 C345.01538,130.341258 344.802604,130.553618 344.540687,130.553618 C344.279754,130.553618 344.067469,130.341258 344.067469,130.078758 C344.067469,129.818224 344.279754,129.605864 344.540687,129.605864 C344.802604,129.605864 345.01538,129.818224 345.01538,130.078758 Z" id="Shape" fill="url(#linearGradient-190)" opacity="0.1"></path>
- <ellipse id="Oval" fill="url(#linearGradient-191)" opacity="0.1" cx="349.25567" cy="133.943019" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-192)" opacity="0.3" cx="104.803826" cy="1.05393401" rx="1" ry="1"></ellipse>
- <path d="M172.828328,14.2826739 C172.828328,14.8199639 172.395405,15.2559898 171.856339,15.2559898 C171.319239,15.2559898 170.882384,14.8199639 170.882384,14.2826739 C170.882384,13.7448923 171.319239,13.3088664 171.856339,13.3088664 C172.395405,13.3088664 172.828328,13.7448923 172.828328,14.2826739 Z" id="Shape" fill="url(#linearGradient-193)" opacity="0.3"></path>
- <ellipse id="Oval" fill="url(#linearGradient-194)" opacity="0.3" cx="1.1189178" cy="30.7420361" rx="1" ry="1"></ellipse>
- <path d="M112.389077,27.0336041 C112.389077,27.8658384 111.715367,28.5412607 110.883919,28.5412607 C110.050996,28.5412607 109.377286,27.8658384 109.377286,27.0336041 C109.377286,26.2028446 110.050996,25.5284054 110.883919,25.5284054 C111.715367,25.5284054 112.389077,26.2028446 112.389077,27.0336041 Z" id="Shape" fill="url(#linearGradient-195)" opacity="0.3"></path>
- <ellipse id="Oval" fill="url(#linearGradient-196)" opacity="0.3" cx="1.1189178" cy="40.1286359" rx="1" ry="1"></ellipse>
- </g>
- <g id="pipe_2" transform="translate(410.910000, 209.935098)">
- <g id="Group">
- <path d="M67.909023,3.49558059 C69.4500534,4.38532899 70.6962438,6.54186281 70.6898556,8.31349443 C70.6869072,10.0856176 69.4318716,10.8003658 67.8923154,9.90963424 C66.3507936,9.01988584 65.1060774,6.86335201 65.1124656,5.09172039 C65.1173796,3.32008878 66.3694668,2.60534062 67.909023,3.49558059 Z" id="Shape" fill="url(#linearGradient-197)" fill-rule="nonzero"></path>
- <path d="M67.778802,5.4486029 C68.464305,5.84382816 69.0200784,6.80338002 69.0176214,7.59088109 C69.0156558,8.37985688 68.4574254,8.69741349 67.7724138,8.30022194 C67.0869108,7.90450511 66.5321202,6.94544482 66.5345772,6.1569606 C66.5365428,5.36945954 67.0952646,5.05288607 67.778802,5.4486029 Z" id="Shape" fill="url(#linearGradient-198)" fill-rule="nonzero"></path>
- <path d="M77.0672448,9.83589818 C78.6087666,10.7246634 79.8544656,12.8807057 79.8490602,14.653812 C79.8446376,16.4249521 78.5910762,17.1397002 77.0485716,16.2484771 C75.508524,15.3597119 74.2642992,13.203178 74.2682304,11.4325296 C74.2736358,9.6599148 75.5262144,8.94467506 77.0672448,9.83589818 Z" id="Shape" fill="url(#linearGradient-199)" fill-rule="nonzero"></path>
- <path d="M68.6333466,8.38084003 L13.646178,39.9718239 C12.7881936,39.1356571 11.8987596,38.3098132 10.9601856,37.4898683 L66.896739,5.35618705 L68.6333466,8.38084003 Z" id="Shape" fill="url(#linearGradient-200)" fill-rule="nonzero" opacity="0.5"></path>
- <path d="M76.9488174,11.7314064 C77.6343204,12.1276148 78.1886196,13.0866751 78.1856712,13.8746677 C78.184197,14.6646266 77.6269494,14.9816917 76.940955,14.583517 C76.2559434,14.190258 75.7016442,13.2292314 75.705084,12.4417304 C75.707541,11.6527546 76.2633144,11.3361811 76.9488174,11.7314064 Z" id="Shape" fill="url(#linearGradient-201)" fill-rule="nonzero"></path>
- <path d="M77.8023792,14.6636435 L20.2265154,47.6644608 C19.5680394,46.7206393 18.8653374,45.7886155 18.1144782,44.8654401 L76.066263,11.6389905 L77.8023792,14.6636435 Z" id="Shape" fill="url(#linearGradient-202)" fill-rule="nonzero" opacity="0.5"></path>
- <g opacity="0.9" transform="translate(27.027000, 9.339900)" id="Bitmap">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.5" transform="translate(32.432400, 6.390458)" id="Bitmap">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.2" transform="translate(37.837800, 2.949442)" id="Bitmap">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.1" transform="translate(43.243200, 0.000000)" id="Bitmap">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g transform="translate(45.208800, 18.188227)" fill-rule="nonzero" id="Shape">
- <path d="M1.904175,13.6623079 C0.9538074,13.1151863 0.1862406,11.7849879 0.1901718,10.6941859 C0.1931202,9.60240067 0.9660924,9.16539165 1.9144944,9.71300476 C2.8628964,10.2591431 3.6299718,11.5878669 3.6270234,12.6791605 C3.6226008,13.7704541 2.8511028,14.2094294 1.904175,13.6623079 Z" fill="url(#linearGradient-203)"></path>
- <path d="M7.0314426,10.7979079 C6.081075,10.2507864 5.3135082,8.92058795 5.3174394,7.82978591 C5.3203878,6.73800072 6.09336,6.3009917 7.041762,6.8486048 C7.990164,7.39474318 8.7572394,8.7234669 8.754291,9.81476051 C8.7503598,10.9060541 7.9788618,11.3450294 7.0314426,10.7979079 Z" fill="url(#linearGradient-204)" opacity="0.5"></path>
- <path d="M12.6913878,7.46749609 C11.7410202,6.92037456 10.9734534,5.59017613 10.9773846,4.49937408 C10.980333,3.4075889 11.7533052,2.97057987 12.7017072,3.51819298 C13.6501092,4.06383979 14.4171846,5.39305507 14.4142362,6.48434869 C14.410305,7.57564231 13.638807,8.01412605 12.6913878,7.46749609 Z" fill="url(#linearGradient-205)" opacity="0.2"></path>
- <path d="M18.0849942,4.53624211 C17.1346266,3.98912058 16.3670598,2.65892215 16.370991,1.56812011 C16.3739394,0.476334916 17.1469116,0.0393258961 18.0953136,0.586938999 C19.0437156,1.13307738 19.810791,2.46180109 19.8078426,3.55309471 C19.8039114,4.6448799 19.0324134,5.08336364 18.0849942,4.53624211 Z" fill="url(#linearGradient-206)" opacity="0.1"></path>
- </g>
- <g opacity="0.1" transform="translate(16.216200, 3.932590)" id="Bitmap">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g transform="translate(18.181800, 22.120817)" fill-rule="nonzero" id="Shape">
- <path d="M1.9390644,13.6382208 C0.9886968,13.0910992 0.22113,11.7609008 0.2250612,10.6700988 C0.2280096,9.57831356 1.0014732,9.14130454 1.9493838,9.68891765 C2.8977858,10.235056 3.6648612,11.5637797 3.6619128,12.6550734 C3.6579816,13.746367 2.8864836,14.1848507 1.9390644,13.6382208 Z" fill="url(#linearGradient-207)"></path>
- <path d="M7.066332,10.7738208 C6.1159644,10.2266993 5.3483976,8.89650084 5.3523288,7.8056988 C5.3552772,6.71391361 6.1287408,6.27690459 7.0771428,6.82451769 C8.0255448,7.37065607 8.7926202,8.69937979 8.7896718,9.7906734 C8.7852492,10.881967 8.0137512,11.3204508 7.066332,10.7738208 Z" fill="url(#linearGradient-208)" opacity="0.5"></path>
- <path d="M12.7262772,7.44291741 C11.7759096,6.89579588 11.0083428,5.56559744 11.012274,4.4747954 C11.0152224,3.38301021 11.788686,2.94600119 12.737088,3.49361429 C13.68549,4.03975267 14.4525654,5.36847639 14.449617,6.45977 C14.4451944,7.55155519 13.6736964,7.99003894 12.7262772,7.44291741 Z" fill="url(#linearGradient-209)" opacity="0.2"></path>
- <path d="M18.120375,4.512155 C17.1700074,3.96503347 16.4024406,2.63483504 16.4063718,1.54403299 C16.4093202,0.452247805 17.1827838,0.0152387847 18.1311858,0.562851888 C19.0795878,1.10899027 19.8466632,2.43771398 19.8437148,3.5290076 C19.8388008,4.62030122 19.0673028,5.05927653 18.120375,4.512155 Z" fill="url(#linearGradient-210)" opacity="0.1"></path>
- </g>
- <g opacity="0.9" transform="translate(0.000000, 13.272490)" id="Bitmap">
- <image x="0" y="0" width="40.2948" height="40.8006172" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.5" transform="translate(5.405400, 10.323048)" id="Bitmap">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.2" transform="translate(10.810800, 6.882032)" id="Bitmap">
- <image x="0" y="0" width="40.2948" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- </g>
- </g>
- <g id="wire_3" transform="translate(192.213600, 201.053644)" fill-rule="nonzero">
- <g id="Group">
- <path d="M1.378377,0.489607406 C0.7926282,0.82879326 0.316953,1.65070449 0.3199014,2.32514361 C0.3213756,3.00154902 0.7999992,3.27437242 1.3872222,2.93322027 C1.9739538,2.59649229 2.4486462,1.77408949 2.4461892,1.0991588 C2.444715,0.423244957 1.9665828,0.1514047 1.378377,0.489607406 Z" id="Shape" fill="url(#linearGradient-211)"></path>
- <path d="M21.2196348,52.8200857 C20.6220924,52.4838493 20.2746726,52.0665033 20.2746726,51.6766853 C20.2687758,51.2809685 20.6112816,50.8591982 21.208824,50.517063 L42.5940606,38.1608664 C43.7159268,37.5139554 44.3360736,36.6001199 44.3360736,35.5948517 C44.341479,34.5905666 43.7213322,33.6767311 42.5989746,33.0303117 L6.3036792,12.0007888 C5.7906576,11.6960131 5.3154738,10.8839333 5.3154738,10.2856881 L5.3154738,5.16594802 C5.3154738,3.98961216 4.5464328,2.65400641 3.5312004,2.06608427 L1.8486468,1.09817565 C1.7434872,1.01509969 1.5916446,1.00625137 1.4157234,1.10702397 C1.1012274,1.28939782 0.8461908,1.73033943 0.8471736,2.09262924 C0.847665,2.27942725 0.9159696,2.40772799 1.0250604,2.46425896 L1.0201464,2.47261572 L2.729727,3.45576312 C3.2427486,3.75562308 3.7130184,4.56770283 3.7130184,5.1664396 L3.7130184,10.2861797 C3.7130184,11.4625156 4.4820594,12.7981213 5.5026972,13.3855519 L41.7930786,34.4150748 C42.3920952,34.7621258 42.7390236,35.1893034 42.7341096,35.5953433 C42.7341096,35.996959 42.3916038,36.4300354 41.7930786,36.7721707 L20.407842,49.1273841 C19.2810618,49.7747867 18.665829,50.6827233 18.6717258,51.6830758 C18.6761484,52.6873608 19.3012092,53.5844828 20.4392916,54.2210708 L53.0284482,72.5144945 L53.1144432,70.8362619 L53.1198486,70.7290988 L21.2196348,52.8200857 Z" id="Shape" fill="url(#linearGradient-212)"></path>
- </g>
- </g>
- <g id="pipe_1" transform="translate(193.196400, 326.896511)">
- <g id="Group">
- <g transform="translate(70.761600, 0.000000)" fill-rule="nonzero" id="Shape">
- <path d="M4.1611752,0.859270829 C6.294834,2.09115452 8.0181738,5.07549846 8.0103114,7.52845123 C8.0053974,9.97992928 6.2692812,10.9699587 4.1346396,9.73807502 C2.0029464,8.50569975 0.2791152,5.52086424 0.2869776,3.06889462 C0.2938572,0.614467126 2.0275164,-0.374087586 4.1611752,0.859270829 Z" fill="url(#linearGradient-213)"></path>
- <path d="M3.9783744,3.56046832 C4.928742,4.10857299 5.6968002,5.43778828 5.692869,6.52859032 C5.6913948,7.61840922 4.9179312,8.05836768 3.9695292,7.51075458 C3.0191616,6.9626499 2.2545432,5.63343461 2.2570002,4.54263257 C2.2599486,3.45330525 3.0314466,3.01383836 3.9783744,3.56046832 Z" fill="url(#linearGradient-214)"></path>
- <path d="M16.8397866,9.63484454 C18.9724626,10.8667282 20.6967852,13.8525469 20.6884314,16.3040249 C20.6825346,18.7584524 18.9478926,19.7470071 16.8127596,18.5141403 C14.6795922,17.2837313 12.9577266,14.2964379 12.9646062,11.8449599 C12.9709944,9.39200713 14.7066192,8.40246927 16.8397866,9.63484454 Z" fill="url(#linearGradient-215)"></path>
- <path d="M16.6736934,12.2603397 C17.624061,12.8074612 18.3916278,14.1376596 18.3876966,15.2284617 C18.3847482,16.3202469 17.6112846,16.7572559 16.663374,16.2096428 C15.714972,15.6635044 14.9478966,14.3347807 14.950845,13.2434871 C14.9552676,12.1521935 15.7267656,11.7137097 16.6736934,12.2603397 Z" fill="url(#linearGradient-216)"></path>
- </g>
- <path d="M76.2569262,7.52845123 L4.0157208,49.0241536 C2.975427,47.8232391 1.7685486,46.6547684 0.3916458,45.5433202 L73.8554544,3.338277 L76.2569262,7.52845123 Z" id="Shape" fill="url(#linearGradient-217)" fill-rule="nonzero" opacity="0.5"></path>
- <path d="M8.8142418,62.149663 C8.9587134,60.3849134 8.798517,58.6147565 8.331687,56.8662289 L86.5522476,12.0342158 L88.9542108,16.2224237 L8.8142418,62.149663 Z" id="Shape" fill="url(#linearGradient-218)" fill-rule="nonzero" opacity="0.5"></path>
- <g transform="translate(4.914000, 3.932590)" id="Bitmap">
- <g opacity="0.9" transform="translate(16.216200, 0.000000)">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.5" transform="translate(11.302200, 2.949442)">
- <image x="0" y="0" width="39.8034" height="40.8006172" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.2" transform="translate(5.405400, 6.390458)">
- <image x="0" y="0" width="39.8034" height="40.8006172" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.1" transform="translate(0.000000, 9.339900)">
- <image x="0" y="0" width="39.8034" height="40.8006172" xlink:href="data:image/png;base64,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"></image>
- </g>
- </g>
- <g transform="translate(23.095800, 22.120817)" fill-rule="nonzero" id="Shape">
- <path d="M18.1036674,0.395225256 C19.054035,0.942346785 19.8216018,2.27205365 19.8176706,3.36285569 C19.8147222,4.45464088 19.04175,4.8916499 18.093348,4.3440368 C17.144946,3.79789841 16.3778706,2.4691747 16.380819,1.37788108 C16.3847502,0.286587468 17.1562482,-0.151896274 18.1036674,0.395225256 Z" fill="url(#linearGradient-219)"></path>
- <path d="M12.9763998,3.25913364 C13.9267674,3.80625517 14.6943342,5.13596203 14.690403,6.22676407 C14.6874546,7.31854926 13.9144824,7.75555828 12.9660804,7.20794518 C12.0176784,6.6618068 11.250603,5.33308308 11.2535514,4.24178947 C11.2574826,3.15098742 12.0289806,2.71250368 12.9763998,3.25913364 Z" fill="url(#linearGradient-220)" opacity="0.5"></path>
- <path d="M7.3159632,6.59003703 C8.2663308,7.13715856 9.0338976,8.467357 9.0299664,9.55766747 C9.027018,10.6494527 8.2535544,11.0864617 7.3056438,10.5388486 C6.3572418,9.99271019 5.5901664,8.66398648 5.5931148,7.57269286 C5.5975374,6.48189082 6.3690354,6.04291551 7.3159632,6.59003703 Z" fill="url(#linearGradient-221)" opacity="0.2"></path>
- <path d="M1.9223568,9.52079944 C2.8727244,10.067921 3.6402912,11.3976278 3.63636,12.4884299 C3.6334116,13.5802151 2.8604394,14.0172241 1.9120374,13.469611 C0.9636354,12.9234726 0.19656,11.5947489 0.1995084,10.5034553 C0.203931,9.41265323 0.9749376,8.97367791 1.9223568,9.52079944 Z" fill="url(#linearGradient-222)" opacity="0.1"></path>
- </g>
- <g transform="translate(17.199000, 13.764064)">
- <g id="Bitmap">
- <g opacity="0.9" transform="translate(16.216200, 0.000000)">
- <image x="0" y="0" width="39.8034" height="41.2921909" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.5" transform="translate(10.810800, 2.949442)">
- <image x="0" y="0" width="40.2948" height="40.8006172" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.2" transform="translate(5.405400, 6.390458)">
- <image x="0" y="0" width="39.8034" height="40.8006172" xlink:href="data:image/png;base64,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"></image>
- </g>
- <g opacity="0.1" transform="translate(0.000000, 9.339900)">
- <image x="0" y="0" width="39.8034" height="40.8006172" xlink:href="data:image/png;base64,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"></image>
- </g>
- </g>
- <path d="M36.0554922,18.5913174 C37.0058598,19.1384389 37.7734266,20.4681458 37.7694954,21.5589478 C37.766547,22.650733 36.9935748,23.087742 36.0451728,22.5401289 C35.0967708,21.9939905 34.3296954,20.6652668 34.3326438,19.5739732 C34.336575,18.4831712 35.108073,18.0446874 36.0554922,18.5913174 Z" id="Shape" fill="url(#linearGradient-223)" fill-rule="nonzero"></path>
- <path d="M30.9282246,21.4557173 C31.8785922,22.0028389 32.646159,23.3330373 32.6422278,24.4233478 C32.6392794,25.5151329 31.8658158,25.952142 30.9179052,25.4045289 C29.9695032,24.8588821 29.2024278,23.5296668 29.2053762,22.4383732 C29.2093074,21.3475711 29.9808054,20.9085958 30.9282246,21.4557173 Z" id="Shape" fill="url(#linearGradient-224)" fill-rule="nonzero" opacity="0.5"></path>
- <path d="M25.267788,24.7866207 C26.2181556,25.3337423 26.9857224,26.6639407 26.9817912,27.7547427 C26.9788428,28.8465279 26.2058706,29.2835369 25.2574686,28.7359238 C24.3090666,28.1897855 23.5419912,26.8610617 23.5449396,25.7697681 C23.5493622,24.6779829 24.3208602,24.2394992 25.267788,24.7866207 Z" id="Shape" fill="url(#linearGradient-225)" fill-rule="nonzero" opacity="0.2"></path>
- <path d="M19.8741816,27.7173831 C20.8245492,28.2645047 21.592116,29.5942115 21.5881848,30.6850136 C21.5852364,31.7767988 20.8117728,32.2138078 19.8638622,31.6661947 C18.9154602,31.1200563 18.1483848,29.7913326 18.1513332,28.700039 C18.1557558,27.6092369 18.9267624,27.1702616 19.8741816,27.7173831 Z" id="Shape" fill="url(#linearGradient-226)" fill-rule="nonzero" opacity="0.1"></path>
- </g>
- </g>
- </g>
- <g id="wire_2" transform="translate(333.245400, 337.219559)" fill-rule="nonzero">
- <g id="Group">
- <path d="M31.7252754,0.582023262 C30.7483722,1.14684144 29.9572182,2.51538263 29.9611494,3.63961168 C29.9636064,4.76482388 30.7586916,5.21707169 31.7380518,4.65225351 C32.714955,4.0879269 33.5046348,2.71889414 33.5007036,1.59515666 C33.4982466,0.470436032 32.7031614,0.0186798006 31.7252754,0.582023262 Z" id="Shape" fill="url(#linearGradient-227)"></path>
- <path d="M31.5783468,1.9943145 C31.260411,2.17914622 31.002426,2.62451199 31.0039002,2.99171754 C31.004883,3.35744838 31.2633594,3.50590364 31.5832608,3.32107192 C31.901688,3.13722336 32.1586902,2.69087444 32.1577074,2.32416046 C32.1577074,1.95793805 31.8982482,1.81095751 31.5783468,1.9943145 Z" id="Shape" fill="url(#linearGradient-228)"></path>
- <path d="M30.390633,74.0265752 L2.2810788,58.0194608 C1.0280088,57.3061873 0.3385746,56.3082927 0.3410316,55.2096255 C0.3434886,54.1129246 1.0373454,53.118471 2.294838,52.4110964 L42.7513086,29.6207565 C43.474158,29.214225 43.8898824,28.6985642 43.8928308,28.2055158 C43.8952878,27.7139421 43.4854602,27.192874 42.7670334,26.7779858 L38.8235484,24.5005248 C37.3075794,23.6250321 36.0903816,21.5673046 36.0505782,19.816319 L35.7950502,8.17634537 C35.7685146,6.97346452 34.86483,5.45401021 33.8215878,4.85723974 L31.1827698,3.34810848 L31.9783464,1.95646333 L34.6161816,3.46510302 C36.1365732,4.3346969 37.358685,6.38849182 37.397997,8.14095206 L37.6540164,19.7809257 C37.6795692,20.9847897 38.5832538,22.5106345 39.6250218,23.1118291 L43.5685068,25.3897817 C44.8171542,26.1109203 45.5016744,27.113239 45.4952862,28.2138726 C45.4893894,29.3145061 44.7945498,30.3094513 43.5375486,31.0173174 L3.081078,53.8066742 C2.35872,54.2141888 1.9444698,54.7269001 1.9439784,55.2140497 C1.9425042,55.7016908 2.353806,56.2158769 3.073707,56.6253578 L31.1837526,72.6319806 L30.390633,74.0265752 Z" id="Shape" fill="url(#linearGradient-229)"></path>
- </g>
- </g>
- <g id="hub" transform="translate(317.520600, 397.191550)" fill-rule="nonzero">
- <g id="Group">
- <path d="M0.975429,45.1451455 L36.2486124,65.6516341 C37.2761298,66.2503708 38.940993,66.2518455 39.968019,65.6570414 L84.6760824,39.8371327 C85.7035998,39.2428201 85.7045826,38.2783525 84.6795222,37.681582 L49.4048646,17.1760767 C48.3802956,16.5797978 46.714941,16.5768483 45.6874236,17.1701778 L0.9793602,42.9920527 C-0.04914,43.5848906 -0.0496314,44.5498498 0.975429,45.1451455 Z" id="Shape" fill="url(#linearGradient-230)" opacity="0.5"></path>
- <path d="M99.663291,18.8513599 L99.663291,30.4593812 C99.663291,30.7838199 99.4465836,31.1082585 99.0180828,31.3574864 L62.479053,52.4612369 L61.6982184,52.91201 C60.8417082,53.4084995 59.4515376,53.4030922 58.5950274,52.9080774 L29.1478824,35.7890233 C28.7188902,35.5412702 28.5021828,35.2158484 28.5075882,34.8860024 L28.5075882,23.2828968 L45.3940578,22.2309291 L50.0087952,21.9423753 L66.471678,12.4323905 C67.3296624,11.9408168 68.7183588,11.9408168 69.5753604,12.4422219 L82.447092,19.9239737 L99.663291,18.8513599 Z" id="Shape" fill="url(#linearGradient-231)"></path>
- <path d="M61.4382678,35.883897 L60.04908,35.883897 L60.04908,53.278724 C59.5213164,53.2629936 58.9969926,53.1396086 58.5960102,52.9095522 L29.1493566,35.787057 C28.7218386,35.5412702 28.5031656,35.2158484 28.508571,34.8835445 L28.508571,23.2809305 L45.395532,22.2338785 L61.4382678,35.883897 Z" id="Shape" fill="url(#linearGradient-232)"></path>
- <path d="M29.1478824,24.1819851 L58.5930618,41.3005476 C59.4505548,41.7994949 60.8397426,41.8014612 61.6982184,41.3049718 L99.019557,19.7504482 C99.8775414,19.2544503 99.8785242,18.4492526 99.0225054,17.9507968 L69.5758518,0.833708997 C68.7208158,0.335744838 67.3301538,0.333778543 66.4726608,0.82879326 L29.1508308,22.3838085 C28.292355,22.8793148 28.2918636,23.6854956 29.1478824,24.1819851 Z" id="Shape" fill="url(#linearGradient-233)"></path>
- <path d="M77.9719122,14.4257218 C77.901642,14.4758623 77.8171212,14.5309186 77.7301434,14.5805675 L54.781272,27.8368355 C53.621568,28.5043926 51.7802922,28.5289713 50.5807848,27.9071306 C50.5301706,27.8820603 50.4849618,27.8560069 50.4407358,27.8309367 C49.2417198,27.1388009 49.2461424,26.0096561 50.4456498,25.3170287 L73.400418,12.0607608 C74.6004168,11.368625 76.5414468,11.3730491 77.7355488,12.0671512 C78.8495526,12.7140622 78.9257196,13.7286703 77.9719122,14.4257218 Z" id="Shape" fill="url(#linearGradient-234)" opacity="0.4"></path>
- <path d="M77.9719122,14.4257218 C77.901642,14.4758623 77.8171212,14.5309186 77.7301434,14.5805675 L54.781272,27.8368355 C53.621568,28.5043926 51.7802922,28.5289713 50.5807848,27.9071306 C50.6515464,27.8560069 50.73705,27.8024254 50.8210794,27.7513017 L73.776339,14.4955253 C74.9365344,13.8284598 76.7728962,13.8083053 77.9719122,14.4257218 Z" id="Shape" fill="url(#linearGradient-235)"></path>
- <path d="M32.491368,30.1767264 L32.4884196,30.5267268 C32.486454,31.0885956 32.0903856,31.315211 31.6034082,31.0345225 L31.3036542,30.8619801 C30.8166768,30.5827662 30.4260138,29.8994788 30.4284708,29.3371185 L30.4289622,28.9856433 C30.429945,28.423283 30.8265048,28.1956843 31.3105338,28.4778476 L31.6127448,28.6518647 C32.1002136,28.9315702 32.4923508,29.6153492 32.491368,30.1767264 Z" id="Shape" fill="url(#linearGradient-236)"></path>
- <path d="M32.4923508,34.6146537 L32.491368,34.9661289 C32.4884196,35.5265229 32.0938254,35.7541216 31.6078308,35.4739246 L31.3036542,35.2979412 C30.8166768,35.0182357 30.4260138,34.3354399 30.4284708,33.7735711 L30.429945,33.4216044 C30.4314192,32.8597356 30.8265048,32.6331201 31.3115166,32.9138087 L31.6127448,33.088809 C32.1002136,33.3704807 32.4948078,34.0522934 32.4923508,34.6146537 Z" id="Shape" fill="url(#linearGradient-237)"></path>
- <ellipse id="Oval" fill="url(#linearGradient-238)" opacity="0.7" cx="73.6284276" cy="15.5735464" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-239)" opacity="0.7" cx="55.2657924" cy="9.85212011" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-240)" opacity="0.4" cx="66.6883854" cy="12.7116043" rx="1" ry="1"></ellipse>
- <ellipse id="Oval" fill="url(#linearGradient-241)" opacity="0.7" cx="57.9793032" cy="20.5969381" rx="1" ry="1"></ellipse>
- </g>
- </g>
- <g id="wire_1" transform="translate(394.179000, 410.464040)" fill-rule="nonzero">
- <g id="Group">
- <path d="M1.3002444,22.8960283 C0.756756,23.211127 0.3149874,23.9740494 0.3174444,24.5998227 C0.3189186,25.2280539 0.7626528,25.4807228 1.3085982,25.1646409 C1.8530694,24.852 2.2938552,24.0885861 2.2918896,23.4618296 C2.2904154,22.83409 1.8466812,22.5824042 1.3002444,22.8960283 Z" id="Shape" fill="url(#linearGradient-242)"></path>
- <path d="M1.3837824,23.4288942 C1.068795,23.6122512 0.8127756,24.0531928 0.8142498,24.4164657 C0.815724,24.7802303 1.071252,24.9272108 1.388205,24.7433622 C1.7031924,24.5619715 1.958229,24.1195552 1.9572462,23.7567738 C1.9567548,23.3935009 1.700244,23.2475035 1.3837824,23.4288942 Z" id="Shape" fill="url(#linearGradient-243)"></path>
- <path d="M78.533091,8.08196322 C78.5389878,8.96925375 77.9615928,9.97353882 77.1974658,10.4228372 L25.3763874,40.7460525 C24.2496072,41.4037781 22.827987,41.7291999 21.4019442,41.7291999 C19.8417492,41.7291999 18.2820456,41.3452808 17.0849952,40.5749849 L3.6432396,31.9542569 C2.9071224,31.4843124 2.3557716,30.4687211 2.3557716,29.5976525 L2.3557716,26.2495441 C2.3557716,25.9231391 2.0997522,25.4527031 1.8432414,25.2929416 L0.9405396,24.7477864 L1.773954,23.3738379 L2.6712504,23.9244005 C3.402945,24.3677999 3.9577356,25.3676608 3.9577356,26.2490525 L3.9577356,29.597161 C3.9577356,29.9279901 4.2314454,30.4254626 4.508595,30.601446 L17.950842,39.222174 C19.7184078,40.3601671 22.7528028,40.419156 24.5645946,39.3612894 L76.3851816,9.03807407 C76.663314,8.87782104 76.9350582,8.4019777 76.9296528,8.08638738 L76.923756,0.225632329 L78.5267028,1.14979089 L78.533091,8.08196322 Z" id="Shape" fill="url(#linearGradient-244)"></path>
- </g>
- </g>
- <g id="people_1" transform="translate(437.913600, 248.736293)">
- <g id="Group">
- <path d="M64.739493,110.953592 L64.7139402,124.805155 C64.7114832,125.938233 63.9178722,127.317589 62.9370378,127.884865 L45.982755,137.720271 C45.28251,138.127294 44.4161718,138.37898 43.5119958,138.471887 C42.0628572,138.621817 40.5174042,138.375539 39.3965208,137.72912 L28.2953034,131.398633 C27.8731908,131.157762 27.5351076,130.57279 27.5351076,130.086623 L27.589653,108.737577 L42.7213332,120.652832 L42.7213332,120.615473 L43.5586788,120.250233 L64.739493,110.953592 Z" id="Shape" fill="url(#linearGradient-245)" fill-rule="nonzero"></path>
- <path d="M64.739493,110.953592 L64.7139402,124.805155 C64.7114832,125.938233 63.9178722,127.317589 62.9370378,127.884865 L45.982755,137.720271 C45.28251,138.127294 44.4161718,138.37898 43.5119958,138.471887 L43.5591702,120.250233 L64.739493,110.953592 Z" id="Shape" fill="url(#linearGradient-246)" fill-rule="nonzero"></path>
- <path d="M64.739493,110.953592 L64.7139402,147.934681 C64.7114832,149.06825 63.9178722,150.447114 62.9370378,151.01439 L45.982755,160.849305 C45.28251,161.25682 44.4161718,161.507523 43.5119958,161.602396 C42.0628572,161.751343 40.5174042,161.505065 39.3965208,160.858154 L28.2953034,154.526684 C27.8731908,154.288271 27.5351076,153.701824 27.5351076,153.215657 L27.589653,108.737086" id="Shape" fill="url(#linearGradient-247)" fill-rule="nonzero"></path>
- <path d="M64.739493,110.953592 L64.7139402,147.934681 C64.7114832,149.06825 63.9178722,150.447114 62.9370378,151.01439 L45.982755,160.849305 C45.28251,161.25682 44.4161718,161.507523 43.5119958,161.602396 L43.5591702,120.250233" id="Shape" fill="url(#linearGradient-248)" fill-rule="nonzero"></path>
- <path d="M64.739493,110.953592 L64.7139402,161.602396 C64.7114832,162.734982 63.9178722,164.113846 62.9370378,164.681122 L45.982755,174.517021 C45.28251,174.923552 44.4161718,175.174255 43.5119958,175.268637 C42.0628572,175.418567 40.5174042,175.171797 39.3965208,174.524886 L28.2953034,168.193908 C27.8731908,167.95402 27.5351076,167.368556 27.5351076,166.883373 L27.589653,108.737577" id="Shape" fill="url(#linearGradient-249)" fill-rule="nonzero"></path>
- <path d="M64.739493,110.953592 L64.7139402,161.602396 C64.7114832,162.734982 63.9178722,164.113846 62.9370378,164.681122 L45.982755,174.517021 C45.28251,174.923552 44.4161718,175.174255 43.5119958,175.268637 L43.5591702,120.250725" id="Shape" fill="url(#linearGradient-250)" fill-rule="nonzero"></path>
- <path d="M62.2200852,115.178176 C65.0136942,113.554016 65.5522686,110.264897 63.4215582,107.832099 L52.6402422,95.5285005 C51.7876632,94.5542014 50.191596,94.2941589 49.0731696,94.9430362 L28.5640992,106.865665 C27.4461642,107.515525 27.2314224,108.832451 28.0840014,109.805275 L38.864826,122.108874 C40.9955364,124.540689 44.9881614,125.196448 47.7842274,123.570814 L62.2200852,115.178176 Z" id="Shape" fill="url(#linearGradient-251)" fill-rule="nonzero"></path>
- <path d="M51.2028972,97.3173372 C50.8829958,96.9525895 50.2844706,96.8547663 49.8653064,97.0985869 L30.8097972,108.175709 C30.3896502,108.420021 30.3080778,108.912578 30.6284706,109.277325 L40.6869372,120.759995 C42.0731766,122.340405 44.66826,122.765616 46.4854572,121.710207 L60.4805292,113.572696 C62.2977264,112.517288 62.6466204,110.378942 61.262838,108.798533 L51.2028972,97.3173372 Z" id="Shape" fill="url(#linearGradient-252)" fill-rule="nonzero"></path>
- <path d="M37.3080708,111.404365 L52.3080558,102.686797 C52.599456,102.518187 52.6549842,102.177035 52.4328714,101.923383 L51.9527736,101.376261 C51.7306608,101.124084 51.3154278,101.055264 51.0240276,101.224857 L36.0284652,109.942916 C35.7375564,110.112509 35.6815368,110.454153 35.9031582,110.706822 L36.3803076,111.25296 C36.6034032,111.505137 37.0176534,111.573466 37.3080708,111.404365 Z" id="Shape" fill="url(#linearGradient-253)" fill-rule="nonzero" opacity="0.5"></path>
- <path d="M48.1070772,108.780344 L48.5861922,109.326974 C48.808305,109.580626 48.7537596,109.921778 48.4633422,110.092354 L40.1857092,114.92944 C39.894309,115.100507 39.4800588,115.031687 39.2589288,114.778527 L38.7822708,114.234354 C38.5606494,113.981686 38.6161776,113.638076 38.906595,113.468483 L47.1788226,108.630414 C47.4687486,108.46033 47.8849644,108.527675 48.1070772,108.780344 Z" id="Shape" fill="url(#linearGradient-254)" fill-rule="nonzero" opacity="0.5"></path>
- <path d="M55.186677,106.21433 L51.4662876,108.377745 C51.1763616,108.548321 50.7596544,108.479501 50.5385244,108.227815 L50.0574438,107.680202 C49.8348396,107.428025 49.8908592,107.08589 50.1812766,106.91728 L53.9026488,104.752389 C54.1925748,104.583288 54.6097734,104.650142 54.8318862,104.903303 L55.3110012,105.449932 C55.5326226,105.70211 55.4770944,106.044737 55.186677,106.21433 Z" id="Shape" fill="url(#linearGradient-255)" fill-rule="nonzero" opacity="0.5"></path>
- <path d="M65.4721704,110.756962 L65.3989518,110.794322" id="Shape"></path>
- <polygon id="Shape" fill="url(#linearGradient-256)" fill-rule="nonzero" points="31.393089 143.110868 30.407832 143.690434 31.3896492 146.535662 31.3729416 159.731467 37.0790784 163.027468 37.5739182 164.460897 38.5606494 163.881824 38.5812882 147.262208"></polygon>
- <polygon id="Shape" fill="url(#linearGradient-257)" fill-rule="nonzero" points="37.5950484 147.841774 37.5739182 164.460897 30.3876846 160.310541 30.407832 143.690434"></polygon>
- <path d="M36.3164256,149.78054 L36.3065976,153.905827 C36.3061062,154.243046 36.0702342,154.379704 35.7798168,154.211094 L32.208813,152.150909 C31.9179042,151.981807 31.6810494,151.57331 31.683015,151.237073 L31.6943172,147.111787 C31.6953,146.774567 31.931172,146.638893 32.2220808,146.807011 L35.7896448,148.866705 C36.081045,149.035315 36.3174084,149.443812 36.3164256,149.78054 Z" id="Shape" fill="url(#linearGradient-258)" fill-rule="nonzero"></path>
- <path d="M32.904144,154.201754 L32.9036526,154.410673 C32.9021784,154.747893 32.6653236,154.884059 32.3744148,154.716432 L32.1930882,154.611727 C31.9026708,154.443117 31.6677816,154.035602 31.6687644,153.697891 L31.6687644,153.487498 C31.6697472,153.150278 31.9061106,153.014112 32.1984936,153.182722 L32.3788374,153.287427 C32.6697462,153.455545 32.9046354,153.865026 32.904144,154.201754 Z" id="Shape" fill="url(#linearGradient-259)" fill-rule="nonzero"></path>
- <path d="M34.6088106,155.188343 L34.6078278,155.397261 C34.606845,155.733989 34.3694988,155.870647 34.07859,155.701546 L33.8997204,155.597824 C33.6078288,155.430689 33.3724482,155.021208 33.373431,154.685463 L33.3739224,154.473103 C33.3749052,154.136867 33.6127428,154.001192 33.9036516,154.170294 L34.0844868,154.274999 C34.3763784,154.443117 34.6102848,154.851123 34.6088106,155.188343 Z" id="Shape" fill="url(#linearGradient-260)" fill-rule="nonzero"></path>
- <path d="M36.307089,156.167066 L36.3056148,156.377951 C36.304632,156.714679 36.0677772,156.850845 35.776377,156.682235 L35.5965246,156.578022 C35.3051244,156.409412 35.0702352,156.001897 35.071218,155.664186 L35.071218,155.453792 C35.0722008,155.117064 35.3100384,154.980407 35.6009472,155.149017 L35.7827652,155.253722 C36.073674,155.422332 36.3085632,155.831321 36.307089,156.167066 Z" id="Shape" fill="url(#linearGradient-261)" fill-rule="nonzero"></path>
- <path d="M36.307089,158.225285 L36.3056148,158.435187 C36.304632,158.771423 36.0677772,158.907098 35.776377,158.73898 L35.5965246,158.635749 C35.3051244,158.467139 35.0702352,158.05815 35.071218,157.722405 L35.071218,157.511028 C35.0722008,157.174792 35.3100384,157.039118 35.6009472,157.206744 L35.7827652,157.311449 C36.073674,157.480059 36.3085632,157.88954 36.307089,158.225285 Z" id="Shape" fill="url(#linearGradient-262)" fill-rule="nonzero"></path>
- <path d="M32.9036526,158.311802 L32.9021784,158.522687 C32.9011956,158.858923 32.6643408,158.994598 32.3729406,158.826971 L32.1930882,158.722758 C31.9021794,158.554639 31.6667988,158.145158 31.6677816,157.808922 L31.6687644,157.59902 C31.6687644,157.262292 31.9056192,157.126618 32.1970194,157.294736 L32.3788374,157.397966 C32.6697462,157.567068 32.9046354,157.975566 32.9036526,158.311802 Z" id="Shape" fill="url(#linearGradient-263)" fill-rule="nonzero"></path>
- <path d="M32.904144,156.256532 L32.9036526,156.465943 C32.9021784,156.802179 32.6653236,156.938345 32.3744148,156.769244 L32.1930882,156.66503 C31.9026708,156.497403 31.6677816,156.088906 31.6687644,155.751195 L31.6687644,155.540801 C31.6697472,155.205056 31.9061106,155.068399 32.1984936,155.2375 L32.3788374,155.342697 C32.6697462,155.50934 32.9046354,155.919804 32.904144,156.256532 Z" id="Shape" fill="url(#linearGradient-264)" fill-rule="nonzero"></path>
- <path d="M34.6088106,157.242138 L34.6078278,157.450565 C34.606845,157.787784 34.3694988,157.92395 34.07859,157.756815 L33.8997204,157.652602 C33.6078288,157.484975 33.3724482,157.075986 33.373431,156.738766 L33.3739224,156.528373 C33.3749052,156.192136 33.6127428,156.055479 33.9036516,156.224088 L34.0844868,156.328302 C34.3763784,156.497403 34.6102848,156.904918 34.6088106,157.242138 Z" id="Shape" fill="url(#linearGradient-265)" fill-rule="nonzero"></path>
- <path d="M34.6088106,159.296424 L34.6078278,159.505834 C34.606845,159.842562 34.3694988,159.978728 34.07859,159.811102 L33.8997204,159.705905 C33.6078288,159.536804 33.3724482,159.128797 33.373431,158.792069 L33.3739224,158.582168 C33.3749052,158.24544 33.6127428,158.109274 33.9036516,158.277392 L34.0844868,158.38308 C34.3763784,158.551198 34.6102848,158.959205 34.6088106,159.296424 Z" id="Shape" fill="url(#linearGradient-266)" fill-rule="nonzero"></path>
- <path d="M36.3080718,160.27613 L36.3075804,160.486524 C36.3061062,160.82276 36.0702342,160.958926 35.7798168,160.790808 L35.597016,160.686103 C35.3056158,160.517493 35.0707266,160.108504 35.0717094,159.772267 L35.0726922,159.562365 C35.073675,159.225146 35.3105298,159.088488 35.6029128,159.257098 L35.7827652,159.362295 C36.073674,159.530905 36.3090546,159.939402 36.3080718,160.27613 Z" id="Shape" fill="url(#linearGradient-267)" fill-rule="nonzero"></path>
- <path d="M56.9537514,109.353519 C56.9537514,109.353519 54.582255,106.307237 53.7424524,105.245929 C52.9021584,104.183639 50.3129718,106.788979 55.7119836,110.910825 C61.1139438,115.035128 56.9321298,110.991934 56.9321298,110.991934 L56.9537514,109.353519 Z" id="Shape" fill="#FFCCA3" fill-rule="nonzero"></path>
- <path d="M75.4780572,106.331816 C75.4780572,106.331816 76.6687194,107.206325 75.8603664,112.500082 C75.0505392,117.791382 75.383217,120.474391 71.2844496,119.685415 C67.1871564,118.895948 57.2510484,114.801139 52.9763598,108.083784 L54.874638,106.688698 C54.874638,106.688698 60.0967458,111.650152 66.3969852,112.950856 C72.6982074,114.254017 69.0053364,110.36911 69.0053364,110.36911 L75.4780572,106.331816 Z" id="Shape" fill="url(#linearGradient-268)" fill-rule="nonzero"></path>
- <path d="M62.1311418,94.8024461 C62.1311418,94.8024461 61.9173828,103.472823 63.5910912,103.806602 C65.2647996,104.141363 68.9724126,101.860461 68.9724126,101.860461 L68.1783102,96.4767461 L64.624014,94.1044114 L62.1311418,94.8024461 Z" id="Shape" fill="#FFCCA3" fill-rule="nonzero"></path>
- <path d="M70.7227794,99.951189 L71.6480856,104.656533 L67.257918,107.152252 C67.257918,107.152252 66.3797862,102.985182 65.547846,101.648593 C64.7144316,100.306597 65.931138,100.09522 65.931138,100.09522 L70.7227794,99.951189 Z" id="Shape" fill="#FFCCA3" fill-rule="nonzero"></path>
- <path d="M73.6824816,93.3778655 C73.4687226,91.6750542 72.324252,90.9440841 71.835309,90.819716 C71.6647932,90.7759659 71.6500512,90.5921173 71.6466114,90.5178897 C71.584695,89.0647979 70.7119686,88.5629011 69.2928054,88.0157796 C66.4294176,86.9112135 60.0962544,88.07526 60.4122246,92.9836234 C60.4687356,93.8709139 60.970455,94.7370668 62.1213138,95.0875588 C63.798462,95.6002702 63.9503046,96.3450044 64.4117292,97.6314527 C64.4146776,97.6452168 65.0284362,99.7555427 64.4589036,100.73869 C63.8888796,101.724787 62.9611164,100.664462 62.400429,100.858143 C61.3016586,101.238621 61.555221,104.654566 62.9734014,105.482868 C64.3935474,106.310678 66.184209,104.651125 66.3748722,103.711236 C66.6638154,102.292063 64.2171348,96.3548358 66.339,96.5480243 C67.233348,96.629134 66.8765916,98.8195864 67.5901044,100.09522 C68.7581622,102.186866 71.3974716,101.186022 72.3158982,99.6478881 C73.233342,98.1136865 73.928673,95.3397362 73.6824816,93.3778655 Z" id="Shape" fill="#1E2275" fill-rule="nonzero"></path>
- <path d="M57.7842174,188.544568 C58.2697206,190.493166 63.4363002,193.107355 65.8097622,192.925473 C66.90411,192.841905 67.326714,192.218098 67.4603748,191.566763 C67.5031266,191.365218 67.51836,191.16908 67.51836,190.978841 C67.51836,190.453348 67.3915788,190.025188 67.3915788,190.025188 L65.3262246,187.756084 C65.3262246,187.756084 63.0765954,186.596953 60.2761068,186.838807 C58.5960102,186.987262 58.0309002,187.574693 57.8539962,188.017601 C57.7355688,188.310579 57.7842174,188.544568 57.7842174,188.544568 Z" id="Shape" fill="url(#linearGradient-269)" fill-rule="nonzero"></path>
- <path d="M57.7842174,188.544568 C58.2697206,190.493166 63.4363002,193.107355 65.8097622,192.925473 C66.90411,192.841905 67.326714,192.218098 67.4603748,191.566763 C66.0436686,192.363112 63.0574308,192.752439 57.8535048,188.017601 C57.7355688,188.310579 57.7842174,188.544568 57.7842174,188.544568 Z" id="Shape" fill="url(#linearGradient-270)" fill-rule="nonzero"></path>
- <path d="M68.6028798,184.430096 C69.0903486,186.377711 74.2564368,188.992883 76.6294074,188.809526 C77.7252294,188.728908 78.1483248,188.104609 78.2805114,187.453766 C78.3222804,187.251729 78.3375138,187.05215 78.3375138,186.863877 C78.3375138,186.33986 77.943411,183.771387 77.943411,183.771387 L76.1434128,183.64112 C76.1434128,183.64112 73.8962406,182.483464 71.0942778,182.727285 C69.4161468,182.873774 68.8505454,183.461696 68.6751156,183.904604 C68.5561968,184.196107 68.6028798,184.430096 68.6028798,184.430096 Z" id="Shape" fill="url(#linearGradient-271)" fill-rule="nonzero"></path>
- <path d="M68.6028798,184.430096 C69.0903486,186.377711 74.2564368,188.992883 76.6294074,188.809526 C77.7252294,188.728908 78.1483248,188.104609 78.2805114,187.453766 C76.8642966,188.250115 73.8775674,188.63895 68.6751156,183.904604 C68.5561968,184.196107 68.6028798,184.430096 68.6028798,184.430096 Z" id="Shape" fill="url(#linearGradient-272)" fill-rule="nonzero"></path>
- <path d="M61.4014128,165.370309 C62.0412156,173.76393 62.0942868,187.999412 62.0942868,187.999412 C62.0942868,187.999412 62.9665218,189.561634 64.9866672,189.940637 C65.4097626,190.020764 65.891826,190.049766 66.4230294,189.999626 C66.9542328,189.948994 67.5345762,189.81676 68.1783102,189.57933 C68.1783102,189.57933 67.633839,169.992576 67.2682374,163.543621 C67.0888764,160.396074 67.5778194,157.388627 68.1281874,155.141643 C68.1306444,155.130337 68.1306444,155.130337 68.1306444,155.130337 C68.670693,152.918255 69.2647956,151.432228 69.3345744,151.270992 L69.3375228,151.259194 C69.3375228,151.259194 70.0647948,161.719391 70.311969,163.423677 C70.3670058,163.809071 70.5321162,165.155491 70.7483322,166.991519 C71.4878892,173.203536 72.8662662,185.080939 72.8662662,185.080939 C72.8662662,185.080939 73.4697054,186.092598 74.9709324,186.092598 C75.3158952,186.092598 75.6962388,186.042458 76.1345676,185.912682 C76.3380072,185.858609 76.5561888,185.78389 76.7846898,185.6841 C77.2510284,185.495336 77.7679812,185.217597 78.3370224,184.84056 C78.3370224,184.84056 77.3615934,164.515462 77.3615934,162.692707 C77.3615934,160.870443 78.8171202,143.618172 77.9085216,138.374556 C77.1763356,134.169634 73.596978,133.494212 72.2033676,133.392456 C71.859879,133.365911 71.6466114,133.373777 71.6466114,133.373777 L65.5458804,134.710365 L62.0937954,140.742466 C62.0937954,140.742466 62.0058348,141.811148 61.8913386,143.540012 C61.5419532,148.554064 60.9272118,159.128797 61.4014128,165.370309 Z" id="Shape" fill="#1E2275" fill-rule="nonzero"></path>
- <path d="M69.3380142,151.258211 C69.3380142,151.258211 70.0652862,161.718408 70.3124604,163.422694 C70.5542292,165.123047 72.8667576,185.079956 72.8667576,185.079956 C72.8667576,185.079956 73.7768304,186.596953 76.1355504,185.911699 C75.5665092,182.328618 74.74194,177.017164 73.8756018,170.502338 C72.2416968,158.275917 75.0770748,148.994514 73.8756018,148.994514 C72.6672492,148.994514 69.3380142,151.258211 69.3380142,151.258211 Z" id="Shape" fill="#1E2275" fill-rule="nonzero"></path>
- <path d="M61.89183,143.539029 C63.5532534,143.87969 65.230893,144.090083 66.7237662,144.032569 C72.3945222,143.820701 77.909013,138.373573 77.909013,138.373573 L72.203859,133.391473 C71.8603704,133.364928 71.6471028,133.372793 71.6471028,133.372793 L65.5463718,134.709382 L62.0942868,140.741483 C62.0942868,140.741483 62.0063262,141.810164 61.89183,143.539029 Z" id="Shape" fill="url(#linearGradient-273)" fill-rule="nonzero" opacity="0.6"></path>
- <path d="M48.6486,118.20627 C48.6486,118.20627 44.8495866,116.440046 43.5115044,115.831477 C42.1734222,115.224384 40.9670352,119.026215 48.2240304,120.324953 C55.4820084,121.623199 49.4402454,119.796019 49.4402454,119.796019 L48.6486,118.20627 Z" id="Shape" fill="#FFCCA3" fill-rule="nonzero"></path>
- <path d="M71.6480856,104.049439 C71.6480856,104.049439 72.3478392,104.779918 72.560124,105.235115 L71.6480856,109.738421 L68.4530028,110.466934 L66.7237662,109.017774 L67.167009,106.736872 C67.167009,106.736381 69.5498076,104.748457 71.6480856,104.049439 Z" id="Shape" fill="url(#linearGradient-274)" fill-rule="nonzero"></path>
- <path d="M44.2731744,119.009501 C44.2731744,119.009501 51.2598996,123.511333 57.9267234,123.349114 C59.2215624,123.324044 60.4923228,123.149535 61.6746312,122.785771 L61.4019042,140.142255 C61.4019042,140.142255 62.7768414,141.792959 66.031875,142.055951 C68.8628304,142.288957 73.1100006,141.476877 79.1065548,137.62933 C79.1065548,137.62933 78.0667524,109.930627 76.1188428,106.969387 C74.171916,104.010605 71.346366,105.67409 70.1090208,106.115523 C70.1090208,106.115523 69.6146724,106.285116 68.7635676,106.969387 C67.5055836,107.983012 65.4657822,110.120866 63.0721728,114.513077 C59.0598918,121.874393 45.348849,116.676493 45.348849,116.676493 L44.2731744,119.009501 Z" id="Shape" fill="url(#linearGradient-275)" fill-rule="nonzero"></path>
- <path d="M61.6741398,122.786262 L61.4014128,140.142746 C61.4014128,140.142746 62.77635,141.793451 66.0313836,142.056443 C65.658411,139.309037 66.250548,119.443069 66.250548,119.443069 C66.250548,119.443069 60.4117332,119.795036 60.0928146,120.279728 C59.9404806,120.519124 58.9915872,121.86407 57.9267234,123.349114 C59.221071,123.324535 60.4918314,123.149535 61.6741398,122.786262 Z" id="Shape" fill="url(#linearGradient-276)" fill-rule="nonzero"></path>
- <path d="M44.2731744,119.009501 C44.2731744,119.009501 54.4392576,125.041111 61.6741398,122.786262 C75.6220374,117.414836 68.7699558,106.969878 68.7699558,106.969878 C68.7699558,106.969878 68.7699558,106.969878 68.7635676,106.969878 C67.5055836,107.983503 65.4657822,110.121357 63.0721728,114.513568 C59.0598918,121.874885 45.348849,116.676984 45.348849,116.676984 L44.2731744,119.009501 Z" id="Shape" fill="url(#linearGradient-277)" fill-rule="nonzero"></path>
- <g opacity="0.4" transform="translate(25.061400, 1.966295)" fill="url(#linearGradient-278)" fill-rule="nonzero" id="Shape">
- <path d="M0.5464368,113.468483 L0.4034394,48.6874256 C0.400491,47.552382 1.1950848,46.1735177 2.1773934,45.6057501 L80.6652756,0.276755994 C81.648567,-0.291994778 82.4456178,0.169592927 82.4480748,1.30365345 L82.592055,66.0861852 C82.5940206,67.2207373 81.8004096,68.5986184 80.8176096,69.1678607 L2.3302188,114.49538 C1.3469274,115.063639 0.5488938,114.604018 0.5464368,113.468483 Z" opacity="0.8"></path>
- </g>
- <g opacity="0.1" transform="translate(22.113000, 0.000000)" fill="url(#linearGradient-279)" fill-rule="nonzero" id="Shape">
- <path d="M0.4378374,113.499452 L0.2943486,48.7183948 C0.2914002,47.5843343 1.0855026,46.20547 2.0692854,45.6377024 L80.5561848,0.307725137 C81.5394762,-0.260534062 82.3370184,0.199578923 82.3404582,1.33511417 L82.4829642,66.1161712 C82.4859126,67.2517065 81.6913188,68.6295875 80.7090102,69.1978467 L2.2216194,114.526349 C1.238328,115.094608 0.4412772,114.633512 0.4378374,113.499452 Z" opacity="0.8"></path>
- </g>
- <g opacity="0.6" transform="translate(0.000000, 27.036554)" fill="url(#linearGradient-280)" fill-rule="nonzero" id="Shape">
- <path d="M0.3901716,74.3284015 L0.2914002,29.4531299 C0.2889432,28.3185778 1.0840284,26.9402051 2.0668284,26.3758785 L47.1119922,0.488132685 C48.0947922,-0.077177071 48.8938086,0.384902208 48.896757,1.51945431 L48.995037,46.3927596 C48.9970026,47.5278033 48.201426,48.9061759 47.2191174,49.4709941 L2.174445,75.3597231 C1.1906622,75.9240497 0.3921372,75.462462 0.3901716,74.3284015 Z" opacity="0.3"></path>
- </g>
- <path d="M18.4024386,66.9778999 L18.4579668,92.9157862 L14.4063738,95.2551855 L14.3518284,69.3172991 C14.3498628,68.7500231 14.746914,68.0603452 15.2397882,67.7771987 L17.5105476,66.464697 C18.002439,66.1810589 18.4009644,66.4111154 18.4024386,66.9778999 Z" id="Shape" fill="url(#linearGradient-281)" fill-rule="nonzero" opacity="0.8"></path>
- <path d="M35.525763,57.2963559 L35.5827654,83.233259 L31.5326466,85.574133 L31.47417,59.6372298 C31.4731872,59.0694622 31.869747,58.3802759 32.3616384,58.0961463 L34.6348548,56.7826613 C35.1272376,56.4985317 35.525763,56.7280967 35.525763,57.2963559 Z" id="Shape" fill="url(#linearGradient-282)" fill-rule="nonzero" opacity="0.8"></path>
- <path d="M26.92872,48.5325799 L26.9871966,88.191763 L22.936095,90.5291959 L22.879584,50.874437 C22.8781098,50.3066694 23.2746696,49.6174831 23.7655782,49.3338451 L26.0387946,48.0174107 C26.5311774,47.7347558 26.92872,47.9648123 26.92872,48.5325799 Z" id="Shape" fill="url(#linearGradient-283)" fill-rule="nonzero" opacity="0.8"></path>
- <path d="M9.8088354,66.0522666 L9.8663292,98.0655123 L5.8152276,100.406386 L5.7572424,68.3916659 C5.7562596,67.8238982 6.1533108,67.1347119 6.643728,66.8515655 L8.9174358,65.537589 C9.4088358,65.2549341 9.8073612,65.484499 9.8088354,66.0522666 Z" id="Shape" fill="url(#linearGradient-284)" fill-rule="nonzero" opacity="0.8"></path>
- <path d="M43.7621184,46.6282234 L43.818138,78.453688 L39.7680192,80.7940703 L39.7090512,48.9690974 C39.7080684,48.4008382 40.105611,47.7116518 40.5960282,47.4275222 L42.8712102,46.1145289 C43.3621188,45.8313824 43.7611356,46.0614389 43.7621184,46.6282234 Z" id="Shape" fill="url(#linearGradient-285)" fill-rule="nonzero" opacity="0.8"></path>
- <g opacity="0.7" transform="translate(56.019600, 26.544980)" fill="url(#linearGradient-286)" fill-rule="nonzero" id="Shape">
- <path d="M12.3434766,0.509270354 L12.3454422,1.23876573 C12.346425,1.57500214 12.1115358,1.98300831 11.8201356,2.15210966 L0.8604414,8.47866319 C0.570024,8.64776455 0.334152,8.51209021 0.331695,8.17437907 L0.3302208,7.44685 C0.329238,7.10963044 0.5641272,6.70162427 0.855036,6.53350606 L11.8137474,0.205969381 C12.105639,0.037851175 12.3420024,0.17401709 12.3434766,0.509270354 Z"></path>
- </g>
- <g opacity="0.7" transform="translate(56.019600, 34.410159)" fill="url(#linearGradient-287)" fill-rule="nonzero" id="Shape">
- <path d="M7.965594,0.436025873 L7.9665768,1.16404652 C7.9675596,1.50077451 7.7331618,1.91074698 7.442253,2.07886518 L0.8594586,5.90822431 C0.5690412,6.07732566 0.334152,5.94312604 0.3321864,5.60590649 L0.3307122,4.87837741 C0.3297294,4.54115785 0.5636358,4.1326601 0.855036,3.96306718 L7.4378304,0.133216473 C7.7292306,-0.0363764539 7.9646112,0.0997894613 7.965594,0.436025873 Z"></path>
- </g>
- <g opacity="0.7" transform="translate(56.019600, 44.241633)" fill="url(#linearGradient-288)" fill-rule="nonzero" id="Shape">
- <path d="M14.3174304,0.630689058 L14.319396,1.36116758 C14.3203788,1.69740399 14.0849982,2.10590173 13.793598,2.27451151 L0.8609328,9.77002731 C0.5705154,9.93863709 0.3346434,9.80394589 0.3321864,9.46672633 L0.3307122,8.73772253 C0.3297294,8.4000114 0.5646186,7.99102208 0.8555274,7.82290388 L13.7881926,0.326896511 C14.0791014,0.158778305 14.3159562,0.293961073 14.3174304,0.630689058 Z"></path>
- </g>
- <g opacity="0.7" transform="translate(56.019600, 54.564681)" fill="url(#linearGradient-289)" fill-rule="nonzero" id="Shape">
- <path d="M6.6235806,0.672964397 L6.6255462,1.39901875 C6.626529,1.73525516 6.3916398,2.14326134 6.0997482,2.31236269 L0.8604414,5.33554095 C0.570024,5.50415073 0.334152,5.36847639 0.331695,5.0317484 L0.3302208,4.30372775 C0.329238,3.96650819 0.5641272,3.55899359 0.855036,3.39038382 L6.0943428,0.368680276 C6.3867258,0.20056207 6.6225978,0.335744838 6.6235806,0.672964397 Z"></path>
- </g>
- <g opacity="0.7" transform="translate(56.019600, 58.497270)" fill="url(#linearGradient-290)" fill-rule="nonzero" id="Shape">
- <path d="M10.4383188,0.553020414 L10.4402844,1.28054949 C10.4417586,1.6167859 10.206378,2.02577522 9.9154692,2.194385 L0.8604414,7.42276288 C0.570024,7.59088109 0.334152,7.4561899 0.331695,7.11897034 L0.3302208,6.39291598 C0.329238,6.05667957 0.5641272,5.6467071 0.855036,5.47957204 L9.9095724,0.248736293 C10.2004812,0.0811096607 10.4368446,0.216784002 10.4383188,0.553020414 Z"></path>
- </g>
- </g>
- </g>
- <g id="09-copy-2" transform="translate(96.671400, 268.164000)">
- <polygon id="Path" fill="url(#linearGradient-291)" points="134.856574 126.402311 134.856574 165.3106 89.0470826 194.552443 89.5168139 153.052996"></polygon>
- <polygon id="Path" fill="url(#linearGradient-292)" points="41.1118891 124.991284 41.1118891 163.899574 89.0470826 194.552443 89.5168139 149.442967"></polygon>
- <path d="M148.368221,130.49612 L93.6509381,162.889865 C91.1795039,164.352813 88.1094525,164.359532 85.6319101,162.906969 L28.447469,129.380126 C26.8275374,128.430279 26.8580791,126.078569 28.5018333,125.17087 L84.2355437,94.4789073 C86.7527904,93.0892601 89.8258959,93.1766093 92.2600692,94.70797 L148.409758,127.445615 C149.541022,128.157237 149.518421,129.81504 148.368221,130.49612 Z" id="XMLID_1576_" stroke="url(#linearGradient-293)" stroke-width="1.192815"></path>
- <path d="M6.65887644,170.081439 L32.0025805,172.79744 C36.3608806,172.79744 67.1257184,169.31478 70.8884555,167.115778 L95.6668531,121.868244 L27.7152426,125.809381 L6.65887644,170.081439 Z" id="Path" fill="url(#linearGradient-294)" transform="translate(51.162865, 147.332842) scale(-1, 1) rotate(26.000000) translate(-51.162865, -147.332842) "></path>
- <g id="XMLID_1574_" transform="translate(40.959181, 108.728441)" fill="url(#linearGradient-295)">
- <path d="M48.5576333,26.955491 L50.7340346,45.4857494 L50.7340346,45.4857494 C49.3902,46.2792227 47.7220125,46.2847202 46.3732911,45.4997986 L2.17029299,19.771473 C0.921137583,19.0445806 0.152708485,17.7080759 0.152708485,16.2628428 L0.152708485,0.0641375638 L48.5576333,26.955491 Z" id="XMLID_1575_"></path>
- </g>
- <g id="XMLID_1572_" transform="translate(89.215062, 109.950109)" fill="url(#linearGradient-296)">
- <path d="M45.6415121,0.295643627 L45.6415121,16.4528122 C45.6415121,17.8888828 44.8828563,19.2180574 43.6465284,19.9486148 L2.40851823,44.3062291 C1.4776073,44.8559796 0.301751967,44.185284 0.301751967,43.1041079 L0.301751967,24.3844909 L45.6415121,0.295643627 Z" id="XMLID_1573_"></path>
- </g>
- <path d="M134.182824,111.592642 L92.1360699,136.485347 C90.2369872,137.609281 87.8779465,137.614779 85.9739771,136.498174 L42.0311942,110.735031 C40.7863146,110.005084 40.8095263,108.197627 42.0727309,107.500054 L84.9007418,83.9151451 C86.8352529,82.8467966 89.196737,82.9145991 91.0671105,84.0910653 L134.214588,109.24765 C135.084415,109.795568 135.067312,111.069157 134.182824,111.592642 Z" id="XMLID_1571_" fill="url(#linearGradient-297)"></path>
- <g id="XMLID_1567_" transform="translate(40.959181, 83.684250)" fill="url(#linearGradient-298)">
- <path d="M48.5576333,27.0837661 L50.7340346,45.6140245 L50.7340346,45.6140245 C49.3902,46.4074978 47.7220125,46.4129953 46.3732911,45.6280737 L2.17029299,19.8997481 C0.921137583,19.1728557 0.152708485,17.8363511 0.152708485,16.391118 L0.152708485,0.192412691 L48.5576333,27.0837661 Z" id="XMLID_1568_"></path>
- </g>
- <g id="XMLID_1565_" transform="translate(89.215062, 84.905918)" fill="url(#linearGradient-299)">
- <path d="M45.6415121,0.423307921 L45.6415121,16.5804765 C45.6415121,18.0165471 44.8828563,19.3457217 43.6465284,20.0762791 L2.40851823,44.4332825 C1.4776073,44.9830331 0.301751967,44.3123374 0.301751967,43.2311613 L0.301751967,24.5109335 L45.6415121,0.423307921 Z" id="XMLID_1566_"></path>
- </g>
- <path d="M134.182824,86.6761145 L92.1360699,111.568819 C90.2369872,112.692754 87.8779465,112.698251 85.9739771,111.581647 L42.0311942,85.8185037 C40.7863146,85.0885571 40.8095263,83.2810995 42.0727309,82.5835271 L84.9007418,58.9986179 C86.8352529,57.9302693 89.196737,57.9980719 91.0671105,59.174538 L134.214588,84.331123 C135.084415,84.8796519 135.067312,86.1532407 134.182824,86.6761145 Z" id="XMLID_1564_" fill="url(#linearGradient-300)"></path>
- <path d="M127.399513,85.9058529 L91.5264576,107.143938 C89.906526,108.102948 87.8932173,108.107223 86.2690099,107.154933 L48.7784659,85.1746847 C47.7162257,84.5522449 47.7363832,83.0098892 48.8138943,82.414937 L85.3533698,62.2928453 C87.0038431,61.3814811 89.0183734,61.4388994 90.6144825,62.4431104 L127.427001,83.9059826 C128.168553,84.3726598 128.153893,85.4593333 127.399513,85.9058529 Z" id="XMLID_1561_" fill="url(#linearGradient-301)"></path>
- <path d="M76.8126896,106.211195 C76.8126896,106.211195 78.3629862,107.10118 80.688431,108.435852 C81.847183,109.109602 83.1995693,109.895745 84.6478566,110.738696 C85.0100811,110.949434 85.378414,111.163226 85.7510227,111.380072 C86.1254639,111.608524 86.4937968,111.808877 86.9091638,111.957921 C87.7240163,112.261505 88.6170555,112.407494 89.4966564,112.332973 C90.3768681,112.271889 91.2387548,112.000679 91.9949672,111.568819 C92.7542338,111.125354 93.5012837,110.689218 94.2245111,110.267132 C95.6697442,109.418684 97.0184656,108.626432 98.1741634,107.947796 C100.494111,106.60335 102.040131,105.706646 102.040131,105.706646 C102.040131,105.706646 100.510603,106.631449 98.2157001,108.018042 C97.0642781,108.70523 95.7216651,109.506644 94.2825403,110.365476 C93.5617563,110.79306 92.8171497,111.235304 92.0603265,111.684878 C91.2925082,112.130787 90.4110748,112.417268 89.5076514,112.484459 C88.604228,112.554705 87.6916421,112.397721 86.8621296,112.08192 C86.4479842,111.931655 86.0484988,111.709922 85.6887176,111.486357 C85.3173306,111.267067 84.9508302,111.050221 84.5904382,110.83704 C83.1476484,109.984316 81.8013704,109.188399 80.6475051,108.506709 C78.3464937,107.129278 76.8126896,106.211195 76.8126896,106.211195 Z" id="Path" fill="#DCCAFF"></path>
- <path d="M94.0412609,118.408327 C94.0412609,118.408327 97.1778932,117.183605 98.7373523,115.290631 C99.4025504,114.483108 99.0898035,112.374509 97.5010244,112.526607 C96.8584271,112.588301 95.7522068,112.725128 94.0412609,113.507606 L94.0412609,118.408327 L94.0412609,118.408327 Z" id="Path" fill="url(#linearGradient-302)"></path>
- <path d="M94.0412609,114.644979 L94.0412609,113.507606 C94.0412609,113.507606 96.8547621,115.958272 94.0412609,118.408327 L94.0412609,114.644979 Z" id="Path" fill="url(#linearGradient-303)"></path>
- <path d="M94.0412609,124.38717 C94.0412609,124.38717 97.1778932,123.162448 98.7373523,121.269473 C99.4025504,120.461951 99.0898035,118.353352 97.5010244,118.50545 C96.8584271,118.567144 95.7522068,118.703971 94.0412609,119.486449 L94.0412609,124.38717 L94.0412609,124.38717 Z" id="Path" fill="url(#linearGradient-304)"></path>
- <path d="M94.0412609,120.623822 L94.0412609,119.486449 C94.0412609,119.486449 96.8547621,121.937115 94.0412609,124.38717 L94.0412609,120.623822 Z" id="Path" fill="url(#linearGradient-305)"></path>
- <path d="M84.1329236,118.452918 C84.1329236,118.452918 80.9962913,117.228196 79.4368322,115.335221 C78.7716341,114.527699 79.0843811,112.4191 80.6731601,112.571198 C81.3157575,112.632892 82.4219777,112.769719 84.1329236,113.552197 L84.1329236,118.452918 L84.1329236,118.452918 Z" id="Path" fill="url(#linearGradient-306)"></path>
- <path d="M84.1329236,114.68957 L84.1329236,113.552197 C84.1329236,113.552197 81.3194225,116.002863 84.1329236,118.452918 L84.1329236,114.68957 Z" id="Path" fill="url(#linearGradient-307)"></path>
- <path d="M84.1329236,124.43115 C84.1329236,124.43115 80.9962913,123.206428 79.4368322,121.313453 C78.7716341,120.505931 79.0843811,118.397332 80.6731601,118.54943 C81.3157575,118.611124 82.4219777,118.747951 84.1329236,119.530429 L84.1329236,124.43115 L84.1329236,124.43115 Z" id="Path" fill="url(#linearGradient-308)"></path>
- <path d="M84.1329236,120.667802 L84.1329236,119.530429 C84.1329236,119.530429 81.3194225,121.981095 84.1329236,124.43115 L84.1329236,120.667802 Z" id="Path" fill="url(#linearGradient-309)"></path>
- <path d="M84.0889435,120.717279 L85.9855829,121.828997 C87.8889415,122.944991 90.248593,122.940104 92.1476757,121.81617 L94.0412609,120.694678 L94.6362132,120.968943 L92.4524819,123.03234 L87.9078773,123.717085 L85.702156,122.823435 L83.4573412,120.985435 L84.0889435,120.717279 Z" id="Path" fill="url(#linearGradient-310)"></path>
- <path d="M94.636824,120.969554 L92.1360699,122.445939 C90.2369872,123.569874 87.8779465,123.575371 85.9739771,122.458767 L83.4579521,120.985435 L83.4579521,122.885129 L85.9739771,124.360293 C87.8773356,125.476286 90.2369872,125.4714 92.1360699,124.347465 L94.636824,122.866804 L94.636824,120.969554 Z" id="Path" fill="url(#linearGradient-311)"></path>
- <path d="M84.0889435,114.709117 L85.9855829,115.820834 C87.8889415,116.936828 90.248593,116.931941 92.1476757,115.808007 L94.0412609,114.686516 L94.6362132,114.96078 L92.4524819,117.024177 L87.9078773,117.708922 L85.702156,116.815272 L83.4573412,114.977273 L84.0889435,114.709117 Z" id="Path" fill="url(#linearGradient-312)"></path>
- <path d="M94.636824,114.96078 L92.1360699,116.437166 C90.2369872,117.5611 87.8779465,117.566598 85.9739771,116.449993 L83.4579521,114.976662 L83.4579521,116.876355 L85.9739771,118.351519 C87.8773356,119.467513 90.2369872,119.462626 92.1360699,118.338692 L94.636824,116.85803 L94.636824,114.96078 Z" id="Path" fill="url(#linearGradient-313)"></path>
- <path d="M94.5097706,143.639434 C94.5097706,143.639434 97.6464029,142.414712 99.2058619,140.521737 C99.8710601,139.714215 99.5583131,137.605616 97.969534,137.757714 C97.3269367,137.819408 96.2207164,137.956235 94.5097706,138.738713 L94.5097706,143.639434 L94.5097706,143.639434 Z" id="Path" fill="url(#linearGradient-314)"></path>
- <path d="M94.5097706,139.876086 L94.5097706,138.738713 C94.5097706,138.738713 97.3232717,141.189379 94.5097706,143.639434 L94.5097706,139.876086 Z" id="Path" fill="url(#linearGradient-315)"></path>
- <path d="M94.5097706,149.618276 C94.5097706,149.618276 97.6464029,148.393554 99.2058619,146.50058 C99.8710601,145.693057 99.5583131,143.584459 97.969534,143.736556 C97.3269367,143.798251 96.2207164,143.935077 94.5097706,144.717556 L94.5097706,149.618276 L94.5097706,149.618276 Z" id="Path" fill="url(#linearGradient-316)"></path>
- <path d="M94.5097706,145.854928 L94.5097706,144.717556 C94.5097706,144.717556 97.3232717,147.168221 94.5097706,149.618276 L94.5097706,145.854928 Z" id="Path" fill="url(#linearGradient-317)"></path>
- <path d="M84.5715024,143.684025 C84.5715024,143.684025 81.4348701,142.459303 79.875411,140.566328 C79.2102129,139.758806 79.5229598,137.650207 81.1117389,137.802305 C81.7543362,137.863999 82.8605565,138.000826 84.5715024,138.783304 L84.5715024,143.684025 L84.5715024,143.684025 Z" id="Path" fill="url(#linearGradient-318)"></path>
- <path d="M84.5715024,139.920677 L84.5715024,138.783304 C84.5715024,138.783304 81.7580012,141.23397 84.5715024,143.684025 L84.5715024,139.920677 Z" id="Path" fill="url(#linearGradient-319)"></path>
- <path d="M84.5715024,149.662867 C84.5715024,149.662867 81.4348701,148.438145 79.875411,146.545171 C79.2102129,145.737648 79.5229598,143.62905 81.1117389,143.781147 C81.7543362,143.842841 82.8605565,143.979668 84.5715024,144.762146 L84.5715024,149.662867 L84.5715024,149.662867 Z" id="Path" fill="url(#linearGradient-320)"></path>
- <path d="M84.5715024,145.899519 L84.5715024,144.762146 C84.5715024,144.762146 81.7580012,147.212812 84.5715024,149.662867 L84.5715024,145.899519 Z" id="Path" fill="url(#linearGradient-321)"></path>
- <path d="M84.5586748,145.867756 L86.4553142,146.979474 C88.3586728,148.095467 90.7183243,148.090581 92.617407,146.966646 L94.5116031,145.845155 L95.1065553,146.11942 L92.922824,148.182817 L88.3782195,148.867561 L86.1724981,147.973911 L83.9276834,146.135912 L84.5586748,145.867756 Z" id="Path" fill="url(#linearGradient-322)"></path>
- <path d="M95.1065553,146.12003 L92.6058012,147.596416 C90.7067185,148.72035 88.3476778,148.725848 86.4437084,147.609243 L83.9276834,146.135912 L83.9276834,148.035606 L86.4437084,149.51077 C88.3470669,150.626763 90.7067185,150.621876 92.6058012,149.497942 L95.1065553,148.017281 L95.1065553,146.12003 Z" id="Path" fill="url(#linearGradient-323)"></path>
- <path d="M84.5586748,139.858982 L86.4553142,140.9707 C88.3586728,142.086694 90.7183243,142.081807 92.617407,140.957873 L94.5116031,139.836382 L95.1065553,140.110646 L92.922824,142.174043 L88.3782195,142.858788 L86.1724981,141.965138 L83.9276834,140.127139 L84.5586748,139.858982 Z" id="Path" fill="url(#linearGradient-324)"></path>
- <path d="M95.1065553,140.111257 L92.6058012,141.587643 C90.7067185,142.711577 88.3476778,142.717074 86.4437084,141.60047 L83.9276834,140.127139 L83.9276834,142.026832 L86.4437084,143.501996 C88.3470669,144.61799 90.7067185,144.613103 92.6058012,143.489169 L95.1065553,142.008507 L95.1065553,140.111257 Z" id="Path" fill="url(#linearGradient-325)"></path>
- <path d="M59.2756472,105.083595 C59.2756472,106.294268 58.4204797,106.781714 57.3655695,106.172712 C56.3106592,105.563711 55.4554917,104.088547 55.4554917,102.877874 C55.4554917,101.667201 56.3106592,101.179756 57.3655695,101.788757 C58.4204797,102.397759 59.2756472,103.872922 59.2756472,105.083595 Z" id="Path" fill="url(#linearGradient-326)"></path>
- <path d="M65.9178555,108.995376 C65.9178555,110.206049 65.062688,110.693494 64.0077777,110.084493 C62.9528675,109.475491 62.0977,108.000327 62.0977,106.789655 C62.0977,105.578982 62.9528675,105.091536 64.0077777,105.700538 C65.062688,106.309539 65.9178555,107.784703 65.9178555,108.995376 Z" id="Path" fill="#987EF5"></path>
- <path d="M72.5008128,112.854014 C72.5008128,114.064687 71.6456453,114.552132 70.5907351,113.943131 C69.5358249,113.334129 68.6806574,111.858965 68.6806574,110.648293 C68.6806574,109.43762 69.5358249,108.950174 70.5907351,109.559176 C71.6450345,110.168177 72.5008128,111.643341 72.5008128,112.854014 Z" id="Path" fill="url(#linearGradient-327)"></path>
- <path d="M58.3624505,129.020345 C58.3624505,130.231018 57.5072829,130.718463 56.4523727,130.109462 C55.3974625,129.50046 54.542295,128.025297 54.542295,126.814624 C54.542295,125.603951 55.3974625,125.116505 56.4523727,125.725507 C57.5072829,126.334508 58.3624505,127.809672 58.3624505,129.020345 Z" id="Path" fill="url(#linearGradient-328)"></path>
- <path d="M65.0052696,132.932126 C65.0052696,134.142798 64.150102,134.630244 63.0951918,134.021242 C62.0402816,133.412241 61.1851141,131.937077 61.1851141,130.726404 C61.1851141,129.515731 62.0402816,129.028286 63.0951918,129.637287 C64.150102,130.246289 65.0052696,131.721453 65.0052696,132.932126 Z" id="Path" fill="url(#linearGradient-329)"></path>
- <path d="M71.5876161,136.791374 C71.5876161,138.002047 70.7324486,138.489493 69.6775384,137.880491 C68.6226282,137.27149 67.7674606,135.796326 67.7674606,134.585653 C67.7674606,133.37498 68.6226282,132.887535 69.6775384,133.496536 C70.7324486,134.105538 71.5876161,135.580702 71.5876161,136.791374 Z" id="Path" fill="#987EF5"></path>
- <polygon id="Path" fill="url(#linearGradient-330)" points="120.786014 127.020475 108.727541 133.98276 108.727541 131.058087 120.786014 124.095802"></polygon>
- <polygon id="Path" fill="url(#linearGradient-331)" points="120.786014 132.601054 108.727541 139.562728 108.727541 136.638055 120.786014 129.676381"></polygon>
- <polygon id="Path" fill="url(#linearGradient-332)" opacity="0.2" points="120.786014 127.020475 118.455072 125.441469 120.786014 124.095802"></polygon>
- <polygon id="Path" fill="url(#linearGradient-333)" opacity="0.2" points="120.786014 132.601054 118.455072 131.022048 120.786014 129.676381"></polygon>
- <polygon id="Path" fill="url(#linearGradient-334)" points="120.329721 102.623767 108.271248 109.586052 108.271248 106.660769 120.329721 99.6990942"></polygon>
- <polygon id="Path" fill="url(#linearGradient-335)" points="120.329721 108.203735 108.271248 115.16602 108.271248 112.241347 120.329721 105.279062"></polygon>
- <polygon id="Path" fill="url(#linearGradient-336)" opacity="0.2" points="120.329721 102.623767 117.998779 101.044761 120.329721 99.6990942"></polygon>
- <polygon id="Path" fill="url(#linearGradient-337)" opacity="0.2" points="120.329721 108.203735 117.998779 106.62534 120.329721 105.279062"></polygon>
- <path d="M58.6825274,153.156837 C58.6825274,154.36751 57.8273599,154.854956 56.7724497,154.245954 C55.7175395,153.636953 54.862372,152.161789 54.862372,150.951116 C54.862372,149.740443 55.7175395,149.252998 56.7724497,149.861999 C57.8273599,150.471001 58.6825274,151.946164 58.6825274,153.156837 Z" id="Path" fill="url(#linearGradient-338)"></path>
- <path d="M65.3253465,157.068618 C65.3253465,158.279291 64.470179,158.766736 63.4152688,158.157735 C62.3603586,157.548733 61.5051911,156.073569 61.5051911,154.862897 C61.5051911,153.652224 62.3603586,153.164778 63.4152688,153.77378 C64.470179,154.382781 65.3253465,155.857945 65.3253465,157.068618 Z" id="Path" fill="url(#linearGradient-339)"></path>
- <path d="M71.9076931,160.927256 C71.9076931,162.137929 71.0525256,162.625374 69.9976154,162.016373 C68.9427051,161.407371 68.0875376,159.932207 68.0875376,158.721535 C68.0875376,157.510862 68.9427051,157.023416 69.9976154,157.632418 C71.0525256,158.241419 71.9076931,159.716583 71.9076931,160.927256 Z" id="Path" fill="#987EF5"></path>
- <polygon id="Path" fill="url(#linearGradient-340)" points="121.106091 151.156967 109.047618 158.118641 109.047618 155.193969 121.106091 148.232294"></polygon>
- <polygon id="Path" fill="url(#linearGradient-341)" points="121.106091 156.736935 109.047618 163.69922 109.047618 160.774547 121.106091 153.812262"></polygon>
- <polygon id="Path" fill="url(#linearGradient-342)" opacity="0.2" points="121.106091 151.156967 118.775149 149.577961 121.106091 148.232294"></polygon>
- <polygon id="Path" fill="url(#linearGradient-343)" opacity="0.2" points="121.106091 156.736935 118.775149 155.157929 121.106091 153.812262"></polygon>
- <path d="M94.0162167,165.285556 C94.0162167,165.285556 97.152849,164.060834 98.7123081,162.16786 C99.3775062,161.360337 99.0647593,159.251738 97.4759802,159.403836 C96.8333829,159.46553 95.7271626,159.602357 94.0162167,160.384835 L94.0162167,165.285556 L94.0162167,165.285556 Z" id="Path" fill="url(#linearGradient-344)"></path>
- <path d="M94.0162167,161.522208 L94.0162167,160.384835 C94.0162167,160.384835 96.8297179,162.835501 94.0162167,165.285556 L94.0162167,161.522208 Z" id="Path" fill="url(#linearGradient-345)"></path>
- <path d="M94.0162167,171.263788 C94.0162167,171.263788 97.152849,170.039066 98.7123081,168.146091 C99.3775062,167.338569 99.0647593,165.22997 97.4759802,165.382068 C96.8333829,165.443762 95.7271626,165.580589 94.0162167,166.363067 L94.0162167,171.263788 L94.0162167,171.263788 Z" id="Path" fill="url(#linearGradient-346)"></path>
- <path d="M94.0162167,167.50044 L94.0162167,166.363067 C94.0162167,166.363067 96.8297179,168.813733 94.0162167,171.263788 L94.0162167,167.50044 Z" id="Path" fill="url(#linearGradient-347)"></path>
- <path d="M84.0779485,165.330147 C84.0779485,165.330147 80.9413162,164.105425 79.3818572,162.212451 C78.716659,161.404928 79.029406,159.296329 80.6181851,159.448427 C81.2607824,159.510121 82.3670027,159.646948 84.0779485,160.429426 L84.0779485,165.330147 L84.0779485,165.330147 Z" id="Path" fill="url(#linearGradient-348)"></path>
- <path d="M84.0779485,161.566799 L84.0779485,160.429426 C84.0779485,160.429426 81.2644474,162.880092 84.0779485,165.330147 L84.0779485,161.566799 Z" id="Path" fill="url(#linearGradient-349)"></path>
- <path d="M84.0779485,171.308379 C84.0779485,171.308379 80.9413162,170.083657 79.3818572,168.190682 C78.716659,167.38316 79.029406,165.274561 80.6181851,165.426659 C81.2607824,165.488353 82.3670027,165.62518 84.0779485,166.407658 L84.0779485,171.308379 L84.0779485,171.308379 Z" id="Path" fill="url(#linearGradient-350)"></path>
- <path d="M84.0779485,167.545031 L84.0779485,166.407658 C84.0779485,166.407658 81.2644474,168.858324 84.0779485,171.308379 L84.0779485,167.545031 Z" id="Path" fill="url(#linearGradient-351)"></path>
- <path d="M84.065121,167.513878 L85.9617604,168.625596 C87.8657298,169.74159 90.2247705,169.736703 92.1238532,168.612769 L94.0174384,167.491277 L94.6123907,167.765542 L92.4286593,169.828939 L87.8840548,170.513684 L85.6783335,169.620034 L83.4335187,167.782034 L84.065121,167.513878 Z" id="Path" fill="url(#linearGradient-352)"></path>
- <path d="M94.6130015,167.765542 L92.1122474,169.241928 C90.2131646,170.365862 87.854124,170.371359 85.9501546,169.254755 L83.4341296,167.781424 L83.4341296,169.681117 L85.9501546,171.156281 C87.8535131,172.272275 90.2131646,172.267388 92.1122474,171.143454 L94.6130015,169.662792 L94.6130015,167.765542 Z" id="Path" fill="url(#linearGradient-353)"></path>
- <path d="M84.065121,161.505105 L85.9617604,162.616823 C87.8657298,163.732816 90.2247705,163.72793 92.1238532,162.603995 L94.0174384,161.482504 L94.6123907,161.756768 L92.4286593,163.820165 L87.8840548,164.50491 L85.6783335,163.61126 L83.4335187,161.773261 L84.065121,161.505105 Z" id="Path" fill="url(#linearGradient-354)"></path>
- <path d="M94.6130015,161.756768 L92.1122474,163.233154 C90.2131646,164.357088 87.854124,164.362586 85.9501546,163.245982 L83.4341296,161.77265 L83.4341296,163.672344 L85.9501546,165.147508 C87.8535131,166.263501 90.2131646,166.258615 92.1122474,165.13468 L94.6130015,163.654019 L94.6130015,161.756768 Z" id="Path" fill="url(#linearGradient-355)"></path>
- <polygon id="Path" fill="url(#linearGradient-356)" points="66.6813979 85.497205 87.3361368 73.8547101 109.287065 86.6645087 88.6317156 98.3070036"></polygon>
- <polygon id="Path" fill="url(#linearGradient-357)" points="88.5364255 77.371892 66.585497 64.5620934 66.776688 39.0237371 88.7276165 51.8335357"></polygon>
- <g id="Clipped" transform="translate(66.003372, 38.482538)">
- <mask id="mask-359" fill="white">
- <use xlink:href="#path-358"></use>
- </mask>
- <g id="SVGID_1260_"></g>
- </g>
- <polygon id="Path" fill="url(#linearGradient-360)" points="66.776688 39.0237371 87.4320377 27.3812422 109.382355 40.1910408 88.7276165 51.8335357"></polygon>
- <polygon id="Path" fill="url(#linearGradient-361)" points="88.7276165 51.8335357 109.382355 40.1910408 109.191164 65.729397 88.5364255 77.371892"></polygon>
- <path d="M127.384242,85.8881388 L91.5111868,107.125613 C91.5111868,107.125613 89.1637519,108.842667 86.253739,107.136608 L48.7631951,85.1563597 C48.7631951,85.1563597 48.0546277,84.8656027 47.9819385,83.8589484 L47.980106,0.329239494 L127.957205,1.19540202 L127.959037,84.7385493 C127.959037,84.7385493 128.184435,85.4141316 127.384242,85.8881388 Z" id="Path" fill="url(#linearGradient-362)" opacity="0.7"></path>
- <ellipse id="Oval" fill="#F3FFFF" cx="115.648901" cy="73.2194428" rx="1.01581684" ry="1.00726517"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="66.4022468" cy="65.0031155" rx="1.01581684" ry="1.00726517"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="97.8052197" cy="49.9576647" rx="1.01581684" ry="1.00726517"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="84.8579835" cy="91.3263933" rx="1.01581684" ry="1.00726517"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="74.6350666" cy="45.0978699" rx="1.01581684" ry="1.00726517"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="105.707578" cy="24.5414752" rx="1.01581684" ry="1.00726517"></ellipse>
- <ellipse id="Oval" fill="#F3FFFF" cx="84.1329236" cy="71.5677479" rx="1.01581684" ry="1.00726517"></ellipse>
- </g>
- <g id="28" transform="translate(561.840000, 129.870000)">
- <polygon id="矩形" fill="url(#linearGradient-363)" fill-rule="nonzero" opacity="0.5" points="41.3770028 126.175197 60.5407299 138.881123 30.9097269 155.7025 11.8019956 143.81666"></polygon>
- <polygon id="矩形-copy-9" fill="url(#linearGradient-363)" fill-rule="nonzero" opacity="0.5" points="88.0739551 98.2997073 107.237682 111.005634 77.6066792 127.827011 58.4989479 115.94117"></polygon>
- <path d="M40.9082838,151.737738 L3.05669439,129.955479 C-0.871041036,127.695031 -0.384359193,123.736651 4.14328822,121.114179 L102.259283,64.2669347 C106.78693,61.6439429 113.641509,61.3504794 117.569244,63.6104076 L155.420834,85.3926664 C159.348569,87.6531139 158.861887,91.6114942 154.33424,94.2339666 L56.2182454,151.080691 C51.690598,153.704202 44.8360193,153.998185 40.9082838,151.737738 Z" id="Path" stroke="#29DCC4" stroke-width="1.197027"></path>
- <path d="M122.186749,94.7040275 C123.517982,95.4701489 123.526812,96.7141222 122.209083,97.4828406 L97.8152594,111.705689 C96.4949336,112.475446 94.3466773,112.478563 93.0154441,111.712441 L77.1933499,102.607284 C75.8647136,101.84272 75.8558837,100.598747 77.1762095,99.8284705 L101.570033,85.6056221 C102.887762,84.8374232 105.036018,84.8343067 106.364654,85.5988699 L122.186749,94.7040275 Z" id="Path" fill="#ABABAB"></path>
- <path d="M123.133623,96.4507842 C123.129987,96.4632499 123.12739,96.4757156 123.122715,96.4881813 C123.085837,96.5951786 123.030261,96.7006177 122.962219,96.8034598 C122.949754,96.8221583 122.937807,96.8413763 122.924303,96.8595554 C122.850547,96.9618781 122.76121,97.0610843 122.65629,97.1561353 C122.587729,97.2179444 122.500469,97.2745595 122.418403,97.3327328 C122.348283,97.3825956 122.288552,97.4355748 122.209083,97.4823212 L97.8152594,111.70517 C97.6116529,111.823594 97.3836344,111.918125 97.1473054,112.000191 C97.0636813,112.029278 96.9779796,112.054209 96.8912391,112.078621 C96.7800866,112.109786 96.6673758,112.139392 96.5520681,112.163804 C96.4165035,112.191851 96.2793808,112.217822 96.139661,112.235481 C96.1058998,112.239637 96.0731773,112.245869 96.039416,112.249505 C95.8508722,112.269762 95.6602509,112.28015 95.4685907,112.282228 C95.4384652,112.282228 95.4083398,112.282747 95.3776949,112.282747 C95.1891511,112.281708 95.0006074,112.27132 94.8141412,112.252102 C94.7860934,112.248986 94.7580456,112.246389 94.7305171,112.242753 C94.5450898,112.220938 94.3627789,112.189774 94.1841038,112.14978 C94.1519007,112.142508 94.1202171,112.134198 94.088014,112.126406 C93.9254404,112.086412 93.7680609,112.038627 93.6153561,111.98357 C93.588347,111.973702 93.5597798,111.96643 93.5332902,111.956042 C93.3509793,111.885922 93.1764594,111.805415 93.0154441,111.712441 L77.1933499,102.607284 C76.5248765,102.222924 76.1908995,101.717025 76.1914189,101.211125 L76.1841473,106.148063 C76.1836279,106.653963 76.5176048,107.159862 77.1860782,107.544222 L93.0081724,116.649379 C93.1613967,116.737678 93.3260479,116.815589 93.4984901,116.883631 C93.50732,116.887266 93.5171887,116.889344 93.5260185,116.89298 C93.5530276,116.903368 93.5821142,116.911159 93.6096426,116.921028 C93.7088489,116.956867 93.8075357,116.993225 93.9108971,117.022312 C93.9664734,117.037894 94.0236079,117.04984 94.0802229,117.063344 C94.1129454,117.071136 94.1446291,117.079446 94.1778709,117.087237 C94.207477,117.093989 94.2355248,117.1023 94.2656503,117.108533 C94.3762834,117.131386 94.4884747,117.150604 94.6022243,117.166706 C94.6422184,117.172419 94.6827319,117.175016 94.7232455,117.18021 C94.7518127,117.183846 94.7798605,117.186443 94.8084278,117.18956 C94.8499801,117.193715 94.8904937,117.199948 94.9325654,117.203064 C95.0437179,117.211894 95.1548705,117.218127 95.2665424,117.220205 C95.3018619,117.221243 95.336662,117.219685 95.3719815,117.219685 C95.4021069,117.219685 95.431713,117.219685 95.4618384,117.219166 C95.51274,117.218646 95.5631223,117.220205 95.6140239,117.218127 C95.7397197,117.213452 95.8654156,117.205142 95.9900726,117.192676 C96.0046159,117.191118 96.0186398,117.188001 96.0331832,117.186443 C96.0669444,117.182807 96.0991475,117.176575 96.1329088,117.172419 C96.2300374,117.159954 96.3276854,117.149046 96.4232558,117.131386 C96.4653275,117.123595 96.5037635,117.109571 96.5453158,117.100742 C96.6616624,117.076849 96.7733343,117.047243 96.8855256,117.015559 C96.9447377,116.998938 97.0075857,116.98907 97.0652395,116.970371 C97.0922486,116.961541 97.1140635,116.946478 97.1410726,116.937129 C97.3779209,116.855063 97.60542,116.761051 97.8090265,116.642108 L122.20285,102.419259 C122.216874,102.410949 122.230379,102.403158 122.243883,102.394847 C122.308809,102.355892 122.354516,102.310704 122.412689,102.269671 C122.494236,102.211497 122.581496,102.155402 122.650057,102.093593 C122.65681,102.087879 122.666159,102.082685 122.672392,102.076972 C122.751341,102.003736 122.821461,101.927903 122.882231,101.850511 C122.895736,101.832852 122.905604,101.814673 122.918589,101.796493 C122.932094,101.777795 122.94404,101.759096 122.956506,101.740398 C122.976763,101.709234 123.001175,101.679108 123.018834,101.647944 C123.054673,101.584576 123.084799,101.52017 123.108691,101.455245 C123.112327,101.445376 123.113885,101.434988 123.117002,101.425119 C123.121157,101.412654 123.123754,101.400188 123.12739,101.387722 C123.140375,101.34617 123.154399,101.305137 123.162709,101.263585 C123.175694,101.198659 123.182966,101.133734 123.184524,101.068808 C123.185044,101.058939 123.185044,101.049071 123.185044,101.039202 L123.192315,96.1022639 C123.191277,96.2196493 123.169462,96.3359959 123.133623,96.4507842 Z" id="Path" fill="url(#linearGradient-364)"></path>
- <path d="M124.679889,77.6031599 C126.158114,78.4539441 126.165386,79.8365984 124.699107,80.6915379 L97.5950319,96.4944142 C96.1287536,97.3493537 93.7446877,97.3524701 92.2659437,96.5016859 L74.6867046,86.3857674 C73.20848,85.5349831 73.1960142,84.1523289 74.6622926,83.2973894 L101.766368,67.4950325 C103.232646,66.640093 105.621906,66.6364572 107.10065,67.4872414 L124.679889,77.6031599 Z" id="Path" fill="url(#linearGradient-365)"></path>
- <path d="M125.729605,79.5426156 C125.72545,79.5561201 125.722853,79.570144 125.717659,79.5841679 C125.676626,79.7036309 125.614298,79.8210163 125.538465,79.9358046 C125.52496,79.9565808 125.511456,79.977357 125.496912,79.9976137 C125.414327,80.1113633 125.315121,80.2219964 125.197735,80.3279549 C125.121383,80.3970357 125.024254,80.4598836 124.933359,80.5242897 C124.854929,80.579866 124.788445,80.6390781 124.699627,80.6910185 L97.5960707,96.4933754 C97.4324584,96.5889458 97.2537833,96.6699728 97.0699142,96.7437283 C97.022129,96.7629462 96.973305,96.7811254 96.9239616,96.7993045 C96.8096926,96.8408569 96.6891908,96.8746181 96.5697278,96.9083794 C96.4461096,96.9431795 96.3214526,96.975902 96.1931597,97.0023916 C96.042013,97.0335559 95.890347,97.0621231 95.7345257,97.0818605 C95.697648,97.0865351 95.6612897,97.0932874 95.6238926,97.0974426 C95.4145726,97.1202964 95.2026557,97.1312039 94.9902193,97.1338009 C94.956458,97.1338009 94.9226967,97.1343203 94.8889355,97.1343203 C94.6796155,97.1332815 94.470815,97.1218546 94.2635727,97.100559 C94.2324084,97.0974426 94.2012441,97.0938068 94.1700799,97.0901709 C93.9649152,97.0657589 93.7623475,97.0314783 93.5649739,96.9873289 C93.5286156,96.9790184 93.4927767,96.9696691 93.4569378,96.9608393 C93.2767045,96.9166899 93.1021846,96.8631913 92.9333782,96.8024209 C92.9032528,96.7915135 92.8715691,96.783203 92.841963,96.7717761 C92.6393954,96.6938654 92.446177,96.6045279 92.2669825,96.5011664 L74.6877434,86.385248 C73.9434371,85.9567395 73.5705048,85.3931858 73.5715436,84.8306709 L73.5481704,101.286438 C73.5471316,101.849473 73.9200639,102.412507 74.6643702,102.841016 L92.2436093,112.957453 C92.4139739,113.055621 92.5962848,113.142361 92.7884644,113.217675 C92.7983331,113.221311 92.8092406,113.223908 92.8191093,113.228063 C92.8487153,113.23949 92.880399,113.2478 92.9105244,113.258708 C93.0206381,113.298702 93.1312713,113.339216 93.246579,113.371938 C93.3078687,113.389078 93.3717555,113.402583 93.4346034,113.417646 C93.4704423,113.426475 93.5057618,113.435825 93.5421201,113.444135 C93.5748425,113.451407 93.6065262,113.460756 93.6397681,113.468028 C93.7628669,113.493479 93.8875239,113.514774 94.0132198,113.532434 C94.0573691,113.538667 94.1030767,113.542303 94.1477455,113.547497 C94.1794292,113.551132 94.210074,113.554768 94.2417577,113.557885 C94.2879847,113.562559 94.3336922,113.569312 94.3799192,113.572947 C94.503018,113.582816 94.6266363,113.589049 94.7507739,113.592165 C94.7897292,113.593204 94.8281651,113.591127 94.8671205,113.591646 C94.9008818,113.591646 94.9341236,113.591646 94.9673655,113.591127 C95.0234612,113.590607 95.0800762,113.592165 95.1361719,113.590088 C95.2758917,113.584894 95.415092,113.575544 95.553773,113.561521 C95.5698745,113.559962 95.5854566,113.556327 95.6015582,113.554768 C95.6389553,113.550613 95.6747942,113.543861 95.7121913,113.539186 C95.819708,113.525162 95.9282635,113.513216 96.034222,113.493998 C96.0809684,113.485688 96.1240789,113.469586 96.1703059,113.460237 C96.2991182,113.433228 96.4232558,113.400505 96.5479128,113.365705 C96.6133578,113.347007 96.6834774,113.336619 96.7473641,113.315842 C96.8003433,113.298702 96.8491673,113.276368 96.9011078,113.25715 C96.9504512,113.23897 96.9992752,113.220791 97.0475798,113.201573 C97.2314489,113.127299 97.4096046,113.046791 97.573217,112.95122 L124.677292,97.1483442 C124.692874,97.1389949 124.708457,97.1301651 124.723519,97.1208158 C124.795197,97.0777052 124.846099,97.0278424 124.910505,96.9821348 C125.00192,96.9172093 125.099568,96.8543614 125.17592,96.7847612 C125.183192,96.7780089 125.1941,96.7728149 125.200852,96.7660626 C125.289151,96.6845162 125.367061,96.6003727 125.434584,96.5141516 C125.449647,96.4944142 125.460554,96.4741574 125.474578,96.4544201 C125.489641,96.4336439 125.502626,96.4128677 125.51665,96.3920915 C125.539503,96.3572915 125.566512,96.3235302 125.58625,96.2882107 C125.626244,96.2175717 125.659486,96.1458939 125.686495,96.0736967 C125.69065,96.0627892 125.692208,96.0518817 125.695844,96.0409742 C125.700519,96.0274697 125.703116,96.0134458 125.707271,95.9999413 C125.721814,95.9537143 125.737397,95.9080067 125.746746,95.8617797 C125.761289,95.7901019 125.76908,95.7173853 125.771158,95.6451881 C125.771677,95.6342806 125.771677,95.6233732 125.771677,95.6119463 L125.79505,79.1561788 C125.793492,79.284991 125.7696,79.4143227 125.729605,79.5426156 Z" id="Path" fill="url(#linearGradient-366)"></path>
- <g id="Group" transform="translate(73.236008, 78.949456)">
- <g id="Clipped">
- <mask id="mask-368" fill="white">
- <use xlink:href="#path-367"></use>
- </mask>
- <g id="SVGID_542_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-368)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.58760492 46.3905964 2.62351119 44.1088532 26.7737342 1.55925175 30.7383473 3.8404755"></polygon>
- <polygon points="2.05684109 43.7831867 0.357869573 42.8056678 24.508612 0.255546923 26.2075835 1.23306584"></polygon>
- <polygon points="8.85324654 47.6943012 8.28657644 47.3681153 32.4373189 4.81851383 33.003989 5.14418033"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-370" fill="white">
- <use xlink:href="#path-369"></use>
- </mask>
- <g id="SVGID_542_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-370)" fill="#FEFEFE">
- <g transform="translate(29.086642, -16.101534)" id="Path">
- <polygon points="6.26972948 65.6121918 2.3118686 67.9048425 15.2408808 3.87527559 19.1992611 1.58262495"></polygon>
- <polygon points="1.74623731 68.2320672 0.0498628142 69.2147802 12.9793944 5.18521327 14.6757689 4.20301971"></polygon>
- <polygon points="8.53121587 64.3017348 7.96610398 64.6294789 20.8951162 0.600431388 21.4607475 0.272687265"></polygon>
- </g>
- </g>
- </g>
- </g>
- <path d="M122.155584,72.4979348 C123.486818,73.2640562 123.495647,74.5080295 122.177919,75.2767479 L97.7840951,89.4995963 C96.4637693,90.2693535 94.3155131,90.2724699 92.9842798,89.5063485 L77.1621856,80.4011909 C75.8335494,79.6366278 75.8247195,78.3926544 77.1450453,77.6223778 L101.538869,63.3995295 C102.856598,62.6313305 105.004854,62.6282141 106.33349,63.3927772 L122.155584,72.4979348 Z" id="Path" fill="url(#radialGradient-371)"></path>
- <path d="M123.102458,74.245211 C123.098823,74.2576767 123.096226,74.2701424 123.091551,74.2826081 C123.054673,74.3896054 122.999097,74.4950444 122.931055,74.5978865 C122.918589,74.616585 122.906643,74.635803 122.893138,74.6539822 C122.819383,74.7563048 122.730046,74.855511 122.625126,74.950562 C122.556564,75.0123711 122.469824,75.0689862 122.387758,75.1266401 C122.317639,75.1765029 122.257907,75.2294821 122.177919,75.2762285 L97.7840951,89.4990769 C97.581008,89.6175011 97.3524701,89.7120326 97.1161412,89.7940985 C97.0330365,89.8231852 96.9473348,89.8481166 96.8605942,89.8725286 C96.7489223,89.9042122 96.6362116,89.9338183 96.5203844,89.9577109 C96.3848199,89.9857587 96.2476971,90.0117289 96.107458,90.0293887 C96.0742161,90.0335439 96.0414936,90.0397768 96.0082518,90.0434126 C95.819708,90.0641888 95.6285672,90.0740575 95.436907,90.0756157 C95.4067816,90.0761351 95.3766561,90.0761351 95.3470501,90.0761351 C95.1585063,90.0750963 94.9699625,90.0647082 94.7834964,90.0454902 C94.7554485,90.0428932 94.7268813,90.0397768 94.6988335,90.0361409 C94.5139255,90.014326 94.3316146,89.9831617 94.1534589,89.943687 C94.1207365,89.9364153 94.0885334,89.9275854 94.0563303,89.9197944 C93.8942762,89.8803196 93.7374161,89.832015 93.58575,89.7769582 C93.5582216,89.7670895 93.529135,89.7592984 93.5021259,89.7489104 C93.319815,89.6787908 93.1458146,89.5982831 92.9842798,89.5053097 L77.1621856,80.4001521 C76.4937122,80.0157929 76.1597353,79.5098931 76.1602547,79.0039933 L76.152983,83.9409313 C76.1524636,84.4468311 76.4864406,84.9527309 77.1549139,85.3370901 L92.9770082,94.4422477 C93.1302324,94.5305465 93.2948836,94.6084571 93.4673258,94.6764991 C93.4761557,94.6801349 93.4860244,94.6822125 93.4948543,94.6858484 C93.5213439,94.6962365 93.5499111,94.7035081 93.5769202,94.7133768 C93.6761264,94.7492157 93.7753326,94.785574 93.8797329,94.81518 C93.9353091,94.8307622 93.992963,94.8427085 94.0495781,94.8567324 C94.0817811,94.8645235 94.1134648,94.8728339 94.1456679,94.8801056 C94.1752739,94.8868578 94.2038412,94.8956877 94.2339666,94.9014012 C94.3445997,94.9242549 94.4567911,94.9434729 94.5705406,94.9595744 C94.6105347,94.9652879 94.6515677,94.9684043 94.6920812,94.973079 C94.7201291,94.9767148 94.7476575,94.9793118 94.7757053,94.9824282 C94.8172577,94.9865835 94.8582906,94.9928163 94.9003623,94.9964521 C95.0115149,95.005282 95.1226674,95.0109955 95.2343393,95.0135925 C95.2691394,95.0146313 95.3044589,95.0130731 95.339259,95.0130731 C95.3699038,95.0130731 95.3995099,95.0130731 95.4301547,95.0125537 C95.480537,95.0120343 95.5314386,95.0135925 95.5818208,95.0115149 C95.7080361,95.0068402 95.8332125,94.9985298 95.9578695,94.9855447 C95.9724129,94.9839864 95.9859174,94.9813894 96.0004607,94.9798312 C96.034222,94.9761954 96.0674638,94.9699625 96.1012251,94.9658073 C96.1983537,94.9533416 96.2954823,94.9424341 96.3905333,94.9247744 C96.4326051,94.9169833 96.4715604,94.9029594 96.5131127,94.8941295 C96.6289399,94.8702369 96.7406118,94.8406309 96.8528032,94.8089472 C96.9120153,94.7923263 96.9753826,94.7824576 97.0330365,94.763759 C97.0600455,94.7549291 97.0818605,94.7398664 97.1088695,94.7305171 C97.3457179,94.6484513 97.573217,94.5544391 97.7768234,94.4354955 L122.170647,80.2126471 C122.184671,80.2048561 122.198176,80.1965456 122.21168,80.1882351 C122.276606,80.1492798 122.322313,80.1040916 122.380486,80.0630587 C122.462033,80.0048854 122.549293,79.9487897 122.617854,79.8869806 C122.624606,79.8812672 122.633956,79.8760731 122.640189,79.8703597 C122.719138,79.7971237 122.789258,79.7212907 122.850028,79.6438994 C122.864052,79.6262397 122.873401,79.6080605 122.886386,79.5898814 C122.899891,79.5711828 122.911318,79.5524843 122.923783,79.5337857 C122.94404,79.5026214 122.968452,79.472496 122.986112,79.4413317 C123.021951,79.3779644 123.052076,79.3135583 123.075969,79.2486327 C123.079605,79.238764 123.081163,79.2288954 123.084279,79.2185073 C123.088435,79.2060416 123.091032,79.1935759 123.095187,79.1811102 C123.108172,79.1400772 123.122196,79.0990443 123.130506,79.0569725 C123.143491,78.992047 123.150763,78.9271215 123.152321,78.8621959 C123.152841,78.8523272 123.152841,78.8424586 123.152841,78.8325899 L123.160112,73.8956519 C123.160112,74.0135566 123.138297,74.1299032 123.102458,74.245211 Z" id="Path" fill="url(#linearGradient-372)"></path>
- <path d="M124.648725,55.3866791 C126.12695,56.2374634 126.134221,57.6201177 124.667943,58.4750572 L97.5638677,74.2779334 C96.0975893,75.1328729 93.7135235,75.1359894 92.2347794,74.2857245 L74.6555404,64.1692867 C73.1773157,63.3185024 73.16485,61.9358481 74.6311284,61.0809086 L101.735204,45.2780323 C103.201482,44.4230928 105.590742,44.4199764 107.069486,45.2702413 L124.648725,55.3866791 Z" id="Path" fill="url(#linearGradient-373)"></path>
- <path d="M125.697922,57.3261348 C125.693767,57.3401587 125.69117,57.3536632 125.685975,57.3676872 C125.644943,57.4871502 125.582614,57.6045355 125.506781,57.7193239 C125.493276,57.7401001 125.479772,57.7608762 125.465229,57.781133 C125.382643,57.8948825 125.283437,58.0055157 125.166052,58.1119935 C125.089699,58.1810743 124.992571,58.2434028 124.901675,58.3083284 C124.823245,58.3639046 124.756761,58.4231167 124.667943,58.4750572 L97.5643871,74.2779334 C97.4007747,74.3735038 97.2220996,74.4540115 97.0382305,74.5282863 C96.9904453,74.5475043 96.9416213,74.5662028 96.8922779,74.5838626 C96.7780089,74.6254149 96.6575071,74.6586568 96.5380442,74.6924181 C96.4144259,74.7272182 96.2897689,74.7599406 96.161476,74.7864303 C96.0103294,74.8175945 95.8586633,74.8461618 95.702842,74.8658991 C95.6659643,74.8705738 95.629606,74.877326 95.5922089,74.8814812 C95.382889,74.904335 95.170972,74.9152425 94.9585356,74.9178396 C94.9247744,74.918359 94.8910131,74.918359 94.8572518,74.918359 C94.6479319,74.9173201 94.4391313,74.9058933 94.231889,74.8845977 C94.2007247,74.8814812 94.1695605,74.8778454 94.1383962,74.8742096 C93.9332315,74.8497976 93.7306638,74.8155169 93.5332902,74.7713675 C93.4969319,74.7630571 93.461093,74.7537078 93.4252541,74.7448779 C93.2450208,74.7007285 93.0705009,74.6472299 92.9016945,74.5864596 C92.8715691,74.5755521 92.8398854,74.5672416 92.8102794,74.5558147 C92.6077117,74.4779041 92.4144933,74.3885666 92.2352988,74.2852051 L74.6560598,64.1687673 C73.9117534,63.7402587 73.5388211,63.176705 73.5398599,62.6141901 L73.5164867,79.0699576 C73.5154479,79.6329919 73.8883802,80.1960262 74.6326866,80.6245348 L92.2119256,90.7404532 C92.3822902,90.8386206 92.5646011,90.9253611 92.7567807,91.0006748 C92.7666494,91.00483 92.7775569,91.0069076 92.7874256,91.0110628 C92.8170316,91.0224897 92.8487153,91.0308002 92.8788408,91.0417077 C92.9889545,91.0817018 93.0995876,91.1222154 93.2148953,91.1549378 C93.2761851,91.1720782 93.3400718,91.1855827 93.4029197,91.2006454 C93.4387586,91.2094753 93.4740781,91.2188246 93.5104364,91.227135 C93.5431589,91.2344067 93.5748425,91.2442754 93.6080844,91.2510276 C93.7311832,91.2764784 93.8558403,91.297774 93.9815361,91.3154338 C94.0256855,91.3216666 94.0713931,91.3253025 94.1160618,91.3304965 C94.1477455,91.3341323 94.1783904,91.3377682 94.210074,91.3408846 C94.256301,91.3455592 94.3020086,91.3523115 94.3482356,91.3559473 C94.4713344,91.365816 94.5949526,91.3720488 94.7190902,91.3751653 C94.7580456,91.3762041 94.7964815,91.3741265 94.8354368,91.3746459 C94.8691981,91.3746459 94.90244,91.3741265 94.9356818,91.3741265 C94.9917775,91.3736071 95.0483926,91.3751653 95.1044882,91.3730876 C95.244208,91.3678936 95.3834084,91.3585443 95.5220893,91.3445204 C95.5381908,91.3429622 95.553773,91.3393264 95.5698745,91.3377682 C95.6072716,91.3336129 95.6431105,91.3268607 95.6805076,91.322186 C95.7880243,91.3086815 95.8965798,91.2962158 96.0025383,91.2769978 C96.0492847,91.268168 96.0923953,91.2525858 96.1386222,91.2427172 C96.2674345,91.2162275 96.3915721,91.1829857 96.5162292,91.1481856 C96.5816741,91.1300064 96.6517937,91.1190989 96.7156804,91.0983228 C96.7686597,91.0811824 96.8174837,91.058848 96.8694241,91.0396301 C96.9187675,91.0214509 96.9675915,91.0032718 97.0158961,90.9840538 C97.1997652,90.909779 97.3779209,90.8292713 97.5415333,90.7337009 L124.645609,74.9308247 C124.661191,74.9219948 124.676773,74.9126455 124.691836,74.9038156 C124.763513,74.8607051 124.814415,74.8108423 124.878821,74.7651347 C124.970236,74.7002091 125.067884,74.6373612 125.144237,74.567761 C125.151508,74.5610088 125.162416,74.5558147 125.169168,74.5490625 C125.257467,74.467516 125.335378,74.3833725 125.4029,74.2971514 C125.417963,74.277414 125.42887,74.2571573 125.442894,74.2374199 C125.457957,74.2166437 125.470942,74.1958676 125.484966,74.1750914 C125.50782,74.1402913 125.534829,74.10653 125.554566,74.0712105 C125.59456,74.0005715 125.627802,73.9288937 125.654811,73.8566965 C125.658966,73.845789 125.660525,73.8348816 125.664161,73.8239741 C125.668835,73.8104696 125.671432,73.796965 125.675587,73.7829411 C125.690131,73.7367141 125.705713,73.6910066 125.715062,73.6447796 C125.729605,73.5731018 125.737397,73.5009046 125.739474,73.428188 C125.739994,73.4172805 125.739994,73.4058536 125.739994,73.3949461 L125.763367,56.9391786 C125.762328,57.0679909 125.737916,57.1978419 125.697922,57.3261348 Z" id="Path" fill="url(#linearGradient-374)"></path>
- <g id="Group" transform="translate(73.236008, 56.615070)">
- <g id="Clipped">
- <mask id="mask-376" fill="white">
- <use xlink:href="#path-375"></use>
- </mask>
- <g id="SVGID_548_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-376)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.55644067 46.5079817 2.59182753 44.226758 26.74257 1.67715653 30.7071831 3.95838028"></polygon>
- <polygon points="2.02567683 43.9005721 0.326705314 42.9230532 24.4774477 0.373451702 26.1764193 1.35097062"></polygon>
- <polygon points="8.82156288 47.8116866 8.25541218 47.4860201 32.4061546 4.9358992 32.9723053 5.26208511"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-378" fill="white">
- <use xlink:href="#path-377"></use>
- </mask>
- <g id="SVGID_548_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-378)" fill="#FEFEFE">
- <g transform="translate(29.086642, -16.101534)" id="Path">
- <polygon points="6.23804582 65.7295772 2.28018494 68.0222279 15.2097165 3.99318037 19.1675774 1.70052973"></polygon>
- <polygon points="1.71507305 68.349972 0.0186985553 69.3321656 12.9482302 5.30311805 14.6440853 4.32040509"></polygon>
- <polygon points="8.50005161 64.4196395 7.93442031 64.7468643 20.8639519 0.717816763 21.4295832 0.39007264"></polygon>
- </g>
- </g>
- </g>
- </g>
- <path d="M120.577115,56.2114932 C121.87199,56.9568383 121.880819,58.1743221 120.596333,58.9233031 L98.0089972,72.0927995 C96.7245103,72.8417805 94.6250781,72.8433387 93.3302031,72.0979935 L78.6819626,63.6685809 C77.3844906,62.9216775 77.3756608,61.7073102 78.6601476,60.9583292 L101.247483,47.7893522 C102.53197,47.0403712 104.631402,47.0356965 105.928874,47.7825999 L120.577115,56.2114932 Z M97.7690324,71.9546379 L120.356368,58.7851415 C121.510484,58.1125129 121.502693,57.0196863 120.339227,56.3501741 L105.690987,47.9207615 C104.527521,47.2512493 102.641564,47.2538463 101.487448,47.9264749 L78.9001124,61.0959713 C77.745996,61.7685999 77.7537871,62.8614266 78.9172528,63.5309388 L93.5654933,71.9603514 C94.7289589,72.6298635 96.614916,72.6272665 97.7690324,71.9546379 L97.7690324,71.9546379 Z" id="Shape" fill="#D1D1D1" fill-rule="nonzero"></path>
- <g id="Group" transform="translate(75.833030, 40.513537)">
- <path d="M46.2913901,9.77830563 C47.6226234,10.544427 47.6314533,11.7884003 46.3137245,12.5571187 L21.9199009,26.7799671 C20.5995751,27.5497243 18.4513189,27.5528407 17.1200856,26.7867193 L1.29799138,17.6815617 C-0.0306448546,16.9169985 -0.0394747279,15.6730252 1.28085104,14.9027486 L25.6746747,0.679900248 C26.9924034,-0.0882987335 29.1406597,-0.0914151594 30.4692959,0.673147992 L46.2913901,9.77830563 Z" id="Path" fill="url(#radialGradient-379)"></path>
- <path d="M47.2377448,11.5255817 C47.234109,11.5380474 47.231512,11.5505132 47.2268373,11.5629789 C47.1899596,11.6699761 47.1343834,11.7754152 47.065822,11.8782573 C47.0533563,11.8969558 47.04141,11.9156544 47.0284249,11.9343529 C46.9541501,12.0366756 46.8653319,12.1358818 46.7598928,12.2314522 C46.6913315,12.2932613 46.6045909,12.349357 46.5225251,12.4075303 C46.4524055,12.4573931 46.392674,12.5108917 46.3126857,12.5576381 L21.9188621,26.7804865 C21.7152556,26.8989107 21.4872371,26.9934422 21.2509081,27.0755081 C21.167284,27.1045948 21.0815823,27.1295262 20.9948418,27.1539382 C20.8836893,27.1856218 20.7709785,27.2152279 20.6556708,27.2391205 C20.5201063,27.2671683 20.3829835,27.2926191 20.2432638,27.3102789 C20.2095025,27.3144341 20.17678,27.320667 20.1430187,27.3243028 C19.954475,27.3445596 19.7638536,27.3549476 19.5721934,27.3565059 C19.5420679,27.3565059 19.5119425,27.3570253 19.4812976,27.3570253 C19.2927539,27.3559864 19.1042101,27.3455984 18.917744,27.3263804 C18.8896961,27.323264 18.8616483,27.320667 18.8341199,27.3170311 C18.6486925,27.2952161 18.4663816,27.2640519 18.2882259,27.2240578 C18.2560229,27.2167861 18.2243392,27.2084756 18.1921361,27.2006846 C18.0295626,27.1606904 17.8721831,27.1129052 17.7194782,27.057329 C17.6924692,27.0474603 17.6639019,27.0401886 17.6374123,27.0298005 C17.4551014,26.959681 17.2805816,26.8791733 17.1195662,26.7861999 L1.29747198,17.6810423 C0.628998625,17.2966831 0.295021651,16.7907833 0.295541055,16.2848835 L0.288269395,21.2218215 C0.28774999,21.7277213 0.621726965,22.2336211 1.29020032,22.6179803 L17.1122946,31.7231379 C17.2655188,31.8114367 17.43017,31.8893473 17.6026122,31.9573893 C17.6114421,31.9610251 17.6213108,31.9631027 17.6301407,31.9667386 C17.6571497,31.9771266 17.6862363,31.9849177 17.7137648,31.9947864 C17.812971,32.0306253 17.9116578,32.0664642 18.0150193,32.0960702 C18.0700761,32.1116524 18.12773,32.1235987 18.1843451,32.1371032 C18.2170675,32.1448942 18.2487512,32.1532047 18.2819931,32.1609958 C18.3115991,32.167748 18.3396469,32.1760585 18.3697724,32.1822913 C18.4804055,32.2051451 18.5925969,32.2243631 18.7063464,32.2404646 C18.7463405,32.2461781 18.7868541,32.2492945 18.8273676,32.2539691 C18.8559348,32.257605 18.8839827,32.260202 18.9125499,32.2633184 C18.9541023,32.2674736 18.9946158,32.2737065 19.0366875,32.2768229 C19.1478401,32.2856528 19.2589926,32.2918857 19.3706645,32.2944827 C19.4054646,32.2950021 19.4407841,32.2934439 19.4755842,32.2939633 C19.506229,32.2939633 19.5358351,32.2934439 19.5664799,32.2934439 C19.6168622,32.2929245 19.6677638,32.2944827 19.718146,32.2924051 C19.8443612,32.2877304 19.9695377,32.2794199 20.0941947,32.2669542 C20.108738,32.265396 20.1222426,32.2622796 20.1367859,32.2612408 C20.1705472,32.257605 20.203789,32.2513721 20.2375503,32.2472169 C20.3341595,32.2347512 20.4318075,32.2238437 20.5268585,32.2067033 C20.5689303,32.1989123 20.6073662,32.1848884 20.6489185,32.1760585 C20.7652651,32.1521659 20.8774564,32.1225598 20.9891284,32.0908762 C21.0483405,32.0742552 21.1111884,32.0643866 21.1688423,32.045688 C21.1958513,32.0368581 21.2176663,32.0217954 21.2446753,32.0124461 C21.4815236,31.9303802 21.7090227,31.8363681 21.9126292,31.7174245 L46.3064529,17.4945761 C46.3204768,17.4862657 46.3339813,17.4784746 46.3474858,17.4701641 C46.4118919,17.4312088 46.4575995,17.38654 46.5157728,17.3455071 C46.5978387,17.2873338 46.6850986,17.2312381 46.75366,17.1689096 C46.7598928,17.1631962 46.7697615,17.1580021 46.7759944,17.1522887 C46.8549438,17.0790527 46.9250634,17.0037391 46.9858337,16.9258284 C46.9993382,16.9081687 47.0092069,16.8899895 47.0216726,16.8718104 C47.0351771,16.8531118 47.0471234,16.8344132 47.0595891,16.8157147 C47.0798459,16.7845504 47.1037385,16.754425 47.1219176,16.7232607 C47.1577565,16.6598934 47.187882,16.5954873 47.2117746,16.5305617 C47.2154104,16.520693 47.2169686,16.510305 47.2200851,16.5004363 C47.2242403,16.4879706 47.2268373,16.4755049 47.2309926,16.4630392 C47.2439777,16.4220062 47.2580016,16.3804539 47.266312,16.3389015 C47.2792972,16.273976 47.2865688,16.2090505 47.288127,16.1441249 C47.2886464,16.1342562 47.2886464,16.1243875 47.2886464,16.1145189 L47.2959181,11.1775809 C47.2953987,11.2939274 47.2741031,11.410274 47.2377448,11.5255817 Z" id="Path" fill="url(#linearGradient-380)"></path>
- </g>
- <path d="M124.617041,33.1696789 C126.095266,34.0204632 126.102538,35.4031175 124.636259,36.258057 L97.532184,52.0609333 C96.0659056,52.9158728 93.6818398,52.9195086 92.2030957,52.0687243 L74.6238567,41.9522865 C73.145632,41.1015022 73.1331663,39.7188479 74.5994447,38.8639084 L101.70352,23.0610322 C103.169798,22.2060927 105.559058,22.2029762 107.037802,23.0532411 L124.617041,33.1696789 Z" id="Path" fill="url(#linearGradient-381)"></path>
- <path d="M125.666758,35.1091347 C125.662602,35.1231586 125.660005,35.1366631 125.654811,35.150687 C125.613778,35.27015 125.55145,35.3875354 125.475617,35.5023237 C125.462112,35.5230999 125.448608,35.5438761 125.434064,35.5641328 C125.351479,35.6778824 125.252273,35.7885155 125.134888,35.894474 C125.058535,35.9635548 124.961406,36.0258833 124.870511,36.0908088 C124.792081,36.1463851 124.725597,36.2055972 124.636779,36.2575376 L97.5332228,52.0604139 C97.3696105,52.1559843 97.1909354,52.2364919 97.0070662,52.3107668 C96.9592811,52.3299847 96.910457,52.3481639 96.8611136,52.366343 C96.7468447,52.4078954 96.6263429,52.4411372 96.5068799,52.4748985 C96.3832617,52.5096986 96.2586046,52.5424211 96.1303118,52.5694301 C95.9791651,52.6005944 95.8274991,52.6291616 95.6716778,52.648899 C95.6348,52.6535736 95.5984417,52.6603259 95.5610446,52.6644811 C95.3517247,52.6873349 95.1398077,52.6987618 94.9273714,52.7008394 C94.8936101,52.7013588 94.8598488,52.7013588 94.8260875,52.7013588 C94.6167676,52.70032 94.4079671,52.6888931 94.2007247,52.6675975 C94.1695605,52.6644811 94.1383962,52.6608453 94.107232,52.6572094 C93.9020673,52.6327974 93.6994996,52.5985167 93.5021259,52.5543674 C93.4657676,52.5460569 93.4299287,52.5367076 93.3940898,52.5278778 C93.2138565,52.4837284 93.0393367,52.4302297 92.8705303,52.3694594 C92.8404048,52.3585519 92.8087212,52.3502415 92.7791151,52.3388146 C92.5765474,52.2609039 92.383329,52.1715664 92.2041346,52.0682049 L74.6248955,41.9517671 C73.8805891,41.5232585 73.5076568,40.9602243 73.5086956,40.39719 L73.4853225,56.8529575 C73.4842836,57.4159918 73.8572159,57.979026 74.6015223,58.4075346 L92.1807614,68.5239724 C92.351126,68.6221399 92.5334369,68.7088804 92.7256165,68.784194 C92.7354852,68.7883492 92.7463927,68.7904269 92.7562613,68.7945821 C92.7858674,68.806009 92.817551,68.8143194 92.8476765,68.8252269 C92.9577902,68.8652211 93.0684233,68.9052152 93.1837311,68.9379377 C93.2450208,68.955078 93.3089075,68.9685825 93.3717555,68.9836453 C93.4075943,68.9924751 93.4429138,69.0018244 93.4792721,69.0101349 C93.5119946,69.0174065 93.5436783,69.0272752 93.5769202,69.0340275 C93.700019,69.0594783 93.824676,69.0807739 93.9503719,69.0984336 C93.9945212,69.1046665 94.0402288,69.1077829 94.0848976,69.1134963 C94.1165812,69.1171322 94.1472261,69.120768 94.1789098,69.1238844 C94.2251367,69.1285591 94.2708443,69.1353113 94.3170713,69.1389471 C94.4401701,69.1488158 94.5637884,69.1555681 94.687926,69.1581651 C94.7268813,69.1592039 94.7653172,69.1571263 94.8042726,69.1576457 C94.8380338,69.1576457 94.8712757,69.1576457 94.9045176,69.1571263 C94.9606132,69.1566069 95.0172283,69.1581651 95.073324,69.1560875 C95.2130437,69.1508934 95.3522441,69.1415442 95.4909251,69.1275203 C95.5070266,69.125962 95.5226087,69.1223262 95.5387103,69.120768 C95.5761074,69.1166128 95.6119463,69.1098605 95.6493434,69.1051859 C95.7568601,69.0916814 95.8654156,69.0792156 95.971374,69.0599977 C96.0181204,69.0516872 96.061231,69.0355857 96.107458,69.025717 C96.2362702,68.9992274 96.3604079,68.9659855 96.4850649,68.9311854 C96.5505099,68.9124869 96.6206294,68.9020988 96.6845162,68.8813226 C96.7374954,68.8641823 96.7863194,68.8418479 96.8382598,68.8226299 C96.8876033,68.8044508 96.9364273,68.7862716 96.9847319,68.7670537 C97.168601,68.6927788 97.3467567,68.6122712 97.510369,68.5167008 L124.614444,52.7138245 C124.630027,52.7049946 124.645609,52.6956453 124.660671,52.6868155 C124.732349,52.6437049 124.783251,52.5938421 124.847657,52.5481345 C124.939072,52.483209 125.03672,52.4203611 125.113073,52.3507609 C125.120344,52.3440086 125.131252,52.3388146 125.138004,52.3320623 C125.226303,52.2505159 125.304213,52.1663724 125.371736,52.0801512 C125.386799,52.0604139 125.397706,52.0401571 125.41173,52.0204197 C125.426793,51.9996436 125.439778,51.9788674 125.453802,51.9580912 C125.476656,51.9232911 125.503665,51.8895299 125.523402,51.8542104 C125.563396,51.7835714 125.596638,51.7118936 125.623647,51.6396964 C125.627802,51.6287889 125.62936,51.6178814 125.632996,51.6064545 C125.637671,51.59295 125.640268,51.5794455 125.644423,51.5654216 C125.658966,51.5191946 125.674549,51.473487 125.683898,51.4267406 C125.698441,51.3550628 125.706232,51.2828656 125.70831,51.210149 C125.708829,51.1992415 125.708829,51.188334 125.708829,51.1769071 L125.732202,34.7211396 C125.731164,34.8515101 125.706752,34.9808418 125.666758,35.1091347 Z" id="Path" fill="url(#linearGradient-382)"></path>
- <g id="Group" transform="translate(73.236008, 34.280685)">
- <g id="Clipped">
- <mask id="mask-384" fill="white">
- <use xlink:href="#path-383"></use>
- </mask>
- <g id="SVGID_554_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-384)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.524757 46.6258865 2.56066327 44.3446628 26.7114057 1.79454191 30.6754994 4.07576566"></polygon>
- <polygon points="1.99399316 44.0184769 0.295021651 43.0409579 24.4457641 0.490837077 26.1447356 1.4688754"></polygon>
- <polygon points="8.79039862 47.9295914 8.22424792 47.6034054 32.3744709 5.05380398 32.941141 5.37947049"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-386" fill="white">
- <use xlink:href="#path-385"></use>
- </mask>
- <g id="SVGID_554_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-386)" fill="#FEFEFE">
- <g transform="translate(28.567237, -16.101534)" id="Path">
- <polygon points="6.72628588 65.847482 2.768425 68.1401326 15.6979566 4.11056575 19.6558175 1.8179151"></polygon>
- <polygon points="2.2027937 68.4673574 0.506419207 69.4500703 13.4359508 5.42102283 15.1323253 4.43830987"></polygon>
- <polygon points="8.98777226 64.5370249 8.42266037 64.864769 21.352192 0.835721542 21.9173039 0.50797742"></polygon>
- </g>
- </g>
- </g>
- </g>
- <g id="Group" transform="translate(75.833030, 18.179151)">
- <path d="M46.2597065,9.9065985 C47.5909397,10.6727199 47.5997696,11.9166932 46.2820409,12.6854116 L21.8882172,26.9082599 C20.5678915,27.6780171 18.4196352,27.6811336 17.088402,26.9150122 L1.26630772,17.8098545 C-0.0623285178,17.0452914 -0.0711583911,15.8013181 1.24916738,15.0310415 L25.642991,0.808193114 C26.9607198,0.0399941322 29.108976,0.0368777063 30.4376122,0.801440858 L46.2597065,9.9065985 Z" id="Path" fill="url(#linearGradient-387)"></path>
- <path d="M47.2065806,11.6538746 C47.2029447,11.6663403 47.2003477,11.678806 47.1961925,11.6912717 C47.1593148,11.798269 47.1037385,11.9037081 47.0351771,12.0065501 C47.0227114,12.0252487 47.0107651,12.0444667 46.9972606,12.0626458 C46.9235052,12.1649685 46.8341677,12.2641747 46.729248,12.3592257 C46.6606866,12.4210348 46.5734267,12.4776499 46.4913608,12.5358231 C46.4212412,12.585686 46.3615097,12.6386652 46.2820409,12.6854116 L21.8882172,26.9082599 C21.6846107,27.0266841 21.4565922,27.1206963 21.2202633,27.2032816 C21.1371586,27.2323682 21.0514569,27.2572996 20.9647164,27.2817116 C20.8530444,27.3133953 20.7403337,27.3430013 20.6245065,27.3668939 C20.488942,27.3949418 20.3523387,27.4203926 20.2126189,27.4380523 C20.1788576,27.4422076 20.1456158,27.4484404 20.1118545,27.4520762 C19.9233107,27.472333 19.7326893,27.4827211 19.5410291,27.4847987 C19.5109037,27.4847987 19.4802588,27.4853181 19.4501334,27.4853181 C19.2615896,27.4842793 19.0735652,27.4738912 18.8876185,27.4546733 C18.8590513,27.4515568 18.8310034,27.4484404 18.8024362,27.445324 C18.6175283,27.423509 18.4352173,27.3923448 18.2575811,27.35287 C18.2248586,27.3455984 18.1926555,27.3372879 18.1604525,27.3289774 C17.9983983,27.2895027 17.8415382,27.2411981 17.6898722,27.1866606 C17.6623437,27.176792 17.6332571,27.1690009 17.6062481,27.1586128 C17.4239371,27.0884932 17.2499367,27.0079856 17.088402,26.9150122 L1.26630772,17.8098545 C0.597834366,17.4254954 0.263857392,16.9195956 0.264376796,16.4136958 L0.257105136,21.3506338 C0.256585731,21.8565336 0.590562706,22.3624334 1.25903606,22.7467926 L17.0811303,31.8519502 C17.2343546,31.9402489 17.3990057,32.0181596 17.571448,32.0862015 C17.5802778,32.0898374 17.5901465,32.091915 17.5989764,32.0955508 C17.6259854,32.1059389 17.6550721,32.11373 17.6826005,32.1235987 C17.7818067,32.1594376 17.8804935,32.1957959 17.9843744,32.2248825 C18.0399507,32.2404646 18.0976045,32.2524109 18.1537002,32.2664348 C18.1859033,32.2742259 18.2181063,32.2825364 18.2508288,32.289808 C18.2804349,32.2965603 18.3090021,32.3048708 18.3386081,32.3111036 C18.4492413,32.3339574 18.5614326,32.3531754 18.6751821,32.3692769 C18.7151763,32.3749903 18.7562092,32.3781068 18.7962033,32.3827814 C18.8242512,32.3864172 18.852299,32.3890143 18.8808662,32.3921307 C18.9224186,32.3962859 18.9634515,32.4025188 19.0050039,32.4056352 C19.1161564,32.4144651 19.2273089,32.4206979 19.3389809,32.4227755 C19.3743003,32.4238143 19.4091004,32.4222561 19.4444199,32.4222561 C19.4745454,32.4222561 19.5041514,32.4222561 19.5347963,32.4217367 C19.5856979,32.4212173 19.6360801,32.4227755 19.6869817,32.4206979 C19.8126776,32.4160233 19.9383734,32.4077128 20.0630305,32.3952471 C20.0775738,32.3936889 20.0910783,32.3905725 20.1056216,32.3895337 C20.1393829,32.3858978 20.1726248,32.379665 20.2063861,32.3755097 C20.3035147,32.363044 20.4006433,32.3521366 20.4956943,32.3349962 C20.537766,32.3272051 20.5767213,32.3131812 20.6182737,32.3043514 C20.7341008,32.2804588 20.8457728,32.2508527 20.9574447,32.219169 C21.0166568,32.2025481 21.0800241,32.1926794 21.137678,32.1739809 C21.164687,32.165151 21.1870214,32.1495689 21.213511,32.140739 C21.4503594,32.0586731 21.6778585,31.9646609 21.881465,31.8457173 L46.2752886,17.622869 C46.2893125,17.6145585 46.302817,17.6067675 46.3163216,17.598457 C46.3812471,17.5595017 46.4269547,17.5143135 46.485128,17.4732806 C46.5666744,17.4151073 46.6539344,17.3590116 46.7224957,17.2972025 C46.729248,17.291489 46.7385973,17.286295 46.7448301,17.2805816 C46.8237796,17.2073455 46.8938992,17.1315125 46.9546695,17.0541213 C46.9686934,17.0364615 46.9780427,17.017763 46.9910278,17.0001032 C47.0045323,16.9814047 47.0159592,16.9627061 47.0289443,16.9440076 C47.049201,16.9128433 47.073613,16.8827178 47.0912728,16.8515536 C47.1271117,16.7876669 47.1572371,16.7237801 47.1811297,16.6588546 C47.1847656,16.6489859 47.1863238,16.6385978 47.1894402,16.6287291 C47.1935954,16.6162634 47.1961925,16.6037977 47.2003477,16.591332 C47.2133328,16.5497797 47.2273567,16.5087467 47.2356672,16.4671944 C47.2486523,16.4022689 47.255924,16.3373433 47.2574822,16.2724178 C47.2574822,16.2625491 47.2580016,16.2526804 47.2580016,16.2428117 L47.2652732,11.3058737 C47.2642344,11.4222203 47.2424194,11.5385669 47.2065806,11.6538746 Z" id="Path" fill="url(#linearGradient-388)"></path>
- </g>
- <path d="M124.585877,10.9531982 C126.064102,11.8039825 126.071373,13.1866367 124.605095,14.0415762 L97.5010198,29.8439331 C96.0347414,30.6988726 93.6506756,30.7025084 92.1719315,29.8517242 L74.5926925,19.7352863 C73.1144678,18.8845021 73.1020021,17.5018478 74.5682804,16.6469083 L101.672356,0.844551416 C103.138634,-0.0103880863 105.527894,-0.0140239165 107.006638,0.836760351 L124.585877,10.9531982 Z" id="Path" fill="url(#linearGradient-389)"></path>
- <path d="M125.635074,12.8926539 C125.630919,12.9066778 125.628322,12.9201823 125.623128,12.9342062 C125.581575,13.0536692 125.519766,13.1710546 125.443933,13.285843 C125.430429,13.3066191 125.416924,13.3273953 125.402381,13.3476521 C125.319795,13.4614016 125.220589,13.5720347 125.103204,13.6779932 C125.026851,13.747074 124.929723,13.8094025 124.838827,13.8743281 C124.760397,13.9299043 124.693913,13.9891164 124.605095,14.0410568 L97.5015392,29.8434137 C97.3379268,29.9389841 97.1592517,30.0200112 96.9753826,30.0937666 C96.9275974,30.1129846 96.8787734,30.1311637 96.82943,30.1493429 C96.715161,30.1908952 96.5946592,30.2246565 96.4751962,30.2584178 C96.351578,30.2932178 96.226921,30.3259403 96.0986281,30.3524299 C95.9474814,30.3835942 95.7958154,30.4121614 95.6399941,30.4318988 C95.6031164,30.4365734 95.5667581,30.4433257 95.529361,30.4474809 C95.320041,30.4703347 95.1081241,30.4817616 94.8956877,30.4838392 C94.8619264,30.4838392 94.8281651,30.4843586 94.7944039,30.4843586 C94.5850839,30.4833198 94.3762834,30.4718929 94.1690411,30.4505974 C94.1378768,30.4474809 94.1067126,30.4438451 94.0755483,30.4402093 C93.8703836,30.4157973 93.6678159,30.3815166 93.4704423,30.3373672 C93.434084,30.3290567 93.3982451,30.3197075 93.3624062,30.3108776 C93.1821729,30.2667282 93.007653,30.2132296 92.8388466,30.1524593 C92.8087212,30.1415518 92.7770375,30.1332413 92.7474315,30.1218144 C92.5448638,30.0439038 92.351126,29.9545662 92.1724509,29.8512048 L74.5932119,19.7347669 C73.8489055,19.3062584 73.4759732,18.7432241 73.477012,18.1801898 L73.4536388,34.6359573 C73.4526,35.1989916 73.8255323,35.7620259 74.5698387,36.1905344 L92.1490777,46.3069723 C92.3194423,46.4051397 92.5017532,46.4918802 92.6939328,46.5671938 C92.7038015,46.5708297 92.714709,46.5734267 92.7245777,46.5775819 C92.7541837,46.5890088 92.7858674,46.5973193 92.8159928,46.6082268 C92.9261065,46.6482209 93.0367397,46.688215 93.1520474,46.7214569 C93.2133371,46.7385973 93.2772239,46.7515824 93.3400718,46.7671645 C93.3759107,46.7759944 93.4112302,46.7853437 93.4475885,46.7936541 C93.480311,46.8009258 93.5119946,46.8107945 93.5452365,46.8175467 C93.6683353,46.8429975 93.7929923,46.8642931 93.9186882,46.8819529 C93.9628376,46.8881857 94.0085451,46.8913021 94.0532139,46.8970156 C94.0848976,46.9006514 94.1155424,46.9042872 94.1472261,46.9074037 C94.1934531,46.9120783 94.2391607,46.9188306 94.2853876,46.9229858 C94.4084865,46.9328545 94.5321047,46.9390873 94.6562423,46.9422038 C94.6951976,46.9432426 94.7336336,46.9411649 94.7725889,46.9416844 C94.8063502,46.9416844 94.839592,46.9416844 94.8728339,46.9411649 C94.9289296,46.9406455 94.9855447,46.9422038 95.0416403,46.9401261 C95.1813601,46.9349321 95.3205604,46.9255828 95.4592414,46.9115589 C95.4753429,46.9100007 95.4909251,46.9063649 95.5070266,46.9048066 C95.5444237,46.9006514 95.5802626,46.8938992 95.6176597,46.8892245 C95.7251764,46.87572 95.8337319,46.8632543 95.9396904,46.8440363 C95.9864368,46.8357259 96.0295473,46.8196243 96.0757743,46.8102751 C96.2045866,46.783266 96.3287242,46.7505436 96.4533812,46.7157435 C96.5188262,46.6970449 96.5889458,46.6866568 96.6528325,46.6658807 C96.7058117,46.6487403 96.7546358,46.6264059 96.8065762,46.607188 C96.8559196,46.5890088 96.9047436,46.5708297 96.9530482,46.5516117 C97.1369173,46.4773369 97.315073,46.3968292 97.4786854,46.3012588 L124.582761,30.4983826 C124.598343,30.4895527 124.613925,30.4802034 124.628988,30.4713735 C124.700666,30.428263 124.751567,30.3784002 124.815973,30.3326926 C124.907388,30.267767 125.005036,30.2049191 125.081389,30.1353189 C125.088661,30.1290861 125.099568,30.1233726 125.10632,30.1166204 C125.194619,30.0350739 125.27253,29.9509304 125.340052,29.8647093 C125.355115,29.8449719 125.366022,29.8247152 125.380046,29.8049778 C125.395109,29.7842016 125.408094,29.7634254 125.422118,29.7426493 C125.444972,29.7078492 125.471981,29.6740879 125.491718,29.6387684 C125.531712,29.5681294 125.564954,29.4964516 125.591963,29.4242544 C125.596119,29.4133469 125.597677,29.4024394 125.601313,29.391532 C125.605987,29.3780274 125.608584,29.3640035 125.612739,29.350499 C125.627283,29.304272 125.642865,29.2585645 125.652214,29.2118181 C125.666758,29.1401403 125.674549,29.0679431 125.676626,28.9952265 C125.677146,28.984319 125.677146,28.9734115 125.677146,28.9619846 L125.700519,12.5062171 C125.69948,12.63451 125.675068,12.764361 125.635074,12.8926539 Z" id="Path" fill="url(#linearGradient-390)"></path>
- <g id="Group" transform="translate(73.236008, 12.465704)">
- <g id="Clipped">
- <mask id="mask-392" fill="white">
- <use xlink:href="#path-391"></use>
- </mask>
- <g id="SVGID_560_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-392)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.49359274 46.224387 2.52897961 43.9426438 26.679722 1.39304237 30.6443352 3.67426612"></polygon>
- <polygon points="1.96282891 43.6169773 0.263857392 42.6394584 24.4145998 0.0893375421 26.1135713 1.06685646"></polygon>
- <polygon points="8.75923436 47.5280918 8.19256426 47.2019059 32.3433067 4.65230445 32.9094574 4.97797095"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-394" fill="white">
- <use xlink:href="#path-393"></use>
- </mask>
- <g id="SVGID_560_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-394)" fill="#FEFEFE">
- <g transform="translate(28.567237, -16.101534)" id="Path">
- <polygon points="6.69512162 65.4454631 2.73726074 67.7381137 15.6662729 3.70906621 19.6241338 1.41641557"></polygon>
- <polygon points="2.17162944 68.0658578 0.475254948 69.0485708 13.4047866 5.01900389 15.1006416 4.03629093"></polygon>
- <polygon points="8.956608 64.1355254 8.39149611 64.4632695 21.3205083 0.433702603 21.8861396 0.106477885"></polygon>
- </g>
- </g>
- </g>
- </g>
- <path d="M120.514267,11.7998272 C121.809142,12.5451724 121.817972,13.7626561 120.533485,14.5116371 L97.9461493,27.6811336 C96.6616624,28.4301146 94.5622301,28.4316728 93.2673552,27.6863276 L78.6191147,19.256915 C77.3216427,18.5100116 77.3128128,17.2956443 78.5972997,16.5466633 L101.184635,3.37716685 C102.469122,2.62818583 104.568554,2.62351119 105.866026,3.3704146 L120.514267,11.7998272 Z M97.7061845,27.5424526 L120.29352,14.3729562 C121.447636,13.7003276 121.439845,12.6080203 120.27638,11.9379888 L105.628139,3.50857615 C104.464673,2.83906398 102.578716,2.84166101 101.4246,3.51428959 L78.8372645,16.683786 C77.6831481,17.3564146 77.6909392,18.4487219 78.8544049,19.1187534 L93.5026453,27.548166 C94.666111,28.2181976 96.5520681,28.2156006 97.7061845,27.5424526 L97.7061845,27.5424526 Z" id="Shape" fill="#00F5EE" fill-rule="nonzero"></path>
- <g id="Group" transform="translate(112.191332, 21.295577)">
- <g id="Path">
- <path d="M11.7629495,0.705870464 L0.260740966,7.36878901 C0.157898912,7.42852051 0.0747942213,7.36515318 0.0747942213,7.22854985 L0.0747942213,7.16570193 C0.0747942213,7.02857919 0.157379507,6.86964147 0.260221562,6.80990997 L11.7624301,0.146991421 C11.8652722,0.0877793292 11.9483769,0.150627251 11.9483769,0.287230586 L11.9483769,0.350078508 C11.9488963,0.487201247 11.8657916,0.646138968 11.7629495,0.705870464 Z" fill="url(#radialGradient-395)"></path>
- <path d="M11.7660659,2.66610235 L0.263857392,9.3290209 C0.161015338,9.38875239 0.0779106472,9.32538507 0.0779106472,9.18878173 L0.0779106472,9.12541441 C0.0779106472,8.98881107 0.161015338,8.82935395 0.263337988,8.77014185 L11.7655465,2.1072233 C11.8683886,2.04801121 11.9514933,2.11085914 11.9514933,2.24746247 L11.9514933,2.31031039 C11.9514933,2.44743313 11.8683886,2.60689026 11.7660659,2.66610235 Z" fill="url(#radialGradient-396)"></path>
- <path d="M11.768663,4.62633423 L0.266454413,11.2892528 C0.163612359,11.3484649 0.0805076688,11.285617 0.0805076688,11.1490136 L0.0805076688,11.0861657 C0.0805076688,10.9495624 0.163092955,10.7901052 0.265935009,10.7308931 L11.7681436,4.06797459 C11.8709856,4.0082431 11.9540903,4.07161042 11.9540903,4.20821376 L11.9540903,4.27106168 C11.9546097,4.40766501 11.871505,4.56660274 11.768663,4.62633423 Z" fill="url(#radialGradient-397)"></path>
- </g>
- <g transform="translate(0.000000, 21.295577)" id="Path">
- <path d="M11.7935944,0.973363686 L0.291385821,7.63628224 C0.188543766,7.69601373 0.105439076,7.63264641 0.105439076,7.49604307 L0.105439076,7.43267574 C0.105439076,7.29607241 0.188543766,7.13661528 0.290866416,7.07740319 L11.793075,0.414484643 C11.895917,0.355272551 11.9790217,0.418120473 11.9790217,0.554723808 L11.9790217,0.61757173 C11.9795411,0.754694469 11.8964364,0.914151594 11.7935944,0.973363686 Z" fill="url(#radialGradient-398)"></path>
- <path d="M11.7967108,2.93359557 L0.294502246,9.59651412 C0.191660192,9.65572621 0.108555502,9.59287829 0.108555502,9.45627495 L0.108555502,9.39342703 C0.108555502,9.2568237 0.191140788,9.09736657 0.293982842,9.03815448 L11.7961914,2.37523593 C11.8990334,2.31550444 11.9821381,2.37887176 11.9821381,2.5154751 L11.9821381,2.57832302 C11.9821381,2.71492635 11.8990334,2.87438348 11.7967108,2.93359557 Z" fill="url(#radialGradient-399)"></path>
- <path d="M11.7993078,4.89382745 L0.297099268,11.5562266 C0.194257214,11.6159581 0.111152523,11.5531102 0.111152523,11.4159874 L0.111152523,11.3531395 C0.111152523,11.2160168 0.193737809,11.0570791 0.296579864,10.9973476 L11.7987884,4.33494841 C11.9016305,4.27521691 11.9847352,4.33806484 11.9847352,4.47518758 L11.9847352,4.5380355 C11.9847352,4.67515824 11.9016305,4.83461536 11.7993078,4.89382745 Z" fill="url(#radialGradient-400)"></path>
- </g>
- <g transform="translate(0.000000, 43.110558)" id="Path">
- <path d="M11.8242392,0.721452593 L0.322030675,7.38437114 C0.219188621,7.44358323 0.13608393,7.38073531 0.13608393,7.24413198 L0.13608393,7.18128406 C0.13608393,7.04468072 0.218669217,6.8852236 0.321511271,6.8260115 L11.8237198,0.163092955 C11.9265619,0.103361459 12.0096666,0.166728785 12.0096666,0.30333212 L12.0096666,0.366180042 C12.0096666,0.503302781 11.9265619,0.662240501 11.8242392,0.721452593 Z" fill="url(#radialGradient-401)"></path>
- <path d="M11.8268362,2.68220388 L0.324627697,9.34460303 C0.221785642,9.40433452 0.138680952,9.3414866 0.138680952,9.20436386 L0.138680952,9.14151594 C0.138680952,9.0043932 0.221785642,8.84545548 0.324108292,8.78572398 L11.8263168,2.12332484 C11.9291589,2.06359334 12.0122636,2.12644126 12.0122636,2.263564 L12.0122636,2.32641193 C12.012783,2.46353466 11.9296783,2.62247239 11.8268362,2.68220388 Z" fill="url(#radialGradient-402)"></path>
- <path d="M11.8299527,4.64243577 L0.327744123,11.3048349 C0.224902068,11.3645664 0.141797378,11.3017185 0.141797378,11.1645957 L0.141797378,11.1017478 C0.141797378,10.9646251 0.224382664,10.8056874 0.327224718,10.7459559 L11.8294333,4.08355672 C11.9322753,4.02382523 12.01538,4.08667315 12.01538,4.22379589 L12.01538,4.28664381 C12.01538,4.42376655 11.9322753,4.58270427 11.8299527,4.64243577 Z" fill="url(#radialGradient-403)"></path>
- </g>
- <g transform="translate(0.000000, 64.406135)" id="Path">
- <path d="M11.8543647,0.98946522 L0.352156125,7.65238377 C0.249314071,7.71159586 0.166209381,7.64874794 0.166209381,7.5121446 L0.166209381,7.44929668 C0.166209381,7.31217394 0.248794667,7.15323622 0.351636721,7.09350473 L11.8538453,0.431105581 C11.9566873,0.371374085 12.039792,0.434222007 12.039792,0.571344746 L12.039792,0.634192668 C12.0403114,0.770796003 11.9572067,0.929733723 11.8543647,0.98946522 Z" fill="url(#radialGradient-404)"></path>
- <path d="M11.8574811,2.9496971 L0.355272551,9.61209625 C0.252430497,9.67182775 0.169325807,9.60897982 0.169325807,9.47185708 L0.169325807,9.40900916 C0.169325807,9.27188642 0.251911093,9.1129487 0.354753147,9.05321721 L11.8569617,2.39081806 C11.9598038,2.33108656 12.0429084,2.39393449 12.0429084,2.53105723 L12.0429084,2.59390515 C12.0429084,2.73102789 11.9598038,2.88996561 11.8574811,2.9496971 Z" fill="url(#radialGradient-405)"></path>
- <path d="M11.8600781,4.90992899 L0.357869573,11.5728475 C0.255027519,11.632579 0.171922828,11.5692117 0.171922828,11.4326084 L0.171922828,11.3697604 C0.171922828,11.2326377 0.254508114,11.0737 0.357350169,11.0139685 L11.8595587,4.35104994 C11.9624008,4.29183785 12.0455055,4.35468577 12.0455055,4.49128911 L12.0455055,4.55413703 C12.0460249,4.69125977 11.9629202,4.8507169 11.8600781,4.90992899 Z" fill="url(#radialGradient-406)"></path>
- </g>
- </g>
- <path d="M97.9383582,35.457655 C97.9373194,34.8296951 98.3803713,34.0635738 98.927304,33.7467371 C99.4742367,33.4299005 99.9183274,33.682331 99.9193662,34.3102908 C99.9204051,34.9382506 99.4773532,35.704372 98.9304204,36.0212086 C98.3829683,36.3385647 97.9388776,36.0861342 97.9383582,35.457655 Z" id="Path" fill="url(#linearGradient-407)"></path>
- <path d="M100.79716,33.7368685 C100.796121,33.1089086 101.239173,32.3427873 101.786105,32.0259506 C102.333038,31.709114 102.777129,31.9615445 102.778168,32.5895043 C102.779206,33.2174641 102.336155,33.9835855 101.789222,34.3004221 C101.24177,34.6177782 100.797679,34.3653477 100.79716,33.7368685 Z" id="Path" fill="url(#linearGradient-408)"></path>
- <path d="M103.655961,32.016082 C103.654922,31.3881221 104.097974,30.6220008 104.644907,30.3051641 C105.191839,29.9883275 105.63593,30.240758 105.636969,30.8687178 C105.638008,31.4966776 105.194956,32.262799 104.648023,32.5796356 C104.10109,32.8964723 103.65648,32.6445612 103.655961,32.016082 Z" id="Path" fill="url(#linearGradient-409)"></path>
- <path d="M97.9684836,57.0212445 C97.9674448,56.3932847 98.4104967,55.6271633 98.9574295,55.3103267 C99.5043622,54.99349 99.9484529,55.2459205 99.9494917,55.8738804 C99.9505305,56.5018402 99.5074786,57.2679615 98.9605459,57.5847982 C98.4136131,57.9016348 97.9695224,57.6492043 97.9684836,57.0212445 Z" id="Path" fill="url(#linearGradient-410)"></path>
- <path d="M100.827285,55.300458 C100.826246,54.6724982 101.269298,53.9063768 101.816231,53.5895402 C102.363164,53.2727035 102.807254,53.525134 102.808293,54.1530939 C102.809332,54.7810537 102.36628,55.547175 101.819347,55.8640117 C101.272414,56.1808483 100.828324,55.9284178 100.827285,55.300458 Z" id="Path" fill="url(#linearGradient-411)"></path>
- <path d="M103.686086,53.5796715 C103.685048,52.9517117 104.128099,52.1855903 104.675032,51.8687537 C105.221965,51.551917 105.666056,51.8043475 105.667094,52.4323074 C105.668133,53.0602672 105.225081,53.8263885 104.678149,54.1432252 C104.131216,54.4600618 103.687125,54.2076313 103.686086,53.5796715 Z" id="Path" fill="url(#linearGradient-412)"></path>
- <path d="M97.9991285,78.5843146 C97.9980897,77.9563548 98.4411416,77.1902334 98.9880743,76.8733968 C99.535007,76.5565602 99.9790977,76.8089907 99.9801365,77.4369505 C99.9811754,78.0649103 99.5381235,78.8310317 98.9911907,79.1478683 C98.444258,79.4647049 98.0001673,79.2122744 97.9991285,78.5843146 Z" id="Path" fill="url(#linearGradient-413)"></path>
- <path d="M100.85793,76.8635281 C100.856891,76.2355683 101.299943,75.4694469 101.846876,75.1526103 C102.393808,74.8357737 102.837899,75.0882042 102.838938,75.716164 C102.839977,76.3441238 102.396925,77.1102452 101.849992,77.4270818 C101.303059,77.7439184 100.858969,77.4914879 100.85793,76.8635281 Z" id="Path" fill="url(#linearGradient-414)"></path>
- <path d="M103.716731,75.1427416 C103.715692,74.5147818 104.158744,73.7486604 104.705677,73.4318238 C105.25261,73.1149872 105.6967,73.3674177 105.697739,73.9953775 C105.698778,74.6233373 105.255726,75.3894587 104.708793,75.7062953 C104.161861,76.0231319 103.71777,75.7707014 103.716731,75.1427416 Z" id="Path" fill="url(#linearGradient-415)"></path>
- <path d="M98.0297733,100.147385 C98.0287345,99.5194249 98.4717864,98.7533036 99.0187192,98.4364669 C99.5656519,98.1196303 100.009743,98.3720608 100.010781,99.0000206 C100.01182,99.6279804 99.5687683,100.394102 99.0218356,100.710938 C98.4743834,101.028294 98.0302927,100.775864 98.0297733,100.147385 Z" id="Path" fill="url(#linearGradient-416)"></path>
- <path d="M100.888575,98.4265982 C100.887536,97.7986384 101.330588,97.0325171 101.877521,96.7156804 C102.424453,96.3988438 102.868544,96.6512743 102.869583,97.2792341 C102.870622,97.9071939 102.42757,98.6733153 101.880637,98.9901519 C101.333185,99.307508 100.889094,99.0550775 100.888575,98.4265982 Z" id="Path" fill="url(#linearGradient-417)"></path>
- <path d="M103.747376,96.7058117 C103.746337,96.0778519 104.189389,95.3117306 104.736322,94.9948939 C105.283255,94.6780573 105.727345,94.9304878 105.728384,95.5584476 C105.729423,96.1864074 105.286371,96.9525288 104.739438,97.2693654 C104.191986,97.5862021 103.748415,97.334291 103.747376,96.7058117 Z" id="Path" fill="url(#linearGradient-418)"></path>
- <path d="M76.9990926,121.300125 C78.3303259,122.066247 78.3391558,123.31022 77.021427,124.078939 L52.6276034,138.301787 C51.3072776,139.071544 49.1590214,139.074661 47.8277881,138.308539 L32.0056939,129.203382 C30.6770576,128.438818 30.6682278,127.194845 31.9885535,126.424568 L56.3823772,112.20172 C57.7001059,111.433521 59.8483622,111.430405 61.1769984,112.194968 L76.9990926,121.300125 Z" id="Path" fill="#ABABAB"></path>
- <path d="M77.9459667,123.047402 C77.9423309,123.059867 77.9397339,123.072333 77.9350592,123.084799 C77.8981815,123.191796 77.8426052,123.297235 77.7745633,123.400077 C77.7620976,123.418776 77.7501513,123.437994 77.7366468,123.456173 C77.6628914,123.558495 77.5735538,123.657702 77.4686341,123.752753 C77.4000728,123.814562 77.3128128,123.871177 77.230747,123.92935 C77.1606274,123.979213 77.1008959,124.032192 77.021427,124.078939 L52.6276034,138.301787 C52.4239969,138.420211 52.1959784,138.514223 51.9596494,138.596809 C51.8760253,138.625895 51.7903236,138.650827 51.7035831,138.675239 C51.5924306,138.706922 51.4797198,138.736528 51.3644121,138.760421 C51.2288476,138.788469 51.0917248,138.814439 50.9520051,138.832099 C50.9182438,138.836254 50.8855213,138.842487 50.85176,138.846123 C50.6632163,138.866379 50.4725949,138.876767 50.2809347,138.878326 C50.2508092,138.878845 50.2206838,138.878845 50.1900389,138.878845 C50.0014952,138.877806 49.8129514,138.867418 49.6264853,138.8482 C49.5984374,138.845084 49.5703896,138.842487 49.5428612,138.838851 C49.3574338,138.817036 49.1751229,138.785872 48.9964478,138.745878 C48.9642448,138.738606 48.9325611,138.730295 48.900358,138.722504 C48.7377845,138.68251 48.580405,138.634725 48.4277001,138.579668 C48.4006911,138.5698 48.3721238,138.562528 48.3456342,138.55214 C48.1633233,138.48202 47.9888034,138.401513 47.8277881,138.308539 L32.0056939,129.203382 C31.3372205,128.819022 31.0032435,128.313123 31.003763,127.807223 L30.9964913,132.744161 C30.9959719,133.250061 31.3299489,133.75596 31.9984222,134.14032 L47.8205165,143.245477 C47.9737407,143.333776 48.1383919,143.411687 48.3108341,143.479729 C48.319664,143.483364 48.3295327,143.485442 48.3383626,143.489078 C48.3653716,143.499466 48.3944582,143.507257 48.4219866,143.517126 C48.5211929,143.552965 48.6198797,143.589323 48.7232411,143.618409 C48.778298,143.633992 48.8359519,143.645938 48.892567,143.659442 C48.9252894,143.667233 48.9569731,143.675544 48.990215,143.683335 C49.019821,143.690087 49.0478688,143.698398 49.0779943,143.704631 C49.1886274,143.727484 49.3008187,143.746702 49.4145683,143.762804 C49.4545624,143.768517 49.495076,143.771114 49.5355895,143.776308 C49.5641567,143.779944 49.5922046,143.782541 49.6207718,143.785658 C49.6623242,143.789813 49.7028377,143.796046 49.7449094,143.799162 C49.856062,143.807992 49.9672145,143.814225 50.0788864,143.816302 C50.1142059,143.817341 50.149006,143.815783 50.1843255,143.815783 C50.2144509,143.815783 50.244057,143.815783 50.2741824,143.815264 C50.3250841,143.814744 50.3754663,143.816302 50.4263679,143.814225 C50.5520637,143.80955 50.6777596,143.80124 50.8024166,143.788774 C50.8169599,143.787216 50.8309839,143.784099 50.8455272,143.782541 C50.8792885,143.778905 50.9114915,143.772673 50.9452528,143.768517 C51.0423814,143.756052 51.1400294,143.745144 51.2355998,143.727484 C51.2776716,143.719693 51.3161075,143.705669 51.3576598,143.69684 C51.4740064,143.672947 51.5861977,143.643341 51.6978697,143.611657 C51.7570818,143.595036 51.8199297,143.585168 51.8775836,143.566469 C51.9045926,143.557639 51.9264076,143.542576 51.9534166,143.533227 C52.190265,143.451161 52.417764,143.357149 52.6213705,143.238205 L77.0151942,129.015357 C77.0292181,129.007047 77.0427226,128.999256 77.0562271,128.990945 C77.1211527,128.95199 77.1668602,128.906802 77.2250335,128.865769 C77.30658,128.807595 77.3938399,128.7515 77.4624013,128.689691 C77.4691535,128.683977 77.4785028,128.678783 77.4847357,128.67307 C77.5636851,128.599834 77.6338047,128.524001 77.694575,128.446609 C77.7080795,128.42895 77.7179482,128.410771 77.7309333,128.392591 C77.7444378,128.373893 77.7563841,128.355194 77.7688498,128.336496 C77.7891066,128.305331 77.8135186,128.275206 77.8311784,128.244042 C77.8670173,128.180155 77.8971427,128.116268 77.9210353,128.051343 C77.9246711,128.041474 77.9262293,128.031086 77.9293458,128.021217 C77.933501,128.008752 77.936098,127.996286 77.9397339,127.98382 C77.952719,127.942268 77.9667429,127.901235 77.9750533,127.859683 C77.9880385,127.794757 77.9953101,127.729831 77.9968683,127.664906 C77.9973877,127.655037 77.9973877,127.645169 77.9973877,127.6353 L78.0046594,122.698362 C78.0036206,122.815747 77.9818056,122.932094 77.9459667,123.047402 Z" id="Path" fill="url(#linearGradient-419)"></path>
- <path d="M79.4922334,104.199777 C80.970458,105.050561 80.9777297,106.433216 79.5114513,107.288155 L52.407376,123.091032 C50.9410976,123.945971 48.5570318,123.949087 47.0782877,123.098303 L29.4990487,112.982385 C28.020824,112.1316 28.0083583,110.748946 29.4746366,109.894007 L56.578712,94.0916498 C58.0449904,93.2367103 60.4342502,93.2330745 61.9129943,94.0838588 L79.4922334,104.199777 Z" id="Path" fill="url(#linearGradient-420)"></path>
- <path d="M80.5419495,106.139233 C80.5377942,106.152737 80.5351972,106.166761 80.5300032,106.180785 C80.4889702,106.300248 80.4266417,106.417634 80.3508087,106.532422 C80.3373042,106.553198 80.3237997,106.573974 80.3092563,106.594231 C80.2266711,106.707981 80.1274648,106.818614 80.0100795,106.924572 C79.933727,106.993653 79.8365984,107.056501 79.7457027,107.120907 C79.6672726,107.176483 79.6007889,107.235695 79.5119707,107.287636 L52.4084148,123.089993 C52.2448024,123.185563 52.0661273,123.26659 51.8822582,123.340346 C51.834473,123.359564 51.785649,123.377743 51.7363056,123.395922 C51.6220366,123.437474 51.5015348,123.471235 51.3820718,123.504997 C51.2584536,123.539797 51.1337966,123.572519 51.0055037,123.599009 C50.8543571,123.630173 50.702691,123.65874 50.5468697,123.678478 C50.509992,123.683152 50.4736337,123.689905 50.4362366,123.69406 C50.2269166,123.716914 50.0149997,123.727821 49.8025633,123.730418 C49.768802,123.730418 49.7350408,123.730938 49.7012795,123.730938 C49.4919595,123.729899 49.283159,123.718472 49.0759167,123.697176 C49.0447524,123.69406 49.0135882,123.690424 48.9824239,123.686788 C48.7772592,123.662376 48.5746915,123.628096 48.3773179,123.583946 C48.3409596,123.575636 48.3051207,123.566286 48.2692818,123.557457 C48.0890485,123.513307 47.9145286,123.459809 47.7457222,123.399038 C47.7155968,123.388131 47.6839131,123.37982 47.6543071,123.368393 C47.4517394,123.290483 47.258521,123.201145 47.0793265,123.097784 L29.5000875,112.981865 C28.7557811,112.553357 28.3828488,111.989803 28.3838876,111.427288 L28.3605144,127.883056 C28.3594756,128.44609 28.7324079,129.009124 29.4767143,129.437633 L47.0559533,139.554071 C47.2263179,139.652238 47.4086288,139.738979 47.6008084,139.814292 C47.6106771,139.817928 47.6215846,139.820525 47.6314533,139.82468 C47.6610593,139.836107 47.692743,139.844418 47.7228684,139.855325 C47.8329822,139.895319 47.9436153,139.935833 48.058923,139.968555 C48.1202127,139.985696 48.1840995,139.9992 48.2469474,140.014263 C48.2827863,140.023093 48.3181058,140.032442 48.3544641,140.040753 C48.3871866,140.048024 48.4188702,140.057373 48.4521121,140.064645 C48.5752109,140.090096 48.699868,140.111392 48.8255638,140.129051 C48.8702326,140.135284 48.9154207,140.13892 48.9600895,140.144114 C48.9912538,140.14775 49.022418,140.151386 49.0541017,140.154502 C49.1003287,140.159177 49.1460363,140.165929 49.1922632,140.169565 C49.3153621,140.179433 49.4389803,140.185666 49.5631179,140.188783 C49.6020733,140.189822 49.6405092,140.187744 49.6794645,140.188263 C49.7132258,140.188263 49.7464676,140.188263 49.7797095,140.187744 C49.8358052,140.187225 49.8924203,140.188783 49.9485159,140.186705 C50.0882357,140.181511 50.227436,140.172162 50.366117,140.158138 C50.3822185,140.15658 50.3978007,140.152944 50.4139022,140.151386 C50.4512993,140.14723 50.4871382,140.140478 50.5245353,140.135804 C50.632052,140.122299 50.7406075,140.109833 50.846566,140.090615 C50.8933124,140.082305 50.9364229,140.066203 50.9826499,140.056854 C51.1114622,140.029845 51.2355998,139.997123 51.3602569,139.962322 C51.4257018,139.943624 51.4958214,139.933236 51.5597081,139.91246 C51.6126874,139.895319 51.6615114,139.872985 51.7134518,139.853767 C51.7627952,139.835588 51.8116192,139.817409 51.8599238,139.798191 C52.0437929,139.723916 52.2219486,139.643408 52.385561,139.547838 L79.4896363,123.745481 C79.5052185,123.736132 79.5202812,123.727302 79.5358633,123.717953 C79.6075411,123.674842 79.6584427,123.624979 79.7228489,123.579272 C79.814264,123.514346 79.911912,123.451498 79.9882645,123.381898 C79.9955361,123.375665 80.0064436,123.369952 80.0131959,123.363199 C80.1014946,123.281653 80.1794053,123.197509 80.2469278,123.111288 C80.2619905,123.091551 80.272898,123.071294 80.286922,123.051557 C80.3019847,123.030781 80.3149698,123.010004 80.3289937,122.989228 C80.3518475,122.954428 80.3788565,122.920667 80.3985939,122.885867 C80.438588,122.815228 80.4718299,122.74355 80.4988389,122.671353 C80.5029941,122.660445 80.5045524,122.649538 80.5081882,122.63863 C80.5128628,122.625126 80.5154599,122.611102 80.5196151,122.597597 C80.5341584,122.55137 80.5497405,122.505663 80.5590898,122.459436 C80.5736331,122.387758 80.5814242,122.315041 80.5835018,122.242844 C80.5835018,122.231937 80.5840212,122.221029 80.5840212,122.209602 L80.6073944,105.753835 C80.6058362,105.881608 80.5814242,106.01094 80.5419495,106.139233 Z" id="Path" fill="url(#linearGradient-421)"></path>
- <g id="Group" transform="translate(28.047833, 105.439076)">
- <g id="Clipped">
- <mask id="mask-423" fill="white">
- <use xlink:href="#path-422"></use>
- </mask>
- <g id="SVGID_589_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-423)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.58812433 46.4975937 2.6240306 44.2158505 26.7742536 1.66624904 30.7388668 3.94747279"></polygon>
- <polygon points="2.05736049 43.890184 0.358388977 42.9121457 24.5091314 0.362544212 26.2081029 1.34006313"></polygon>
- <polygon points="8.85376595 47.8012985 8.28709584 47.4751126 32.4378383 4.92499171 33.0045084 5.25117762"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-425" fill="white">
- <use xlink:href="#path-424"></use>
- </mask>
- <g id="SVGID_589_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-425)" fill="#FEFEFE">
- <g transform="translate(29.086642, -16.101534)" id="Path">
- <polygon points="6.27024889 65.7186697 2.31238801 68.0113204 15.2414002 3.98227288 19.1992611 1.68962224"></polygon>
- <polygon points="1.74675671 68.3390645 0.0503822185 69.3217775 12.9799138 5.29221056 14.6762883 4.310017"></polygon>
- <polygon points="8.53173527 64.4087321 7.96662338 64.7359568 20.8956356 0.706909272 21.4612669 0.379684554"></polygon>
- </g>
- </g>
- </g>
- </g>
- <path d="M76.9679284,99.0940328 C78.2991616,99.8601542 78.3079915,101.104127 76.9902628,101.872846 L52.5964391,116.095694 C51.2761134,116.865451 49.1278571,116.868568 47.7966239,116.102446 L31.9745296,106.997289 C30.6458934,106.232726 30.6370635,104.988752 31.9573893,104.218476 L56.3512129,89.9956274 C57.6689417,89.2274284 59.8171979,89.224312 61.1458341,89.9888751 L76.9679284,99.0940328 Z" id="Path" fill="url(#radialGradient-426)"></path>
- <path d="M77.9148024,100.841309 C77.9111666,100.853775 77.9085696,100.86624 77.903895,100.878706 C77.8670173,100.985703 77.811441,101.091142 77.743399,101.193984 C77.7309333,101.212683 77.718987,101.231901 77.7054825,101.25008 C77.6317271,101.352403 77.5423896,101.451609 77.4374699,101.54666 C77.3689085,101.608469 77.282168,101.665084 77.2001021,101.722738 C77.1299825,101.772601 77.070251,101.82558 76.9902628,101.872326 L52.5964391,116.095175 C52.3928326,116.213599 52.1648141,116.308131 51.9284852,116.390196 C51.8453805,116.419283 51.7596788,116.444215 51.6729383,116.468627 C51.5612663,116.50031 51.4485556,116.529916 51.3327284,116.553809 C51.1971639,116.581857 51.0600412,116.607827 50.919802,116.625487 C50.8865601,116.629642 50.8538376,116.635875 50.8205958,116.639511 C50.632052,116.659767 50.4409112,116.670155 50.249251,116.671714 C50.2191256,116.672233 50.1890001,116.672233 50.1593941,116.672233 C49.9708503,116.671194 49.7823065,116.660806 49.5958404,116.641588 C49.5677926,116.638991 49.5392253,116.635875 49.5111775,116.632239 C49.3262696,116.610424 49.1439586,116.57926 48.965803,116.539785 C48.9330805,116.532513 48.9008774,116.523683 48.8686744,116.515892 C48.7066202,116.476418 48.5497601,116.428113 48.398094,116.373056 C48.3705656,116.363187 48.341479,116.355396 48.31447,116.345008 C48.132159,116.274889 47.9581586,116.194381 47.7966239,116.101408 L31.9745296,106.99625 C31.3060563,106.611891 30.9720793,106.105991 30.9725987,105.600091 L30.965327,110.537029 C30.9648076,111.042929 31.2987846,111.548829 31.967258,111.933188 L47.7893522,121.038346 C47.9425765,121.126644 48.1072276,121.204555 48.2796699,121.272597 C48.2884997,121.276233 48.2983684,121.27831 48.3071983,121.281946 C48.3336879,121.292334 48.3622552,121.299606 48.3892642,121.309475 C48.4884704,121.345314 48.5876766,121.381672 48.6920769,121.411278 C48.7476532,121.42686 48.805307,121.438806 48.8619221,121.45283 C48.8941252,121.460621 48.9258088,121.468932 48.9580119,121.476204 C48.9876179,121.482956 49.0161852,121.491786 49.0463106,121.497499 C49.1569438,121.520353 49.2691351,121.539571 49.3828846,121.555672 C49.4228788,121.561386 49.4639117,121.564502 49.5044252,121.569177 C49.5324731,121.572813 49.5600015,121.57541 49.5880493,121.578526 C49.6296017,121.582681 49.6706346,121.588914 49.7127064,121.59255 C49.8238589,121.60138 49.9350114,121.607093 50.0466833,121.60969 C50.0814834,121.61021 50.1168029,121.608652 50.151603,121.609171 C50.1822479,121.609171 50.2118539,121.609171 50.2424988,121.608652 C50.292881,121.608132 50.3437826,121.60969 50.3941648,121.607613 C50.5203801,121.602938 50.6455565,121.594628 50.7702136,121.582162 C50.7847569,121.580604 50.7982614,121.578007 50.8128047,121.576449 C50.846566,121.572813 50.8798079,121.56658 50.9135691,121.562425 C51.0106978,121.549959 51.1078264,121.539051 51.2028773,121.521392 C51.2449491,121.513601 51.2839044,121.499577 51.3254568,121.490747 C51.4412839,121.466854 51.5529559,121.437248 51.6646278,121.405565 C51.7238399,121.388944 51.7872072,121.379075 51.8448611,121.360376 C51.8718701,121.351546 51.8936851,121.335964 51.9206941,121.327134 C52.1575425,121.245069 52.3850416,121.151056 52.5886481,121.032113 L76.9824717,106.809264 C76.9964956,106.801473 77.0100001,106.793163 77.0235046,106.784852 C77.0884302,106.745897 77.1341378,106.700709 77.192311,106.659676 C77.2738575,106.601503 77.3611174,106.545407 77.4296788,106.483598 C77.4364311,106.477885 77.4457804,106.47269 77.4520132,106.466977 C77.5309627,106.393741 77.6010822,106.318427 77.6618525,106.240517 C77.6758765,106.222857 77.6852257,106.204678 77.6982108,106.186499 C77.7117154,106.1678 77.7231423,106.149102 77.735608,106.130403 C77.7558647,106.099758 77.7802767,106.069113 77.7979365,106.037949 C77.8337754,105.974582 77.8639008,105.910176 77.8877934,105.84525 C77.8914293,105.835381 77.8929875,105.824993 77.8961039,105.815125 C77.9002591,105.802659 77.9028561,105.790193 77.9070114,105.777728 C77.9199965,105.736695 77.9340204,105.695662 77.9423309,105.65359 C77.955316,105.588664 77.9625876,105.523739 77.9641459,105.458813 C77.9646653,105.448945 77.9646653,105.439076 77.9646653,105.429207 L77.971946,100.492269 C77.9724563,100.609655 77.9506413,100.726521 77.9148024,100.841309 Z" id="Path" fill="url(#linearGradient-427)"></path>
- <path d="M79.4610691,81.982777 C80.9392938,82.8335613 80.9465654,84.2162156 79.4802871,85.0711551 L52.3762117,100.874031 C50.9099333,101.728971 48.5258675,101.732087 47.0471234,100.881822 L29.4678844,90.7653846 C27.9896597,89.9146003 27.977194,88.531946 29.4434724,87.6770065 L56.5475477,71.8741303 C58.0138261,71.0191908 60.403086,71.0160743 61.8818301,71.8663392 L79.4610691,81.982777 Z" id="Path" fill="url(#linearGradient-428)"></path>
- <path d="M80.5102658,83.9222328 C80.5061106,83.9357373 80.5035136,83.9497612 80.4983195,83.9637851 C80.4572866,84.0832481 80.3949581,84.2006335 80.319125,84.3154218 C80.3056205,84.336198 80.292116,84.3569742 80.2775727,84.3772309 C80.1949874,84.4909805 80.0957812,84.6016136 79.9783958,84.7080915 C79.9020434,84.7771723 79.8049147,84.8395008 79.714019,84.9044263 C79.6355889,84.9600026 79.5691052,85.0192147 79.4802871,85.0711551 L52.3767311,100.874031 C52.2131187,100.969602 52.0344437,101.050109 51.8505745,101.124384 C51.8027893,101.143602 51.7539653,101.162301 51.7046219,101.179961 C51.590353,101.221513 51.4698512,101.255274 51.3503882,101.289035 C51.2267699,101.323836 51.1021129,101.356558 50.97382,101.383048 C50.8226734,101.414212 50.6710073,101.442779 50.515186,101.462516 C50.4783083,101.467191 50.44195,101.473943 50.4045529,101.478099 C50.195233,101.500952 49.983316,101.51186 49.7708797,101.514457 C49.7371184,101.514976 49.7033571,101.514976 49.6695958,101.514976 C49.4602759,101.513937 49.2514753,101.502511 49.044233,101.481215 C49.0130688,101.478099 48.9819045,101.474463 48.9507402,101.470827 C48.7455755,101.446415 48.5430079,101.412134 48.3456342,101.367985 C48.3092759,101.359674 48.273437,101.350325 48.2375981,101.341495 C48.0573648,101.297346 47.882845,101.243847 47.7140386,101.183077 C47.6839131,101.172169 47.6522295,101.163859 47.6226234,101.152432 C47.4200557,101.074521 47.2268373,100.985184 47.0476428,100.881822 L29.4684038,90.7653846 C28.7240974,90.336876 28.3511651,89.7733224 28.3522039,89.2108075 L28.3288307,105.666575 C28.3277919,106.229609 28.7007242,106.792644 29.4450306,107.221152 L47.0242696,117.337071 C47.1946343,117.435238 47.3769452,117.521978 47.5691248,117.597292 C47.5789934,117.601447 47.5899009,117.603525 47.5997696,117.60768 C47.6293757,117.619107 47.6610593,117.627418 47.6911848,117.638325 C47.8012985,117.678319 47.9119316,117.718833 48.0272394,117.751555 C48.0885291,117.768696 48.1524158,117.7822 48.2152637,117.797263 C48.2511026,117.806093 48.2864221,117.815442 48.3227804,117.823752 C48.3555029,117.831024 48.3871866,117.840373 48.4204284,117.847645 C48.5435273,117.873096 48.6681843,117.894391 48.7938801,117.912051 C48.8385489,117.918284 48.8837371,117.92192 48.9284059,117.927114 C48.9595701,117.93075 48.9907344,117.934385 49.022418,117.937502 C49.068645,117.942177 49.1143526,117.948929 49.1605796,117.952565 C49.2836784,117.962433 49.4072966,117.968666 49.5314343,117.971783 C49.5703896,117.972821 49.6088255,117.970744 49.6477808,117.971263 C49.6815421,117.971263 49.714784,117.970744 49.7480259,117.970744 C49.8041215,117.970224 49.8607366,117.971783 49.9168323,117.969705 C50.056552,117.964511 50.1957524,117.955162 50.3344333,117.941138 C50.3505349,117.93958 50.366117,117.935944 50.3822185,117.934385 C50.4196156,117.93023 50.4554545,117.923478 50.4928517,117.918803 C50.6003683,117.905299 50.7089238,117.892833 50.8148823,117.873615 C50.8616287,117.864785 50.9047393,117.849203 50.9509663,117.839335 C51.0797785,117.812325 51.2039162,117.779603 51.3285732,117.744803 C51.3940181,117.726624 51.4641377,117.715716 51.5280244,117.69494 C51.5810037,117.6778 51.6298277,117.655465 51.6817681,117.636247 C51.7311115,117.618068 51.7799355,117.599889 51.8282401,117.580671 C52.0121093,117.506396 52.190265,117.425889 52.3538773,117.330318 L79.4579527,101.527442 C79.4735348,101.518612 79.4885975,101.509263 79.5041797,101.500433 C79.5758574,101.457322 79.6267591,101.40746 79.6911652,101.361752 C79.7825804,101.296826 79.8802284,101.233979 79.9565808,101.164378 C79.9638525,101.157626 79.97476,101.152432 79.9815122,101.14568 C80.0698109,101.064133 80.1477216,100.97999 80.2152442,100.893769 C80.2303069,100.874031 80.2412144,100.853775 80.2552383,100.834037 C80.270301,100.813261 80.2832861,100.792485 80.29731,100.771709 C80.3201638,100.736909 80.3471729,100.703147 80.3669102,100.667828 C80.4069043,100.597189 80.4401462,100.525511 80.4671553,100.453314 C80.4713105,100.442406 80.4728687,100.431499 80.4765045,100.420591 C80.4811792,100.407087 80.4837762,100.393582 80.4879314,100.379558 C80.5024747,100.333331 80.5180569,100.287624 80.5274062,100.241397 C80.5419495,100.169719 80.5497405,100.097522 80.5518182,100.024805 C80.5523376,100.013898 80.5523376,100.002471 80.5523376,99.9915634 L80.5757108,83.5357959 C80.5746719,83.6646082 80.5502599,83.7944593 80.5102658,83.9222328 Z" id="Path" fill="url(#linearGradient-429)"></path>
- <g id="Group" transform="translate(28.047833, 83.104690)">
- <g id="Clipped">
- <mask id="mask-431" fill="white">
- <use xlink:href="#path-430"></use>
- </mask>
- <g id="SVGID_595_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-431)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.55696007 46.614979 2.59234693 44.3337553 26.7430894 1.78363442 30.7077025 4.06537757"></polygon>
- <polygon points="2.02619623 44.0075694 0.327224718 43.0300505 24.4774477 0.479929587 26.1769387 1.45796791"></polygon>
- <polygon points="8.82208229 47.9186839 8.25593158 47.5930174 32.406674 5.04289649 32.9728247 5.368563"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-433" fill="white">
- <use xlink:href="#path-432"></use>
- </mask>
- <g id="SVGID_595_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-433)" fill="#FEFEFE">
- <g transform="translate(29.086642, -16.101534)" id="Path">
- <polygon points="6.23856522 65.8365745 2.28070435 68.1292252 15.210236 4.10017766 19.1680968 1.80700761"></polygon>
- <polygon points="1.71559245 68.4569693 0.0192179596 69.4391628 12.9482302 5.41011534 14.6446047 4.42740238"></polygon>
- <polygon points="8.50057102 64.5266368 7.93493972 64.8538615 20.8644713 0.824814052 21.4295832 0.497069929"></polygon>
- </g>
- </g>
- </g>
- </g>
- <path d="M75.3894587,82.8081105 C76.6843336,83.5534557 76.6931635,84.7709394 75.4086766,85.5199204 L52.8213412,98.6894168 C51.5368543,99.4383978 49.4374221,99.4399561 48.1425471,98.6946109 L33.4943066,90.2646788 C32.1968347,89.5177754 32.1880048,88.3034081 33.4724917,87.5544271 L56.0598271,74.3854501 C57.344314,73.6364691 59.4437462,73.6317945 60.7412182,74.3786979 L75.3894587,82.8081105 Z M52.5813764,98.5512553 L75.1687118,85.3817589 C76.3228282,84.7091303 76.3150372,83.6163036 75.1515715,82.9467914 L60.503331,74.5173788 C59.3398653,73.8478667 57.4539083,73.8504637 56.2997919,74.5230923 L33.7124565,87.6925887 C32.5583401,88.3652173 32.5661311,89.4580439 33.7295968,90.1275561 L48.3778373,98.5569687 C49.5413029,99.2264809 51.42726,99.2238839 52.5813764,98.5512553 L52.5813764,98.5512553 Z" id="Shape" fill="#D1D1D1" fill-rule="nonzero"></path>
- <g id="Group" transform="translate(30.644855, 67.003157)">
- <path d="M46.2919096,9.88530292 C47.6231428,10.6514243 47.6319727,11.8953976 46.3142439,12.664116 L21.9204203,26.8869644 C20.6000945,27.6567215 18.4518383,27.659838 17.1211244,26.8937166 L1.29903019,17.788559 C-0.0296060459,17.0239958 -0.0384359193,15.7800225 1.28188985,15.0097459 L25.6757135,0.786897537 C26.9934422,0.0186985553 29.1416985,0.0155821294 30.4703347,0.780145281 L46.2919096,9.88530292 Z" id="Path" fill="url(#radialGradient-434)"></path>
- <path d="M47.2382642,11.632579 C47.2346284,11.6450447 47.2320314,11.6575104 47.2278761,11.6699761 C47.190479,11.7769734 47.1349028,11.8824125 47.0668608,11.9852546 C47.0543951,12.0039531 47.0424488,12.0226517 47.0294637,12.0413502 C46.9557083,12.1436729 46.8663707,12.2428791 46.7609316,12.3384495 C46.6923703,12.4002586 46.6056298,12.4563543 46.5235639,12.5145276 C46.4534443,12.5643904 46.3937128,12.617889 46.3137245,12.6646354 L21.9199009,26.8874838 C21.7162944,27.0059079 21.4882759,27.1004395 21.2519469,27.1825054 C21.1683228,27.211592 21.0826211,27.2365235 20.9958806,27.2609355 C20.8847281,27.2926191 20.7720174,27.3222252 20.6567096,27.3461178 C20.5211451,27.3741656 20.3840223,27.4001358 20.2443026,27.4177956 C20.2105413,27.4219508 20.1778188,27.4281836 20.1440575,27.4318195 C19.9555138,27.4525957 19.7648924,27.4624643 19.5732322,27.464542 C19.5431067,27.464542 19.5129813,27.4650614 19.4823364,27.4650614 C19.2937927,27.4640225 19.1052489,27.4536345 18.9187828,27.4344165 C18.8907349,27.4313001 18.8626871,27.4287031 18.8351587,27.4250672 C18.6497313,27.4032522 18.4674204,27.372088 18.2892647,27.3320939 C18.2570617,27.3248222 18.225378,27.3165117 18.1931749,27.3087207 C18.0306014,27.2687265 17.8732219,27.2209413 17.720517,27.1653651 C17.693508,27.1554964 17.6649407,27.1482247 17.6384511,27.1378366 C17.4561402,27.0677171 17.2816204,26.9872094 17.120605,26.894236 L1.29851079,17.7890784 C0.630037434,17.4047192 0.296060459,16.8988194 0.296579864,16.3929196 L0.289308203,21.3298576 C0.288788799,21.8357574 0.622765773,22.3416572 1.29123913,22.7260164 L17.1133334,31.831174 C17.2665576,31.9194728 17.4312088,31.9973834 17.603651,32.0654254 C17.6124809,32.0690612 17.6223496,32.0711388 17.6311795,32.0747746 C17.6581885,32.0851627 17.6872751,32.0929538 17.7148036,32.1028225 C17.8140098,32.1386614 17.9126966,32.1745003 18.0160581,32.2041063 C18.0711149,32.2196885 18.1287688,32.2316348 18.1853839,32.2451393 C18.2181063,32.2529303 18.24979,32.2612408 18.2830319,32.2690319 C18.3126379,32.2757841 18.3406858,32.2840946 18.3702918,32.2903274 C18.4809249,32.3131812 18.5931163,32.3323992 18.7068658,32.3485007 C18.7468599,32.3542142 18.7873735,32.3573306 18.827887,32.3620052 C18.8564542,32.3656411 18.8845021,32.3682381 18.9130693,32.3713545 C18.9546217,32.3755097 18.9951352,32.3817426 19.0372069,32.384859 C19.1478401,32.3936889 19.259512,32.3999217 19.3711839,32.4019994 C19.405984,32.4030382 19.4413035,32.40148 19.4761036,32.40148 C19.5067484,32.40148 19.5363545,32.4009606 19.5669993,32.4009606 C19.6173816,32.4004412 19.6682832,32.4019994 19.7186654,32.3999217 C19.8443612,32.3952471 19.9700571,32.3869366 20.0947141,32.3744709 C20.1092574,32.3729127 20.122762,32.3697963 20.1373053,32.3687575 C20.1710666,32.3651217 20.2043084,32.3588888 20.2380697,32.3547336 C20.3346789,32.3422679 20.4323269,32.3313604 20.5273779,32.31422 C20.5694497,32.306429 20.6078856,32.2924051 20.6494379,32.2835752 C20.7657845,32.2596826 20.8779758,32.2300765 20.9896478,32.1983929 C21.0488599,32.1817719 21.1117078,32.1719033 21.1693617,32.1532047 C21.1963707,32.1443748 21.2181857,32.1293121 21.2451947,32.1199628 C21.4820431,32.0378969 21.7095421,31.9438848 21.9131486,31.8249412 L46.3069723,17.6020928 C46.3209962,17.5937824 46.3345007,17.5859913 46.3480052,17.5776808 C46.4124114,17.5387255 46.4581189,17.4940567 46.5162922,17.4530238 C46.5983581,17.3948505 46.685618,17.3387548 46.7541794,17.2764263 C46.7604122,17.2707129 46.7702809,17.2655188 46.7765138,17.2598054 C46.8554632,17.1865694 46.9255828,17.1107363 46.9863531,17.0333451 C46.9998576,17.0156854 47.0097263,16.9975062 47.0227114,16.979327 C47.0362159,16.9606285 47.0481622,16.9419299 47.0606279,16.9232314 C47.0808847,16.8920671 47.1052967,16.8619417 47.1229565,16.8307774 C47.1587954,16.7674101 47.1889208,16.703004 47.2128134,16.6380784 C47.2164492,16.6282097 47.2180074,16.6178216 47.2211239,16.607953 C47.2252791,16.5954873 47.2278761,16.5830216 47.2320314,16.5705559 C47.2450165,16.5295229 47.2590404,16.4879706 47.2673509,16.4464182 C47.280336,16.3814927 47.2876076,16.3165671 47.2891658,16.2516416 C47.2891658,16.2417729 47.2896852,16.2319042 47.2896852,16.2220356 L47.2969569,11.2850975 C47.2959181,11.4009247 47.2741031,11.5172713 47.2382642,11.632579 Z" id="Path" fill="url(#linearGradient-435)"></path>
- </g>
- <path d="M79.4293854,59.7662963 C80.9076101,60.6170806 80.9148818,61.9997348 79.4486034,62.8546743 L52.344528,78.6575506 C50.8782497,79.5124901 48.4941838,79.5161259 47.0154398,78.6653417 L29.4362007,68.5489038 C27.9579761,67.6981196 27.9455103,66.3154653 29.4117887,65.4605258 L56.5158641,49.6576495 C57.9821425,48.80271 60.3714023,48.7995936 61.8501464,49.6498584 L79.4293854,59.7662963 Z" id="Path" fill="url(#linearGradient-436)"></path>
- <path d="M80.4791015,61.705752 C80.4749463,61.7197759 80.4723493,61.7332804 80.4671553,61.7473043 C80.4261223,61.8667673 80.3637938,61.9841527 80.2879608,62.0989411 C80.2744562,62.1197172 80.2609517,62.1404934 80.2464084,62.1607502 C80.1638231,62.2744997 80.0646169,62.3851328 79.9472315,62.4910913 C79.8708791,62.5601721 79.7737505,62.6225006 79.6828547,62.6874262 C79.6044247,62.7430024 79.5379409,62.8022145 79.4491228,62.8541549 L52.3455668,78.6570312 C52.1819545,78.7526016 52.0032794,78.8331093 51.8194103,78.9073841 C51.7716251,78.9266021 51.7228011,78.9447812 51.6734577,78.9629604 C51.5591887,79.0045127 51.4386869,79.0377546 51.3192239,79.0715159 C51.1956057,79.1063159 51.0709487,79.1390384 50.9426558,79.1660474 C50.7915091,79.1972117 50.6398431,79.2257789 50.4840218,79.2455163 C50.4471441,79.2501909 50.4107858,79.2569432 50.3733887,79.2610984 C50.1640687,79.2839522 49.9521518,79.2953791 49.7397154,79.2974567 C49.7059541,79.2979761 49.6721928,79.2979761 49.6384316,79.2979761 C49.4291116,79.2969373 49.2203111,79.2855104 49.0130688,79.2642149 C48.9819045,79.2610984 48.9507402,79.2574626 48.919576,79.2538268 C48.7144113,79.2294148 48.5118436,79.1951341 48.31447,79.1509847 C48.2781117,79.1426742 48.2422728,79.133325 48.2064339,79.1244951 C48.0262006,79.0803457 47.8516807,79.0268471 47.6828743,78.9660768 C47.6527489,78.9551693 47.6210652,78.9468588 47.5914591,78.9354319 C47.3888915,78.8575213 47.1956731,78.7681837 47.0164786,78.6648223 L29.4372395,68.5483844 C28.6929332,68.1198759 28.3200009,67.5563222 28.3210397,66.9938073 L28.2976665,83.4495748 C28.2966277,84.0126091 28.66956,84.5756434 29.4138663,85.0041519 L46.9931054,95.1205898 C47.16347,95.2187572 47.3457809,95.3054977 47.5379605,95.3808113 C47.5478292,95.3849666 47.5587367,95.3870442 47.5686054,95.3911994 C47.5982114,95.4026263 47.6298951,95.4109368 47.6600205,95.4218443 C47.7701342,95.4618384 47.8807674,95.5018325 47.9960751,95.534555 C48.0573648,95.5516954 48.1212515,95.5651999 48.1840995,95.5802626 C48.2199384,95.5890925 48.2552579,95.5984417 48.2916162,95.6067522 C48.3243386,95.6140239 48.3560223,95.6238926 48.3892642,95.6306448 C48.512363,95.6560956 48.63702,95.6773912 48.7627159,95.695051 C48.8073846,95.7012838 48.8525728,95.7044002 48.8972416,95.7101137 C48.9284059,95.7137495 48.9595701,95.7173853 48.9912538,95.7205018 C49.0374808,95.7251764 49.0831883,95.7319287 49.1294153,95.7355645 C49.2525141,95.7454332 49.3761324,95.7521854 49.50027,95.7547824 C49.5392253,95.7558213 49.5776612,95.7537436 49.6166166,95.754263 C49.6503779,95.754263 49.6836197,95.754263 49.7168616,95.7537436 C49.7729573,95.7532242 49.8295723,95.7547824 49.885668,95.7527048 C50.0253878,95.7475108 50.1645881,95.7381615 50.3032691,95.7241376 C50.3193706,95.7225794 50.3349527,95.7189435 50.3510543,95.7173853 C50.3884514,95.7132301 50.4242903,95.7064778 50.4616874,95.7018032 C50.5692041,95.6882987 50.6777596,95.675833 50.7837181,95.656615 C50.8304645,95.6483046 50.873575,95.632203 50.919802,95.6223343 C51.0486143,95.5958447 51.1727519,95.5626028 51.2974089,95.5278028 C51.3628539,95.5096236 51.4329735,95.4987161 51.4968602,95.4779399 C51.5498394,95.4607996 51.5986634,95.4384652 51.6506039,95.4192473 C51.6999473,95.4010681 51.7487713,95.382889 51.7970759,95.363671 C51.980945,95.2893962 52.1591007,95.2088885 52.3227131,95.1133181 L79.4267884,79.3104418 C79.4423705,79.301612 79.4574333,79.2922627 79.4730154,79.2834328 C79.5446932,79.2403223 79.5955948,79.1904594 79.6600009,79.1447519 C79.7514161,79.0798263 79.8490641,79.0169784 79.9254165,78.9473782 C79.9326882,78.940626 79.9435957,78.9354319 79.950348,78.9286797 C80.0386467,78.8471332 80.1165573,78.7629897 80.1840799,78.6767686 C80.1991426,78.6570312 80.2100501,78.6367744 80.224074,78.6170371 C80.2391368,78.5962609 80.2521219,78.5754847 80.2661458,78.5547086 C80.2889996,78.5199085 80.3160086,78.4861472 80.335746,78.4508277 C80.3757401,78.3801887 80.408982,78.3085109 80.435991,78.2363137 C80.4401462,78.2254062 80.4417044,78.2144987 80.4453403,78.2030718 C80.4500149,78.1895673 80.4526119,78.1760628 80.4567672,78.1620389 C80.4713105,78.1158119 80.4868926,78.0701043 80.4962419,78.0233579 C80.5107852,77.9516802 80.5185763,77.879483 80.5206539,77.8067663 C80.5211733,77.7958589 80.5211733,77.7849514 80.5211733,77.7735245 L80.5445465,61.317757 C80.5429883,61.4481275 80.5190957,61.5774591 80.4791015,61.705752 Z" id="Path" fill="url(#linearGradient-437)"></path>
- <g id="Group" transform="translate(28.047833, 61.289709)">
- <g id="Clipped">
- <mask id="mask-439" fill="white">
- <use xlink:href="#path-438"></use>
- </mask>
- <g id="SVGID_601_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-439)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.52527641 46.2134795 2.56118268 43.9322558 26.7114057 1.38213488 30.6760188 3.66335863"></polygon>
- <polygon points="1.99451257 43.6060698 0.295541055 42.6285509 24.4462835 0.0784300515 26.145255 1.05594897"></polygon>
- <polygon points="8.79091803 47.5171843 8.22424792 47.1909984 32.3749903 4.64139696 32.9416605 4.96706346"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-441" fill="white">
- <use xlink:href="#path-440"></use>
- </mask>
- <g id="SVGID_601_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-441)" fill="#FEFEFE">
- <g transform="translate(28.567237, -16.101534)" id="Path">
- <polygon points="6.72680528 65.4345556 2.7689444 67.7277256 15.6979566 3.69815872 19.6563369 1.40550808"></polygon>
- <polygon points="2.2033131 68.0549503 0.506938611 69.0376633 13.4364702 5.00861581 15.1328447 4.02590284"></polygon>
- <polygon points="8.98829167 64.1246179 8.42317977 64.452362 21.352192 0.422795112 21.9178233 0.0955703939"></polygon>
- </g>
- </g>
- </g>
- </g>
- <g id="Group" transform="translate(30.644855, 44.668771)">
- <path d="M46.2602259,10.0135958 C47.5914591,10.7797171 47.600289,12.0236905 46.2825603,12.7924089 L21.8887366,27.0152572 C20.5684109,27.7850144 18.4201546,27.7881308 17.0889214,27.0220095 L1.26682712,17.9168518 C-0.0618091135,17.1522887 -0.0706389868,15.9083154 1.24968678,15.1380388 L25.6435104,0.915190403 C26.9612392,0.146991421 29.1094954,0.143874995 30.4381317,0.908438147 L46.2602259,10.0135958 Z" id="Path" fill="url(#linearGradient-442)"></path>
- <path d="M47.2071,11.7608719 C47.2034641,11.7733376 47.2008671,11.7858033 47.1967119,11.798269 C47.1598342,11.9052663 47.1042579,12.0107054 47.0356965,12.1135474 C47.0232308,12.132246 47.0112845,12.1514639 46.99778,12.1696431 C46.9240246,12.2719657 46.8346871,12.371172 46.7297674,12.466223 C46.661206,12.5280321 46.5739461,12.5846471 46.4918802,12.6428204 C46.4217606,12.6926832 46.3620291,12.7456625 46.2825603,12.7924089 L21.8887366,27.0152572 C21.6851301,27.1336814 21.4571116,27.2276936 21.2207827,27.3102789 C21.137678,27.3393655 21.0519763,27.3642969 20.9652358,27.3887089 C20.8535638,27.4203926 20.7408531,27.4499986 20.6250259,27.4738912 C20.4894614,27.5019391 20.3528581,27.5273899 20.2131383,27.5450496 C20.179377,27.5492049 20.1461352,27.5554377 20.1123739,27.5590735 C19.9238301,27.5793303 19.7332087,27.5897184 19.5415485,27.5912766 C19.5114231,27.591796 19.4807782,27.591796 19.4506528,27.591796 C19.262109,27.5907572 19.0740847,27.5803691 18.8881379,27.5611512 C18.8595707,27.5580347 18.8315228,27.5549183 18.8029556,27.5518019 C18.6180477,27.5299869 18.4357367,27.4988226 18.2581005,27.4593479 C18.225378,27.4520762 18.1931749,27.4437658 18.1609719,27.4354553 C17.9989177,27.3959806 17.8420576,27.347676 17.6903916,27.2931385 C17.6628631,27.2832698 17.6337765,27.2754788 17.6067675,27.2650907 C17.4244565,27.1949711 17.2504561,27.1144634 17.0889214,27.0214901 L1.26682712,17.9163324 C0.598353771,17.5319732 0.264376796,17.0260734 0.264896201,16.5201736 L0.25762454,21.4571116 C0.257105136,21.9630114 0.59108211,22.4689113 1.25955546,22.8532704 L17.0816497,31.9584281 C17.234874,32.0467268 17.3995251,32.1246375 17.5719674,32.1926794 C17.5807972,32.1963153 17.5906659,32.1983929 17.5994958,32.2020287 C17.6265048,32.2124168 17.6555915,32.2202079 17.6831199,32.2300765 C17.7823261,32.2659154 17.8810129,32.3022737 17.9848938,32.3313604 C18.0404701,32.3469425 18.0981239,32.3588888 18.1542196,32.3729127 C18.1864227,32.3807038 18.2186257,32.3890143 18.2513482,32.3962859 C18.2809543,32.4030382 18.3095215,32.4113486 18.3391275,32.4175815 C18.4497607,32.4404353 18.561952,32.4596532 18.6757015,32.4757548 C18.7156957,32.4814682 18.7567286,32.4845847 18.7967227,32.4892593 C18.8247706,32.4928951 18.8528184,32.4954921 18.8813856,32.4986086 C18.922938,32.5027638 18.9639709,32.5089967 19.0055233,32.5121131 C19.1166758,32.520943 19.2278283,32.5271758 19.3395003,32.5292534 C19.3748197,32.5302922 19.4096198,32.528734 19.4449393,32.528734 C19.4750648,32.528734 19.5046708,32.528734 19.5353157,32.5282146 C19.5862173,32.5276952 19.6365995,32.5292534 19.6875011,32.5271758 C19.813197,32.5225012 19.9388928,32.5141907 20.0635499,32.501725 C20.0780932,32.5001668 20.0915977,32.4970504 20.106141,32.4960115 C20.1399023,32.4923757 20.1731442,32.4861429 20.2069055,32.4819876 C20.3040341,32.4695219 20.4011627,32.4586144 20.4962137,32.4414741 C20.5382854,32.433683 20.5772407,32.4196591 20.6187931,32.4108292 C20.7346202,32.3869366 20.8462922,32.3573306 20.9579641,32.3261663 C21.0171762,32.3095454 21.0805435,32.2996767 21.1381974,32.2809782 C21.1652064,32.2721483 21.1875408,32.2565662 21.2140304,32.2477363 C21.4508788,32.1656704 21.6783779,32.0716582 21.8819844,31.9527146 L46.275808,17.7298663 C46.2898319,17.7215558 46.3033364,17.7137648 46.316841,17.7054543 C46.3817665,17.666499 46.4274741,17.6213108 46.4856474,17.5802778 C46.5671938,17.5221046 46.6544538,17.4660089 46.7230151,17.4041998 C46.7297674,17.3984863 46.7391167,17.3932923 46.7453495,17.3875788 C46.824299,17.3143428 46.8944186,17.2385098 46.9551889,17.1611186 C46.9692128,17.1434588 46.9785621,17.1247603 46.9915472,17.1071005 C47.0050517,17.088402 47.0164786,17.0697034 47.0294637,17.0510048 C47.0497204,17.0198406 47.0741325,16.9897151 47.0917922,16.9585509 C47.1276311,16.8946641 47.1577565,16.8307774 47.1816491,16.7658519 C47.185285,16.7559832 47.1868432,16.7455951 47.1899596,16.7357264 C47.1941148,16.7232607 47.1967119,16.710795 47.2008671,16.6983293 C47.2138522,16.656777 47.2278761,16.615744 47.2361866,16.5741917 C47.2491717,16.5092661 47.2564434,16.4443406 47.2580016,16.3794151 C47.258521,16.3695464 47.258521,16.3596777 47.258521,16.349809 L47.2657926,11.412871 C47.2647538,11.5292176 47.2429389,11.6455641 47.2071,11.7608719 Z" id="Path" fill="url(#linearGradient-443)"></path>
- </g>
- <path d="M79.3982212,37.5492961 C80.8764459,38.4000804 80.8837175,39.7827347 79.4174391,40.6376742 L52.3133638,56.4400311 C50.8470854,57.2949706 48.4630196,57.2986064 46.9842755,56.4478221 L29.4050365,46.3313843 C27.9268118,45.4806 27.9143461,44.0979457 29.3806245,43.2430062 L56.4846998,27.4401299 C57.9509782,26.5851904 60.3402381,26.582074 61.8189821,27.4328583 L79.3982212,37.5492961 Z" id="Path" fill="url(#linearGradient-444)"></path>
- <path d="M80.4474179,39.4892712 C80.4432627,39.5032952 80.4406656,39.5167997 80.4354716,39.5308236 C80.3944386,39.6502866 80.3321101,39.767672 80.2562771,39.8824603 C80.2427726,39.9032365 80.2292681,39.9240127 80.2147248,39.9442694 C80.1321395,40.058019 80.0329332,40.1686521 79.9155479,40.2746106 C79.8391954,40.3436913 79.7420668,40.4060199 79.6511711,40.4709454 C79.572741,40.5265217 79.5062573,40.5857338 79.4174391,40.6376742 L52.3138832,56.4400311 C52.1502708,56.5356014 51.9715957,56.6166285 51.7877266,56.6903839 C51.7399414,56.7096019 51.6911174,56.727781 51.641774,56.7459602 C51.527505,56.7875125 51.4070032,56.8212738 51.2875403,56.8545157 C51.163922,56.8893158 51.039265,56.9220383 50.9109721,56.9490473 C50.7598255,56.9802115 50.6081594,57.0087788 50.4523381,57.0285161 C50.4154604,57.0331908 50.3791021,57.039943 50.341705,57.0440983 C50.1323851,57.0669521 49.9204681,57.078379 49.7080317,57.0804566 C49.6742705,57.080976 49.6405092,57.0814954 49.6067479,57.080976 C49.397428,57.0799372 49.1886274,57.0685103 48.9813851,57.0472147 C48.9502208,57.0440983 48.9190566,57.0404624 48.8878923,57.0368266 C48.6827276,57.0124146 48.4801599,56.9781339 48.2827863,56.9339846 C48.246428,56.9256741 48.2105891,56.9163248 48.1747502,56.9074949 C47.9945169,56.8633456 47.819997,56.8098469 47.6511906,56.7490766 C47.6210652,56.7381691 47.5893815,56.7298587 47.5597755,56.7184318 C47.3572078,56.6405211 47.1639894,56.5511836 46.9847949,56.4478221 L29.4055559,46.3313843 C28.6612495,45.9028757 28.2883172,45.3398414 28.289356,44.7768072 L28.2659828,61.2325747 C28.264944,61.7956089 28.6378763,62.3586432 29.3821827,62.7871518 L46.9614217,72.9035896 C47.1317863,73.001757 47.3140972,73.0884976 47.5062768,73.1638112 C47.5161455,73.167447 47.527053,73.170044 47.5369217,73.1741993 C47.5665277,73.1856262 47.5982114,73.1939366 47.6283369,73.2048441 C47.7384506,73.2448383 47.8490837,73.2848324 47.9643914,73.3180743 C48.0256812,73.3352146 48.0895679,73.3481997 48.1524158,73.3637818 C48.1882547,73.3726117 48.2235742,73.381961 48.2599325,73.3902715 C48.292655,73.3975431 48.3243386,73.4074118 48.3575805,73.4141641 C48.4806793,73.4396149 48.6053364,73.4609104 48.7310322,73.4785702 C48.775701,73.484803 48.8208892,73.4879195 48.8655579,73.4936329 C48.8967222,73.4972688 48.9278864,73.5009046 48.9595701,73.504021 C49.0057971,73.5086956 49.0515047,73.5154479 49.0977317,73.5190837 C49.2208305,73.5289524 49.3444487,73.5357047 49.4685863,73.5383017 C49.5075417,73.5393405 49.5459776,73.5372629 49.5849329,73.5377823 C49.6186942,73.5377823 49.6519361,73.5377823 49.6851779,73.5372629 C49.7412736,73.5367435 49.7978887,73.5383017 49.8539843,73.5362241 C49.9937041,73.53103 50.1329045,73.5216808 50.2715854,73.5076568 C50.2876869,73.5060986 50.3032691,73.5024628 50.3193706,73.5009046 C50.3567677,73.4967493 50.3926066,73.4899971 50.4300037,73.4853225 C50.5375204,73.4718179 50.6460759,73.4593522 50.7520344,73.4401343 C50.7987808,73.4318238 50.8418913,73.4157223 50.8881183,73.406373 C51.0169306,73.379364 51.1410682,73.3466415 51.2657253,73.3118414 C51.3311702,73.2931429 51.4012898,73.2827548 51.4651765,73.2619786 C51.5181558,73.2448383 51.5669798,73.2225039 51.6189202,73.2032859 C51.6682636,73.1851068 51.7170876,73.1669276 51.7653922,73.1477096 C51.9492613,73.0734348 52.127417,72.9929272 52.2910294,72.8973568 L79.3951047,57.0944805 C79.4106869,57.0856506 79.4257496,57.0763013 79.4413317,57.0674715 C79.5130095,57.0243609 79.5639111,56.9744981 79.6283173,56.9287905 C79.7197324,56.863865 79.8173805,56.8010171 79.8937329,56.7314169 C79.9010045,56.725184 79.911912,56.7194706 79.9186643,56.7127183 C80.006963,56.6311718 80.0848737,56.5470283 80.1523962,56.4608072 C80.167459,56.4410699 80.1783665,56.4208131 80.1923904,56.4010757 C80.2074531,56.3802996 80.2204382,56.3595234 80.2344621,56.3387472 C80.2573159,56.3039471 80.2843249,56.2701858 80.3040623,56.2348663 C80.3440564,56.1642274 80.3772983,56.0925496 80.4043073,56.0203524 C80.4084626,56.0094449 80.4100208,55.9985374 80.4136566,55.9876299 C80.4183312,55.9741254 80.4209283,55.9601015 80.4250835,55.946597 C80.4396268,55.90037 80.455209,55.8546624 80.4645582,55.807916 C80.4791015,55.7362382 80.4868926,55.664041 80.4889702,55.5913244 C80.4894896,55.5804169 80.4894896,55.5695094 80.4894896,55.5580825 L80.5128628,39.102315 C80.511824,39.2311273 80.487412,39.3609784 80.4474179,39.4892712 Z" id="Path" fill="url(#linearGradient-445)"></path>
- <g id="Group" transform="translate(28.047833, 38.955324)">
- <g id="Clipped">
- <mask id="mask-447" fill="white">
- <use xlink:href="#path-446"></use>
- </mask>
- <g id="SVGID_607_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-447)" fill="#FEFEFE">
- <g transform="translate(-3.635830, -9.868682)" id="Path">
- <polygon points="6.49411215 46.3308649 2.52949901 44.0496411 26.6802414 1.49952026 30.6448546 3.78126341"></polygon>
- <polygon points="1.96334831 43.7239746 0.264376796 42.7459363 24.4151192 0.196334831 26.1140907 1.17385375"></polygon>
- <polygon points="8.75923436 47.6345697 8.19308366 47.3089032 32.3438261 4.75878233 32.9099768 5.08496824"></polygon>
- </g>
- </g>
- </g>
- <g id="Clipped">
- <mask id="mask-449" fill="white">
- <use xlink:href="#path-448"></use>
- </mask>
- <g id="SVGID_607_"></g>
- <g id="Group" opacity="0.1" mask="url(#mask-449)" fill="#FEFEFE">
- <g transform="translate(28.567237, -16.101534)" id="Path">
- <polygon points="6.69564102 65.5524604 2.73726074 67.845111 15.6667923 3.8160635 19.6246532 1.52341286"></polygon>
- <polygon points="2.17214884 68.1728551 0.475774352 69.1550487 13.405306 5.12600118 15.101161 4.14328822"></polygon>
- <polygon points="8.95712741 64.2425227 8.39149611 64.5697474 21.3210277 0.540699892 21.886659 0.213475173"></polygon>
- </g>
- </g>
- </g>
- </g>
- <path d="M75.3266107,38.3964446 C76.6214857,39.1417898 76.6303156,40.3592735 75.3458287,41.1082545 L52.7584933,54.2777509 C51.4740064,55.0267319 49.3745742,55.0282901 48.0796992,54.2829449 L33.4314587,45.8535323 C32.1339867,45.1066289 32.1251569,43.8922616 33.4096437,43.1432806 L55.9969792,29.9737842 C57.281466,29.2248032 59.3808983,29.2201285 60.6783703,29.9670319 L75.3266107,38.3964446 Z M52.5185285,54.1390699 L75.1058639,40.9695735 C76.2599803,40.296945 76.2521892,39.2046377 75.0887236,38.5346061 L60.4404831,30.1051935 C59.2770174,29.4356813 57.3910604,29.4382783 56.236944,30.1109069 L33.6496085,43.2804033 C32.4954921,43.9530319 32.5032832,45.0453392 33.6667489,45.7153708 L48.3149894,54.1447834 C49.478455,54.814815 51.3644121,54.8122179 52.5185285,54.1390699 L52.5185285,54.1390699 Z" id="Shape" fill="#00F5EE" fill-rule="nonzero"></path>
- <g id="Group" transform="translate(67.003157, 47.785197)">
- <g id="Path">
- <path d="M11.7634689,0.812348348 L0.26126037,7.4752669 C0.158418316,7.53499839 0.0753136256,7.47163107 0.0753136256,7.33502773 L0.0753136256,7.27217981 C0.0753136256,7.13505707 0.157898912,6.97611935 0.260740966,6.91638786 L11.7629495,0.253469306 C11.8657916,0.194257214 11.9488963,0.257105136 11.9488963,0.393708471 L11.9488963,0.456556393 C11.9494157,0.594198536 11.866311,0.753136256 11.7634689,0.812348348 Z" fill="url(#linearGradient-450)"></path>
- <path d="M11.7665853,2.77309964 L0.264376796,9.43601819 C0.161534742,9.49574968 0.0784300515,9.43238236 0.0784300515,9.29577902 L0.0784300515,9.2329311 C0.0784300515,9.09632776 0.161015338,8.93687064 0.263857392,8.87765855 L11.7660659,2.21474 C11.868908,2.15552791 11.9520127,2.21837583 11.9520127,2.35497916 L11.9520127,2.41782709 C11.9520127,2.55443042 11.868908,2.71336814 11.7665853,2.77309964 Z" fill="url(#linearGradient-451)"></path>
- <path d="M11.7691824,4.73333152 L0.266973818,11.3962501 C0.164131763,11.4554622 0.0810270731,11.3926142 0.0810270731,11.2560109 L0.0810270731,11.193163 C0.0810270731,11.0560402 0.164131763,10.8971025 0.266454413,10.8378904 L11.768663,4.17497188 C11.871505,4.11524039 11.9546097,4.17860771 11.9546097,4.31521105 L11.9546097,4.37805897 C11.9546097,4.5146623 11.8720244,4.67360002 11.7691824,4.73333152 Z" fill="url(#linearGradient-452)"></path>
- </g>
- <g transform="translate(0.000000, 21.295577)" id="Path">
- <path d="M11.7941138,1.08036097 L0.291905225,7.74327952 C0.189063171,7.80301102 0.10595848,7.73964369 0.10595848,7.60304036 L0.10595848,7.54019244 C0.10595848,7.4035891 0.189063171,7.24413198 0.291385821,7.18491989 L11.7935944,0.522001336 C11.8964364,0.462789244 11.9795411,0.525637167 11.9795411,0.662240501 L11.9795411,0.725088423 C11.9795411,0.861691758 11.8969558,1.02114888 11.7941138,1.08036097 Z" fill="url(#linearGradient-453)"></path>
- <path d="M11.7967108,3.04059286 L0.294502246,9.70351141 C0.191660192,9.7627235 0.108555502,9.69987558 0.108555502,9.56327224 L0.108555502,9.50042432 C0.108555502,9.36330158 0.191140788,9.20436386 0.293982842,9.14515177 L11.7961914,2.48223322 C11.8990334,2.42250172 11.9821381,2.48586905 11.9821381,2.62247239 L11.9821381,2.68532031 C11.9826575,2.82192364 11.8995529,2.98138077 11.7967108,3.04059286 Z" fill="url(#linearGradient-454)"></path>
- <path d="M11.7998272,5.00082474 L0.297618672,11.6632239 C0.194776618,11.7229554 0.111671928,11.6601075 0.111671928,11.5229847 L0.111671928,11.4601368 C0.111671928,11.3230141 0.194257214,11.1640763 0.297099268,11.1043448 L11.7993078,4.4419457 C11.9021499,4.3822142 11.9852546,4.44506213 11.9852546,4.58218486 L11.9852546,4.64503279 C11.9852546,4.78215553 11.9021499,4.94161265 11.7998272,5.00082474 Z" fill="url(#linearGradient-455)"></path>
- </g>
- <g transform="translate(0.000000, 43.110558)" id="Path">
- <path d="M11.8247586,0.828449882 L0.322550079,7.49136843 C0.219708025,7.55058052 0.136603335,7.4877326 0.136603335,7.35112927 L0.136603335,7.28828134 C0.136603335,7.15115861 0.219188621,6.99222089 0.322030675,6.93300879 L11.8242392,0.270090244 C11.9270813,0.210358747 12.010186,0.273726074 12.010186,0.410329409 L12.010186,0.473177331 C12.010186,0.609780666 11.9270813,0.76923779 11.8247586,0.828449882 Z" fill="url(#linearGradient-456)"></path>
- <path d="M11.8273557,2.78868177 L0.325147101,9.45108091 C0.222305047,9.51081241 0.139200356,9.44796449 0.139200356,9.31084175 L0.139200356,9.24799382 C0.139200356,9.11087109 0.222305047,8.95193336 0.324627697,8.89220187 L11.8268362,2.22980272 C11.9296783,2.17007123 12.012783,2.23291915 12.012783,2.37004189 L12.012783,2.43288981 C12.012783,2.57001255 11.9301977,2.72946967 11.8273557,2.78868177 Z" fill="url(#linearGradient-457)"></path>
- <path d="M11.8299527,4.74943305 L0.327744123,11.4118322 C0.224902068,11.4715637 0.141797378,11.4087158 0.141797378,11.271593 L0.141797378,11.2087451 C0.141797378,11.0716224 0.224382664,10.9126847 0.327224718,10.8529532 L11.8294333,4.19055401 C11.9322753,4.13082252 12.01538,4.19367044 12.01538,4.33079318 L12.01538,4.3936411 C12.0158994,4.53076384 11.9327947,4.68970156 11.8299527,4.74943305 Z" fill="url(#linearGradient-458)"></path>
- </g>
- <g transform="translate(0.000000, 64.406135)" id="Path">
- <path d="M11.8548841,1.09646251 L0.35267553,7.75886165 C0.249833475,7.81859315 0.166728785,7.75574523 0.166728785,7.61862249 L0.166728785,7.55577457 C0.166728785,7.41865183 0.249833475,7.25971411 0.352156125,7.19998261 L11.8543647,0.537583466 C11.9572067,0.47785197 12.0403114,0.540699892 12.0403114,0.677822631 L12.0403114,0.740670553 C12.0408308,0.877793292 11.9577261,1.03673101 11.8548841,1.09646251 Z" fill="url(#linearGradient-459)"></path>
- <path d="M11.8580005,3.05669439 L0.355791956,9.71909354 C0.252949901,9.77882503 0.169845211,9.71597711 0.169845211,9.57885437 L0.169845211,9.51600645 C0.169845211,9.37888371 0.252430497,9.21994599 0.355272551,9.16021449 L11.8574811,2.49781535 C11.9603232,2.43808385 12.0434278,2.50093178 12.0434278,2.63805451 L12.0434278,2.70090244 C12.0434278,2.83802518 11.9603232,2.9969629 11.8580005,3.05669439 Z" fill="url(#linearGradient-460)"></path>
- <path d="M11.8605975,5.01692628 L0.358388977,11.6798448 C0.255546923,11.7395763 0.172442232,11.676209 0.172442232,11.5396057 L0.172442232,11.4767577 C0.172442232,11.339635 0.255027519,11.1806973 0.357869573,11.1209658 L11.8600781,4.45804723 C11.9629202,4.39883514 12.0460249,4.46168306 12.0460249,4.5982864 L12.0460249,4.66113432 C12.0460249,4.79825706 11.9634396,4.95719478 11.8605975,5.01692628 Z" fill="url(#linearGradient-461)"></path>
- </g>
- </g>
- <path d="M52.7808277,83.6178618 C52.7797888,82.989902 53.2228407,82.2237806 53.7697735,81.906944 C54.3167062,81.5901074 54.7607969,81.8425379 54.7618357,82.4704977 C54.7628745,83.0984575 54.3198226,83.8645789 53.7728899,84.1814155 C53.2259572,84.4982521 52.7818665,84.2458216 52.7808277,83.6178618 Z" id="Path" fill="url(#linearGradient-462)"></path>
- <path d="M55.639629,81.8965559 C55.6385902,81.2685961 56.0816421,80.5024747 56.6285748,80.1856381 C57.1755076,79.8688015 57.6195983,80.121232 57.6206371,80.7491918 C57.6216759,81.3771516 57.178624,82.143273 56.6316912,82.4601096 C56.0847585,82.7774656 55.6406678,82.5250351 55.639629,81.8965559 Z" id="Path" fill="url(#linearGradient-463)"></path>
- <path d="M58.4984304,80.1757694 C58.4973915,79.5478096 58.9404434,78.7816882 59.4873762,78.4648516 C60.0343089,78.148015 60.4783996,78.4004455 60.4794384,79.0284053 C60.4804772,79.6563651 60.0374253,80.4224865 59.4904926,80.7393231 C58.9435599,81.0566791 58.4994692,80.8042487 58.4984304,80.1757694 Z" id="Path" fill="url(#linearGradient-464)"></path>
- <path d="M52.8114725,105.180932 C52.8104337,104.552972 53.2534856,103.786851 53.8004183,103.470014 C54.3473511,103.153178 54.7914418,103.405608 54.7924806,104.033568 C54.7935194,104.661528 54.3504675,105.427649 53.8035348,105.744486 C53.256602,106.061322 52.8119919,105.808892 52.8114725,105.180932 Z" id="Path" fill="url(#linearGradient-465)"></path>
- <path d="M55.6702739,103.460145 C55.6692351,102.832186 56.1122869,102.066064 56.6592197,101.749228 C57.2061524,101.432391 57.6502431,101.684822 57.6512819,102.312781 C57.6523207,102.940741 57.2092688,103.706863 56.6623361,104.023699 C56.1154034,104.340536 55.6713127,104.088105 55.6702739,103.460145 Z" id="Path" fill="url(#linearGradient-466)"></path>
- <path d="M58.5290752,101.739359 C58.5280364,101.111399 58.9710883,100.345278 59.518021,100.028441 C60.0649538,99.7116045 60.5090445,99.964035 60.5100833,100.591995 C60.5111221,101.219955 60.0685896,101.986076 59.5211374,102.302913 C58.9742047,102.619749 58.530114,102.367319 58.5290752,101.739359 Z" id="Path" fill="url(#linearGradient-467)"></path>
- <path d="M52.841598,126.744002 C52.8405592,126.116042 53.283611,125.349921 53.8305438,125.033084 C54.3774765,124.716248 54.8215672,124.968678 54.822606,125.596638 C54.8236448,126.224598 54.3805929,126.990719 53.8336602,127.307556 C53.2867275,127.624392 52.8426368,127.372481 52.841598,126.744002 Z" id="Path" fill="url(#linearGradient-468)"></path>
- <path d="M55.7009187,125.023216 C55.6998799,124.395256 56.1429318,123.629134 56.6898645,123.312298 C57.2367973,122.995461 57.680888,123.247892 57.6819268,123.875851 C57.6829656,124.503811 57.2399137,125.269933 56.692981,125.586769 C56.1455288,125.903606 55.7014381,125.651695 55.7009187,125.023216 Z" id="Path" fill="url(#linearGradient-469)"></path>
- <path d="M58.5597201,123.302429 C58.5586813,122.674469 59.0017331,121.908348 59.5486659,121.591511 C60.0955986,121.274675 60.5396893,121.527105 60.5407281,122.155065 C60.5417669,122.783025 60.098715,123.549146 59.5517823,123.865983 C59.0043302,124.182819 58.5602395,123.930389 58.5597201,123.302429 Z" id="Path" fill="url(#linearGradient-470)"></path>
- <path d="M52.7501828,62.0542723 C52.749144,61.4263125 53.1921959,60.6601911 53.7391286,60.3433545 C54.2860614,60.0265178 54.730152,60.2789483 54.7311909,60.9069082 C54.7322297,61.534868 54.2891778,62.3009893 53.742245,62.617826 C53.1953123,62.9346626 52.7512216,62.6827515 52.7501828,62.0542723 Z" id="Path" fill="url(#linearGradient-471)"></path>
- <path d="M58.4683049,58.6126993 C58.4672661,57.9847395 58.910318,57.2186181 59.4572507,56.9017815 C60.0041835,56.5849449 60.4482742,56.8373754 60.449313,57.4653352 C60.4503518,58.093295 60.0072999,58.8594164 59.4603671,59.176253 C58.912915,59.4930896 58.4688243,59.2406591 58.4683049,58.6126993 Z" id="Path" fill="url(#linearGradient-472)"></path>
- <path d="M55.6095036,60.3334858 C55.6084647,59.705526 56.0515166,58.9394046 56.5984494,58.622568 C57.1453821,58.3057314 57.5894728,58.5581618 57.5905116,59.1861217 C57.5915504,59.8140815 57.1484985,60.5802028 56.6015658,60.8970395 C56.0541136,61.2138761 55.610023,60.9614456 55.6095036,60.3334858 Z" id="Path" fill="url(#linearGradient-473)" fill-rule="nonzero" opacity="0.5"></path>
- </g>
- <g id="26" transform="translate(567.690000, 287.820000)">
- <polygon id="矩形" fill="url(#linearGradient-474)" fill-rule="nonzero" opacity="0.5" points="24.9172522 66.4378855 61.1862314 85.7676526 33.12803 101.79 -1.77635684e-14 81.3229608"></polygon>
- <polygon id="Path" fill="url(#linearGradient-475)" points="51.9966669 91.2019379 17.6234599 71.3566024 17.6341996 55.434282 52.0074067 75.2796175"></polygon>
- <polygon id="Path" fill="url(#linearGradient-476)" points="51.9966669 91.2019379 86.369874 71.3566024 86.3806137 55.434282 52.0074067 75.2796175"></polygon>
- <polygon id="Path" fill="url(#linearGradient-477)" points="52.0078363 75.2791879 17.6341996 55.434282 52.0069771 35.5898057 86.3806137 55.434282"></polygon>
- <polygon id="Path" fill="url(#linearGradient-478)" points="52.001822 71.2882976 17.6290445 51.4429621 17.6397843 35.5210713 52.0129913 55.3664068"></polygon>
- <polygon id="Path" fill="url(#linearGradient-479)" points="52.001822 71.2882976 86.3750291 51.4429621 86.3861984 35.5210713 52.0129913 55.3664068"></polygon>
- <polygon id="Path" fill="url(#linearGradient-480)" points="52.0129913 55.3655476 17.6397843 35.5210713 52.0125618 15.6761654 86.3861984 35.5210713"></polygon>
- <path d="M58.5487722,67.508336 L58.5487722,63.4504297 C58.5487722,62.3352143 59.1411767,61.3037689 60.1047469,60.7422949 L70.1983914,54.8599203 C71.431744,54.1412163 72.1903998,52.8210866 72.1903998,51.3935593 L72.1903998,43.716358" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <path d="M79.9384834,66.3991348 L79.8929469,63.1119128 C79.8929469,62.7673817 79.5204925,62.5521572 79.2219275,62.7239932 L67.8884865,69.254619 C67.5594206,69.4440681 67.148303,69.2065049 67.148303,68.8267474 L67.148303,67.5813663 C67.148303,66.9451436 66.7792853,66.366486 66.2019165,66.0984219 L63.3142131,64.7572422" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <polygon id="Path" fill="url(#linearGradient-481)" points="77.5039974 69.6816313 82.373399 66.870395 82.373399 64.2434527 77.5039974 67.054689"></polygon>
- <path d="M23.135528,66.3020475 L23.135528,59.5510421 C23.135528,58.8465146 23.5212997,58.1991226 24.1407684,57.8636129 L26.6989763,56.4777559" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <polygon id="Path" fill="url(#linearGradient-482)" points="25.570014 69.9561393 20.7006124 67.1444733 20.7006124 64.517531 25.570014 67.329197"></polygon>
- <path d="M43.2863019,79.7808605 L43.2863019,86.3028945" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <polygon id="Path" fill="url(#linearGradient-483)" points="45.7207879 81.5370241 40.8518159 78.7257877 40.8518159 76.0988454 45.7207879 78.9100818"></polygon>
- <polygon id="Path" fill="url(#linearGradient-484)" points="61.3780514 43.2846201 40.8767321 31.4481294 40.8767321 1.68399245 45.8599751 0.187730791 61.3780514 9.14725795"></polygon>
- <polygon id="Path" fill="url(#linearGradient-485)" points="45.8599751 0.187730791 45.8599751 4.56095607 40.8767321 1.68399245"></polygon>
- <polygon id="Path" fill="url(#linearGradient-486)" points="57.8425264 16.1740601 44.5548809 8.5024435 44.5548809 7.32966304 57.8425264 15.0017092"></polygon>
- <polygon id="Path" fill="url(#linearGradient-487)" points="59.5037506 20.4007952 42.7514625 10.7285784 42.7514625 9.55579796 59.5037506 19.2280148"></polygon>
- <polygon id="Path" fill="url(#linearGradient-488)" points="59.5037506 23.6678265 42.7514625 13.9960393 42.7514625 12.8232588 59.5037506 22.4954756"></polygon>
- <polygon id="Path" fill="url(#linearGradient-489)" points="59.5037506 26.9352874 42.7514625 17.2635001 42.7514625 16.0907197 59.5037506 25.7625069"></polygon>
- <polygon id="Path" fill="url(#linearGradient-490)" points="59.5037506 30.2027482 42.7514625 20.530961 42.7514625 19.3581805 59.5037506 29.0299678"></polygon>
- <polygon id="Path" fill="url(#linearGradient-491)" points="59.5037506 33.4702091 42.7514625 23.7979922 42.7514625 22.6252118 59.5037506 32.2974286"></polygon>
- <polygon id="Path" fill="url(#linearGradient-492)" points="59.5037506 36.7376699 42.7514625 27.0654531 42.7514625 25.8926726 59.5037506 35.5648895"></polygon>
- <path d="M61.5915576,44.693675 L39.2082049,31.7673147 C38.7601426,31.5087015 38.8164189,31.0563434 39.3336452,30.7577784 L39.3336452,30.7577784 C39.851301,30.4587838 40.6340138,30.4265645 41.0825057,30.6851777 L63.4658583,43.6115381 C63.9139206,43.8701512 63.8576443,44.3225094 63.3404181,44.6210744 L63.3404181,44.6210744 C62.8223327,44.9200689 62.0396198,44.9527178 61.5915576,44.693675 Z" id="Path" fill="url(#linearGradient-493)"></path>
- <path d="M39.2082049,31.7673147 C39.2082049,31.7673147 38.8744135,31.5967675 38.9057736,31.2973433 C37.772945,24.6997015 34.5944093,4.56095607 34.5944093,4.56095607 L71.6770399,20.4003656 L63.6217995,44.397258 C63.6217995,44.397258 62.9250046,45.1919993 61.5919872,44.693675 L39.2082049,31.7673147 Z" id="Path" fill="url(#linearGradient-494)" opacity="0.7"></path>
- </g>
- <g id="26-copy" transform="translate(-0.000000, 201.053644)">
- <polygon id="矩形" fill="url(#linearGradient-474)" fill-rule="nonzero" opacity="0.5" points="24.9172522 66.4378855 61.1862314 85.7676526 33.12803 101.79 -1.77635684e-14 81.3229608"></polygon>
- <polygon id="Path" fill="url(#linearGradient-475)" points="51.9966669 91.2019379 17.6234599 71.3566024 17.6341996 55.434282 52.0074067 75.2796175"></polygon>
- <polygon id="Path" fill="url(#linearGradient-476)" points="51.9966669 91.2019379 86.369874 71.3566024 86.3806137 55.434282 52.0074067 75.2796175"></polygon>
- <polygon id="Path" fill="url(#linearGradient-477)" points="52.0078363 75.2791879 17.6341996 55.434282 52.0069771 35.5898057 86.3806137 55.434282"></polygon>
- <polygon id="Path" fill="url(#linearGradient-478)" points="52.001822 71.2882976 17.6290445 51.4429621 17.6397843 35.5210713 52.0129913 55.3664068"></polygon>
- <polygon id="Path" fill="url(#linearGradient-479)" points="52.001822 71.2882976 86.3750291 51.4429621 86.3861984 35.5210713 52.0129913 55.3664068"></polygon>
- <polygon id="Path" fill="url(#linearGradient-480)" points="52.0129913 55.3655476 17.6397843 35.5210713 52.0125618 15.6761654 86.3861984 35.5210713"></polygon>
- <path d="M58.5487722,67.508336 L58.5487722,63.4504297 C58.5487722,62.3352143 59.1411767,61.3037689 60.1047469,60.7422949 L70.1983914,54.8599203 C71.431744,54.1412163 72.1903998,52.8210866 72.1903998,51.3935593 L72.1903998,43.716358" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <path d="M79.9384834,66.3991348 L79.8929469,63.1119128 C79.8929469,62.7673817 79.5204925,62.5521572 79.2219275,62.7239932 L67.8884865,69.254619 C67.5594206,69.4440681 67.148303,69.2065049 67.148303,68.8267474 L67.148303,67.5813663 C67.148303,66.9451436 66.7792853,66.366486 66.2019165,66.0984219 L63.3142131,64.7572422" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <polygon id="Path" fill="url(#linearGradient-481)" points="77.5039974 69.6816313 82.373399 66.870395 82.373399 64.2434527 77.5039974 67.054689"></polygon>
- <path d="M23.135528,66.3020475 L23.135528,59.5510421 C23.135528,58.8465146 23.5212997,58.1991226 24.1407684,57.8636129 L26.6989763,56.4777559" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <polygon id="Path" fill="url(#linearGradient-482)" points="25.570014 69.9561393 20.7006124 67.1444733 20.7006124 64.517531 25.570014 67.329197"></polygon>
- <path d="M43.2863019,79.7808605 L43.2863019,86.3028945" id="Path" stroke="#FBF8FF" stroke-width="0.657306" opacity="0.8"></path>
- <polygon id="Path" fill="url(#linearGradient-483)" points="45.7207879 81.5370241 40.8518159 78.7257877 40.8518159 76.0988454 45.7207879 78.9100818"></polygon>
- <polygon id="Path" fill="url(#linearGradient-484)" points="61.3780514 43.2846201 40.8767321 31.4481294 40.8767321 1.68399245 45.8599751 0.187730791 61.3780514 9.14725795"></polygon>
- <polygon id="Path" fill="url(#linearGradient-485)" points="45.8599751 0.187730791 45.8599751 4.56095607 40.8767321 1.68399245"></polygon>
- <polygon id="Path" fill="url(#linearGradient-486)" points="57.8425264 16.1740601 44.5548809 8.5024435 44.5548809 7.32966304 57.8425264 15.0017092"></polygon>
- <polygon id="Path" fill="url(#linearGradient-487)" points="59.5037506 20.4007952 42.7514625 10.7285784 42.7514625 9.55579796 59.5037506 19.2280148"></polygon>
- <polygon id="Path" fill="url(#linearGradient-488)" points="59.5037506 23.6678265 42.7514625 13.9960393 42.7514625 12.8232588 59.5037506 22.4954756"></polygon>
- <polygon id="Path" fill="url(#linearGradient-489)" points="59.5037506 26.9352874 42.7514625 17.2635001 42.7514625 16.0907197 59.5037506 25.7625069"></polygon>
- <polygon id="Path" fill="url(#linearGradient-490)" points="59.5037506 30.2027482 42.7514625 20.530961 42.7514625 19.3581805 59.5037506 29.0299678"></polygon>
- <polygon id="Path" fill="url(#linearGradient-491)" points="59.5037506 33.4702091 42.7514625 23.7979922 42.7514625 22.6252118 59.5037506 32.2974286"></polygon>
- <polygon id="Path" fill="url(#linearGradient-492)" points="59.5037506 36.7376699 42.7514625 27.0654531 42.7514625 25.8926726 59.5037506 35.5648895"></polygon>
- <path d="M61.5915576,44.693675 L39.2082049,31.7673147 C38.7601426,31.5087015 38.8164189,31.0563434 39.3336452,30.7577784 L39.3336452,30.7577784 C39.851301,30.4587838 40.6340138,30.4265645 41.0825057,30.6851777 L63.4658583,43.6115381 C63.9139206,43.8701512 63.8576443,44.3225094 63.3404181,44.6210744 L63.3404181,44.6210744 C62.8223327,44.9200689 62.0396198,44.9527178 61.5915576,44.693675 Z" id="Path" fill="url(#linearGradient-493)"></path>
- <path d="M39.2082049,31.7673147 C39.2082049,31.7673147 38.8744135,31.5967675 38.9057736,31.2973433 C37.772945,24.6997015 34.5944093,4.56095607 34.5944093,4.56095607 L71.6770399,20.4003656 L63.6217995,44.397258 C63.6217995,44.397258 62.9250046,45.1919993 61.5919872,44.693675 L39.2082049,31.7673147 Z" id="Path" fill="url(#linearGradient-494)" opacity="0.7"></path>
- </g>
- </g>
- </g>
- </g>
- <g id="logo文字" opacity="0.296898251" mask="url(#mask-2)">
- <g transform="translate(820.000000, 491.000000)">
- <g id="公">
- <path d="M13.7332,11.8196721 C13.3286292,11.2698614 13.115008,10.6315851 13.1176,9.98032787 L13.1176,9.32459016 C13.1176,9.19059321 12.9917025,9.08196721 12.8364,9.08196721 L11.2366,9.08196721 C11.080671,9.08195525 10.9536791,9.19006457 10.9516,9.32459016 L10.9516,9.98032787 C10.9491813,10.9873827 11.2815164,11.9739149 11.9092,12.8229508 L13.699,15.252459 C14.1718877,15.8955466 14.4223536,16.6416782 14.421,17.4032787 C14.4210023,17.5951518 14.3324025,17.7791188 14.1747993,17.9144856 C14.0171961,18.0498524 13.8035787,18.1254623 13.5812,18.1245902 L5.0236,18.1245902 C4.80122135,18.1254623 4.58760395,18.0498524 4.4300007,17.9144856 C4.27239746,17.7791188 4.1837977,17.5951518 4.1838,17.4032787 C4.18244641,16.6416782 4.43291232,15.8955466 4.9058,15.252459 L6.6956,12.8229508 C7.3232836,11.9739149 7.65561866,10.9873827 7.6532,9.98032787 L7.6532,9.32459016 C7.65112095,9.19006457 7.52412902,9.08195525 7.3682,9.08196721 L5.7684,9.08196721 C5.61309753,9.08196721 5.4872,9.19059321 5.4872,9.32459016 L5.4872,9.98032787 C5.48979197,10.6315851 5.27617079,11.2698614 4.8716,11.8196721 L3.078,14.2491803 C2.38431067,15.192224 2.01654238,16.2863359 2.0178,17.4032787 L2.0178,17.904918 C2.0178,19.0583783 3.10153953,19.9934426 4.4384,19.9934426 L14.1626,19.9934426 C15.5000766,19.993444 16.5849036,19.0589085 16.587,17.904918 L16.587,17.4032787 C16.5882576,16.2863359 16.2204893,15.192224 15.5268,14.2491803 L13.7332,11.8196721 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
- <path d="M18.5364,9.44262295 C18.1586238,9.45533059 17.7906188,9.33729365 17.5142,9.1147541 C15.941,7.85901639 15.4622,3.62295082 15.5306,1.24590164 L15.5534,0.531147541 C15.5554517,0.465671436 15.5267337,0.402261215 15.4737744,0.35533233 C15.4208152,0.308403444 15.3481145,0.281943286 15.2722,0.281967213 L7.9534,0.281967213 C7.79809753,0.281967213 7.6722,0.390593208 7.6722,0.524590164 L7.6722,1.94098361 C7.6722,2.07498056 7.79809753,2.18360656 7.9534,2.18360656 L13.053,2.18360656 C13.2053823,2.18355853 13.3300816,2.28824279 13.3342,2.41967213 C13.4026,4.55081967 13.8282,8.77377049 16.017,10.5213115 C16.6957252,11.059151 17.5844617,11.3565106 18.506,11.3540984 C18.5835284,11.3576758 18.6593928,11.3338082 18.7160558,11.2880129 C18.7727189,11.2422175 18.8052756,11.1784588 18.8062,11.1114754 L18.8062,9.69508197 C18.8105405,9.56171104 18.690821,9.4496863 18.5364,9.44262295 L18.5364,9.44262295 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
- <path d="M5.2668,0.531147541 C5.26681386,0.396609987 5.14151516,0.287039735 4.9856,0.285245902 L3.3478,0.285245902 C3.19187098,0.285233942 3.06487905,0.393343258 3.0628,0.527868852 C3.0628,2.82295082 2.5536,8.32131148 0.2964,10.304918 C0.197867149,10.3976745 0.197867149,10.5400304 0.2964,10.6327869 L1.3832,11.695082 C1.43703373,11.744213 1.51193829,11.7720516 1.5903,11.7720516 C1.66866171,11.7720516 1.74356627,11.744213 1.7974,11.695082 C3.3174,10.4163934 4.3434,8.12131148 4.8906,4.86557377 C5.12406039,3.42926341 5.24972213,1.98143904 5.2668,0.531147541 L5.2668,0.531147541 Z" id="路径" fill="#FFFFFF" fill-rule="nonzero"></path>
- </g>
- <g id="孙" transform="translate(19.000000, 0.000000)">
- <path d="M7.4584125,16.0024891 C7.38089414,16.0099344 7.30344461,15.9879795 7.24586569,15.9422378 C7.18828676,15.8964961 7.15616024,15.8314018 7.1577,15.7635978 L7.1577,14.3560761 C7.15414471,14.2464027 7.23926827,14.1495031 7.3618875,14.1236413 C7.65542975,14.0662262 7.89488043,13.8823612 7.996725,13.6361739 C8.19185113,12.9428168 8.25827649,12.2267961 8.1934875,11.5152065 C8.1934875,11.2849239 8.1934875,11.0621739 8.1934875,10.8469565 L8.1934875,2.82795652 C8.1934875,2.6960205 8.31648607,2.58906522 8.4682125,2.58906522 L10.0720125,2.58906522 C10.2237389,2.58906522 10.3467375,2.6960205 10.3467375,2.82795652 L10.3467375,10.8340435 C10.3467375,11.0600217 10.3467375,11.273087 10.3467375,11.4796957 C10.4276225,12.4097794 10.3208262,13.3449979 10.031175,14.243087 C9.64467054,15.2175903 8.63861931,15.9055857 7.4584125,16.0024891 Z M18.065025,14.1236413 C18.1934277,14.1503519 18.2801703,14.2545802 18.2692125,14.3689891 L18.2692125,15.7765109 C18.2695605,15.8439857 18.2370771,15.9084417 18.1797883,15.9539529 C18.1224994,15.9994642 18.0457488,16.0217857 17.9685,16.0154022 C16.7876238,15.9181279 15.7806723,15.2305091 15.392025,14.256 C15.105264,13.3574528 14.9997527,12.422488 15.080175,11.4926087 C15.080175,11.273087 15.080175,11.0600217 15.080175,10.8469565 L15.080175,2.82795652 C15.080175,2.6960205 15.2031736,2.58906522 15.3549,2.58906522 L16.9587,2.58906522 C17.1104264,2.58906522 17.233425,2.6960205 17.233425,2.82795652 L17.233425,10.8469565 C17.233425,11.0772391 17.233425,11.2999891 17.233425,11.5152065 C17.168636,12.2267961 17.2350614,12.9428168 17.4301875,13.6361739 C17.5320321,13.8823612 17.7714827,14.0662262 18.065025,14.1236413 Z M13.5135,0.271173913 C13.6658386,0.271162138 13.7899063,0.377608685 13.7919375,0.510065217 L13.7919375,17.3163913 C13.7919375,18.6197053 12.5769111,19.67625 11.0781,19.67625 L7.4435625,19.67625 C7.3707009,19.67625 7.30082352,19.6510812 7.24930259,19.6062804 C7.19778166,19.5614795 7.1688375,19.5007166 7.1688375,19.4373587 L7.1688375,18.04275 C7.1688375,17.910814 7.29183607,17.8038587 7.4435625,17.8038587 L10.2799125,17.8038587 C10.6395999,17.8047191 10.9848405,17.6808519 11.2391789,17.4596881 C11.4935172,17.2385244 11.6359645,16.9383151 11.634975,16.6255435 L11.634975,0.510065217 C11.6370062,0.377608685 11.7610739,0.271162138 11.9134125,0.271173913 L13.5135,0.271173913 Z M5.991975,0.297 C6.35384255,0.29669587 6.6517439,0.544353942 6.66765,0.858717391 L6.66765,1.80136957 C6.66861592,2.02832538 6.59937284,2.25133046 6.467175,2.44702174 L4.8373875,4.8423913 C4.76444785,4.93792182 4.72687787,5.05057543 4.729725,5.16521739 L4.729725,9.2973913 L6.392925,9.2973913 C6.54465143,9.2973913 6.66765,9.40434658 6.66765,9.53628261 L6.66765,10.927663 C6.66864337,10.9915784 6.64013834,11.053174 6.58850935,11.0986755 C6.53688036,11.1441769 6.46643442,11.1697884 6.392925,11.1697826 L4.729725,11.1697826 L4.729725,17.3293043 C4.729725,18.6326183 3.51469856,19.689163 2.0158875,19.689163 L0.63855,19.689163 C0.486211446,19.6891748 0.36214368,19.5827283 0.3601125,19.4502717 L0.3601125,18.055663 C0.36214368,17.9232065 0.486211446,17.81676 0.63855,17.8167717 L1.2177,17.8167717 C1.57772908,17.8167729 1.92295834,17.6921863 2.17718884,17.4705106 C2.43141934,17.2488349 2.57374888,16.9482958 2.5727625,16.6352283 L2.5727625,11.1697826 L0.6199875,11.1697826 C0.467648946,11.1697944 0.34358118,11.0633478 0.34155,10.9308913 L0.34155,9.53628261 C0.34358118,9.40382608 0.467648946,9.29737953 0.6199875,9.2973913 L2.5727625,9.2973913 L2.5727625,5.16198913 C2.5728109,4.68796117 2.73287799,4.22437273 3.0331125,3.82871739 L3.93525,2.50190217 C3.97473026,2.43368834 3.97127313,2.35264272 3.92608982,2.28715966 C3.88090651,2.2216766 3.80029593,2.18088496 3.7125,2.17907609 L0.6237,2.17907609 C0.469923215,2.17907609 0.3452625,2.07067547 0.3452625,1.93695652 L0.3452625,0.535891304 C0.34729368,0.403434772 0.471361446,0.296988225 0.6237,0.297 L5.991975,0.297 Z" id="合并形状" fill="#FFFFFF" fill-rule="nonzero"></path>
- </g>
- <g id="测" transform="translate(38.000000, 0.000000)">
- <path d="M18.8483625,0.271173913 C18.9237612,0.267624648 18.997516,0.291217724 19.0522951,0.336408978 C19.1070743,0.381600231 19.1380479,0.444405181 19.1379375,0.510065217 L19.1379375,17.3163913 C19.138923,17.9419677 18.8538279,18.5422156 18.345474,18.984868 C17.8371201,19.4275204 17.147226,19.6762506 16.4278125,19.67625 L14.2003125,19.67625 C14.0479739,19.6762618 13.9239062,19.5698152 13.921875,19.4373587 L13.921875,18.04275 C13.9239062,17.9102935 14.0479739,17.8038469 14.2003125,17.8038587 L15.8263875,17.8038587 C16.1805253,17.8022921 16.5188584,17.6761612 16.7643315,17.4541924 C17.0098047,17.2322237 17.1415184,16.9333152 17.129475,16.6255435 L17.129475,0.510065217 C17.129475,0.378129193 17.2524736,0.271173913 17.4042,0.271173913 L18.8483625,0.271173913 Z M3.066525,14.5271739 C3.066525,14.7337826 3.07395,14.9436196 3.0702375,15.159913 C3.15022806,16.0887222 3.04472051,17.0225623 2.7583875,17.9200761 C2.43830625,18.8793977 1.48364743,19.5756425 0.34155,19.6827065 C0.263956862,19.6890343 0.186865447,19.666795 0.129008066,19.6213926 C0.0711506842,19.5759902 0.0378236346,19.5115809 0.037125,19.4438152 L0.037125,18.0330652 C0.0367452883,17.923243 0.122521966,17.8273436 0.245025,17.8006304 C0.538826332,17.7450698 0.778042619,17.5603043 0.87615,17.313163 C1.07516627,16.6214547 1.14164562,15.9059428 1.0729125,15.1954239 C1.0729125,14.9726739 1.0729125,14.7499239 1.0729125,14.5271739 L1.0729125,7.32492391 C1.0729125,7.19298789 1.19591107,7.08603261 1.3476375,7.08603261 L2.7918,7.08603261 C2.94352643,7.08603261 3.066525,7.19298789 3.066525,7.32492391 L3.066525,14.5271739 Z M1.2139875,0.271173913 L2.9291625,0.271173913 C3.0152775,0.271173913 3.0850875,0.340983913 3.0850875,0.427098913 L3.0850875,2.01992283 C3.0850875,2.10603783 3.0152775,2.17584783 2.9291625,2.17584783 L1.2139875,2.17584783 C1.1278725,2.17584783 1.0580625,2.10603783 1.0580625,2.01992283 L1.0580625,0.427098913 C1.0580625,0.340983913 1.1278725,0.271173913 1.2139875,0.271173913 Z M1.2139875,3.68021739 L2.9291625,3.68021739 C3.0152775,3.68021739 3.0850875,3.75002739 3.0850875,3.83614239 L3.0850875,5.4289663 C3.0850875,5.5150813 3.0152775,5.5848913 2.9291625,5.5848913 L1.2139875,5.5848913 C1.1278725,5.5848913 1.0580625,5.5150813 1.0580625,5.4289663 L1.0580625,3.83614239 C1.0580625,3.75002739 1.1278725,3.68021739 1.2139875,3.68021739 Z M12.3552,0.267945652 C12.4303162,0.265325681 12.5034589,0.289229457 12.5579969,0.334221727 C12.6125348,0.379213998 12.643833,0.441471091 12.644775,0.506836957 L12.644775,15.7442283 C12.644775,15.8779472 12.5201143,15.9863478 12.3663375,15.9863478 L10.922175,15.9863478 C10.8486656,15.9863537 10.7782196,15.9607422 10.7265907,15.9152407 C10.6749617,15.8697392 10.6464566,15.8081437 10.64745,15.7442283 L10.64745,2.38245652 C10.6484434,2.31854113 10.6199383,2.25694554 10.5683093,2.21144408 C10.5166804,2.16594262 10.4462344,2.14033112 10.372725,2.14033696 L6.660225,2.14033696 C6.50644821,2.14033696 6.3817875,2.24873758 6.3817875,2.38245652 L6.3817875,15.7442283 C6.38278087,15.8081437 6.35427584,15.8697392 6.30264685,15.9152407 C6.25101786,15.9607422 6.18057192,15.9863537 6.1070625,15.9863478 L4.6629,15.9863478 C4.58939058,15.9863537 4.51894464,15.9607422 4.46731565,15.9152407 C4.41568666,15.8697392 4.38718163,15.8081437 4.388175,15.7442283 L4.388175,0.506836957 C4.388175,0.374900932 4.51117357,0.267945652 4.6629,0.267945652 L12.3552,0.267945652 Z M14.21145,1.90467391 L15.659325,1.90467391 C15.8110514,1.90467391 15.93405,2.02767249 15.93405,2.17939891 L15.93405,14.0716663 C15.93405,14.2233927 15.8110514,14.3463913 15.659325,14.3463913 L14.21145,14.3463913 C14.0597236,14.3463913 13.936725,14.2233927 13.936725,14.0716663 L13.936725,2.17939891 C13.936725,2.02767249 14.0597236,1.90467391 14.21145,1.90467391 Z M12.3552,17.8038587 C12.4287027,17.8029949 12.4995376,17.8277819 12.5518643,17.8726767 C12.604191,17.9175714 12.6336442,17.9788288 12.6336375,18.04275 L12.6336375,19.4373587 C12.6336375,19.5692947 12.5106389,19.67625 12.3589125,19.67625 L11.798325,19.67625 C10.484176,19.7527475 9.24522948,19.1371218 8.6538375,18.1137717 C8.613,18.0492065 8.53875,17.8587391 8.516475,17.807087 C8.4979125,17.8587391 8.41995,18.0492065 8.382825,18.1137717 C7.78811279,19.1375358 6.54698116,19.7527943 5.2309125,19.67625 L4.6666125,19.67625 C4.51488607,19.67625 4.3918875,19.5692947 4.3918875,19.4373587 L4.3918875,18.04275 C4.39391868,17.9102935 4.51798645,17.8038469 4.670325,17.8038587 L5.1492375,17.8038587 C7.5252375,17.6973261 7.4584125,15.085663 7.4584125,14.3011957 L7.4584125,3.83840217 C7.46041198,3.70541007 7.58390908,3.59802129 7.73685,3.59628261 L9.2998125,3.59628261 C9.45213751,3.59804885 9.57455104,3.70593387 9.5745375,3.83840217 L9.5745375,14.3011957 C9.5745375,15.085663 9.5002875,17.6973261 11.88,17.8038587 L12.3552,17.8038587 Z" id="合并形状" fill="#FFFFFF" fill-rule="nonzero"></path>
- </g>
- </g>
- </g>
- </g>
- </g>
- </g>
- </g>
- </svg>
|