123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181 |
- <?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 63 150" style="enable-background:new 0 0 63 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_);}
- </style>
- <title>iot-管道(21)</title>
- <g id="图层_14">
- <g>
- <defs>
- <path id="SVGID_1_" d="M63.8,150H0V22l7-9.5C17.2-1.2,36.5-4.1,50.3,6c2.5,1.8,4.6,4,6.5,6.5l7,9.5L63.8,150z"/>
- </defs>
- <clipPath id="SVGID_2_">
- <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
- </clipPath>
- <g class="st0">
-
- <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="447.57" y1="645.45" x2="447.57" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="31.5" r="31.5"/>
-
- <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="448.83" y1="645.45" x2="448.83" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="32.7" r="31.5"/>
-
- <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="450.08" y1="645.45" x2="450.08" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="34" r="31.5"/>
-
- <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="451.33" y1="645.45" x2="451.33" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="35.2" r="31.5"/>
-
- <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="452.59" y1="645.45" x2="452.59" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="36.5" r="31.5"/>
-
- <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="453.84" y1="645.45" x2="453.84" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="37.7" r="31.5"/>
-
- <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="455.1" y1="645.45" x2="455.1" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="39" r="31.5"/>
-
- <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="456.35" y1="645.45" x2="456.35" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="40.3" r="31.5"/>
-
- <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="457.61" y1="645.45" x2="457.61" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="41.5" r="31.5"/>
-
- <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="458.86" y1="645.45" x2="458.86" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="42.8" r="31.5"/>
-
- <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="460.12" y1="645.45" x2="460.12" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="44" r="31.5"/>
-
- <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="461.37" y1="645.45" x2="461.37" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="45.3" r="31.5"/>
-
- <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="462.63" y1="645.45" x2="462.63" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="46.5" r="31.5"/>
-
- <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="463.88" y1="645.45" x2="463.88" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="47.8" r="31.5"/>
-
- <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="465.14" y1="645.45" x2="465.14" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="49" r="31.5"/>
-
- <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="466.39" y1="645.45" x2="466.39" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="50.3" r="31.5"/>
-
- <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="467.64" y1="645.45" x2="467.64" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="51.5" r="31.5"/>
-
- <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="468.9" y1="645.45" x2="468.9" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="52.8" r="31.5"/>
-
- <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="470.15" y1="645.45" x2="470.15" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="54.1" r="31.5"/>
-
- <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="471.41" y1="645.45" x2="471.41" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="55.3" r="31.5"/>
-
- <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="472.66" y1="645.45" x2="472.66" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="56.6" r="31.5"/>
-
- <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="473.92" y1="645.45" x2="473.92" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="57.8" r="31.5"/>
-
- <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="475.17" y1="645.45" x2="475.17" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="59.1" r="31.5"/>
-
- <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="476.43" y1="645.45" x2="476.43" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="60.3" r="31.5"/>
-
- <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="477.68" y1="645.45" x2="477.68" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="61.6" r="31.5"/>
-
- <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="478.94" y1="645.45" x2="478.94" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="62.8" r="31.5"/>
-
- <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="480.19" y1="645.45" x2="480.19" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="64.1" r="31.5"/>
-
- <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="481.44" y1="645.45" x2="481.44" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="65.3" r="31.5"/>
-
- <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="482.7" y1="645.45" x2="482.7" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="66.6" r="31.5"/>
-
- <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="483.95" y1="645.45" x2="483.95" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="67.9" r="31.5"/>
-
- <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="485.21" y1="645.45" x2="485.21" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="69.1" r="31.5"/>
-
- <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="486.46" y1="645.45" x2="486.46" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="70.4" r="31.5"/>
-
- <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="487.72" y1="645.45" x2="487.72" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="71.6" r="31.5"/>
-
- <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="488.97" y1="645.45" x2="488.97" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="72.9" r="31.5"/>
-
- <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="490.23" y1="645.45" x2="490.23" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="74.1" r="31.5"/>
-
- <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="491.48" y1="645.45" x2="491.48" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="75.4" r="31.5"/>
-
- <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="492.74" y1="645.45" x2="492.74" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="76.6" r="31.5"/>
-
- <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="493.99" y1="645.45" x2="493.99" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="77.9" r="31.5"/>
-
- <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="495.25" y1="645.45" x2="495.25" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="79.2" r="31.5"/>
-
- <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="496.5" y1="645.45" x2="496.5" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="80.4" r="31.5"/>
-
- <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="497.75" y1="645.45" x2="497.75" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="81.7" r="31.5"/>
-
- <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="499.01" y1="645.45" x2="499.01" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="82.9" r="31.5"/>
-
- <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="500.26" y1="645.45" x2="500.26" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="84.2" r="31.5"/>
-
- <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="501.52" y1="645.45" x2="501.52" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="85.4" r="31.5"/>
-
- <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="502.77" y1="645.45" x2="502.77" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="86.7" r="31.5"/>
-
- <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="504.03" y1="645.45" x2="504.03" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="87.9" r="31.5"/>
-
- <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="505.28" y1="645.45" x2="505.28" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="89.2" r="31.5"/>
-
- <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="506.54" y1="645.45" x2="506.54" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="90.4" r="31.5"/>
-
- <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="507.79" y1="645.45" x2="507.79" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="91.7" r="31.5"/>
-
- <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="509.05" y1="645.45" x2="509.05" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="93" r="31.5"/>
-
- <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="510.3" y1="645.45" x2="510.3" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="94.2" r="31.5"/>
-
- <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="511.55" y1="645.45" x2="511.55" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="95.5" r="31.5"/>
-
- <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="512.81" y1="645.45" x2="512.81" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="96.7" r="31.5"/>
-
- <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="514.06" y1="645.45" x2="514.06" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="98" r="31.5"/>
-
- <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="515.32" y1="645.45" x2="515.32" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="99.2" r="31.5"/>
-
- <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="516.57" y1="645.45" x2="516.57" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="100.5" r="31.5"/>
-
- <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="517.83" y1="645.45" x2="517.83" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="101.7" r="31.5"/>
-
- <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="519.08" y1="645.45" x2="519.08" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="103" r="31.5"/>
-
- <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="520.34" y1="645.45" x2="520.34" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="104.2" r="31.5"/>
-
- <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="521.59" y1="645.45" x2="521.59" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="105.5" r="31.5"/>
-
- <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="522.85" y1="645.45" x2="522.85" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="106.8" r="31.5"/>
-
- <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="524.1" y1="645.45" x2="524.1" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="108" r="31.5"/>
-
- <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="525.35" y1="645.45" x2="525.35" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="109.3" r="31.5"/>
-
- <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="526.61" y1="645.45" x2="526.61" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="110.5" r="31.5"/>
-
- <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="527.86" y1="645.45" x2="527.86" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="111.8" r="31.5"/>
-
- <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="529.12" y1="645.45" x2="529.12" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="113" r="31.5"/>
-
- <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="530.37" y1="645.45" x2="530.37" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="114.3" r="31.5"/>
-
- <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="531.63" y1="645.45" x2="531.63" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="115.5" r="31.5"/>
-
- <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="532.88" y1="645.45" x2="532.88" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="116.8" r="31.5"/>
-
- <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="534.14" y1="645.45" x2="534.14" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="118" r="31.5"/>
-
- <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="535.39" y1="645.45" x2="535.39" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="119.3" r="31.5"/>
-
- <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="536.65" y1="645.45" x2="536.65" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="120.6" r="31.5"/>
-
- <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="537.9" y1="645.45" x2="537.9" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="121.8" r="31.5"/>
-
- <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="539.16" y1="645.45" x2="539.16" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="123.1" r="31.5"/>
-
- <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="540.41" y1="645.45" x2="540.41" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="124.3" r="31.5"/>
-
- <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="541.66" y1="645.45" x2="541.66" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="125.6" r="31.5"/>
-
- <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="542.92" y1="645.45" x2="542.92" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="126.8" r="31.5"/>
-
- <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="544.17" y1="645.45" x2="544.17" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="128.1" r="31.5"/>
-
- <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="545.43" y1="645.45" x2="545.43" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="129.3" r="31.5"/>
-
- <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="546.68" y1="645.45" x2="546.68" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="130.6" r="31.5"/>
-
- <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="547.94" y1="645.45" x2="547.94" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="131.8" r="31.5"/>
-
- <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="549.19" y1="645.45" x2="549.19" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="133.1" r="31.5"/>
-
- <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="550.45" y1="645.45" x2="550.45" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="134.4" r="31.5"/>
-
- <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="551.7" y1="645.45" x2="551.7" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="135.6" r="31.5"/>
-
- <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="552.96" y1="645.45" x2="552.96" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="136.9" r="31.5"/>
-
- <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="554.21" y1="645.45" x2="554.21" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="138.1" r="31.5"/>
-
- <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="555.46" y1="645.45" x2="555.46" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="139.4" r="31.5"/>
-
- <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="556.72" y1="645.45" x2="556.72" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="140.6" r="31.5"/>
-
- <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="557.97" y1="645.45" x2="557.97" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="141.9" r="31.5"/>
-
- <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="559.23" y1="645.45" x2="559.23" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="143.1" r="31.5"/>
-
- <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="560.48" y1="645.45" x2="560.48" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="144.4" r="31.5"/>
-
- <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="561.74" y1="645.45" x2="561.74" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="145.6" r="31.5"/>
-
- <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="562.99" y1="645.45" x2="562.99" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="146.9" r="31.5"/>
-
- <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="564.25" y1="645.45" x2="564.25" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="148.2" r="31.5"/>
-
- <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="565.5" y1="645.45" x2="565.5" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="149.4" r="31.5"/>
-
- <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="566.76" y1="645.45" x2="566.76" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="150.7" r="31.5"/>
-
- <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="568.01" y1="645.45" x2="568.01" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="151.9" r="31.5"/>
-
- <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="569.27" y1="645.45" x2="569.27" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="153.2" r="31.5"/>
-
- <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="570.52" y1="645.45" x2="570.52" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="154.4" r="31.5"/>
-
- <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="571.77" y1="645.45" x2="571.77" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="155.7" r="31.5"/>
-
- <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="573.03" y1="645.45" x2="573.03" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="156.9" r="31.5"/>
-
- <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="574.28" y1="645.45" x2="574.28" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="158.2" r="31.5"/>
-
- <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="575.54" y1="645.45" x2="575.54" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="159.4" r="31.5"/>
-
- <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="576.79" y1="645.45" x2="576.79" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="160.7" r="31.5"/>
-
- <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="578.05" y1="645.45" x2="578.05" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="162" r="31.5"/>
-
- <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="579.3" y1="645.45" x2="579.3" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="163.2" r="31.5"/>
-
- <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="580.56" y1="645.45" x2="580.56" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="164.5" r="31.5"/>
-
- <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="581.81" y1="645.45" x2="581.81" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="165.7" r="31.5"/>
-
- <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="583.07" y1="645.45" x2="583.07" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="167" r="31.5"/>
-
- <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="584.32" y1="645.45" x2="584.32" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="168.2" r="31.5"/>
-
- <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="585.57" y1="645.45" x2="585.57" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="169.5" r="31.5"/>
-
- <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="586.83" y1="645.45" x2="586.83" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="170.7" r="31.5"/>
-
- <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="588.08" y1="645.45" x2="588.08" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="172" r="31.5"/>
-
- <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="589.34" y1="645.45" x2="589.34" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="173.2" r="31.5"/>
-
- <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="590.59" y1="645.45" x2="590.59" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="174.5" r="31.5"/>
-
- <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="591.85" y1="645.45" x2="591.85" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="175.8" r="31.5"/>
-
- <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="593.1" y1="645.45" x2="593.1" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="177" r="31.5"/>
-
- <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="594.36" y1="645.45" x2="594.36" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="178.3" r="31.5"/>
-
- <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="595.61" y1="645.45" x2="595.61" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="179.5" r="31.5"/>
-
- <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="596.87" y1="645.45" x2="596.87" y2="708.41" gradientTransform="matrix(6.123234e-017 1 1 -6.123234e-017 -645.45 -416.09)">
- <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="31.5" cy="180.8" r="31.5"/>
- </g>
- </g>
- </g>
- </svg>
|