123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 61.7 150" style="enable-background:new 0 0 61.7 150;" xml:space="preserve">
- <style type="text/css">
- .st0{clip-path:url(#SVGID_2_);}
- .st1{fill:url(#SVGID_3_);}
- .st2{fill:url(#SVGID_4_);}
- .st3{fill:url(#SVGID_5_);}
- .st4{fill:url(#SVGID_6_);}
- .st5{fill:url(#SVGID_7_);}
- .st6{fill:url(#SVGID_8_);}
- .st7{fill:url(#SVGID_9_);}
- .st8{fill:url(#SVGID_10_);}
- .st9{fill:url(#SVGID_11_);}
- .st10{fill:url(#SVGID_12_);}
- .st11{fill:url(#SVGID_13_);}
- .st12{fill:url(#SVGID_14_);}
- .st13{fill:url(#SVGID_15_);}
- .st14{fill:url(#SVGID_16_);}
- .st15{fill:url(#SVGID_17_);}
- .st16{fill:url(#SVGID_18_);}
- .st17{fill:url(#SVGID_19_);}
- .st18{fill:url(#SVGID_20_);}
- .st19{fill:url(#SVGID_21_);}
- .st20{fill:url(#SVGID_22_);}
- .st21{fill:url(#SVGID_23_);}
- .st22{fill:url(#SVGID_24_);}
- .st23{fill:url(#SVGID_25_);}
- .st24{fill:url(#SVGID_26_);}
- .st25{fill:url(#SVGID_27_);}
- .st26{fill:url(#SVGID_28_);}
- .st27{fill:url(#SVGID_29_);}
- .st28{fill:url(#SVGID_30_);}
- .st29{fill:url(#SVGID_31_);}
- .st30{fill:url(#SVGID_32_);}
- .st31{fill:url(#SVGID_33_);}
- .st32{fill:url(#SVGID_34_);}
- .st33{fill:url(#SVGID_35_);}
- .st34{fill:url(#SVGID_36_);}
- .st35{fill:url(#SVGID_37_);}
- .st36{fill:url(#SVGID_38_);}
- .st37{fill:url(#SVGID_39_);}
- .st38{fill:url(#SVGID_40_);}
- .st39{fill:url(#SVGID_41_);}
- .st40{fill:url(#SVGID_42_);}
- .st41{fill:url(#SVGID_43_);}
- .st42{fill:url(#SVGID_44_);}
- .st43{fill:url(#SVGID_45_);}
- .st44{fill:url(#SVGID_46_);}
- .st45{fill:url(#SVGID_47_);}
- .st46{fill:url(#SVGID_48_);}
- .st47{fill:url(#SVGID_49_);}
- .st48{fill:url(#SVGID_50_);}
- .st49{fill:url(#SVGID_51_);}
- .st50{fill:url(#SVGID_52_);}
- .st51{fill:url(#SVGID_53_);}
- .st52{fill:url(#SVGID_54_);}
- .st53{fill:url(#SVGID_55_);}
- .st54{fill:url(#SVGID_56_);}
- .st55{fill:url(#SVGID_57_);}
- .st56{fill:url(#SVGID_58_);}
- .st57{fill:url(#SVGID_59_);}
- .st58{fill:url(#SVGID_60_);}
- .st59{fill:url(#SVGID_61_);}
- .st60{fill:url(#SVGID_62_);}
- .st61{fill:url(#SVGID_63_);}
- .st62{fill:url(#SVGID_64_);}
- .st63{fill:url(#SVGID_65_);}
- .st64{fill:url(#SVGID_66_);}
- .st65{fill:url(#SVGID_67_);}
- .st66{fill:url(#SVGID_68_);}
- .st67{fill:url(#SVGID_69_);}
- .st68{fill:url(#SVGID_70_);}
- .st69{fill:url(#SVGID_71_);}
- .st70{fill:url(#SVGID_72_);}
- .st71{fill:url(#SVGID_73_);}
- .st72{fill:url(#SVGID_74_);}
- .st73{fill:url(#SVGID_75_);}
- .st74{fill:url(#SVGID_76_);}
- .st75{fill:url(#SVGID_77_);}
- .st76{fill:url(#SVGID_78_);}
- .st77{fill:url(#SVGID_79_);}
- .st78{fill:url(#SVGID_80_);}
- .st79{fill:url(#SVGID_81_);}
- .st80{fill:url(#SVGID_82_);}
- .st81{fill:url(#SVGID_83_);}
- .st82{fill:url(#SVGID_84_);}
- .st83{fill:url(#SVGID_85_);}
- .st84{fill:url(#SVGID_86_);}
- .st85{fill:url(#SVGID_87_);}
- .st86{fill:url(#SVGID_88_);}
- .st87{fill:url(#SVGID_89_);}
- .st88{fill:url(#SVGID_90_);}
- .st89{fill:url(#SVGID_91_);}
- .st90{fill:url(#SVGID_92_);}
- .st91{fill:url(#SVGID_93_);}
- .st92{fill:url(#SVGID_94_);}
- .st93{fill:url(#SVGID_95_);}
- .st94{fill:url(#SVGID_96_);}
- .st95{fill:url(#SVGID_97_);}
- .st96{fill:url(#SVGID_98_);}
- .st97{fill:url(#SVGID_99_);}
- .st98{fill:url(#SVGID_100_);}
- .st99{fill:url(#SVGID_101_);}
- .st100{fill:url(#SVGID_102_);}
- .st101{fill:url(#SVGID_103_);}
- .st102{fill:url(#SVGID_104_);}
- .st103{fill:url(#SVGID_105_);}
- .st104{fill:url(#SVGID_106_);}
- .st105{fill:url(#SVGID_107_);}
- .st106{fill:url(#SVGID_108_);}
- .st107{fill:url(#SVGID_109_);}
- .st108{fill:url(#SVGID_110_);}
- .st109{fill:url(#SVGID_111_);}
- .st110{fill:url(#SVGID_112_);}
- .st111{fill:url(#SVGID_113_);}
- .st112{fill:url(#SVGID_114_);}
- .st113{fill:url(#SVGID_115_);}
- .st114{fill:url(#SVGID_116_);}
- .st115{fill:url(#SVGID_117_);}
- .st116{fill:url(#SVGID_118_);}
- .st117{fill:url(#SVGID_119_);}
- .st118{fill:url(#SVGID_120_);}
- .st119{fill:url(#SVGID_121_);}
- .st120{fill:url(#SVGID_122_);}
- .st121{fill:url(#SVGID_123_);}
- .st122{fill:url(#SVGID_124_);}
- .st123{fill:url(#SVGID_125_);}
- .st124{fill:url(#SVGID_126_);}
- .st125{fill:url(#SVGID_127_);}
- .st126{fill:url(#SVGID_128_);}
- .st127{fill:url(#SVGID_129_);}
- </style>
- <title>iot-管道(21)</title>
- <g id="图层_16">
- <g>
- <defs>
- <rect id="SVGID_1_" x="-0.9" y="0" width="62.6" height="149.1"/>
- </defs>
- <clipPath id="SVGID_2_">
- <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
- </clipPath>
- <g class="st0">
-
- <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-152.18" y1="508.57" x2="-152.18" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st1" cx="30.9" cy="0" r="30.9"/>
-
- <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-150.95" y1="508.57" x2="-150.95" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st2" cx="30.9" cy="1.2" r="30.9"/>
-
- <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-149.72" y1="508.57" x2="-149.72" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st3" cx="30.9" cy="2.5" r="30.9"/>
-
- <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-148.49" y1="508.57" x2="-148.49" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st4" cx="30.9" cy="3.7" r="30.9"/>
-
- <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-147.26" y1="508.57" x2="-147.26" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st5" cx="30.9" cy="4.9" r="30.9"/>
-
- <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-146.03" y1="508.57" x2="-146.03" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st6" cx="30.9" cy="6.1" r="30.9"/>
-
- <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-144.8" y1="508.57" x2="-144.8" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st7" cx="30.9" cy="7.4" r="30.9"/>
-
- <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-143.57" y1="508.57" x2="-143.57" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st8" cx="30.9" cy="8.6" r="30.9"/>
-
- <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-142.34" y1="508.57" x2="-142.34" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st9" cx="30.9" cy="9.8" r="30.9"/>
-
- <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-141.11" y1="508.57" x2="-141.11" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st10" cx="30.9" cy="11.1" r="30.9"/>
-
- <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-139.88" y1="508.57" x2="-139.88" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st11" cx="30.9" cy="12.3" r="30.9"/>
-
- <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-138.65" y1="508.57" x2="-138.65" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st12" cx="30.9" cy="13.5" r="30.9"/>
-
- <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-137.42" y1="508.57" x2="-137.42" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st13" cx="30.9" cy="14.8" r="30.9"/>
-
- <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-136.19" y1="508.57" x2="-136.19" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st14" cx="30.9" cy="16" r="30.9"/>
-
- <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-134.97" y1="508.57" x2="-134.97" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st15" cx="30.9" cy="17.2" r="30.9"/>
-
- <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-133.74" y1="508.57" x2="-133.74" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st16" cx="30.9" cy="18.4" r="30.9"/>
-
- <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-132.51" y1="508.57" x2="-132.51" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st17" cx="30.9" cy="19.7" r="30.9"/>
-
- <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-131.28" y1="508.57" x2="-131.28" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st18" cx="30.9" cy="20.9" r="30.9"/>
-
- <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-130.05" y1="508.57" x2="-130.05" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st19" cx="30.9" cy="22.1" r="30.9"/>
-
- <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-128.82" y1="508.57" x2="-128.82" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st20" cx="30.9" cy="23.4" r="30.9"/>
-
- <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-127.59" y1="508.57" x2="-127.59" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st21" cx="30.9" cy="24.6" r="30.9"/>
-
- <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-126.36" y1="508.57" x2="-126.36" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st22" cx="30.9" cy="25.8" r="30.9"/>
-
- <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-125.13" y1="508.57" x2="-125.13" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st23" cx="30.9" cy="27" r="30.9"/>
-
- <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-123.9" y1="508.57" x2="-123.9" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st24" cx="30.9" cy="28.3" r="30.9"/>
-
- <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-122.67" y1="508.57" x2="-122.67" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st25" cx="30.9" cy="29.5" r="30.9"/>
-
- <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-121.44" y1="508.57" x2="-121.44" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st26" cx="30.9" cy="30.7" r="30.9"/>
-
- <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-120.21" y1="508.57" x2="-120.21" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st27" cx="30.9" cy="32" r="30.9"/>
-
- <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-118.98" y1="508.57" x2="-118.98" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st28" cx="30.9" cy="33.2" r="30.9"/>
-
- <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-117.75" y1="508.57" x2="-117.75" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st29" cx="30.9" cy="34.4" r="30.9"/>
-
- <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-116.52" y1="508.57" x2="-116.52" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st30" cx="30.9" cy="35.7" r="30.9"/>
-
- <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-115.29" y1="508.57" x2="-115.29" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st31" cx="30.9" cy="36.9" r="30.9"/>
-
- <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-114.06" y1="508.57" x2="-114.06" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st32" cx="30.9" cy="38.1" r="30.9"/>
-
- <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-112.83" y1="508.57" x2="-112.83" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st33" cx="30.9" cy="39.3" r="30.9"/>
-
- <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-111.6" y1="508.57" x2="-111.6" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st34" cx="30.9" cy="40.6" r="30.9"/>
-
- <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-110.37" y1="508.57" x2="-110.37" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st35" cx="30.9" cy="41.8" r="30.9"/>
-
- <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-109.14" y1="508.57" x2="-109.14" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st36" cx="30.9" cy="43" r="30.9"/>
-
- <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-107.91" y1="508.57" x2="-107.91" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st37" cx="30.9" cy="44.3" r="30.9"/>
-
- <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-106.68" y1="508.57" x2="-106.68" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st38" cx="30.9" cy="45.5" r="30.9"/>
-
- <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-105.45" y1="508.57" x2="-105.45" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st39" cx="30.9" cy="46.7" r="30.9"/>
-
- <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-104.22" y1="508.57" x2="-104.22" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st40" cx="30.9" cy="48" r="30.9"/>
-
- <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-102.99" y1="508.57" x2="-102.99" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st41" cx="30.9" cy="49.2" r="30.9"/>
-
- <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-101.76" y1="508.57" x2="-101.76" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st42" cx="30.9" cy="50.4" r="30.9"/>
-
- <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-100.54" y1="508.57" x2="-100.54" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st43" cx="30.9" cy="51.6" r="30.9"/>
-
- <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-99.31" y1="508.57" x2="-99.31" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st44" cx="30.9" cy="52.9" r="30.9"/>
-
- <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-98.08" y1="508.57" x2="-98.08" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st45" cx="30.9" cy="54.1" r="30.9"/>
-
- <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-96.85" y1="508.57" x2="-96.85" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st46" cx="30.9" cy="55.3" r="30.9"/>
-
- <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="-95.62" y1="508.57" x2="-95.62" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st47" cx="30.9" cy="56.6" r="30.9"/>
-
- <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-94.39" y1="508.57" x2="-94.39" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st48" cx="30.9" cy="57.8" r="30.9"/>
-
- <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-93.16" y1="508.57" x2="-93.16" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st49" cx="30.9" cy="59" r="30.9"/>
-
- <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-91.93" y1="508.57" x2="-91.93" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st50" cx="30.9" cy="60.2" r="30.9"/>
-
- <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-90.7" y1="508.57" x2="-90.7" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st51" cx="30.9" cy="61.5" r="30.9"/>
-
- <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="-89.47" y1="508.57" x2="-89.47" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st52" cx="30.9" cy="62.7" r="30.9"/>
-
- <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-88.24" y1="508.57" x2="-88.24" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st53" cx="30.9" cy="63.9" r="30.9"/>
-
- <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-87.01" y1="508.57" x2="-87.01" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st54" cx="30.9" cy="65.2" r="30.9"/>
-
- <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-85.78" y1="508.57" x2="-85.78" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st55" cx="30.9" cy="66.4" r="30.9"/>
-
- <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-84.55" y1="508.57" x2="-84.55" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st56" cx="30.9" cy="67.6" r="30.9"/>
-
- <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="-83.32" y1="508.57" x2="-83.32" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st57" cx="30.9" cy="68.9" r="30.9"/>
-
- <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-82.09" y1="508.57" x2="-82.09" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st58" cx="30.9" cy="70.1" r="30.9"/>
-
- <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="-80.86" y1="508.57" x2="-80.86" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st59" cx="30.9" cy="71.3" r="30.9"/>
-
- <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="-79.63" y1="508.57" x2="-79.63" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st60" cx="30.9" cy="72.5" r="30.9"/>
-
- <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-78.4" y1="508.57" x2="-78.4" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st61" cx="30.9" cy="73.8" r="30.9"/>
-
- <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="-77.17" y1="508.57" x2="-77.17" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st62" cx="30.9" cy="75" r="30.9"/>
-
- <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-75.94" y1="508.57" x2="-75.94" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st63" cx="30.9" cy="76.2" r="30.9"/>
-
- <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="-74.71" y1="508.57" x2="-74.71" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st64" cx="30.9" cy="77.5" r="30.9"/>
-
- <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="-73.48" y1="508.57" x2="-73.48" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st65" cx="30.9" cy="78.7" r="30.9"/>
-
- <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="-72.25" y1="508.57" x2="-72.25" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st66" cx="30.9" cy="79.9" r="30.9"/>
-
- <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="-71.02" y1="508.57" x2="-71.02" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st67" cx="30.9" cy="81.2" r="30.9"/>
-
- <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="-69.79" y1="508.57" x2="-69.79" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st68" cx="30.9" cy="82.4" r="30.9"/>
-
- <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="-68.56" y1="508.57" x2="-68.56" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st69" cx="30.9" cy="83.6" r="30.9"/>
-
- <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="-67.33" y1="508.57" x2="-67.33" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st70" cx="30.9" cy="84.8" r="30.9"/>
-
- <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="-66.11" y1="508.57" x2="-66.11" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st71" cx="30.9" cy="86.1" r="30.9"/>
-
- <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="-64.88" y1="508.57" x2="-64.88" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st72" cx="30.9" cy="87.3" r="30.9"/>
-
- <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="-63.65" y1="508.57" x2="-63.65" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st73" cx="30.9" cy="88.5" r="30.9"/>
-
- <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="-62.42" y1="508.57" x2="-62.42" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st74" cx="30.9" cy="89.8" r="30.9"/>
-
- <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-61.19" y1="508.57" x2="-61.19" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st75" cx="30.9" cy="91" r="30.9"/>
-
- <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-59.96" y1="508.57" x2="-59.96" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st76" cx="30.9" cy="92.2" r="30.9"/>
-
- <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="-58.73" y1="508.57" x2="-58.73" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st77" cx="30.9" cy="93.4" r="30.9"/>
-
- <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="-57.5" y1="508.57" x2="-57.5" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st78" cx="30.9" cy="94.7" r="30.9"/>
-
- <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="-56.27" y1="508.57" x2="-56.27" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st79" cx="30.9" cy="95.9" r="30.9"/>
-
- <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-55.04" y1="508.57" x2="-55.04" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st80" cx="30.9" cy="97.1" r="30.9"/>
-
- <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-53.81" y1="508.57" x2="-53.81" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st81" cx="30.9" cy="98.4" r="30.9"/>
-
- <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-52.58" y1="508.57" x2="-52.58" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st82" cx="30.9" cy="99.6" r="30.9"/>
-
- <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-51.35" y1="508.57" x2="-51.35" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st83" cx="30.9" cy="100.8" r="30.9"/>
-
- <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-50.12" y1="508.57" x2="-50.12" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st84" cx="30.9" cy="102.1" r="30.9"/>
-
- <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-48.89" y1="508.57" x2="-48.89" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st85" cx="30.9" cy="103.3" r="30.9"/>
-
- <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="-47.66" y1="508.57" x2="-47.66" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st86" cx="30.9" cy="104.5" r="30.9"/>
-
- <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="-46.43" y1="508.57" x2="-46.43" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st87" cx="30.9" cy="105.7" r="30.9"/>
-
- <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="-45.2" y1="508.57" x2="-45.2" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st88" cx="30.9" cy="107" r="30.9"/>
-
- <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="-43.97" y1="508.57" x2="-43.97" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st89" cx="30.9" cy="108.2" r="30.9"/>
-
- <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="-42.74" y1="508.57" x2="-42.74" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st90" cx="30.9" cy="109.4" r="30.9"/>
-
- <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-41.51" y1="508.57" x2="-41.51" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st91" cx="30.9" cy="110.7" r="30.9"/>
-
- <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-40.28" y1="508.57" x2="-40.28" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st92" cx="30.9" cy="111.9" r="30.9"/>
-
- <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="-39.05" y1="508.57" x2="-39.05" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st93" cx="30.9" cy="113.1" r="30.9"/>
-
- <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="-37.82" y1="508.57" x2="-37.82" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st94" cx="30.9" cy="114.4" r="30.9"/>
-
- <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="-36.59" y1="508.57" x2="-36.59" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st95" cx="30.9" cy="115.6" r="30.9"/>
-
- <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="-35.36" y1="508.57" x2="-35.36" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st96" cx="30.9" cy="116.8" r="30.9"/>
-
- <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="-34.13" y1="508.57" x2="-34.13" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st97" cx="30.9" cy="118" r="30.9"/>
-
- <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="-32.9" y1="508.57" x2="-32.9" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st98" cx="30.9" cy="119.3" r="30.9"/>
-
- <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-31.68" y1="508.57" x2="-31.68" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st99" cx="30.9" cy="120.5" r="30.9"/>
-
- <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-30.45" y1="508.57" x2="-30.45" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st100" cx="30.9" cy="121.7" r="30.9"/>
-
- <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-29.22" y1="508.57" x2="-29.22" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st101" cx="30.9" cy="123" r="30.9"/>
-
- <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-27.99" y1="508.57" x2="-27.99" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st102" cx="30.9" cy="124.2" r="30.9"/>
-
- <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-26.76" y1="508.57" x2="-26.76" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st103" cx="30.9" cy="125.4" r="30.9"/>
-
- <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="-25.53" y1="508.57" x2="-25.53" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st104" cx="30.9" cy="126.6" r="30.9"/>
-
- <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="-24.3" y1="508.57" x2="-24.3" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st105" cx="30.9" cy="127.9" r="30.9"/>
-
- <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="-23.07" y1="508.57" x2="-23.07" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st106" cx="30.9" cy="129.1" r="30.9"/>
-
- <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="-21.84" y1="508.57" x2="-21.84" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st107" cx="30.9" cy="130.3" r="30.9"/>
-
- <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="-20.61" y1="508.57" x2="-20.61" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st108" cx="30.9" cy="131.6" r="30.9"/>
-
- <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="-19.38" y1="508.57" x2="-19.38" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st109" cx="30.9" cy="132.8" r="30.9"/>
-
- <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="-18.15" y1="508.57" x2="-18.15" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st110" cx="30.9" cy="134" r="30.9"/>
-
- <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="-16.92" y1="508.57" x2="-16.92" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st111" cx="30.9" cy="135.3" r="30.9"/>
-
- <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="-15.69" y1="508.57" x2="-15.69" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st112" cx="30.9" cy="136.5" r="30.9"/>
-
- <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="-14.46" y1="508.57" x2="-14.46" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st113" cx="30.9" cy="137.7" r="30.9"/>
-
- <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-13.23" y1="508.57" x2="-13.23" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st114" cx="30.9" cy="138.9" r="30.9"/>
-
- <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="-12" y1="508.57" x2="-12" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st115" cx="30.9" cy="140.2" r="30.9"/>
-
- <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-10.77" y1="508.57" x2="-10.77" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st116" cx="30.9" cy="141.4" r="30.9"/>
-
- <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-9.54" y1="508.57" x2="-9.54" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st117" cx="30.9" cy="142.6" r="30.9"/>
-
- <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-8.31" y1="508.57" x2="-8.31" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st118" cx="30.9" cy="143.9" r="30.9"/>
-
- <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="-7.08" y1="508.57" x2="-7.08" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st119" cx="30.9" cy="145.1" r="30.9"/>
-
- <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="-5.85" y1="508.57" x2="-5.85" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st120" cx="30.9" cy="146.3" r="30.9"/>
-
- <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="-4.62" y1="508.57" x2="-4.62" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st121" cx="30.9" cy="147.6" r="30.9"/>
-
- <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="-3.39" y1="508.57" x2="-3.39" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st122" cx="30.9" cy="148.8" r="30.9"/>
-
- <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="-2.16" y1="508.57" x2="-2.16" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st123" cx="30.9" cy="150" r="30.9"/>
-
- <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="-0.93" y1="508.57" x2="-0.93" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st124" cx="30.9" cy="151.2" r="30.9"/>
-
- <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="0.3" y1="508.57" x2="0.3" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st125" cx="30.9" cy="152.5" r="30.9"/>
-
- <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="1.53" y1="508.57" x2="1.53" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st126" cx="30.9" cy="153.7" r="30.9"/>
-
- <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="2.75" y1="508.57" x2="2.75" y2="570.29" gradientTransform="matrix(0 1 -1 0 570.28 152.18)">
- <stop offset="0" style="stop-color:#B7B7B7"/>
- <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
- <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
- <stop offset="9.000000e-002" style="stop-color:#808484"/>
- <stop offset="0.2" style="stop-color:#A3A6A6"/>
- <stop offset="0.49" style="stop-color:#F6F6F6"/>
- <stop offset="0.61" style="stop-color:#F3F3F3"/>
- <stop offset="0.7" style="stop-color:#EAEAEA"/>
- <stop offset="0.77" style="stop-color:#DBDBDB"/>
- <stop offset="0.83" style="stop-color:#C5C5C5"/>
- <stop offset="0.9" style="stop-color:#AAAAAA"/>
- <stop offset="0.95" style="stop-color:#888888"/>
- <stop offset="1" style="stop-color:#666666"/>
- </linearGradient>
- <circle class="st127" cx="30.9" cy="154.9" r="30.9"/>
- </g>
- </g>
- </g>
- </svg>
|