iot-管道(21)-14.svg 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
  3. <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"
  4. viewBox="0 0 63 150" style="enable-background:new 0 0 63 150;" xml:space="preserve">
  5. <style type="text/css">
  6. .st0{clip-path:url(#SVGID_2_);}
  7. .st1{fill:url(#SVGID_3_);}
  8. .st2{fill:url(#SVGID_4_);}
  9. .st3{fill:url(#SVGID_5_);}
  10. .st4{fill:url(#SVGID_6_);}
  11. .st5{fill:url(#SVGID_7_);}
  12. .st6{fill:url(#SVGID_8_);}
  13. .st7{fill:url(#SVGID_9_);}
  14. .st8{fill:url(#SVGID_10_);}
  15. .st9{fill:url(#SVGID_11_);}
  16. .st10{fill:url(#SVGID_12_);}
  17. .st11{fill:url(#SVGID_13_);}
  18. .st12{fill:url(#SVGID_14_);}
  19. .st13{fill:url(#SVGID_15_);}
  20. .st14{fill:url(#SVGID_16_);}
  21. .st15{fill:url(#SVGID_17_);}
  22. .st16{fill:url(#SVGID_18_);}
  23. .st17{fill:url(#SVGID_19_);}
  24. .st18{fill:url(#SVGID_20_);}
  25. .st19{fill:url(#SVGID_21_);}
  26. .st20{fill:url(#SVGID_22_);}
  27. .st21{fill:url(#SVGID_23_);}
  28. .st22{fill:url(#SVGID_24_);}
  29. .st23{fill:url(#SVGID_25_);}
  30. .st24{fill:url(#SVGID_26_);}
  31. .st25{fill:url(#SVGID_27_);}
  32. .st26{fill:url(#SVGID_28_);}
  33. .st27{fill:url(#SVGID_29_);}
  34. .st28{fill:url(#SVGID_30_);}
  35. .st29{fill:url(#SVGID_31_);}
  36. .st30{fill:url(#SVGID_32_);}
  37. .st31{fill:url(#SVGID_33_);}
  38. .st32{fill:url(#SVGID_34_);}
  39. .st33{fill:url(#SVGID_35_);}
  40. .st34{fill:url(#SVGID_36_);}
  41. .st35{fill:url(#SVGID_37_);}
  42. .st36{fill:url(#SVGID_38_);}
  43. .st37{fill:url(#SVGID_39_);}
  44. .st38{fill:url(#SVGID_40_);}
  45. .st39{fill:url(#SVGID_41_);}
  46. .st40{fill:url(#SVGID_42_);}
  47. .st41{fill:url(#SVGID_43_);}
  48. .st42{fill:url(#SVGID_44_);}
  49. .st43{fill:url(#SVGID_45_);}
  50. .st44{fill:url(#SVGID_46_);}
  51. .st45{fill:url(#SVGID_47_);}
  52. .st46{fill:url(#SVGID_48_);}
  53. .st47{fill:url(#SVGID_49_);}
  54. .st48{fill:url(#SVGID_50_);}
  55. .st49{fill:url(#SVGID_51_);}
  56. .st50{fill:url(#SVGID_52_);}
  57. .st51{fill:url(#SVGID_53_);}
  58. .st52{fill:url(#SVGID_54_);}
  59. .st53{fill:url(#SVGID_55_);}
  60. .st54{fill:url(#SVGID_56_);}
  61. .st55{fill:url(#SVGID_57_);}
  62. .st56{fill:url(#SVGID_58_);}
  63. .st57{fill:url(#SVGID_59_);}
  64. .st58{fill:url(#SVGID_60_);}
  65. .st59{fill:url(#SVGID_61_);}
  66. .st60{fill:url(#SVGID_62_);}
  67. .st61{fill:url(#SVGID_63_);}
  68. .st62{fill:url(#SVGID_64_);}
  69. .st63{fill:url(#SVGID_65_);}
  70. .st64{fill:url(#SVGID_66_);}
  71. .st65{fill:url(#SVGID_67_);}
  72. .st66{fill:url(#SVGID_68_);}
  73. .st67{fill:url(#SVGID_69_);}
  74. .st68{fill:url(#SVGID_70_);}
  75. .st69{fill:url(#SVGID_71_);}
  76. .st70{fill:url(#SVGID_72_);}
  77. .st71{fill:url(#SVGID_73_);}
  78. .st72{fill:url(#SVGID_74_);}
  79. .st73{fill:url(#SVGID_75_);}
  80. .st74{fill:url(#SVGID_76_);}
  81. .st75{fill:url(#SVGID_77_);}
  82. .st76{fill:url(#SVGID_78_);}
  83. .st77{fill:url(#SVGID_79_);}
  84. .st78{fill:url(#SVGID_80_);}
  85. .st79{fill:url(#SVGID_81_);}
  86. .st80{fill:url(#SVGID_82_);}
  87. .st81{fill:url(#SVGID_83_);}
  88. .st82{fill:url(#SVGID_84_);}
  89. .st83{fill:url(#SVGID_85_);}
  90. .st84{fill:url(#SVGID_86_);}
  91. .st85{fill:url(#SVGID_87_);}
  92. .st86{fill:url(#SVGID_88_);}
  93. .st87{fill:url(#SVGID_89_);}
  94. .st88{fill:url(#SVGID_90_);}
  95. .st89{fill:url(#SVGID_91_);}
  96. .st90{fill:url(#SVGID_92_);}
  97. .st91{fill:url(#SVGID_93_);}
  98. .st92{fill:url(#SVGID_94_);}
  99. .st93{fill:url(#SVGID_95_);}
  100. .st94{fill:url(#SVGID_96_);}
  101. .st95{fill:url(#SVGID_97_);}
  102. .st96{fill:url(#SVGID_98_);}
  103. .st97{fill:url(#SVGID_99_);}
  104. .st98{fill:url(#SVGID_100_);}
  105. .st99{fill:url(#SVGID_101_);}
  106. .st100{fill:url(#SVGID_102_);}
  107. .st101{fill:url(#SVGID_103_);}
  108. .st102{fill:url(#SVGID_104_);}
  109. .st103{fill:url(#SVGID_105_);}
  110. .st104{fill:url(#SVGID_106_);}
  111. .st105{fill:url(#SVGID_107_);}
  112. .st106{fill:url(#SVGID_108_);}
  113. .st107{fill:url(#SVGID_109_);}
  114. .st108{fill:url(#SVGID_110_);}
  115. .st109{fill:url(#SVGID_111_);}
  116. .st110{fill:url(#SVGID_112_);}
  117. .st111{fill:url(#SVGID_113_);}
  118. .st112{fill:url(#SVGID_114_);}
  119. .st113{fill:url(#SVGID_115_);}
  120. .st114{fill:url(#SVGID_116_);}
  121. .st115{fill:url(#SVGID_117_);}
  122. .st116{fill:url(#SVGID_118_);}
  123. .st117{fill:url(#SVGID_119_);}
  124. .st118{fill:url(#SVGID_120_);}
  125. .st119{fill:url(#SVGID_121_);}
  126. .st120{fill:url(#SVGID_122_);}
  127. </style>
  128. <title>iot-管道(21)</title>
  129. <g id="图层_14">
  130. <g>
  131. <defs>
  132. <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"/>
  133. </defs>
  134. <clipPath id="SVGID_2_">
  135. <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
  136. </clipPath>
  137. <g class="st0">
  138. <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)">
  139. <stop offset="0" style="stop-color:#B7B7B7"/>
  140. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  141. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  142. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  143. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  144. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  145. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  146. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  147. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  148. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  149. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  150. <stop offset="0.95" style="stop-color:#888888"/>
  151. <stop offset="1" style="stop-color:#666666"/>
  152. </linearGradient>
  153. <circle class="st1" cx="31.5" cy="31.5" r="31.5"/>
  154. <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)">
  155. <stop offset="0" style="stop-color:#B7B7B7"/>
  156. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  157. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  158. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  159. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  160. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  161. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  162. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  163. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  164. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  165. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  166. <stop offset="0.95" style="stop-color:#888888"/>
  167. <stop offset="1" style="stop-color:#666666"/>
  168. </linearGradient>
  169. <circle class="st2" cx="31.5" cy="32.7" r="31.5"/>
  170. <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)">
  171. <stop offset="0" style="stop-color:#B7B7B7"/>
  172. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  173. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  174. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  175. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  176. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  177. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  178. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  179. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  180. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  181. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  182. <stop offset="0.95" style="stop-color:#888888"/>
  183. <stop offset="1" style="stop-color:#666666"/>
  184. </linearGradient>
  185. <circle class="st3" cx="31.5" cy="34" r="31.5"/>
  186. <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)">
  187. <stop offset="0" style="stop-color:#B7B7B7"/>
  188. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  189. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  190. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  191. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  192. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  193. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  194. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  195. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  196. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  197. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  198. <stop offset="0.95" style="stop-color:#888888"/>
  199. <stop offset="1" style="stop-color:#666666"/>
  200. </linearGradient>
  201. <circle class="st4" cx="31.5" cy="35.2" r="31.5"/>
  202. <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)">
  203. <stop offset="0" style="stop-color:#B7B7B7"/>
  204. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  205. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  206. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  207. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  208. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  209. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  210. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  211. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  212. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  213. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  214. <stop offset="0.95" style="stop-color:#888888"/>
  215. <stop offset="1" style="stop-color:#666666"/>
  216. </linearGradient>
  217. <circle class="st5" cx="31.5" cy="36.5" r="31.5"/>
  218. <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)">
  219. <stop offset="0" style="stop-color:#B7B7B7"/>
  220. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  221. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  222. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  223. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  224. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  225. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  226. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  227. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  228. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  229. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  230. <stop offset="0.95" style="stop-color:#888888"/>
  231. <stop offset="1" style="stop-color:#666666"/>
  232. </linearGradient>
  233. <circle class="st6" cx="31.5" cy="37.7" r="31.5"/>
  234. <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)">
  235. <stop offset="0" style="stop-color:#B7B7B7"/>
  236. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  237. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  238. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  239. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  240. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  241. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  242. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  243. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  244. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  245. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  246. <stop offset="0.95" style="stop-color:#888888"/>
  247. <stop offset="1" style="stop-color:#666666"/>
  248. </linearGradient>
  249. <circle class="st7" cx="31.5" cy="39" r="31.5"/>
  250. <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)">
  251. <stop offset="0" style="stop-color:#B7B7B7"/>
  252. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  253. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  254. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  255. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  256. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  257. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  258. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  259. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  260. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  261. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  262. <stop offset="0.95" style="stop-color:#888888"/>
  263. <stop offset="1" style="stop-color:#666666"/>
  264. </linearGradient>
  265. <circle class="st8" cx="31.5" cy="40.3" r="31.5"/>
  266. <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)">
  267. <stop offset="0" style="stop-color:#B7B7B7"/>
  268. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  269. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  270. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  271. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  272. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  273. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  274. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  275. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  276. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  277. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  278. <stop offset="0.95" style="stop-color:#888888"/>
  279. <stop offset="1" style="stop-color:#666666"/>
  280. </linearGradient>
  281. <circle class="st9" cx="31.5" cy="41.5" r="31.5"/>
  282. <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)">
  283. <stop offset="0" style="stop-color:#B7B7B7"/>
  284. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  285. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  286. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  287. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  288. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  289. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  290. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  291. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  292. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  293. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  294. <stop offset="0.95" style="stop-color:#888888"/>
  295. <stop offset="1" style="stop-color:#666666"/>
  296. </linearGradient>
  297. <circle class="st10" cx="31.5" cy="42.8" r="31.5"/>
  298. <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)">
  299. <stop offset="0" style="stop-color:#B7B7B7"/>
  300. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  301. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  302. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  303. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  304. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  305. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  306. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  307. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  308. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  309. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  310. <stop offset="0.95" style="stop-color:#888888"/>
  311. <stop offset="1" style="stop-color:#666666"/>
  312. </linearGradient>
  313. <circle class="st11" cx="31.5" cy="44" r="31.5"/>
  314. <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)">
  315. <stop offset="0" style="stop-color:#B7B7B7"/>
  316. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  317. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  318. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  319. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  320. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  321. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  322. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  323. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  324. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  325. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  326. <stop offset="0.95" style="stop-color:#888888"/>
  327. <stop offset="1" style="stop-color:#666666"/>
  328. </linearGradient>
  329. <circle class="st12" cx="31.5" cy="45.3" r="31.5"/>
  330. <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)">
  331. <stop offset="0" style="stop-color:#B7B7B7"/>
  332. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  333. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  334. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  335. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  336. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  337. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  338. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  339. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  340. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  341. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  342. <stop offset="0.95" style="stop-color:#888888"/>
  343. <stop offset="1" style="stop-color:#666666"/>
  344. </linearGradient>
  345. <circle class="st13" cx="31.5" cy="46.5" r="31.5"/>
  346. <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)">
  347. <stop offset="0" style="stop-color:#B7B7B7"/>
  348. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  349. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  350. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  351. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  352. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  353. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  354. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  355. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  356. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  357. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  358. <stop offset="0.95" style="stop-color:#888888"/>
  359. <stop offset="1" style="stop-color:#666666"/>
  360. </linearGradient>
  361. <circle class="st14" cx="31.5" cy="47.8" r="31.5"/>
  362. <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)">
  363. <stop offset="0" style="stop-color:#B7B7B7"/>
  364. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  365. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  366. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  367. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  368. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  369. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  370. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  371. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  372. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  373. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  374. <stop offset="0.95" style="stop-color:#888888"/>
  375. <stop offset="1" style="stop-color:#666666"/>
  376. </linearGradient>
  377. <circle class="st15" cx="31.5" cy="49" r="31.5"/>
  378. <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)">
  379. <stop offset="0" style="stop-color:#B7B7B7"/>
  380. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  381. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  382. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  383. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  384. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  385. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  386. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  387. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  388. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  389. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  390. <stop offset="0.95" style="stop-color:#888888"/>
  391. <stop offset="1" style="stop-color:#666666"/>
  392. </linearGradient>
  393. <circle class="st16" cx="31.5" cy="50.3" r="31.5"/>
  394. <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)">
  395. <stop offset="0" style="stop-color:#B7B7B7"/>
  396. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  397. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  398. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  399. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  400. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  401. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  402. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  403. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  404. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  405. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  406. <stop offset="0.95" style="stop-color:#888888"/>
  407. <stop offset="1" style="stop-color:#666666"/>
  408. </linearGradient>
  409. <circle class="st17" cx="31.5" cy="51.5" r="31.5"/>
  410. <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)">
  411. <stop offset="0" style="stop-color:#B7B7B7"/>
  412. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  413. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  414. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  415. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  416. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  417. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  418. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  419. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  420. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  421. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  422. <stop offset="0.95" style="stop-color:#888888"/>
  423. <stop offset="1" style="stop-color:#666666"/>
  424. </linearGradient>
  425. <circle class="st18" cx="31.5" cy="52.8" r="31.5"/>
  426. <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)">
  427. <stop offset="0" style="stop-color:#B7B7B7"/>
  428. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  429. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  430. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  431. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  432. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  433. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  434. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  435. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  436. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  437. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  438. <stop offset="0.95" style="stop-color:#888888"/>
  439. <stop offset="1" style="stop-color:#666666"/>
  440. </linearGradient>
  441. <circle class="st19" cx="31.5" cy="54.1" r="31.5"/>
  442. <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)">
  443. <stop offset="0" style="stop-color:#B7B7B7"/>
  444. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  445. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  446. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  447. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  448. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  449. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  450. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  451. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  452. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  453. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  454. <stop offset="0.95" style="stop-color:#888888"/>
  455. <stop offset="1" style="stop-color:#666666"/>
  456. </linearGradient>
  457. <circle class="st20" cx="31.5" cy="55.3" r="31.5"/>
  458. <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)">
  459. <stop offset="0" style="stop-color:#B7B7B7"/>
  460. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  461. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  462. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  463. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  464. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  465. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  466. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  467. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  468. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  469. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  470. <stop offset="0.95" style="stop-color:#888888"/>
  471. <stop offset="1" style="stop-color:#666666"/>
  472. </linearGradient>
  473. <circle class="st21" cx="31.5" cy="56.6" r="31.5"/>
  474. <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)">
  475. <stop offset="0" style="stop-color:#B7B7B7"/>
  476. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  477. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  478. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  479. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  480. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  481. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  482. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  483. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  484. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  485. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  486. <stop offset="0.95" style="stop-color:#888888"/>
  487. <stop offset="1" style="stop-color:#666666"/>
  488. </linearGradient>
  489. <circle class="st22" cx="31.5" cy="57.8" r="31.5"/>
  490. <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)">
  491. <stop offset="0" style="stop-color:#B7B7B7"/>
  492. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  493. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  494. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  495. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  496. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  497. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  498. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  499. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  500. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  501. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  502. <stop offset="0.95" style="stop-color:#888888"/>
  503. <stop offset="1" style="stop-color:#666666"/>
  504. </linearGradient>
  505. <circle class="st23" cx="31.5" cy="59.1" r="31.5"/>
  506. <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)">
  507. <stop offset="0" style="stop-color:#B7B7B7"/>
  508. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  509. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  510. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  511. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  512. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  513. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  514. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  515. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  516. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  517. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  518. <stop offset="0.95" style="stop-color:#888888"/>
  519. <stop offset="1" style="stop-color:#666666"/>
  520. </linearGradient>
  521. <circle class="st24" cx="31.5" cy="60.3" r="31.5"/>
  522. <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)">
  523. <stop offset="0" style="stop-color:#B7B7B7"/>
  524. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  525. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  526. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  527. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  528. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  529. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  530. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  531. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  532. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  533. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  534. <stop offset="0.95" style="stop-color:#888888"/>
  535. <stop offset="1" style="stop-color:#666666"/>
  536. </linearGradient>
  537. <circle class="st25" cx="31.5" cy="61.6" r="31.5"/>
  538. <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)">
  539. <stop offset="0" style="stop-color:#B7B7B7"/>
  540. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  541. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  542. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  543. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  544. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  545. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  546. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  547. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  548. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  549. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  550. <stop offset="0.95" style="stop-color:#888888"/>
  551. <stop offset="1" style="stop-color:#666666"/>
  552. </linearGradient>
  553. <circle class="st26" cx="31.5" cy="62.8" r="31.5"/>
  554. <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)">
  555. <stop offset="0" style="stop-color:#B7B7B7"/>
  556. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  557. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  558. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  559. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  560. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  561. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  562. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  563. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  564. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  565. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  566. <stop offset="0.95" style="stop-color:#888888"/>
  567. <stop offset="1" style="stop-color:#666666"/>
  568. </linearGradient>
  569. <circle class="st27" cx="31.5" cy="64.1" r="31.5"/>
  570. <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)">
  571. <stop offset="0" style="stop-color:#B7B7B7"/>
  572. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  573. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  574. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  575. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  576. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  577. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  578. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  579. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  580. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  581. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  582. <stop offset="0.95" style="stop-color:#888888"/>
  583. <stop offset="1" style="stop-color:#666666"/>
  584. </linearGradient>
  585. <circle class="st28" cx="31.5" cy="65.3" r="31.5"/>
  586. <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)">
  587. <stop offset="0" style="stop-color:#B7B7B7"/>
  588. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  589. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  590. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  591. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  592. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  593. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  594. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  595. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  596. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  597. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  598. <stop offset="0.95" style="stop-color:#888888"/>
  599. <stop offset="1" style="stop-color:#666666"/>
  600. </linearGradient>
  601. <circle class="st29" cx="31.5" cy="66.6" r="31.5"/>
  602. <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)">
  603. <stop offset="0" style="stop-color:#B7B7B7"/>
  604. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  605. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  606. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  607. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  608. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  609. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  610. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  611. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  612. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  613. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  614. <stop offset="0.95" style="stop-color:#888888"/>
  615. <stop offset="1" style="stop-color:#666666"/>
  616. </linearGradient>
  617. <circle class="st30" cx="31.5" cy="67.9" r="31.5"/>
  618. <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)">
  619. <stop offset="0" style="stop-color:#B7B7B7"/>
  620. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  621. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  622. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  623. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  624. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  625. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  626. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  627. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  628. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  629. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  630. <stop offset="0.95" style="stop-color:#888888"/>
  631. <stop offset="1" style="stop-color:#666666"/>
  632. </linearGradient>
  633. <circle class="st31" cx="31.5" cy="69.1" r="31.5"/>
  634. <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)">
  635. <stop offset="0" style="stop-color:#B7B7B7"/>
  636. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  637. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  638. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  639. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  640. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  641. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  642. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  643. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  644. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  645. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  646. <stop offset="0.95" style="stop-color:#888888"/>
  647. <stop offset="1" style="stop-color:#666666"/>
  648. </linearGradient>
  649. <circle class="st32" cx="31.5" cy="70.4" r="31.5"/>
  650. <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)">
  651. <stop offset="0" style="stop-color:#B7B7B7"/>
  652. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  653. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  654. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  655. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  656. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  657. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  658. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  659. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  660. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  661. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  662. <stop offset="0.95" style="stop-color:#888888"/>
  663. <stop offset="1" style="stop-color:#666666"/>
  664. </linearGradient>
  665. <circle class="st33" cx="31.5" cy="71.6" r="31.5"/>
  666. <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)">
  667. <stop offset="0" style="stop-color:#B7B7B7"/>
  668. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  669. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  670. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  671. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  672. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  673. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  674. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  675. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  676. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  677. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  678. <stop offset="0.95" style="stop-color:#888888"/>
  679. <stop offset="1" style="stop-color:#666666"/>
  680. </linearGradient>
  681. <circle class="st34" cx="31.5" cy="72.9" r="31.5"/>
  682. <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)">
  683. <stop offset="0" style="stop-color:#B7B7B7"/>
  684. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  685. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  686. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  687. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  688. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  689. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  690. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  691. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  692. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  693. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  694. <stop offset="0.95" style="stop-color:#888888"/>
  695. <stop offset="1" style="stop-color:#666666"/>
  696. </linearGradient>
  697. <circle class="st35" cx="31.5" cy="74.1" r="31.5"/>
  698. <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)">
  699. <stop offset="0" style="stop-color:#B7B7B7"/>
  700. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  701. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  702. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  703. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  704. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  705. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  706. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  707. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  708. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  709. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  710. <stop offset="0.95" style="stop-color:#888888"/>
  711. <stop offset="1" style="stop-color:#666666"/>
  712. </linearGradient>
  713. <circle class="st36" cx="31.5" cy="75.4" r="31.5"/>
  714. <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)">
  715. <stop offset="0" style="stop-color:#B7B7B7"/>
  716. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  717. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  718. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  719. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  720. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  721. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  722. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  723. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  724. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  725. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  726. <stop offset="0.95" style="stop-color:#888888"/>
  727. <stop offset="1" style="stop-color:#666666"/>
  728. </linearGradient>
  729. <circle class="st37" cx="31.5" cy="76.6" r="31.5"/>
  730. <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)">
  731. <stop offset="0" style="stop-color:#B7B7B7"/>
  732. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  733. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  734. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  735. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  736. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  737. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  738. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  739. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  740. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  741. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  742. <stop offset="0.95" style="stop-color:#888888"/>
  743. <stop offset="1" style="stop-color:#666666"/>
  744. </linearGradient>
  745. <circle class="st38" cx="31.5" cy="77.9" r="31.5"/>
  746. <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)">
  747. <stop offset="0" style="stop-color:#B7B7B7"/>
  748. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  749. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  750. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  751. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  752. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  753. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  754. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  755. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  756. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  757. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  758. <stop offset="0.95" style="stop-color:#888888"/>
  759. <stop offset="1" style="stop-color:#666666"/>
  760. </linearGradient>
  761. <circle class="st39" cx="31.5" cy="79.2" r="31.5"/>
  762. <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)">
  763. <stop offset="0" style="stop-color:#B7B7B7"/>
  764. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  765. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  766. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  767. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  768. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  769. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  770. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  771. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  772. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  773. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  774. <stop offset="0.95" style="stop-color:#888888"/>
  775. <stop offset="1" style="stop-color:#666666"/>
  776. </linearGradient>
  777. <circle class="st40" cx="31.5" cy="80.4" r="31.5"/>
  778. <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)">
  779. <stop offset="0" style="stop-color:#B7B7B7"/>
  780. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  781. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  782. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  783. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  784. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  785. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  786. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  787. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  788. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  789. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  790. <stop offset="0.95" style="stop-color:#888888"/>
  791. <stop offset="1" style="stop-color:#666666"/>
  792. </linearGradient>
  793. <circle class="st41" cx="31.5" cy="81.7" r="31.5"/>
  794. <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)">
  795. <stop offset="0" style="stop-color:#B7B7B7"/>
  796. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  797. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  798. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  799. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  800. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  801. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  802. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  803. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  804. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  805. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  806. <stop offset="0.95" style="stop-color:#888888"/>
  807. <stop offset="1" style="stop-color:#666666"/>
  808. </linearGradient>
  809. <circle class="st42" cx="31.5" cy="82.9" r="31.5"/>
  810. <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)">
  811. <stop offset="0" style="stop-color:#B7B7B7"/>
  812. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  813. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  814. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  815. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  816. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  817. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  818. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  819. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  820. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  821. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  822. <stop offset="0.95" style="stop-color:#888888"/>
  823. <stop offset="1" style="stop-color:#666666"/>
  824. </linearGradient>
  825. <circle class="st43" cx="31.5" cy="84.2" r="31.5"/>
  826. <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)">
  827. <stop offset="0" style="stop-color:#B7B7B7"/>
  828. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  829. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  830. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  831. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  832. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  833. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  834. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  835. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  836. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  837. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  838. <stop offset="0.95" style="stop-color:#888888"/>
  839. <stop offset="1" style="stop-color:#666666"/>
  840. </linearGradient>
  841. <circle class="st44" cx="31.5" cy="85.4" r="31.5"/>
  842. <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)">
  843. <stop offset="0" style="stop-color:#B7B7B7"/>
  844. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  845. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  846. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  847. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  848. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  849. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  850. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  851. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  852. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  853. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  854. <stop offset="0.95" style="stop-color:#888888"/>
  855. <stop offset="1" style="stop-color:#666666"/>
  856. </linearGradient>
  857. <circle class="st45" cx="31.5" cy="86.7" r="31.5"/>
  858. <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)">
  859. <stop offset="0" style="stop-color:#B7B7B7"/>
  860. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  861. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  862. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  863. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  864. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  865. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  866. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  867. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  868. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  869. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  870. <stop offset="0.95" style="stop-color:#888888"/>
  871. <stop offset="1" style="stop-color:#666666"/>
  872. </linearGradient>
  873. <circle class="st46" cx="31.5" cy="87.9" r="31.5"/>
  874. <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)">
  875. <stop offset="0" style="stop-color:#B7B7B7"/>
  876. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  877. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  878. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  879. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  880. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  881. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  882. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  883. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  884. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  885. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  886. <stop offset="0.95" style="stop-color:#888888"/>
  887. <stop offset="1" style="stop-color:#666666"/>
  888. </linearGradient>
  889. <circle class="st47" cx="31.5" cy="89.2" r="31.5"/>
  890. <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)">
  891. <stop offset="0" style="stop-color:#B7B7B7"/>
  892. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  893. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  894. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  895. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  896. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  897. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  898. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  899. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  900. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  901. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  902. <stop offset="0.95" style="stop-color:#888888"/>
  903. <stop offset="1" style="stop-color:#666666"/>
  904. </linearGradient>
  905. <circle class="st48" cx="31.5" cy="90.4" r="31.5"/>
  906. <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)">
  907. <stop offset="0" style="stop-color:#B7B7B7"/>
  908. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  909. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  910. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  911. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  912. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  913. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  914. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  915. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  916. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  917. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  918. <stop offset="0.95" style="stop-color:#888888"/>
  919. <stop offset="1" style="stop-color:#666666"/>
  920. </linearGradient>
  921. <circle class="st49" cx="31.5" cy="91.7" r="31.5"/>
  922. <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)">
  923. <stop offset="0" style="stop-color:#B7B7B7"/>
  924. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  925. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  926. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  927. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  928. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  929. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  930. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  931. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  932. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  933. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  934. <stop offset="0.95" style="stop-color:#888888"/>
  935. <stop offset="1" style="stop-color:#666666"/>
  936. </linearGradient>
  937. <circle class="st50" cx="31.5" cy="93" r="31.5"/>
  938. <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)">
  939. <stop offset="0" style="stop-color:#B7B7B7"/>
  940. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  941. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  942. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  943. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  944. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  945. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  946. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  947. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  948. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  949. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  950. <stop offset="0.95" style="stop-color:#888888"/>
  951. <stop offset="1" style="stop-color:#666666"/>
  952. </linearGradient>
  953. <circle class="st51" cx="31.5" cy="94.2" r="31.5"/>
  954. <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)">
  955. <stop offset="0" style="stop-color:#B7B7B7"/>
  956. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  957. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  958. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  959. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  960. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  961. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  962. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  963. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  964. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  965. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  966. <stop offset="0.95" style="stop-color:#888888"/>
  967. <stop offset="1" style="stop-color:#666666"/>
  968. </linearGradient>
  969. <circle class="st52" cx="31.5" cy="95.5" r="31.5"/>
  970. <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)">
  971. <stop offset="0" style="stop-color:#B7B7B7"/>
  972. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  973. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  974. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  975. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  976. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  977. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  978. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  979. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  980. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  981. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  982. <stop offset="0.95" style="stop-color:#888888"/>
  983. <stop offset="1" style="stop-color:#666666"/>
  984. </linearGradient>
  985. <circle class="st53" cx="31.5" cy="96.7" r="31.5"/>
  986. <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)">
  987. <stop offset="0" style="stop-color:#B7B7B7"/>
  988. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  989. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  990. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  991. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  992. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  993. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  994. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  995. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  996. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  997. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  998. <stop offset="0.95" style="stop-color:#888888"/>
  999. <stop offset="1" style="stop-color:#666666"/>
  1000. </linearGradient>
  1001. <circle class="st54" cx="31.5" cy="98" r="31.5"/>
  1002. <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)">
  1003. <stop offset="0" style="stop-color:#B7B7B7"/>
  1004. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1005. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1006. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1007. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1008. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1009. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1010. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1011. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1012. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1013. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1014. <stop offset="0.95" style="stop-color:#888888"/>
  1015. <stop offset="1" style="stop-color:#666666"/>
  1016. </linearGradient>
  1017. <circle class="st55" cx="31.5" cy="99.2" r="31.5"/>
  1018. <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)">
  1019. <stop offset="0" style="stop-color:#B7B7B7"/>
  1020. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1021. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1022. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1023. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1024. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1025. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1026. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1027. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1028. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1029. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1030. <stop offset="0.95" style="stop-color:#888888"/>
  1031. <stop offset="1" style="stop-color:#666666"/>
  1032. </linearGradient>
  1033. <circle class="st56" cx="31.5" cy="100.5" r="31.5"/>
  1034. <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)">
  1035. <stop offset="0" style="stop-color:#B7B7B7"/>
  1036. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1037. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1038. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1039. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1040. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1041. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1042. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1043. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1044. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1045. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1046. <stop offset="0.95" style="stop-color:#888888"/>
  1047. <stop offset="1" style="stop-color:#666666"/>
  1048. </linearGradient>
  1049. <circle class="st57" cx="31.5" cy="101.7" r="31.5"/>
  1050. <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)">
  1051. <stop offset="0" style="stop-color:#B7B7B7"/>
  1052. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1053. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1054. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1055. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1056. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1057. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1058. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1059. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1060. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1061. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1062. <stop offset="0.95" style="stop-color:#888888"/>
  1063. <stop offset="1" style="stop-color:#666666"/>
  1064. </linearGradient>
  1065. <circle class="st58" cx="31.5" cy="103" r="31.5"/>
  1066. <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)">
  1067. <stop offset="0" style="stop-color:#B7B7B7"/>
  1068. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1069. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1070. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1071. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1072. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1073. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1074. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1075. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1076. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1077. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1078. <stop offset="0.95" style="stop-color:#888888"/>
  1079. <stop offset="1" style="stop-color:#666666"/>
  1080. </linearGradient>
  1081. <circle class="st59" cx="31.5" cy="104.2" r="31.5"/>
  1082. <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)">
  1083. <stop offset="0" style="stop-color:#B7B7B7"/>
  1084. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1085. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1086. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1087. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1088. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1089. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1090. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1091. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1092. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1093. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1094. <stop offset="0.95" style="stop-color:#888888"/>
  1095. <stop offset="1" style="stop-color:#666666"/>
  1096. </linearGradient>
  1097. <circle class="st60" cx="31.5" cy="105.5" r="31.5"/>
  1098. <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)">
  1099. <stop offset="0" style="stop-color:#B7B7B7"/>
  1100. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1101. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1102. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1103. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1104. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1105. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1106. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1107. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1108. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1109. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1110. <stop offset="0.95" style="stop-color:#888888"/>
  1111. <stop offset="1" style="stop-color:#666666"/>
  1112. </linearGradient>
  1113. <circle class="st61" cx="31.5" cy="106.8" r="31.5"/>
  1114. <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)">
  1115. <stop offset="0" style="stop-color:#B7B7B7"/>
  1116. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1117. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1118. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1119. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1120. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1121. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1122. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1123. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1124. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1125. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1126. <stop offset="0.95" style="stop-color:#888888"/>
  1127. <stop offset="1" style="stop-color:#666666"/>
  1128. </linearGradient>
  1129. <circle class="st62" cx="31.5" cy="108" r="31.5"/>
  1130. <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)">
  1131. <stop offset="0" style="stop-color:#B7B7B7"/>
  1132. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1133. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1134. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1135. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1136. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1137. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1138. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1139. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1140. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1141. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1142. <stop offset="0.95" style="stop-color:#888888"/>
  1143. <stop offset="1" style="stop-color:#666666"/>
  1144. </linearGradient>
  1145. <circle class="st63" cx="31.5" cy="109.3" r="31.5"/>
  1146. <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)">
  1147. <stop offset="0" style="stop-color:#B7B7B7"/>
  1148. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1149. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1150. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1151. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1152. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1153. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1154. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1155. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1156. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1157. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1158. <stop offset="0.95" style="stop-color:#888888"/>
  1159. <stop offset="1" style="stop-color:#666666"/>
  1160. </linearGradient>
  1161. <circle class="st64" cx="31.5" cy="110.5" r="31.5"/>
  1162. <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)">
  1163. <stop offset="0" style="stop-color:#B7B7B7"/>
  1164. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1165. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1166. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1167. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1168. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1169. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1170. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1171. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1172. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1173. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1174. <stop offset="0.95" style="stop-color:#888888"/>
  1175. <stop offset="1" style="stop-color:#666666"/>
  1176. </linearGradient>
  1177. <circle class="st65" cx="31.5" cy="111.8" r="31.5"/>
  1178. <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)">
  1179. <stop offset="0" style="stop-color:#B7B7B7"/>
  1180. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1181. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1182. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1183. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1184. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1185. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1186. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1187. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1188. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1189. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1190. <stop offset="0.95" style="stop-color:#888888"/>
  1191. <stop offset="1" style="stop-color:#666666"/>
  1192. </linearGradient>
  1193. <circle class="st66" cx="31.5" cy="113" r="31.5"/>
  1194. <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)">
  1195. <stop offset="0" style="stop-color:#B7B7B7"/>
  1196. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1197. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1198. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1199. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1200. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1201. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1202. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1203. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1204. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1205. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1206. <stop offset="0.95" style="stop-color:#888888"/>
  1207. <stop offset="1" style="stop-color:#666666"/>
  1208. </linearGradient>
  1209. <circle class="st67" cx="31.5" cy="114.3" r="31.5"/>
  1210. <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)">
  1211. <stop offset="0" style="stop-color:#B7B7B7"/>
  1212. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1213. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1214. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1215. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1216. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1217. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1218. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1219. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1220. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1221. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1222. <stop offset="0.95" style="stop-color:#888888"/>
  1223. <stop offset="1" style="stop-color:#666666"/>
  1224. </linearGradient>
  1225. <circle class="st68" cx="31.5" cy="115.5" r="31.5"/>
  1226. <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)">
  1227. <stop offset="0" style="stop-color:#B7B7B7"/>
  1228. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1229. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1230. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1231. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1232. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1233. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1234. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1235. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1236. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1237. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1238. <stop offset="0.95" style="stop-color:#888888"/>
  1239. <stop offset="1" style="stop-color:#666666"/>
  1240. </linearGradient>
  1241. <circle class="st69" cx="31.5" cy="116.8" r="31.5"/>
  1242. <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)">
  1243. <stop offset="0" style="stop-color:#B7B7B7"/>
  1244. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1245. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1246. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1247. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1248. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1249. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1250. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1251. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1252. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1253. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1254. <stop offset="0.95" style="stop-color:#888888"/>
  1255. <stop offset="1" style="stop-color:#666666"/>
  1256. </linearGradient>
  1257. <circle class="st70" cx="31.5" cy="118" r="31.5"/>
  1258. <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)">
  1259. <stop offset="0" style="stop-color:#B7B7B7"/>
  1260. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1261. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1262. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1263. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1264. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1265. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1266. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1267. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1268. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1269. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1270. <stop offset="0.95" style="stop-color:#888888"/>
  1271. <stop offset="1" style="stop-color:#666666"/>
  1272. </linearGradient>
  1273. <circle class="st71" cx="31.5" cy="119.3" r="31.5"/>
  1274. <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)">
  1275. <stop offset="0" style="stop-color:#B7B7B7"/>
  1276. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1277. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1278. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1279. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1280. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1281. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1282. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1283. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1284. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1285. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1286. <stop offset="0.95" style="stop-color:#888888"/>
  1287. <stop offset="1" style="stop-color:#666666"/>
  1288. </linearGradient>
  1289. <circle class="st72" cx="31.5" cy="120.6" r="31.5"/>
  1290. <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)">
  1291. <stop offset="0" style="stop-color:#B7B7B7"/>
  1292. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1293. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1294. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1295. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1296. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1297. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1298. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1299. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1300. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1301. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1302. <stop offset="0.95" style="stop-color:#888888"/>
  1303. <stop offset="1" style="stop-color:#666666"/>
  1304. </linearGradient>
  1305. <circle class="st73" cx="31.5" cy="121.8" r="31.5"/>
  1306. <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)">
  1307. <stop offset="0" style="stop-color:#B7B7B7"/>
  1308. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1309. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1310. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1311. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1312. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1313. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1314. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1315. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1316. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1317. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1318. <stop offset="0.95" style="stop-color:#888888"/>
  1319. <stop offset="1" style="stop-color:#666666"/>
  1320. </linearGradient>
  1321. <circle class="st74" cx="31.5" cy="123.1" r="31.5"/>
  1322. <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)">
  1323. <stop offset="0" style="stop-color:#B7B7B7"/>
  1324. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1325. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1326. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1327. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1328. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1329. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1330. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1331. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1332. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1333. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1334. <stop offset="0.95" style="stop-color:#888888"/>
  1335. <stop offset="1" style="stop-color:#666666"/>
  1336. </linearGradient>
  1337. <circle class="st75" cx="31.5" cy="124.3" r="31.5"/>
  1338. <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)">
  1339. <stop offset="0" style="stop-color:#B7B7B7"/>
  1340. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1341. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1342. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1343. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1344. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1345. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1346. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1347. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1348. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1349. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1350. <stop offset="0.95" style="stop-color:#888888"/>
  1351. <stop offset="1" style="stop-color:#666666"/>
  1352. </linearGradient>
  1353. <circle class="st76" cx="31.5" cy="125.6" r="31.5"/>
  1354. <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)">
  1355. <stop offset="0" style="stop-color:#B7B7B7"/>
  1356. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1357. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1358. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1359. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1360. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1361. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1362. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1363. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1364. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1365. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1366. <stop offset="0.95" style="stop-color:#888888"/>
  1367. <stop offset="1" style="stop-color:#666666"/>
  1368. </linearGradient>
  1369. <circle class="st77" cx="31.5" cy="126.8" r="31.5"/>
  1370. <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)">
  1371. <stop offset="0" style="stop-color:#B7B7B7"/>
  1372. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1373. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1374. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1375. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1376. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1377. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1378. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1379. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1380. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1381. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1382. <stop offset="0.95" style="stop-color:#888888"/>
  1383. <stop offset="1" style="stop-color:#666666"/>
  1384. </linearGradient>
  1385. <circle class="st78" cx="31.5" cy="128.1" r="31.5"/>
  1386. <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)">
  1387. <stop offset="0" style="stop-color:#B7B7B7"/>
  1388. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1389. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1390. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1391. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1392. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1393. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1394. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1395. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1396. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1397. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1398. <stop offset="0.95" style="stop-color:#888888"/>
  1399. <stop offset="1" style="stop-color:#666666"/>
  1400. </linearGradient>
  1401. <circle class="st79" cx="31.5" cy="129.3" r="31.5"/>
  1402. <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)">
  1403. <stop offset="0" style="stop-color:#B7B7B7"/>
  1404. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1405. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1406. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1407. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1408. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1409. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1410. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1411. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1412. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1413. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1414. <stop offset="0.95" style="stop-color:#888888"/>
  1415. <stop offset="1" style="stop-color:#666666"/>
  1416. </linearGradient>
  1417. <circle class="st80" cx="31.5" cy="130.6" r="31.5"/>
  1418. <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)">
  1419. <stop offset="0" style="stop-color:#B7B7B7"/>
  1420. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1421. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1422. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1423. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1424. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1425. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1426. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1427. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1428. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1429. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1430. <stop offset="0.95" style="stop-color:#888888"/>
  1431. <stop offset="1" style="stop-color:#666666"/>
  1432. </linearGradient>
  1433. <circle class="st81" cx="31.5" cy="131.8" r="31.5"/>
  1434. <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)">
  1435. <stop offset="0" style="stop-color:#B7B7B7"/>
  1436. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1437. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1438. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1439. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1440. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1441. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1442. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1443. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1444. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1445. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1446. <stop offset="0.95" style="stop-color:#888888"/>
  1447. <stop offset="1" style="stop-color:#666666"/>
  1448. </linearGradient>
  1449. <circle class="st82" cx="31.5" cy="133.1" r="31.5"/>
  1450. <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)">
  1451. <stop offset="0" style="stop-color:#B7B7B7"/>
  1452. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1453. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1454. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1455. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1456. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1457. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1458. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1459. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1460. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1461. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1462. <stop offset="0.95" style="stop-color:#888888"/>
  1463. <stop offset="1" style="stop-color:#666666"/>
  1464. </linearGradient>
  1465. <circle class="st83" cx="31.5" cy="134.4" r="31.5"/>
  1466. <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)">
  1467. <stop offset="0" style="stop-color:#B7B7B7"/>
  1468. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1469. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1470. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1471. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1472. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1473. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1474. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1475. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1476. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1477. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1478. <stop offset="0.95" style="stop-color:#888888"/>
  1479. <stop offset="1" style="stop-color:#666666"/>
  1480. </linearGradient>
  1481. <circle class="st84" cx="31.5" cy="135.6" r="31.5"/>
  1482. <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)">
  1483. <stop offset="0" style="stop-color:#B7B7B7"/>
  1484. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1485. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1486. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1487. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1488. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1489. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1490. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1491. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1492. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1493. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1494. <stop offset="0.95" style="stop-color:#888888"/>
  1495. <stop offset="1" style="stop-color:#666666"/>
  1496. </linearGradient>
  1497. <circle class="st85" cx="31.5" cy="136.9" r="31.5"/>
  1498. <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)">
  1499. <stop offset="0" style="stop-color:#B7B7B7"/>
  1500. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1501. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1502. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1503. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1504. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1505. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1506. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1507. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1508. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1509. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1510. <stop offset="0.95" style="stop-color:#888888"/>
  1511. <stop offset="1" style="stop-color:#666666"/>
  1512. </linearGradient>
  1513. <circle class="st86" cx="31.5" cy="138.1" r="31.5"/>
  1514. <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)">
  1515. <stop offset="0" style="stop-color:#B7B7B7"/>
  1516. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1517. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1518. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1519. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1520. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1521. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1522. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1523. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1524. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1525. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1526. <stop offset="0.95" style="stop-color:#888888"/>
  1527. <stop offset="1" style="stop-color:#666666"/>
  1528. </linearGradient>
  1529. <circle class="st87" cx="31.5" cy="139.4" r="31.5"/>
  1530. <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)">
  1531. <stop offset="0" style="stop-color:#B7B7B7"/>
  1532. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1533. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1534. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1535. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1536. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1537. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1538. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1539. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1540. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1541. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1542. <stop offset="0.95" style="stop-color:#888888"/>
  1543. <stop offset="1" style="stop-color:#666666"/>
  1544. </linearGradient>
  1545. <circle class="st88" cx="31.5" cy="140.6" r="31.5"/>
  1546. <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)">
  1547. <stop offset="0" style="stop-color:#B7B7B7"/>
  1548. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1549. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1550. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1551. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1552. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1553. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1554. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1555. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1556. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1557. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1558. <stop offset="0.95" style="stop-color:#888888"/>
  1559. <stop offset="1" style="stop-color:#666666"/>
  1560. </linearGradient>
  1561. <circle class="st89" cx="31.5" cy="141.9" r="31.5"/>
  1562. <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)">
  1563. <stop offset="0" style="stop-color:#B7B7B7"/>
  1564. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1565. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1566. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1567. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1568. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1569. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1570. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1571. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1572. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1573. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1574. <stop offset="0.95" style="stop-color:#888888"/>
  1575. <stop offset="1" style="stop-color:#666666"/>
  1576. </linearGradient>
  1577. <circle class="st90" cx="31.5" cy="143.1" r="31.5"/>
  1578. <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)">
  1579. <stop offset="0" style="stop-color:#B7B7B7"/>
  1580. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1581. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1582. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1583. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1584. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1585. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1586. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1587. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1588. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1589. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1590. <stop offset="0.95" style="stop-color:#888888"/>
  1591. <stop offset="1" style="stop-color:#666666"/>
  1592. </linearGradient>
  1593. <circle class="st91" cx="31.5" cy="144.4" r="31.5"/>
  1594. <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)">
  1595. <stop offset="0" style="stop-color:#B7B7B7"/>
  1596. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1597. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1598. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1599. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1600. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1601. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1602. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1603. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1604. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1605. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1606. <stop offset="0.95" style="stop-color:#888888"/>
  1607. <stop offset="1" style="stop-color:#666666"/>
  1608. </linearGradient>
  1609. <circle class="st92" cx="31.5" cy="145.6" r="31.5"/>
  1610. <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)">
  1611. <stop offset="0" style="stop-color:#B7B7B7"/>
  1612. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1613. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1614. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1615. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1616. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1617. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1618. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1619. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1620. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1621. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1622. <stop offset="0.95" style="stop-color:#888888"/>
  1623. <stop offset="1" style="stop-color:#666666"/>
  1624. </linearGradient>
  1625. <circle class="st93" cx="31.5" cy="146.9" r="31.5"/>
  1626. <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)">
  1627. <stop offset="0" style="stop-color:#B7B7B7"/>
  1628. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1629. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1630. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1631. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1632. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1633. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1634. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1635. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1636. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1637. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1638. <stop offset="0.95" style="stop-color:#888888"/>
  1639. <stop offset="1" style="stop-color:#666666"/>
  1640. </linearGradient>
  1641. <circle class="st94" cx="31.5" cy="148.2" r="31.5"/>
  1642. <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)">
  1643. <stop offset="0" style="stop-color:#B7B7B7"/>
  1644. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1645. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1646. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1647. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1648. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1649. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1650. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1651. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1652. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1653. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1654. <stop offset="0.95" style="stop-color:#888888"/>
  1655. <stop offset="1" style="stop-color:#666666"/>
  1656. </linearGradient>
  1657. <circle class="st95" cx="31.5" cy="149.4" r="31.5"/>
  1658. <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)">
  1659. <stop offset="0" style="stop-color:#B7B7B7"/>
  1660. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1661. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1662. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1663. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1664. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1665. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1666. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1667. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1668. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1669. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1670. <stop offset="0.95" style="stop-color:#888888"/>
  1671. <stop offset="1" style="stop-color:#666666"/>
  1672. </linearGradient>
  1673. <circle class="st96" cx="31.5" cy="150.7" r="31.5"/>
  1674. <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)">
  1675. <stop offset="0" style="stop-color:#B7B7B7"/>
  1676. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1677. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1678. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1679. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1680. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1681. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1682. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1683. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1684. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1685. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1686. <stop offset="0.95" style="stop-color:#888888"/>
  1687. <stop offset="1" style="stop-color:#666666"/>
  1688. </linearGradient>
  1689. <circle class="st97" cx="31.5" cy="151.9" r="31.5"/>
  1690. <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)">
  1691. <stop offset="0" style="stop-color:#B7B7B7"/>
  1692. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1693. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1694. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1695. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1696. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1697. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1698. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1699. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1700. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1701. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1702. <stop offset="0.95" style="stop-color:#888888"/>
  1703. <stop offset="1" style="stop-color:#666666"/>
  1704. </linearGradient>
  1705. <circle class="st98" cx="31.5" cy="153.2" r="31.5"/>
  1706. <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)">
  1707. <stop offset="0" style="stop-color:#B7B7B7"/>
  1708. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1709. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1710. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1711. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1712. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1713. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1714. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1715. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1716. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1717. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1718. <stop offset="0.95" style="stop-color:#888888"/>
  1719. <stop offset="1" style="stop-color:#666666"/>
  1720. </linearGradient>
  1721. <circle class="st99" cx="31.5" cy="154.4" r="31.5"/>
  1722. <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)">
  1723. <stop offset="0" style="stop-color:#B7B7B7"/>
  1724. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1725. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1726. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1727. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1728. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1729. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1730. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1731. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1732. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1733. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1734. <stop offset="0.95" style="stop-color:#888888"/>
  1735. <stop offset="1" style="stop-color:#666666"/>
  1736. </linearGradient>
  1737. <circle class="st100" cx="31.5" cy="155.7" r="31.5"/>
  1738. <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)">
  1739. <stop offset="0" style="stop-color:#B7B7B7"/>
  1740. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1741. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1742. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1743. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1744. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1745. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1746. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1747. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1748. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1749. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1750. <stop offset="0.95" style="stop-color:#888888"/>
  1751. <stop offset="1" style="stop-color:#666666"/>
  1752. </linearGradient>
  1753. <circle class="st101" cx="31.5" cy="156.9" r="31.5"/>
  1754. <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)">
  1755. <stop offset="0" style="stop-color:#B7B7B7"/>
  1756. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1757. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1758. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1759. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1760. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1761. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1762. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1763. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1764. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1765. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1766. <stop offset="0.95" style="stop-color:#888888"/>
  1767. <stop offset="1" style="stop-color:#666666"/>
  1768. </linearGradient>
  1769. <circle class="st102" cx="31.5" cy="158.2" r="31.5"/>
  1770. <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)">
  1771. <stop offset="0" style="stop-color:#B7B7B7"/>
  1772. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1773. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1774. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1775. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1776. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1777. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1778. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1779. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1780. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1781. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1782. <stop offset="0.95" style="stop-color:#888888"/>
  1783. <stop offset="1" style="stop-color:#666666"/>
  1784. </linearGradient>
  1785. <circle class="st103" cx="31.5" cy="159.4" r="31.5"/>
  1786. <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)">
  1787. <stop offset="0" style="stop-color:#B7B7B7"/>
  1788. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1789. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1790. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1791. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1792. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1793. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1794. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1795. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1796. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1797. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1798. <stop offset="0.95" style="stop-color:#888888"/>
  1799. <stop offset="1" style="stop-color:#666666"/>
  1800. </linearGradient>
  1801. <circle class="st104" cx="31.5" cy="160.7" r="31.5"/>
  1802. <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)">
  1803. <stop offset="0" style="stop-color:#B7B7B7"/>
  1804. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1805. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1806. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1807. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1808. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1809. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1810. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1811. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1812. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1813. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1814. <stop offset="0.95" style="stop-color:#888888"/>
  1815. <stop offset="1" style="stop-color:#666666"/>
  1816. </linearGradient>
  1817. <circle class="st105" cx="31.5" cy="162" r="31.5"/>
  1818. <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)">
  1819. <stop offset="0" style="stop-color:#B7B7B7"/>
  1820. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1821. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1822. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1823. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1824. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1825. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1826. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1827. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1828. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1829. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1830. <stop offset="0.95" style="stop-color:#888888"/>
  1831. <stop offset="1" style="stop-color:#666666"/>
  1832. </linearGradient>
  1833. <circle class="st106" cx="31.5" cy="163.2" r="31.5"/>
  1834. <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)">
  1835. <stop offset="0" style="stop-color:#B7B7B7"/>
  1836. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1837. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1838. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1839. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1840. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1841. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1842. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1843. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1844. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1845. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1846. <stop offset="0.95" style="stop-color:#888888"/>
  1847. <stop offset="1" style="stop-color:#666666"/>
  1848. </linearGradient>
  1849. <circle class="st107" cx="31.5" cy="164.5" r="31.5"/>
  1850. <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)">
  1851. <stop offset="0" style="stop-color:#B7B7B7"/>
  1852. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1853. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1854. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1855. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1856. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1857. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1858. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1859. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1860. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1861. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1862. <stop offset="0.95" style="stop-color:#888888"/>
  1863. <stop offset="1" style="stop-color:#666666"/>
  1864. </linearGradient>
  1865. <circle class="st108" cx="31.5" cy="165.7" r="31.5"/>
  1866. <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)">
  1867. <stop offset="0" style="stop-color:#B7B7B7"/>
  1868. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1869. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1870. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1871. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1872. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1873. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1874. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1875. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1876. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1877. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1878. <stop offset="0.95" style="stop-color:#888888"/>
  1879. <stop offset="1" style="stop-color:#666666"/>
  1880. </linearGradient>
  1881. <circle class="st109" cx="31.5" cy="167" r="31.5"/>
  1882. <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)">
  1883. <stop offset="0" style="stop-color:#B7B7B7"/>
  1884. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1885. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1886. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1887. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1888. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1889. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1890. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1891. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1892. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1893. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1894. <stop offset="0.95" style="stop-color:#888888"/>
  1895. <stop offset="1" style="stop-color:#666666"/>
  1896. </linearGradient>
  1897. <circle class="st110" cx="31.5" cy="168.2" r="31.5"/>
  1898. <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)">
  1899. <stop offset="0" style="stop-color:#B7B7B7"/>
  1900. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1901. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1902. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1903. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1904. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1905. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1906. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1907. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1908. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1909. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1910. <stop offset="0.95" style="stop-color:#888888"/>
  1911. <stop offset="1" style="stop-color:#666666"/>
  1912. </linearGradient>
  1913. <circle class="st111" cx="31.5" cy="169.5" r="31.5"/>
  1914. <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)">
  1915. <stop offset="0" style="stop-color:#B7B7B7"/>
  1916. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1917. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1918. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1919. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1920. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1921. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1922. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1923. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1924. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1925. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1926. <stop offset="0.95" style="stop-color:#888888"/>
  1927. <stop offset="1" style="stop-color:#666666"/>
  1928. </linearGradient>
  1929. <circle class="st112" cx="31.5" cy="170.7" r="31.5"/>
  1930. <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)">
  1931. <stop offset="0" style="stop-color:#B7B7B7"/>
  1932. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1933. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1934. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1935. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1936. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1937. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1938. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1939. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1940. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1941. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1942. <stop offset="0.95" style="stop-color:#888888"/>
  1943. <stop offset="1" style="stop-color:#666666"/>
  1944. </linearGradient>
  1945. <circle class="st113" cx="31.5" cy="172" r="31.5"/>
  1946. <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)">
  1947. <stop offset="0" style="stop-color:#B7B7B7"/>
  1948. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1949. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1950. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1951. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1952. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1953. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1954. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1955. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1956. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1957. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1958. <stop offset="0.95" style="stop-color:#888888"/>
  1959. <stop offset="1" style="stop-color:#666666"/>
  1960. </linearGradient>
  1961. <circle class="st114" cx="31.5" cy="173.2" r="31.5"/>
  1962. <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)">
  1963. <stop offset="0" style="stop-color:#B7B7B7"/>
  1964. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1965. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1966. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1967. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1968. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1969. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1970. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1971. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1972. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1973. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1974. <stop offset="0.95" style="stop-color:#888888"/>
  1975. <stop offset="1" style="stop-color:#666666"/>
  1976. </linearGradient>
  1977. <circle class="st115" cx="31.5" cy="174.5" r="31.5"/>
  1978. <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)">
  1979. <stop offset="0" style="stop-color:#B7B7B7"/>
  1980. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1981. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1982. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1983. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  1984. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  1985. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  1986. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  1987. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  1988. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  1989. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  1990. <stop offset="0.95" style="stop-color:#888888"/>
  1991. <stop offset="1" style="stop-color:#666666"/>
  1992. </linearGradient>
  1993. <circle class="st116" cx="31.5" cy="175.8" r="31.5"/>
  1994. <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)">
  1995. <stop offset="0" style="stop-color:#B7B7B7"/>
  1996. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  1997. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  1998. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  1999. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2000. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2001. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2002. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2003. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2004. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2005. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2006. <stop offset="0.95" style="stop-color:#888888"/>
  2007. <stop offset="1" style="stop-color:#666666"/>
  2008. </linearGradient>
  2009. <circle class="st117" cx="31.5" cy="177" r="31.5"/>
  2010. <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)">
  2011. <stop offset="0" style="stop-color:#B7B7B7"/>
  2012. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2013. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2014. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2015. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2016. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2017. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2018. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2019. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2020. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2021. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2022. <stop offset="0.95" style="stop-color:#888888"/>
  2023. <stop offset="1" style="stop-color:#666666"/>
  2024. </linearGradient>
  2025. <circle class="st118" cx="31.5" cy="178.3" r="31.5"/>
  2026. <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)">
  2027. <stop offset="0" style="stop-color:#B7B7B7"/>
  2028. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2029. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2030. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2031. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2032. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2033. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2034. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2035. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2036. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2037. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2038. <stop offset="0.95" style="stop-color:#888888"/>
  2039. <stop offset="1" style="stop-color:#666666"/>
  2040. </linearGradient>
  2041. <circle class="st119" cx="31.5" cy="179.5" r="31.5"/>
  2042. <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)">
  2043. <stop offset="0" style="stop-color:#B7B7B7"/>
  2044. <stop offset="3.000000e-002" style="stop-color:#9B9D9D"/>
  2045. <stop offset="7.000000e-002" style="stop-color:#878B8B"/>
  2046. <stop offset="9.000000e-002" style="stop-color:#808484"/>
  2047. <stop offset="0.2" style="stop-color:#A3A6A6"/>
  2048. <stop offset="0.49" style="stop-color:#F6F6F6"/>
  2049. <stop offset="0.61" style="stop-color:#F3F3F3"/>
  2050. <stop offset="0.7" style="stop-color:#EAEAEA"/>
  2051. <stop offset="0.77" style="stop-color:#DBDBDB"/>
  2052. <stop offset="0.83" style="stop-color:#C5C5C5"/>
  2053. <stop offset="0.9" style="stop-color:#AAAAAA"/>
  2054. <stop offset="0.95" style="stop-color:#888888"/>
  2055. <stop offset="1" style="stop-color:#666666"/>
  2056. </linearGradient>
  2057. <circle class="st120" cx="31.5" cy="180.8" r="31.5"/>
  2058. </g>
  2059. </g>
  2060. </g>
  2061. </svg>