Skip to content

Instantly share code, notes, and snippets.

@YohannesTz
Last active July 2, 2023 13:09
Show Gist options
  • Save YohannesTz/40d5603d7e23844a8a490b81898fe4cd to your computer and use it in GitHub Desktop.
Save YohannesTz/40d5603d7e23844a8a490b81898fe4cd to your computer and use it in GitHub Desktop.
CSS Sucks
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
.image-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
<!DOCTYPE html>
<html>
<head>
<title>CSS Sucks</title>
<meta charset="UTF-8" />
</head>
<body>
<div id="app" class="image-container">
<img id="svg-img" src="Mountains-Sunset.svg" width="100%" height="100%" />
</div>
<script src="index.js"></script>
</body>
</html>
window.addEventListener('scroll', function () {
var scrollValue = this.window.scrollY;
var svgImage = this.document.getElementById('svg-img');
//svgImage.style.filter = "hue-rotate(" + scrollValue + "deg)";
var color = interpolateColor(scrollValue, 0, window.innerHeight, '#f5b942', '#4254f5');
svgImage.style.filter = "hue-rotate(" + colorToDegrees(color) + "deg)";
});
//GPT wrote it
function interpolateColor(value, minValue, maxValue, startColor, endColor) {
var startRGB = hexToRGB(startColor);
var endRGB = hexToRGB(endColor);
var ratio = (value - minValue) / (maxValue - minValue);
var r = Math.round(startRGB.r + (endRGB.r - startRGB.r) * ratio);
var g = Math.round(startRGB.g + (endRGB.g - startRGB.g) * ratio);
var b = Math.round(startRGB.b + (endRGB.b - startRGB.b) * ratio);
return rgbToHex(r, g, b);
}
function hexToRGB(hex) {
var r = parseInt(hex.slice(1, 3), 16);
var g = parseInt(hex.slice(3, 5), 16);
var b = parseInt(hex.slice(5, 7), 16);
return { r: r, g: g, b: b };
}
function rgbToHex(r, g, b) {
return "#" + ((1 << 24) | (r << 16) | (g << 8) | b).toString(16).slice(1);
}
function colorToDegrees(color) {
var rgb = hexToRGB(color);
var hsl = rgbToHSL(rgb.r, rgb.g, rgb.b);
return hsl.h;
}
function rgbToHSL(r, g, b) {
r /= 255, g /= 255, b /= 255;
var max = Math.max(r, g, b), min = Math.min(r, g, b);
var h, s, l = (max + min) / 2;
if (max == min) {
h = s = 0; // achromatic
} else {
var d = max - min;
s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
switch (max) {
case r: h = (g - b) / d + (g < b ? 6 : 0); break;
case g: h = (b - r) / d + 2; break;
case b: h = (r - g) / d + 4; break;
}
h /= 6;
}
return { h: Math.round(h * 360), s: Math.round(s * 100), l: Math.round(l * 100) };
}
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1920 1920" enable-background="new 0 0 1920 1920" xml:space="preserve">
<g>
<g>
<path fill="#D93F00" d="M1885.8999,541.3c-8.8499,1.33-17.8899,1.6599-26.5098,4.21c-10.3901,3.0601-20.4702,7.04-30.6401,10.73
c-1.1802,0.65-2.3501,1.29-3.51,1.9c-13.5701,7.22-25.5798,16.97-37.25,26.88c-12.72,11.62-26.04,22.5701-38.4001,34.58
c-13.1597,12.52-27.0498,24.25-39.8198,37.17c-7.99,7.72-14.99,16.37-22.36,24.6599c-12.25,13.73-23.8401,28.02-36.17,41.67
c-9.1899,9.87-17.95,20.12-26.98,30.13c-1.73,1.83-3.52,3.98-6.2,4.21c10.0699,4.04,19.86,8.78,29.2899,14.18
c19.1801,10.05,37.8,21.17,55.8201,33.18c12.73,8.41,26.41,15.25,40.11,21.94c10.6799,5.3,22.25,8.32,33.3601,12.58
c7.5698,2.61,14.8799,5.93,22.48,8.49c8.3599,2.8,16.77,5.47,25.2397,7.92c10.0801,2.96,19.7002,7.22,29.73,10.31
c11.8003,3.76,23.5103,8.05,35.75,10.22c10.0903,1.88,20.1902,3.8,30.1602,6.31V534.7
C1908.5698,536.63,1897.4302,539.98,1885.8999,541.3z"/>
<path fill="#D93F00" d="M1031.98,754.89c-19.99-4.55-40.5-6.29-60.9399-7.29c-22.8701-0.12-45.8101-3.06-67.65-10.0099
c-15.12-4.9001-30.76-7.7401-46.35-10.6301c-11.8101-2-23.23-5.6899-34.99-7.96c-7.8501-1.6799-15.55-4.05-23.4301-5.5901
c-18.25-3.2899-35.33-10.7799-52.48-17.5299c-5.89-2.2001-11.92-3.98-17.79-6.1901c-9.9401-3.47-19.2999-8.3599-29.22-11.8899
c-16.56-5.8101-31.63-15.0701-46.18-24.73c-13.49-10.0701-27.32-19.73-41.87-28.2101c-13.63-8.6901-28.1-16.21-43.46-21.3199
c-6.23-2.05-12.3-4.51-18.48-6.6901c-9.8-3.41-18.64-9.0299-28.41-12.5c-9.33-3.2599-18.16-7.92-27.77-10.34
c-8.83-2.51-17.97-3.6699-27.09-4.37c-8.26-0.4-16.54,0.1901-24.79-0.4401c-9.02-0.72-18.09-0.3999-27.1-1.23
c-6.54-0.5699-13.15-0.54-19.64,0.48c-12.26,1.8901-24.57,3.8301-36.46,7.4401c-9.75,2.7899-18.93,7.17-28.5,10.47
c-9.67,3.42-18.82,8.15-28.52,11.49c-7.9,2.66-15.59,5.9-23.48,8.5699c-7.82,2.6001-15.55,5.53-23.06,8.9202
c-9.56,4.6499-19.59,8.22-29.18,12.7999c-9.3,4.47-19.43,6.62-29.16,9.89c-10.97,3.62-22.25,6.24-33.59,8.3999
c-9.06,1.5-18.29,1.28-27.37,2.6001c-16.15,1.24-32.36,1.45-48.49,2.97c15.05,10.1799,29.0699,21.8101,42.88,33.6
c8.2,7.08,15.5099,15.13,23.73,22.2101c13.43,12.99,27.29,25.6199,42.47,36.5599c15.91,10.95,32.96,20.12,48.62,31.46
c13.4301,9.11,26.26,19.07,39.6,28.33c14.24,10.33,30.19,18.65,47.47,22.44c11.08,2.34,21.8701,5.87,33.02,7.89
c9.21,2,18.52,3.42,27.72,5.45c19.14,3.6,38.5099,6.07,57.99,6.67c12.05,0.27,23.99,2.06,36.02,2.65c7.04,0.42,14,1.61,21.04,2.01
c10.67,0.64,21.19,2.69,31.85,3.46c12.35,0.81,24.73,1.29,37.12,1.07c11.68-0.36,23.31,1.52,35,0.82
c16.74-0.76,33.52-2.18,49.96-5.57c14.84-3.22,29.88-5.52,44.98-7.09c12.38-0.63,24.73-1.6,37.03-3.09
c19.22-1.28,38.3199-4.33,57.08-8.65c32.2201-8.84,64.84-16.3799,97.9-21.37c10.8999-1.93,21.98-2.47,33.02-3.11
c9.79-0.71,19.55-1.9,29.3799-2.25c15.8501-0.73,31.6802-2.09,47.5601-2.37c13.05-0.32,25.99-2.23,39.03-2.74
c8.72-0.46,17.35-1.83,25.88-3.65c11.86-2.19,23.58-5.1,35.16-8.47c-9.99-1.08-19.25-5.59-28.05-10.19
C1064.01,770.31,1049.5601,758.97,1031.98,754.89z"/>
</g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="960" y1="1190.5717" x2="960" y2="617.9399">
<stop offset="0" style="stop-color:#BF2501"/>
<stop offset="1" style="stop-color:#BB2300"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M1889.8398,876.26c-12.2397-2.17-23.9497-6.46-35.75-10.22c-10.0298-3.09-19.6499-7.35-29.73-10.31
c-8.4697-2.45-16.8799-5.12-25.2397-7.92c-7.6001-2.56-14.9102-5.88-22.48-8.49c-11.1101-4.26-22.6802-7.28-33.3601-12.58
c-13.7-6.69-27.38-13.53-40.11-21.94c-18.02-12.01-36.64-23.13-55.8201-33.18c-9.4299-5.4-19.22-10.14-29.2899-14.18
c-7.29-3.21-14.7401-6.01-22.39-8.18c-8.8501-2.64-17.51-5.86-26.3501-8.52c-11.8099-3.65-22.6899-9.6899-34.3999-13.6
c-7.67-2.63-15.3301-5.3099-22.92-8.16c-22.96-8.51-47.73-10.6899-72.05-10.35c-10.5599,0.11-21.09-0.98-31.6399-0.9301
c-12.4601,0.02-24.9-2.1499-37.3501-0.7999c-20.6799,2.58-41.4399,5.4301-61.39,11.66c-8.6,2.5699-16.8899,6.0499-25.48,8.6199
c-14,4.1801-27.26,10.4601-41.21,14.7401c-9.3199,2.85-18.49,6.15-27.76,9.11c-8.4399,2.42-16.76,5.17-25.01,8.14
c-8,2.84-15.67,6.52-23.6899,9.32c-9.9601,3.49-19.67,7.65-29.53,11.42c-9.38,3.55-19.28,5.41-28.85,8.35
c-11.5801,3.37-23.3,6.28-35.16,8.47c-8.53,1.82-17.16,3.19-25.88,3.65c-13.04,0.51-25.98,2.42-39.03,2.74
c-15.8799,0.28-31.71,1.64-47.5601,2.37c-9.8298,0.35-19.5898,1.54-29.3799,2.25c-11.04,0.64-22.1201,1.18-33.02,3.11
c-33.0601,4.9901-65.6799,12.53-97.9,21.37c-18.76,4.32-37.86,7.3701-57.08,8.65c-12.3,1.49-24.65,2.46-37.03,3.09
c-15.1,1.57-30.14,3.87-44.98,7.09c-16.44,3.39-33.22,4.81-49.96,5.57c-11.69,0.7-23.32-1.18-35-0.82
c-12.39,0.22-24.77-0.26-37.12-1.07c-10.66-0.77-21.18-2.82-31.85-3.46c-7.04-0.4-14-1.59-21.04-2.01
c-12.03-0.59-23.97-2.38-36.02-2.65c-19.48-0.6-38.85-3.07-57.99-6.67c-9.2-2.03-18.51-3.45-27.72-5.45
c-11.15-2.02-21.94-5.55-33.02-7.89c-17.28-3.79-33.23-12.11-47.47-22.44c-13.34-9.2599-26.17-19.22-39.6-28.33
c-15.66-11.34-32.71-20.51-48.62-31.46c-15.18-10.9401-29.04-23.5699-42.47-36.5599c-8.22-7.0801-15.53-15.1301-23.73-22.2101
c-13.8101-11.7899-27.83-23.42-42.88-33.6c-8.37-5.02-16.97-9.6599-25.85-13.7c-7.94-3.67-16.28-6.3401-24.39-9.5801
c-11.7599-4.6399-24.09-7.55-36.29-10.78V870.27c17.44-4.99,35.1-9.38,53.06-12.09c13.96-1.6,27.83-4.44,41.93-4.49
c12.68-0.19,25.31,1.44,37.99,1.12c14.6801,0.41,29.35,1.62,44.05,1.46c28.96-0.57,58.25,3.11,85.57,12.98
c15.4,5.8,31.49,9.75,46.44,16.74c6.08,2.74,12.38,4.94,18.69,7.1c13.33,4,26.48,8.59,39.91,12.27
c19.34,5.87,37.91,13.97,55.93,23.07c11.36,6.45,23.34,11.74,34.6,18.36c9.85,5.85,20.06,11.09,29.64,17.4
c11.8,7.65,23.93,14.85,36.57,21.03c17.55,0.3,35.06,1.59,52.62,1.2401c12.66-0.38,25.25,1,37.83,2.18
c20.95,2.08,41.64,6.88,61.36,14.26c10.31,3.83,20.82,7.06,31.2299,10.59c15.4102,5.19,29.8901,12.8201,45.4501,17.61
c12.51,3.8301,24.88,8.1,37.4501,11.73c28.49,7.86,55.73,19.76,81.7899,33.61c6.17,3.28,12.34,6.5701,18.7001,9.4901
c17.09,3.1499,33.7,8.5399,50.8599,11.36c8.9701,1.4299,17.9001,3.1799,26.9601,4.09c24.5499,3.09,49.35,2.12,73.99,4.09
c20.12,0.65,40.14,2.99,60.05,5.8401c10.2899,1.6799,20.6899,3.1499,30.64,6.3899c11.71,3.74,23.0199,8.62,34.0699,13.99
c13.53,7.1201,27.5,13.3701,41.52,19.4701c21.1899,8.6799,44.13,13.4199,67.08,12.5599c13.7001,0.2101,27.34-0.9399,41.01-1.6799
c13.14-0.7201,26.08-3.16,39.12-4.79c9.5701-1.4,19.27-0.63,28.9-1.12c13.3-0.84,26.61,0.42,39.9299,0.13
c10.0701-0.33,20.02,1.4,30.0701,1.8c11.04,0.6,21.95,2.5699,32.96,3.6399c14.3201,1.1101,28.61,2.9301,43.01,2.87
c9.6801,0.3201,19.38-0.0499,29.0701,0.4601c5.97,0.24,11.9399-0.37,17.9199-0.3401c15.67-0.1799,31.3101-2.62,46.99-1.34
c10.03,0.65,20.04-1.16,30.0601-0.24c20.7,1.14,41.4299,1.36,62.12,2.67c13.6901,1.2899,27.2198,3.86,40.89,5.28
c20.76,2.46,41.24,6.6599,61.8401,10.12c11.7798,2.0199,23.3599,5.0499,35.1799,6.88c10.6199,1.12,21.23,2.7599,31.95,2.48
c11,0.09,22-0.3501,33-0.8401v-182.73v-124.4C1910.03,880.06,1899.9302,878.14,1889.8398,876.26z"/>
<g>
<path fill="#911201" d="M458.17,946.79c-11.26-6.62-23.2401-11.91-34.6-18.36c-18.02-9.1-36.59-17.2-55.93-23.07
c-13.43-3.68-26.58-8.27-39.91-12.27c-6.31-2.16-12.61-4.36-18.69-7.1C294.09,879,278,875.05,262.6,869.25
c-27.32-9.87-56.61-13.55-85.57-12.98c-14.7,0.16-29.37-1.05-44.05-1.46c-12.68,0.32-25.31-1.31-37.99-1.12
c-14.1,0.05-27.97,2.89-41.93,4.49c-17.96,2.71-35.62,7.1-53.06,12.09v245.54c20.67-4.0601,41.6-7.05,61.86-13.01
c13.82-4.15,27.94-7.1801,41.83-11.0801c15.63-4.3199,30.33-11.2999,45.65-16.53c10.51-3.6299,20.99-7.3799,31.26-11.6599
c23.84-9.6,48.85-15.6901,73.17-23.86c12.8-4.3301,25.96-7.53,38.56-12.4401c14.74-5.44,29.39-11.2,44.54-15.4
c14.14-4.34,27.84-10.06,42.25-13.5c11.34-3.22,22.94-5.4,34.5-7.7c12.16-2.27,24.52-3.17,36.72-5.23
c18.05-3.17,36.45-1.6801,54.63-0.75c6.47,0.19,12.95,0.12,19.41,0.5699c-12.64-6.18-24.77-13.3799-36.57-21.03
C478.23,957.88,468.02,952.64,458.17,946.79z"/>
<path fill="#911201" d="M1887,1190.54c-10.72,0.2799-21.3301-1.36-31.95-2.48c-11.8201-1.8301-23.4001-4.8601-35.1799-6.88
c-20.6001-3.4601-41.0801-7.66-61.8401-10.12c-13.6702-1.42-27.2-3.9901-40.89-5.28c-20.6901-1.3101-41.42-1.53-62.12-2.67
c-10.02-0.92-20.03,0.89-30.0601,0.24c-15.6799-1.28-31.3199,1.16-46.99,1.34c-5.98-0.0299-11.95,0.5801-17.9199,0.3401
c-9.6901-0.51-19.39-0.14-29.0701-0.4601c-14.4,0.0601-28.6899-1.7599-43.01-2.87c-11.01-1.0699-21.9199-3.0399-32.96-3.6399
c-10.05-0.4-20-2.13-30.0701-1.8c-13.3199,0.29-26.6299-0.97-39.9299-0.13c-9.63,0.49-19.33-0.28-28.9,1.12
c-13.04,1.63-25.98,4.0699-39.12,4.79c-13.67,0.74-27.3099,1.89-41.01,1.6799c-22.95,0.86-45.89-3.88-67.08-12.5599
c-14.02-6.1-27.99-12.35-41.52-19.4701c-11.05-5.37-22.36-10.25-34.0699-13.99c-9.9501-3.24-20.3501-4.71-30.64-6.3899
c-19.91-2.8501-39.9301-5.1901-60.05-5.8401c-24.64-1.97-49.4401-1-73.99-4.09c-9.0599-0.91-17.99-2.66-26.9601-4.09
c-17.1599-2.8201-33.7699-8.2101-50.8599-11.36c14.0699,7.98,28.2999,15.6899,42.0999,24.1399
c10.9302,6.2401,21.1001,13.7201,32.1401,19.77c14.08,8.3301,28.83,15.41,43.54,22.53c8.3499,3.8,16.6899,7.6801,25.45,10.49
c10.6699,3.87,21.7799,6.4501,32.27,10.85c10.11,3.4301,19.6899,8.3,30.0599,10.98c20.6,7.0901,41.9301,11.8501,62.3,19.64
c18.1599,6.8501,36.89,11.9301,55.49,17.4c11.48,3.16,23.33,4.62,34.98,7c9.48,1.66,18.85,3.92,28.25,5.98
c13.4,2.66,26.87,4.9501,40.22,7.86c19.13,4.6901,38.66,7.4701,58.08,10.67c13.5,2.87,27.3201,4.04,40.75,7.34
c19.5801,4.66,39.1101,9.55,58.7101,14.14c21.33,4.01,42.8199,7.4601,64.5,8.8101c44.89,1.48,89.9199,2.74,134.41,9.4399
c10.5599,1.63,21.1799,3.04,31.5399,5.6801c17.84,4.74,34.7301,12.39,51.2501,20.53c16.0498,8.73,33.0601,15.47,49.6199,23.1499
c17.97,7.41,37.1399,11.75,56.47,13.52c10.3,1.03,20.6499,0.4,30.9702,0.39c8.71,0.09,17.3799-0.9399,26.0898-0.84V1189.7
C1909,1190.1899,1898,1190.63,1887,1190.54z"/>
</g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="960" y1="1920" x2="960" y2="983.4754">
<stop offset="0" style="stop-color:#540700"/>
<stop offset="0.9979" style="stop-color:#6B0800"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M1893.9102,1356.24c-10.3203,0.01-20.6702,0.64-30.9702-0.39c-19.3301-1.77-38.5-6.11-56.47-13.52
c-16.5598-7.6799-33.5701-14.4199-49.6199-23.1499c-16.52-8.14-33.4102-15.79-51.2501-20.53c-10.36-2.64-20.98-4.05-31.5399-5.6801
c-44.4901-6.7-89.52-7.96-134.41-9.4399c-21.6801-1.35-43.17-4.8-64.5-8.8101c-19.6-4.59-39.13-9.48-58.7101-14.14
c-13.4299-3.2999-27.25-4.47-40.75-7.34c-19.4199-3.2-38.95-5.98-58.08-10.67c-13.35-2.9099-26.8199-5.2-40.22-7.86
c-9.4-2.0599-18.77-4.3199-28.25-5.98c-11.65-2.38-23.5-3.84-34.98-7c-18.6-5.47-37.3301-10.5499-55.49-17.4
c-20.37-7.7899-41.7001-12.5499-62.3-19.64c-10.37-2.6799-19.95-7.5499-30.0599-10.98c-10.4901-4.3999-21.6001-6.98-32.27-10.85
c-8.76-2.8099-17.1001-6.6899-25.45-10.49c-14.7101-7.12-29.4601-14.2-43.54-22.53c-11.04-6.0499-21.21-13.5299-32.1401-19.77
c-13.7999-8.45-28.0299-16.1599-42.0999-24.1399c-6.3601-2.92-12.53-6.2101-18.7001-9.4901
c-26.0599-13.85-53.2999-25.75-81.7899-33.61c-12.5701-3.63-24.9401-7.8999-37.4501-11.73
c-15.5599-4.7899-30.0399-12.42-45.4501-17.61c-10.4099-3.53-20.9199-6.76-31.2299-10.59c-19.72-7.38-40.41-12.1801-61.36-14.26
c-12.58-1.18-25.17-2.56-37.83-2.18c-17.56,0.35-35.07-0.94-52.62-1.2401c-6.46-0.45-12.94-0.3799-19.41-0.5699
c-18.18-0.9301-36.58-2.42-54.63,0.75c-12.2,2.06-24.56,2.96-36.72,5.23c-11.56,2.3-23.16,4.48-34.5,7.7
c-14.41,3.44-28.11,9.16-42.25,13.5c-15.15,4.2-29.8,9.96-44.54,15.4c-12.6,4.91-25.76,8.11-38.56,12.4401
c-24.32,8.1699-49.33,14.26-73.17,23.86c-10.27,4.28-20.75,8.03-31.26,11.6599c-15.32,5.2301-30.02,12.2101-45.65,16.53
c-13.89,3.9-28.01,6.9301-41.83,11.0801c-20.26,5.96-41.19,8.95-61.86,13.01V1455.33V1580.03V1920h1920v-316v-132.42V1355.4
C1911.29,1355.3,1902.6201,1356.33,1893.9102,1356.24z"/>
<path fill="none" d="M609.0455,532.7668c0.4984,0.1624,0.9984,0.3191,1.4998,0.4716
C610.044,533.0859,609.5439,532.9292,609.0455,532.7668z"/>
<path fill="none" d="M522.1171,497.3303c0.3437,0.2524,0.6896,0.5021,1.0348,0.7527
C522.8066,497.8324,522.4608,497.5828,522.1171,497.3303z"/>
<path fill="none" d="M592.9943,527.3546c0.6532,0.1652,1.3046,0.3368,1.9544,0.5137
C594.2988,527.6914,593.6475,527.5198,592.9943,527.3546z"/>
<path fill="none" d="M595.7358,528.0841c0.8784,0.2469,1.7544,0.5026,2.6246,0.7775
C597.4902,528.5867,596.6143,528.3312,595.7358,528.0841z"/>
<path fill="none" d="M604.04,530.9299c0.6968,0.2893,1.3989,0.5618,2.1036,0.8254
C605.4388,531.4917,604.7368,531.2192,604.04,530.9299z"/>
<path fill="none" d="M616.415,534.8208c0.6084,0.1455,1.2178,0.2872,1.8285,0.4246
C617.6328,535.108,617.0233,534.9663,616.415,534.8208z"/>
<path fill="none" d="M680.0094,539.0181c0.7442-0.189,1.486-0.3864,2.2212-0.603
C681.4954,538.6318,680.7536,538.829,680.0094,539.0181z"/>
<path fill="none" d="M613.3829,534.0557c0.7787,0.2095,1.561,0.4071,2.3448,0.5994
C614.944,534.4628,614.1617,534.2651,613.3829,534.0557z"/>
<path fill="none" d="M545.95,513.98c1.3525,0.73,2.7317,1.3806,4.1322,1.9683C548.6817,515.3606,547.3025,514.71,545.95,513.98z"/>
<path fill="none" d="M618.8331,535.3787c0.7844,0.1733,1.5701,0.3418,2.3571,0.5049
C620.4032,535.7205,619.6176,535.552,618.8331,535.3787z"/>
<path fill="none" d="M554.342,517.5385c0.9702,0.3226,1.9496,0.6179,2.9325,0.9031
C556.2916,518.1564,555.3122,517.8611,554.342,517.5385z"/>
<path fill="none" d="M541.25,511.2367c1.5237,0.9801,3.085,1.9032,4.7,2.7433C544.335,513.1399,542.7737,512.2168,541.25,511.2367z
"/>
<path fill="none" d="M560.8995,519.4297c-0.968-0.2463-1.9308-0.5077-2.8906-0.7778c2.1661,0.6096,4.3556,1.1508,6.5533,1.6692
C563.3384,520.0323,562.1161,519.7393,560.8995,519.4297z"/>
<path fill="none" d="M572.3205,522.1641c0.1725,0.0432,0.3442,0.0886,0.5165,0.1323
C572.6647,522.2527,572.493,522.2073,572.3205,522.1641z"/>
<path fill="none" d="M565.1324,520.4563c0.7292,0.1711,1.4589,0.3411,2.1888,0.5109
C566.5914,520.7974,565.8618,520.6274,565.1324,520.4563z"/>
<path fill="none" d="M589.6106,526.5388c0.8743,0.1993,1.7463,0.408,2.6165,0.6223
C591.3568,526.9468,590.4849,526.7382,589.6106,526.5388z"/>
<path fill="none" d="M567.6296,521.0391c0.415,0.0967,0.8296,0.1947,1.2443,0.2921
C568.4592,521.2336,568.0447,521.1357,567.6296,521.0391z"/>
<path fill="none" d="M606.8151,531.9988c0.4924,0.1783,0.9861,0.3525,1.4818,0.5198
C607.8011,532.3513,607.3074,532.1771,606.8151,531.9988z"/>
<path fill="none" d="M655.6894,541.2231c0.6429,0.0604,1.2863,0.1128,1.9301,0.1576
C656.9757,541.3359,656.3323,541.2834,655.6894,541.2231z"/>
<path fill="none" d="M652.5961,540.8882c0.8225,0.1018,1.6455,0.1941,2.469,0.2771
C654.2417,541.0823,653.4186,540.9901,652.5961,540.8882z"/>
<path fill="none" d="M650.0319,540.5465c0.6876,0.0966,1.3752,0.1886,2.0632,0.2765
C651.4072,540.7351,650.7195,540.6431,650.0319,540.5465z"/>
<path fill="none" d="M647.1805,540.1321c0.6942,0.104,1.3883,0.2057,2.0826,0.3055
C648.5688,540.3378,647.8746,540.2361,647.1805,540.1321z"/>
<path fill="none" d="M658.3475,541.4293c0.8347,0.0496,1.6699,0.0892,2.5062,0.1056
C660.0173,541.5186,659.1822,541.479,658.3475,541.4293z"/>
<path fill="none" d="M664.2411,541.4858c0.9117-0.041,1.8243-0.0986,2.7388-0.1958
C666.0654,541.3872,665.1528,541.4448,664.2411,541.4858z"/>
<path fill="none" d="M670.4044,540.8447c1.1375-0.1602,2.2751-0.3342,3.41-0.5277
C672.6796,540.5105,671.5419,540.6846,670.4044,540.8447z"/>
<path fill="none" d="M677.2147,539.6711c-1.1282,0.2384-2.2628,0.4519-3.4003,0.6459c1.891-0.3224,3.7723-0.7036,5.6318-1.1584
C678.7053,539.3398,677.962,539.5133,677.2147,539.6711z"/>
<path fill="none" d="M666.98,541.29c1.1321-0.137,2.2678-0.2828,3.4039-0.4425C669.2479,541.0072,668.1121,541.1531,666.98,541.29z
"/>
<path fill="none" d="M631.42,537.8816c0.2378,0.0464,0.4756,0.093,0.7133,0.1399
C631.8956,537.9746,631.6578,537.928,631.42,537.8816z"/>
<path fill="none" d="M628.8541,537.3855c0.231,0.0442,0.4615,0.0887,0.6924,0.1331
C629.3157,537.4742,629.085,537.4297,628.8541,537.3855z"/>
<path fill="none" d="M621.644,535.9761c0.6667,0.137,1.334,0.2714,2.0019,0.4033
C622.978,536.2474,622.3107,536.113,621.644,535.9761z"/>
<path fill="none" d="M646.4297,540.0201c0.0983,0.0148,0.1967,0.0297,0.295,0.0443
C646.6264,540.0498,646.5281,540.0349,646.4297,540.0201z"/>
<path fill="none" d="M624.3533,536.5188c0.6704,0.1311,1.341,0.2612,2.0117,0.3899
C625.6942,536.78,625.0236,536.6499,624.3533,536.5188z"/>
<path fill="none" d="M626.7741,536.9875c0.345,0.0662,0.6898,0.1321,1.0347,0.198
C627.4639,537.1196,627.1191,537.0537,626.7741,536.9875z"/>
<path fill="none" d="M643.8432,539.6331c0.2319,0.0344,0.464,0.0681,0.6959,0.1029
C644.3072,539.7012,644.0751,539.6675,643.8432,539.6331z"/>
<path fill="none" d="M638.6121,538.9153c-0.0019-0.0002-0.0037-0.0002-0.0056-0.0005c0.01,0.0012,0.02,0.0024,0.0301,0.0037
C638.6284,538.9175,638.6202,538.9163,638.6121,538.9153z"/>
<path fill="none" d="M641.1425,539.2454c0.2601,0.0359,0.5201,0.0726,0.78,0.1094
C641.6625,539.3179,641.4025,539.2813,641.1425,539.2454z"/>
<path fill="none" d="M611.2144,533.4421c0.7078,0.2089,1.4175,0.4111,2.1304,0.6033
C612.6318,533.8533,611.9221,533.651,611.2144,533.4421z"/>
<path fill="none" d="M365.2205,404.8333c0.2391,0.0319,0.4785,0.0613,0.7174,0.0951
C365.6989,404.8945,365.4597,404.8652,365.2205,404.8333z"/>
<path fill="none" d="M356.3282,404.2029c0.2094-0.0027,0.4188-0.0042,0.6283-0.0046
C356.7469,404.1987,356.5375,404.2001,356.3282,404.2029z"/>
<path fill="none" d="M362.2668,404.4854c0.2651,0.0267,0.5302,0.0566,0.7952,0.0856
C362.7969,404.542,362.5321,404.5121,362.2668,404.4854z"/>
<path fill="none" d="M344.5113,405.2312c-0.3101,0.0439-0.6199,0.0908-0.9299,0.1364c0.3129-0.046,0.6257-0.0931,0.9388-0.1376
C344.5172,405.2305,344.5143,405.2307,344.5113,405.2312z"/>
<path fill="none" d="M380.5169,408.3862c0.2555,0.0884,0.5112,0.176,0.7656,0.2676
C381.0281,408.5623,380.7725,408.4746,380.5169,408.3862z"/>
<path fill="none" d="M338.9348,406.0835c-1.4532,0.2311-2.9062,0.4624-4.3598,0.6841c1.4633-0.2231,2.926-0.4559,4.3889-0.6886
C338.9542,406.0806,338.9445,406.082,338.9348,406.0835z"/>
<path fill="none" d="M368.7035,405.3632c0.1683,0.0294,0.3356,0.0635,0.5037,0.0939
C369.0391,405.4266,368.8718,405.3926,368.7035,405.3632z"/>
<path fill="none" d="M374.571,406.6141c0.1701,0.0428,0.3414,0.0817,0.5112,0.1259
C374.9124,406.6958,374.7412,406.6571,374.571,406.6141z"/>
<path fill="none" d="M371.4927,405.9036c0.2726,0.0573,0.5448,0.116,0.8168,0.176
C372.0375,406.0195,371.7654,405.9608,371.4927,405.9036z"/>
<path fill="none" d="M377.7704,407.4944c0.2297,0.0691,0.4576,0.1436,0.6867,0.2148
C378.228,407.6378,378.0002,407.5635,377.7704,407.4944z"/>
<path fill="none" d="M256.2399,426.4399c-7.5543,4.4944-15.3554,8.6692-22.8339,13.3147
c7.4785-4.6455,15.2796-8.8203,22.834-13.3147C256.2399,426.4399,256.2399,426.4399,256.2399,426.4399z"/>
<path fill="none" d="M226.0563,444.5862c2.4-1.6823,4.8569-3.2832,7.3497-4.8315
C230.9132,441.303,228.4562,442.9039,226.0563,444.5862z"/>
<path fill="none" d="M256.24,426.4399c0.8822-0.5104,1.7543-1.0438,2.6206-1.5908
C257.9943,425.3961,257.1222,425.9297,256.24,426.4399z"/>
<path fill="none" d="M300.3135,410.6118c-2.5378,0.2312-5.0697,0.5281-7.5909,0.8956c5.0425-0.735,10.1275-1.1874,15.2175-1.3975
C305.395,410.215,302.8513,410.3806,300.3135,410.6118z"/>
<path fill="none" d="M329.64,407.46c1.5068-0.1866,3.0117-0.4021,4.5159-0.629C332.6517,407.0579,331.1469,407.2733,329.64,407.46z
"/>
<path fill="none" d="M258.8747,424.8402c0.8615-0.5441,1.7173-1.1014,2.5718-1.663
C260.592,423.7388,259.7361,424.2961,258.8747,424.8402z"/>
<path fill="none" d="M273.3981,416.1516c-0.4691,0.2051-0.9336,0.4198-1.394,0.6429c0.9208-0.4463,1.8578-0.8588,2.8157-1.2277
C274.3409,415.7515,273.8671,415.9467,273.3981,416.1516z"/>
<path fill="none" d="M383.909,409.6545c-0.0027-0.0011-0.0055-0.002-0.0082-0.0032c0.0065,0.0027,0.0128,0.0054,0.0193,0.0081
C383.9164,409.6578,383.9127,409.656,383.909,409.6545z"/>
<path fill="none" d="M478.4022,462.7915c-0.0095-0.0061-0.0192-0.0122-0.0286-0.0183c1.7216,1.1228,3.4269,2.2695,5.093,3.4738
C481.8098,465.0493,480.1141,463.9084,478.4022,462.7915z"/>
<path fill="none" d="M485.92,468.09c1.6122,1.2704,3.2101,2.5591,4.8026,3.8547C489.1301,470.649,487.5322,469.3604,485.92,468.09z
"/>
<path fill="none" d="M470.665,457.8159c1.2726,0.8328,2.5551,1.6514,3.8378,2.4697
C473.2201,459.4674,471.9377,458.6487,470.665,457.8159z"/>
<path fill="none" d="M460.8112,451.3333c0.8018,0.4475,1.5961,0.9088,2.3763,1.3955
C462.4072,452.2419,461.613,451.7808,460.8112,451.3333z"/>
<path fill="none" d="M516.6284,493.1779c0.2717,0.2111,0.5416,0.4244,0.814,0.6346
C517.17,493.6023,516.9001,493.3889,516.6284,493.1779z"/>
<path fill="none" d="M505.9731,484.5898c0.3635,0.3011,0.7273,0.6019,1.0913,0.9023
C506.7003,485.1918,506.3366,484.891,505.9731,484.5898z"/>
<path fill="none" d="M511.659,489.2445c0.2485,0.2004,0.4989,0.3983,0.7479,0.5983
C512.1579,489.6428,511.9074,489.4449,511.659,489.2445z"/>
<path fill="none" d="M492.21,473.1611c1.1662,0.9558,2.3302,1.9147,3.4907,2.8779
C494.5402,475.0757,493.3762,474.1169,492.21,473.1611z"/>
<path fill="none" d="M458.3629,450.0259c0.538,0.2765,1.0704,0.5634,1.6023,0.8508
C459.4332,450.5892,458.9009,450.3025,458.3629,450.0259z"/>
<path fill="none" d="M497.1659,477.2546c1.4238,1.1857,2.8463,2.3732,4.2686,3.5608
C500.0121,479.6277,498.5898,478.4403,497.1659,477.2546z"/>
<path fill="none" d="M455.8207,448.7533c0.5057,0.2474,1.0089,0.4996,1.5119,0.7518
C456.8295,449.2529,456.3265,449.0007,455.8207,448.7533z"/>
<path fill="none" d="M406.6924,422.2241c-4.2399-2.408-8.4698-4.8341-12.6924-7.2742c8.445,4.88,16.92,9.7051,25.4438,14.4387
C415.1819,427.0219,410.9323,424.6321,406.6924,422.2241z"/>
<path fill="none" d="M391.0693,413.1566c0.2363,0.1359,0.4743,0.2681,0.7088,0.4073
C391.5436,413.4247,391.3057,413.2925,391.0693,413.1566z"/>
<path fill="none" d="M386.2945,410.6936c0.2455,0.1125,0.488,0.2319,0.7321,0.3477
C386.7825,410.9255,386.5402,410.8063,386.2945,410.6936z"/>
<path fill="none" d="M388.6637,411.8477c0.2706,0.1387,0.54,0.2797,0.8085,0.4227
C389.2037,412.1273,388.9343,411.9863,388.6637,411.8477z"/>
<path fill="none" d="M452.6668,447.2205c0.6196,0.3005,1.2388,0.6016,1.8586,0.9016
C453.9056,447.822,453.2864,447.521,452.6668,447.2205z"/>
<path fill="none" d="M447.5802,444.642c0.2839,0.1538,0.5717,0.3004,0.8575,0.4508
C448.1519,444.9424,447.8641,444.7958,447.5802,444.642z"/>
<path fill="none" d="M450.0519,445.9297c0.3513,0.177,0.7042,0.3513,1.0571,0.5256
C450.7561,446.281,450.4033,446.1067,450.0519,445.9297z"/>
<path fill="none" d="M1259.415,528.002c-0.0006,0-0.0015,0-0.002,0c0.2646-0.0052,0.5291-0.0122,0.7938-0.0208
c-0.0006,0-0.0013,0-0.002,0C1259.9415,527.9897,1259.6783,527.9966,1259.415,528.002z"/>
<path fill="none" d="M1739.8701,541.24c1.3337,0.2543,2.667,0.5122,3.9998,0.7737
C1742.5371,541.752,1741.2039,541.4943,1739.8701,541.24z"/>
<path fill="none" d="M1714.0927,531.0437c0.6436,0.2948,1.2841,0.5968,1.9174,0.9163
C1715.3767,531.6405,1714.7362,531.3385,1714.0927,531.0437z"/>
<path fill="none" d="M1726.89,352.14c-0.785-1.05-1.7025-1.9774-2.62-2.9025C1725.1875,350.1626,1726.105,351.0901,1726.89,352.14z
"/>
<path fill="none" d="M1674.8,295.4009c-0.5126-0.2053-0.9951-0.4709-1.4301-0.8308
C1673.8049,294.9301,1674.2875,295.1957,1674.8,295.4009z"/>
<path fill="none" d="M1693.8452,313.0793c0.4515,0.2933,0.8054,0.6563,1.0938,1.0671
C1694.6506,313.7356,1694.2968,313.3726,1693.8452,313.0793z"/>
<path fill="none" d="M1712.0757,530.1572c0.4792,0.203,0.9564,0.4111,1.4319,0.6235
C1713.0321,530.5684,1712.5549,530.3602,1712.0757,530.1572z"/>
<polygon fill="none" points="1256.2434,527.9985 1256.2502,527.9985 1256.2502,527.9985 "/>
<path fill="none" d="M1542.3815,177.4204c-0.3544-0.3853-0.7865-0.6689-1.2615-0.8921
C1541.595,176.7516,1542.0271,177.0352,1542.3815,177.4204z"/>
<path fill="none" d="M1707.3235,528.2375c0.7271,0.2861,1.4541,0.5724,2.1799,0.8619
C1708.7776,528.8099,1708.0505,528.5237,1707.3235,528.2375z"/>
<path fill="none" d="M1307.6711,56.0341c-3.6693-0.1003-7.3386-0.0741-10.9911-0.2841
C1300.3325,55.96,1304.0018,55.9338,1307.6711,56.0341z"/>
<path fill="none" d="M1709.6257,529.1482c0.6295,0.2515,1.257,0.5082,1.8828,0.7688
C1710.8827,529.6565,1710.2552,529.3998,1709.6257,529.1482z"/>
<path fill="none" d="M1417.946,104.8296c-1.1365-0.4539-2.2561-0.9509-3.3361-1.5396
C1415.6899,103.8788,1416.8096,104.3757,1417.946,104.8296z"/>
<path fill="none" d="M1750.1824,377.192c-1.2234-0.7222-2.8274-0.9995-4.0525-1.562
C1747.355,376.1925,1748.9587,376.4698,1750.1824,377.192z"/>
<path fill="none" d="M1755.3921,544.4136c0.0659,0.0146,0.1316,0.0288,0.1973,0.0435
C1755.5237,544.4424,1755.458,544.4282,1755.3921,544.4136z"/>
<path fill="none" d="M1834.7441,511.891c1.1465-0.1576,2.2876-0.307,3.436-0.4711h-0.0002
C1837.0317,511.584,1835.8906,511.7333,1834.7441,511.891z"/>
<path fill="none" d="M1751.8101,379.13c0.5935,3.309-0.1267,6.7679,0.6819,10.0389
C1751.6836,385.8979,1752.4038,382.439,1751.8101,379.13z"/>
<path fill="none" d="M1759.4214,545.3337c0.0105,0.0026,0.021,0.0049,0.0315,0.0073
C1759.4424,545.3386,1759.4319,545.3363,1759.4214,545.3337z"/>
<path fill="none" d="M1808.4277,465.8977c0.4041-1.5984,0.9187-3.1908,0.4546-4.7036
C1809.3462,462.7069,1808.8318,464.2993,1808.4277,465.8977z"/>
<path fill="none" d="M1766.0698,399.0701c-0.8667-0.8931-1.6973-1.8334-2.5532-2.7456
C1764.3726,397.2368,1765.2031,398.1771,1766.0698,399.0701z"/>
<path fill="none" d="M1746.6309,542.5653c0.3928,0.079,0.7861,0.1564,1.1787,0.2362
C1747.417,542.7214,1747.0239,542.6443,1746.6309,542.5653z"/>
<path fill="none" d="M1751.2576,543.5181c0.1475,0.031,0.2952,0.0613,0.4426,0.0925
C1751.5527,543.5793,1751.405,543.5492,1751.2576,543.5181z"/>
<path fill="none" d="M1746.1299,375.63c-0.6145-0.1993-1.1917-0.451-1.738-0.743
C1744.9382,375.179,1745.5151,375.4307,1746.1299,375.63z"/>
<path fill="none" d="M1266.4836,43.5571c-0.5187-0.4578-1.0612-0.8846-1.6537-1.2471
C1265.4225,42.6726,1265.965,43.0994,1266.4836,43.5571z"/>
<path fill="none" d="M1548.6191,525.8851c0.2224,0.0439,0.4476,0.0795,0.676,0.1057c-0.1975-0.0226-0.3916-0.0554-0.5846-0.0914
C1548.6804,525.8938,1548.6492,525.8911,1548.6191,525.8851z"/>
<path fill="none" d="M59.3232,135.0647c-1.0547,1.3386-2.0344,2.734-2.8932,4.2153
C57.2888,137.7988,58.2685,136.4033,59.3232,135.0647z"/>
<path fill="none" d="M690.2441,535.2739c-0.5129,0.2617-1.0306,0.5116-1.5528,0.7507c1.5665-0.7173,3.0931-1.5327,4.5687-2.4646
C692.2762,534.1813,691.2698,534.7507,690.2441,535.2739z"/>
<path fill="none" d="M1688.0212,520.2456c0.3901,0.136,0.7811,0.27,1.1702,0.4089
C1688.8022,520.5156,1688.4115,520.3816,1688.0212,520.2456z"/>
<path fill="none" d="M663.5598,541.5122c-0.8975,0.0278-1.7943,0.0404-2.6895,0.0232
C661.7654,541.5527,662.6623,541.54,663.5598,541.5122z"/>
<path fill="none" d="M1677.0753,516.678c-0.4448-0.1399-0.8883-0.2813-1.3328-0.4215c0.4908,0.1549,0.9808,0.3109,1.4723,0.4655
C1677.1683,516.7073,1677.1218,516.6926,1677.0753,516.678z"/>
<path fill="none" d="M686.5684,536.9213c0.7141-0.2826,1.4238-0.5765,2.1229-0.8966
C687.9922,536.3447,687.2825,536.6387,686.5684,536.9213z"/>
<path fill="none" d="M1684.2169,518.9578c0.4347,0.1426,0.8685,0.2869,1.3024,0.4319
C1685.0854,519.2446,1684.6516,519.1003,1684.2169,518.9578z"/>
<path fill="none" d="M1680.5212,517.7653c0.381,0.1207,0.7612,0.2439,1.1418,0.3656
C1681.2825,518.0092,1680.9023,517.886,1680.5212,517.7653z"/>
<path fill="none" d="M1064.2666,3.959c-2.566-0.0046-5.1316-0.0391-7.6967-0.1389C1059.135,3.92,1061.7006,3.9543,1064.2666,3.959z
"/>
<path fill="none" d="M1123.7091,11.9009c-1.0104-0.0096-2.0179-0.0378-3.0192-0.1108
C1121.6912,11.8632,1122.6987,11.8912,1123.7091,11.9009z"/>
<path fill="none" d="M683.8831,537.8999c0.7239-0.2385,1.4396-0.4993,2.1513-0.7709
C685.3228,537.4006,684.607,537.6614,683.8831,537.8999z"/>
<path fill="none" d="M1705.1085,527.3574c0.2147,0.0864,0.4299,0.1724,0.6451,0.2581
C1705.5385,527.5298,1705.3234,527.4438,1705.1085,527.3574z"/>
<g>
<radialGradient id="SVGID_3_" cx="871" cy="472" r="1147.7491" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#F9B700"/>
<stop offset="0.2003" style="stop-color:#F8B300"/>
<stop offset="0.3893" style="stop-color:#F6A800"/>
<stop offset="0.5736" style="stop-color:#F19500"/>
<stop offset="0.7551" style="stop-color:#EB7A00"/>
<stop offset="0.9329" style="stop-color:#E35800"/>
<stop offset="1" style="stop-color:#E04900"/>
</radialGradient>
<path fill="url(#SVGID_3_)" d="M1920,532.1069V1.7786C1920-0.5142,1919.7944,0,1917.4746,0H3.8061C0.5557,0,0-0.842,0,2.3843
v506.7681C0,512.0085,2.314,516,5.877,516c3.393,0,7.3186,0.8079,10.3226-0.89c4.3197-2.4415,5.8099-4.5009,10.3235-2.6239
c8.5496,3.5553,15.4875,4.6394,24.7408,5.771c2.7684,0.3386,5.1225-4.6836,6.2132-4.3508
c4.2649,1.3008,8.5298,2.6018,12.7946,3.9026c7.4438,2.2706,13.7565,3.2034,21.5432,3.9607
c4.381,0.4263,8.762,0.8523,13.1429,1.2784c3.085,0.3,7.2766-2.3755,10.1095-3.4469
c15.4346-5.8375,30.477-12.9429,44.1963-22.2094c17.9707-12.1381,33.8907-27.4707,51.1387-40.6644
c7.6008-5.8142,14.8538-11.9106,23.0037-16.9727c8.3533-5.189,17.1409-9.6563,25.4546-14.9055
c5.2235-3.2562,10.1689-7.0508,15.9592-9.2822c8.7227-3.3594,18.7762-4.4796,28.0333-5.1646
c26.6552-1.9724,55.19-11.7725,81.067-0.7429c16.7805,6.8634,32.3848,18.1332,48.3482,26.757
c12.9597,7.0011,26.08,13.3387,38.3967,21.3995c13.995,9.1577,26.4956,19.6338,39.4578,30.1836
c13.2322,10.7698,27.8751,24.1057,44.2192,29.5389c12.5608,4.1771,25.8441,6.5751,38.6522,9.8162
c11.8134,2.9867,22.7547,7.5265,34.8146,9.8309c10.6796,2.0391,22.1436,4.1362,33.0449,4.3494
c15.0101,0.3298,28.3486-5.0415,40.837-12.8982c16.6342-10.465,34.6276-22.2725,54.5373-24.9495
c10.3328-1.3894,20.697-0.6973,31.0522-1.511c11.2078-0.8807,22.7614-3.8403,33.7297-6.2863
c21.5298-4.9598,41.0505,2.4532,61.3972,8.3065c21.5759,6.2069,42.1586,1.4788,64.0056,1.6433
c10.505,0.0791,20.9246,0.865,31.3618,1.955c11.2798,1.1779,22.585,0.4379,33.8513,1.6309
c10.1654,1.0763,19.8491,2.6409,30.0981,1.3488c10.6555-1.3433,21.006-4.7148,30.6459-9.4044
c17.9762-8.1832,32.9742-24.5278,46.1429-38.8213c13.7219-14.8937,26.0469-31.6365,42.0071-44.2526
c16.1084-12.733,34.0831-21.1577,52.0066-30.8635c8.2979-4.4933,15.8762-10.4246,23.5435-15.8918
c8.7133-6.213,18.6106-11.1213,28.4109-15.3744c9.4377-4.0958,18.7628-4.1375,28.8229-3.576
c10.9736,0.6123,23.0094,2.5593,33.6062,5.4797c10.3871,2.449,20.3511,5.0186,30.5645,8.161
c10.6676,3.2821,21.8752,4.8824,32.4279,8.3905c19.8875,6.6111,40.8762,6.9773,60.2545,15.114
c9.3926,3.9438,18.7433,7.6144,27.7472,12.4379c9.6267,5.1569,18.5676,11.4523,28.2577,16.4828
c18.9447,9.835,35.5997,22.7108,53.9071,33.54c8.4111,4.9753,17.5435,8.5074,25.74,13.8562
c8.9828,5.8618,18.1333,10.9504,27.3455,16.4198c18.2972,10.8634,37.1514,21.7727,56.3232,31.0039
c6.3584,3.0616,13.0676,4.8058,19.7139,7.1783c7.571,2.7021,14.8931,6.1724,22.3171,9.2625
c7.274,3.0325,14.0533,7.1166,21.5701,9.5908c7.1868,2.3657,14.927,3.2659,22.3135,4.9058
c18.9473,4.2104,37.4805,9.8738,56.7168,12.8665c4.4719,0.6958,10.7776,2.1508,14.8784-0.075
c4.491-2.4375,9.6584-3.884,14.4573-5.6411c10.6067-3.8835,21.0737-7.3939,32.3269-8.7678
c10.2739-1.2543,20.4045-2.6135,30.5208-4.8556c5.2195-1.1566,10.4343-2.3502,15.7078-3.2406
C1920.29,534.291,1920,532.578,1920,532.1069z M1056.5699,3.8201c2.5651,0.0999,5.1306,0.1343,7.6967,0.1389
C1061.7006,3.9543,1059.135,3.92,1056.5699,3.8201z"/>
<radialGradient id="SVGID_4_" cx="871" cy="472" r="1147.7491" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#F9B700"/>
<stop offset="0.2003" style="stop-color:#F8B300"/>
<stop offset="0.3893" style="stop-color:#F6A800"/>
<stop offset="0.5736" style="stop-color:#F19500"/>
<stop offset="0.7551" style="stop-color:#EB7A00"/>
<stop offset="0.9329" style="stop-color:#E35800"/>
<stop offset="1" style="stop-color:#E04900"/>
</radialGradient>
<path fill="url(#SVGID_4_)" d="M1834.7441,511.891c0.1602-0.0221,0.2925-0.0402,0.4077-0.056
C1835.0283,511.8519,1834.8958,511.8701,1834.7441,511.891z"/>
</g>
<path fill="#F38700" d="M1549.2952,525.9908c0.2283,0.0262,0.4598,0.0428,0.6948,0.0492c-0.4382-0.0117-0.8633-0.063-1.2794-0.1406
C1548.9036,525.9354,1549.0977,525.9683,1549.2952,525.9908z"/>
<path fill="#F38700" d="M1246.4301,512.38c0.0751-0.77,0.1632-1.5375,0.2651-2.3024c0.1019-0.7648,0.2179-1.527,0.3485-2.2864
C1246.7825,509.3101,1246.5801,510.84,1246.4301,512.38z"/>
<path fill="#F38700" d="M1260.2069,527.9812c1.0607-0.0341,2.1217-0.0844,3.1831-0.1711c-1.062,0.0868-2.1239,0.1372-3.1851,0.1711
C1260.2056,527.9812,1260.2063,527.9812,1260.2069,527.9812z"/>
<path fill="#F38700" d="M1487.35,524.25c-2.4501-0.2151-4.9049-0.3125-7.3588-0.3101
C1482.4451,523.9375,1484.8999,524.035,1487.35,524.25z"/>
<path fill="#F38700" d="M1256.2502,527.9985L1256.2502,527.9985c1.0527,0.0293,2.1074,0.0244,3.1628,0.0034
c0.0005,0,0.0013,0,0.002,0C1258.3591,528.0229,1257.3036,528.0278,1256.2502,527.9985z"/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="1259.8099" y1="611.0098" x2="1259.8101" y2="444.9941">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M1260.205,527.9812c-0.2633,0.0085-0.5266,0.0154-0.7899,0.0208
C1259.6783,527.9966,1259.9415,527.9897,1260.205,527.9812z"/>
<path fill="#F38700" d="M679.4462,539.1586c0.188-0.046,0.3757-0.0929,0.5632-0.1405
C679.8219,539.0657,679.6343,539.1125,679.4462,539.1586z"/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="679.7278" y1="788.26" x2="679.7278" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M679.4462,539.1586c0.188-0.046,0.3757-0.0929,0.5632-0.1405
C679.8219,539.0657,679.6343,539.1125,679.4462,539.1586z"/>
<path fill="#F38700" d="M657.6194,541.3807c0.2427,0.017,0.4853,0.0341,0.7281,0.0486
C658.1047,541.4148,657.8621,541.3977,657.6194,541.3807z"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="657.9835" y1="788.26" x2="657.9835" y2="399.5881">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_7_)" d="M657.6194,541.3807c0.2427,0.017,0.4853,0.0341,0.7281,0.0486
C658.1047,541.4148,657.8621,541.3977,657.6194,541.3807z"/>
<path fill="#F38700" d="M663.5598,541.5122c0.2271-0.0071,0.4542-0.0161,0.6814-0.0264
C664.0139,541.4961,663.7869,541.5051,663.5598,541.5122z"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="663.9005" y1="788.26" x2="663.9005" y2="577.3225">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M663.5598,541.5122c0.2271-0.0071,0.4542-0.0161,0.6814-0.0264
C664.0139,541.4961,663.7869,541.5051,663.5598,541.5122z"/>
<path fill="#F38700" d="M686.0344,537.129c0.1785-0.0681,0.3563-0.1375,0.534-0.2078
C686.3908,536.9916,686.2128,537.061,686.0344,537.129z"/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="686.3014" y1="788.26" x2="686.3015" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M686.0344,537.129c0.1785-0.0681,0.3563-0.1375,0.534-0.2078
C686.3908,536.9916,686.2128,537.061,686.0344,537.129z"/>
<path fill="#F38700" d="M1677.2148,516.7219c1.1018,0.3467,2.2043,0.694,3.3064,1.0433
C1679.4192,517.4158,1678.3167,517.0686,1677.2148,516.7219z"/>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="1678.868" y1="788.26" x2="1678.868" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_10_)" d="M1677.2148,516.7219c1.1018,0.3467,2.2043,0.694,3.3064,1.0433
C1679.4192,517.4158,1678.3167,517.0686,1677.2148,516.7219z"/>
<path fill="#F38700" d="M1689.1914,520.6545c1.201,0.4287,2.3982,0.8677,3.5864,1.3297
C1691.5896,521.5222,1690.3926,521.0833,1689.1914,520.6545z"/>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="1690.9846" y1="788.26" x2="1690.9846" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_11_)" d="M1689.1914,520.6545c1.201,0.4287,2.3982,0.8677,3.5864,1.3297
C1691.5896,521.5222,1690.3926,521.0833,1689.1914,520.6545z"/>
<path fill="#F38700" d="M1685.5193,519.3896c0.8362,0.2792,1.6697,0.5658,2.502,0.856
C1687.189,519.9554,1686.3555,519.6688,1685.5193,519.3896z"/>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="1686.7703" y1="788.26" x2="1686.7703" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_12_)" d="M1685.5193,519.3896c0.8362,0.2792,1.6697,0.5658,2.502,0.856
C1687.189,519.9554,1686.3555,519.6688,1685.5193,519.3896z"/>
<path fill="#F38700" d="M1705.7537,527.6155c0.5227,0.2083,1.0459,0.4159,1.5698,0.6221
C1706.7996,528.0314,1706.2765,527.8237,1705.7537,527.6155z"/>
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="1706.5386" y1="788.26" x2="1706.5386" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_13_)" d="M1705.7537,527.6155c0.5227,0.2083,1.0459,0.4159,1.5698,0.6221
C1706.7996,528.0314,1706.2765,527.8237,1705.7537,527.6155z"/>
<path fill="#F38700" d="M1681.6631,518.1309c0.8523,0.2722,1.7036,0.5481,2.5538,0.8269
C1683.3666,518.6788,1682.5154,518.4031,1681.6631,518.1309z"/>
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="1682.9399" y1="788.26" x2="1682.9401" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_14_)" d="M1681.6631,518.1309c0.8523,0.2722,1.7036,0.5481,2.5538,0.8269
C1683.3666,518.6788,1682.5154,518.4031,1681.6631,518.1309z"/>
<path fill="#F38700" d="M638.6365,538.9185c0.8358,0.1007,1.671,0.2119,2.506,0.3269
C640.3076,539.1304,639.4724,539.0192,638.6365,538.9185z"/>
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="639.8895" y1="788.26" x2="639.8895" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_15_)" d="M638.6365,538.9185c0.8358,0.1007,1.671,0.2119,2.506,0.3269
C640.3076,539.1304,639.4724,539.0192,638.6365,538.9185z"/>
<path fill="#F38700" d="M634.56,538.51c1.3506,0.1036,2.6992,0.2429,4.0464,0.4048
C637.2592,538.7528,635.9106,538.6136,634.56,538.51z"/>
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="636.5832" y1="788.26" x2="636.5833" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_16_)" d="M634.56,538.51c1.3506,0.1036,2.6992,0.2429,4.0464,0.4048
C637.2592,538.7528,635.9106,538.6136,634.56,538.51z"/>
<path fill="#F38700" d="M632.1333,538.0215c0.8102,0.1599,1.6196,0.3215,2.4267,0.4885
C633.7529,538.343,632.9435,538.1814,632.1333,538.0215z"/>
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="633.3466" y1="788.26" x2="633.3467" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_17_)" d="M632.1333,538.0215c0.8102,0.1599,1.6196,0.3215,2.4267,0.4885
C633.7529,538.343,632.9435,538.1814,632.1333,538.0215z"/>
<path fill="#F38700" d="M629.5465,537.5186c0.6251,0.12,1.2495,0.2412,1.8735,0.363
C630.796,537.7598,630.1716,537.6385,629.5465,537.5186z"/>
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="630.4832" y1="788.26" x2="630.4833" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_18_)" d="M629.5465,537.5186c0.6251,0.12,1.2495,0.2412,1.8735,0.363
C630.796,537.7598,630.1716,537.6385,629.5465,537.5186z"/>
<path fill="#F38700" d="M627.8088,537.1855c0.3484,0.0665,0.697,0.1333,1.0453,0.2
C628.5058,537.3188,628.1573,537.2521,627.8088,537.1855z"/>
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="628.3315" y1="788.26" x2="628.3315" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_19_)" d="M627.8088,537.1855c0.3484,0.0665,0.697,0.1333,1.0453,0.2
C628.5058,537.3188,628.1573,537.2521,627.8088,537.1855z"/>
<path fill="#F38700" d="M655.0651,541.1653c0.208,0.021,0.4162,0.0383,0.6243,0.0579
C655.4813,541.2036,655.2731,541.1863,655.0651,541.1653z"/>
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="655.3773" y1="788.26" x2="655.3773" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_20_)" d="M655.0651,541.1653c0.208,0.021,0.4162,0.0383,0.6243,0.0579
C655.4813,541.2036,655.2731,541.1863,655.0651,541.1653z"/>
<path fill="#F38700" d="M641.9225,539.3547c0.6403,0.0908,1.2806,0.1833,1.9207,0.2783
C643.2031,539.5381,642.5629,539.4456,641.9225,539.3547z"/>
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="642.8829" y1="788.26" x2="642.8829" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_21_)" d="M641.9225,539.3547c0.6403,0.0908,1.2806,0.1833,1.9207,0.2783
C643.2031,539.5381,642.5629,539.4456,641.9225,539.3547z"/>
<path fill="#F38700" d="M649.2631,540.4376c0.2563,0.0369,0.5126,0.0729,0.7689,0.1089
C649.7756,540.5105,649.5193,540.4745,649.2631,540.4376z"/>
<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="649.6475" y1="788.26" x2="649.6475" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_22_)" d="M649.2631,540.4376c0.2563,0.0369,0.5126,0.0729,0.7689,0.1089
C649.7756,540.5105,649.5193,540.4745,649.2631,540.4376z"/>
<path fill="#F38700" d="M644.5391,539.736c0.6302,0.0944,1.2605,0.1893,1.8906,0.2842
C645.7996,539.9253,645.1694,539.8303,644.5391,539.736z"/>
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="645.4844" y1="788.26" x2="645.4844" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_23_)" d="M644.5391,539.736c0.6302,0.0944,1.2605,0.1893,1.8906,0.2842
C645.7996,539.9253,645.1694,539.8303,644.5391,539.736z"/>
<path fill="#F38700" d="M652.0951,540.823c0.167,0.0212,0.334,0.0444,0.501,0.0652
C652.4291,540.8674,652.2621,540.8442,652.0951,540.823z"/>
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="652.3456" y1="788.26" x2="652.3456" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_24_)" d="M652.0951,540.823c0.167,0.0212,0.334,0.0444,0.501,0.0652
C652.4291,540.8674,652.2621,540.8442,652.0951,540.823z"/>
<path fill="#F38700" d="M646.7247,540.0645c0.1519,0.0229,0.3038,0.0449,0.4557,0.0676
C647.0286,540.1094,646.8766,540.0874,646.7247,540.0645z"/>
<linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="646.9526" y1="788.26" x2="646.9526" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_25_)" d="M646.7247,540.0645c0.1519,0.0229,0.3038,0.0449,0.4557,0.0676
C647.0286,540.1094,646.8766,540.0874,646.7247,540.0645z"/>
<path fill="#F38700" d="M1705.1085,527.3574c-2.1099-0.8491-4.2015-1.7383-6.2285-2.7773c1.385,0.71,2.7999,1.3506,4.2305,1.9561
C1703.7734,526.8168,1704.4404,527.0885,1705.1085,527.3574z"/>
<linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="1701.9943" y1="788.26" x2="1701.9943" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_26_)" d="M1705.1085,527.3574c-2.1099-0.8491-4.2015-1.7383-6.2285-2.7773
c1.385,0.71,2.7999,1.3506,4.2305,1.9561C1703.7734,526.8168,1704.4404,527.0885,1705.1085,527.3574z"/>
<path fill="#F38700" d="M1709.5034,529.0995c0.0408,0.0162,0.0815,0.0323,0.1223,0.0487
C1709.585,529.1318,1709.5442,529.1157,1709.5034,529.0995z"/>
<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="1709.5646" y1="788.26" x2="1709.5646" y2="398.6116">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_27_)" d="M1709.5034,529.0995c0.0408,0.0162,0.0815,0.0323,0.1223,0.0487
C1709.585,529.1318,1709.5442,529.1157,1709.5034,529.0995z"/>
<path fill="#F38700" d="M683.8831,537.8999c-0.5478,0.1805-1.0987,0.3519-1.6525,0.5151c0.0027-0.0007,0.0054-0.0015,0.0081-0.0022
C682.7898,538.2502,683.338,538.0796,683.8831,537.8999z"/>
<linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="683.0568" y1="788.26" x2="683.0569" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_28_)" d="M683.8831,537.8999c-0.5478,0.1805-1.0987,0.3519-1.6525,0.5151
c0.0027-0.0007,0.0054-0.0015,0.0081-0.0022C682.7898,538.2502,683.338,538.0796,683.8831,537.8999z"/>
<path fill="#F38700" d="M356.3282,404.2029c-2.0823,0.0266-4.1573,0.1511-6.2267,0.3501c1.2446-0.1196,2.4912-0.2146,3.7401-0.2771
C354.6691,404.2344,355.4983,404.2134,356.3282,404.2029z"/>
<linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="353.2148" y1="788.26" x2="353.2148" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_29_)" d="M356.3282,404.2029c-2.0823,0.0266-4.1573,0.1511-6.2267,0.3501
c1.2446-0.1196,2.4912-0.2146,3.7401-0.2771C354.6691,404.2344,355.4983,404.2134,356.3282,404.2029z"/>
<path fill="#F38700" d="M660.8702,541.5354c-0.0055-0.0002-0.011-0.0004-0.0165-0.0005c0.0034,0.0001,0.0069,0.0005,0.0103,0.0005
C660.8661,541.5354,660.8682,541.5353,660.8702,541.5354z"/>
<linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="660.8619" y1="543.4885" x2="660.862" y2="539.5823">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_30_)" d="M660.8702,541.5354c-0.0055-0.0002-0.011-0.0004-0.0165-0.0005
c0.0034,0.0001,0.0069,0.0005,0.0103,0.0005C660.8661,541.5354,660.8682,541.5353,660.8702,541.5354z"/>
<path fill="#F38700" d="M670.4044,540.8447c-0.0068,0.001-0.0137,0.0018-0.0206,0.0028c0.0042-0.0006,0.0082-0.001,0.0124-0.0016
C670.399,540.8456,670.4017,540.845,670.4044,540.8447z"/>
<linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="670.3941" y1="552.078" x2="670.3942" y2="529.6171">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_31_)" d="M670.4044,540.8447c-0.0068,0.001-0.0137,0.0018-0.0206,0.0028
c0.0042-0.0006,0.0082-0.001,0.0124-0.0016C670.399,540.8456,670.4017,540.845,670.4044,540.8447z"/>
<path fill="#F38700" d="M505.9731,484.5898c-1.5154-1.2549-3.0282-2.5132-4.5386-3.7744c0.035,0.0293,0.0699,0.0585,0.1049,0.0876
C503.0149,482.135,504.4928,483.364,505.9731,484.5898z"/>
<linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="503.7038" y1="788.26" x2="503.7038" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_32_)" d="M505.9731,484.5898c-1.5154-1.2549-3.0282-2.5132-4.5386-3.7744
c0.035,0.0293,0.0699,0.0585,0.1049,0.0876C503.0149,482.135,504.4928,483.364,505.9731,484.5898z"/>
<path fill="#F38700" d="M350.1014,404.553c-1.864,0.1792-3.7238,0.4137-5.5812,0.677c1.2373-0.1753,2.4758-0.338,3.7156-0.48
C348.8573,404.6787,349.4791,404.6128,350.1014,404.553z"/>
<linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="347.3108" y1="788.26" x2="347.3108" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_33_)" d="M350.1014,404.553c-1.864,0.1792-3.7238,0.4137-5.5812,0.677
c1.2373-0.1753,2.4758-0.338,3.7156-0.48C348.8573,404.6787,349.4791,404.6128,350.1014,404.553z"/>
<path fill="#F38700" d="M288.9492,412.1123c-2.5095,0.4395-5.006,0.9519-7.4848,1.5425c1.2394-0.2953,2.4833-0.571,3.7309-0.8279
C286.443,412.5699,287.6945,412.332,288.9492,412.1123z"/>
<linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="285.2068" y1="788.26" x2="285.2068" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_34_)" d="M288.9492,412.1123c-2.5095,0.4395-5.006,0.9519-7.4848,1.5425
c1.2394-0.2953,2.4833-0.571,3.7309-0.8279C286.443,412.5699,287.6945,412.332,288.9492,412.1123z"/>
<path fill="#F38700" d="M266.64,419.8037c-1.7495,1.0901-3.4688,2.2401-5.1935,3.3735c0.0032-0.0021,0.0063-0.004,0.0095-0.0061
C263.1776,422.0397,264.8937,420.8918,266.64,419.8037z"/>
<linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="264.0432" y1="788.26" x2="264.0432" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_35_)" d="M266.64,419.8037c-1.7495,1.0901-3.4688,2.2401-5.1935,3.3735
c0.0032-0.0021,0.0063-0.004,0.0095-0.0061C263.1776,422.0397,264.8937,420.8918,266.64,419.8037z"/>
<path fill="#F38700" d="M343.5814,405.3676c-1.5401,0.226-3.079,0.4668-4.6176,0.7114c1.2288-0.1954,2.4579-0.3898,3.6876-0.5751
C342.9614,405.4572,343.2714,405.4131,343.5814,405.3676z"/>
<linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="341.2726" y1="788.26" x2="341.2726" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_36_)" d="M343.5814,405.3676c-1.5401,0.226-3.079,0.4668-4.6176,0.7114
c1.2288-0.1954,2.4579-0.3898,3.6876-0.5751C342.9614,405.4572,343.2714,405.4131,343.5814,405.3676z"/>
<path fill="#F38700" d="M613.3829,534.0557c-0.0128-0.0034-0.0254-0.0068-0.0381-0.0103c0.007,0.0018,0.0139,0.0039,0.0209,0.0059
C613.3713,534.0527,613.3771,534.0542,613.3829,534.0557z"/>
<linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="613.3638" y1="575.0713" x2="613.3638" y2="493.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_37_)" d="M613.3829,534.0557c-0.0128-0.0034-0.0254-0.0068-0.0381-0.0103
c0.007,0.0018,0.0139,0.0039,0.0209,0.0059C613.3713,534.0527,613.3771,534.0542,613.3829,534.0557z"/>
<linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="912.62" y1="788.26" x2="912.62" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_38_)" d="M1825.24,558.14c-13.5701,7.22-25.5801,16.97-37.25,26.88
c-12.72,11.62-26.04,22.5701-38.3999,34.58c-13.1602,12.52-27.05,24.25-39.8201,37.17c-7.99,7.72-14.99,16.37-22.3601,24.6599
c-12.25,13.73-23.8398,28.02-36.1699,41.67c-9.1899,9.87-17.95,20.12-26.98,30.13c-1.73,1.83-3.52,3.98-6.2,4.21
c-7.29-3.21-14.74-6.01-22.3901-8.18c-8.8499-2.64-17.51-5.86-26.3499-8.52c-11.8101-3.65-22.6901-9.6899-34.4001-13.6
c-7.6699-2.63-15.3298-5.3099-22.9199-8.16c-22.96-8.51-47.73-10.6899-72.05-10.35c-10.5599,0.11-21.09-0.98-31.6399-0.9301
c-12.4601,0.02-24.9001-2.1499-37.3501-0.7999c-20.6799,2.58-41.4399,5.4301-61.3899,11.66
c-8.6001,2.5699-16.8901,6.0499-25.48,8.6199c-14,4.1801-27.26,10.4601-41.2101,14.7401c-9.3199,2.85-18.49,6.15-27.76,9.11
c-8.4401,2.42-16.76,5.17-25.01,8.14c-8,2.84-15.67,6.52-23.6901,9.32c-9.96,3.49-19.6699,7.65-29.5299,11.42
c-9.38,3.55-19.28,5.41-28.85,8.35c-9.99-1.08-19.25-5.59-28.05-10.19c-15.98-7.76-30.4299-19.1-48.01-23.18
c-19.99-4.55-40.5-6.29-60.9399-7.29c-22.8701-0.12-45.8101-3.06-67.65-10.0099c-15.12-4.9001-30.76-7.7401-46.35-10.6301
c-11.8101-2-23.23-5.6899-34.99-7.96c-7.8501-1.6799-15.55-4.05-23.4301-5.5901c-18.25-3.2899-35.33-10.7799-52.48-17.5299
c-5.89-2.2001-11.92-3.98-17.79-6.1901c-9.9401-3.47-19.2999-8.3599-29.22-11.8899c-16.56-5.8101-31.63-15.0701-46.18-24.73
c-13.49-10.0701-27.32-19.73-41.87-28.2101c-13.63-8.6901-28.1-16.21-43.46-21.3199c-6.23-2.05-12.3-4.51-18.48-6.6901
c-9.8-3.41-18.64-9.0299-28.41-12.5c-9.33-3.2599-18.16-7.92-27.77-10.34c-8.83-2.51-17.97-3.6699-27.09-4.37
c-8.26-0.4-16.54,0.1901-24.79-0.4401c-9.02-0.72-18.09-0.3999-27.1-1.23c-6.54-0.5699-13.15-0.54-19.64,0.48
c-12.26,1.8901-24.57,3.8301-36.46,7.4401c-9.75,2.7899-18.93,7.17-28.5,10.47c-9.67,3.42-18.82,8.15-28.52,11.49
c-7.9,2.66-15.59,5.9-23.48,8.5699c-7.82,2.6001-15.55,5.53-23.06,8.9202c-9.56,4.6499-19.59,8.22-29.18,12.7999
c-9.3,4.47-19.43,6.62-29.16,9.89c-10.97,3.62-22.25,6.24-33.59,8.3999c-9.06,1.5-18.29,1.28-27.37,2.6001
c-16.15,1.24-32.36,1.45-48.49,2.97c-8.3701-5.02-16.97-9.6599-25.85-13.7c-7.94-3.67-16.28-6.3401-24.39-9.5801
c-11.7599-4.6399-24.09-7.55-36.29-10.78V512.12L5.62,516h9l8.63-4.88l12.63,5.26l17.37,2.12l4.13-4.62l21.87,6.67l26.5,2.5699
l13.63-5.15c5.78-1.51,10.91-4.7,16.25-7.27c5.07-2.6399,10.35-4.8999,15.26-7.83c9.82-6.2799,19.59-12.8199,27.97-20.98
c12.21-10.5599,25.15-20.24,37.95-30.0699c2.95-2.6001,6.05-4.99,9.25-7.23c2.4-1.6901,4.85-3.29,7.35-4.8401
c7.47-4.64,15.28-8.8201,22.83-13.3101c0.88-0.51,1.75-1.0399,2.62-1.59c0.01,0,0.01-0.0099,0.01-0.0099
c0.87-0.54,1.72-1.1001,2.58-1.6602c0,0,0-0.01,0.01-0.01c1.72-1.1299,3.43-2.2799,5.18-3.3699c0.87-0.54,1.75-1.0701,2.65-1.5701
c0.44-0.26,0.89-0.5,1.34-0.74c0.46-0.24,0.91-0.47,1.37-0.7c0.92-0.4401,1.86-0.8501,2.82-1.22
c0.96-0.3701,1.94-0.7001,2.94-0.9701c1.23-0.34,2.46-0.65,3.7-0.95c1.24-0.29,2.49-0.5699,3.74-0.8199
c1.24-0.26,2.49-0.5,3.75-0.7201c1.25-0.22,2.51-0.42,3.77-0.6c5.05-0.74,10.13-1.1899,15.22-1.4c7.31-0.23,14.47-1.76,21.7-2.65
c1.51-0.1899,3.01-0.3999,4.52-0.6299c0.14-0.02,0.28-0.04,0.42-0.0601c1.46-0.23,2.92-0.46,4.38-0.6899
c1.23-0.2001,2.46-0.3901,3.69-0.5801c0.31-0.04,0.62-0.0901,0.93-0.13c0.31-0.0499,0.63-0.1,0.94-0.14
c1.24-0.1799,2.48-0.34,3.72-0.48c0.62-0.0701,1.24-0.14,1.86-0.2c1.25-0.1201,2.4901-0.21,3.7401-0.27
c0.83-0.05,1.66-0.0701,2.49-0.0801h0.63c0.84,0,1.68,0,2.52,0.04c0.93,0.0701,1.86,0.15,2.79,0.25
c0.26,0.02,0.53,0.05,0.79,0.0801c0.72,0.08,1.44,0.1699,2.16,0.26c0.2401,0.0399,0.48,0.0599,0.72,0.0999
c0.92,0.1301,1.84,0.27,2.76,0.4301c0.17,0.03,0.34,0.0699,0.51,0.1c0.7599,0.1301,1.52,0.28,2.28,0.4401
c0.28,0.0599,0.55,0.12,0.82,0.1801c0.76,0.1699,1.51,0.3398,2.26,0.5299c0.17,0.0499,0.34,0.09,0.51,0.13
c0.9,0.23,1.8,0.49,2.69,0.75c0.23,0.0701,0.46,0.15,0.69,0.22c0.69,0.21,1.37,0.4401,2.06,0.6801c0.25,0.08,0.51,0.17,0.76,0.26
c0.8799,0.3199,1.7599,0.65,2.62,1c0.0099,0,0.0099,0.0099,0.02,0.0099c0.8,0.3301,1.59,0.6702,2.37,1.03
c0.25,0.1201,0.4901,0.24,0.7401,0.3501c0.55,0.26,1.09,0.53,1.6299,0.8099c0.27,0.14,0.54,0.28,0.81,0.42
c0.54,0.29,1.07,0.58,1.6,0.8899c0.24,0.1301,0.47,0.26,0.71,0.4001c0.75,0.45,1.49,0.9099,2.22,1.3899
c8.45,4.8801,16.92,9.71,25.44,14.4401c4.27,2.37,8.54,4.71,12.83,7.0299c4.29,2.3101,8.59,4.6001,12.91,6.8601
c0.79,0.47,1.59,0.9199,2.4,1.36c0.28,0.16,0.57,0.2999,0.86,0.4501c0.53,0.2899,1.07,0.5698,1.61,0.8398
c0.35,0.1801,0.71,0.3501,1.06,0.53c0.52,0.25,1.04,0.51,1.56,0.76c0.62,0.3,1.24,0.6001,1.86,0.9c0.43,0.2101,0.86,0.42,1.29,0.63
c0.51,0.25,1.01,0.5,1.51,0.76c0.35,0.1699,0.69,0.34,1.03,0.52c0.54,0.27,1.07,0.5601,1.61,0.85
c0.28,0.15,0.5601,0.2999,0.84,0.4501c0.8,0.45,1.6,0.9099,2.38,1.3999c0.82,0.51,1.63,1.05,2.42,1.62
c1.65,1.2001,3.35,2.35,5.06,3.4701c1.27,0.83,2.55,1.6499,3.83,2.47c1.3,0.8199,2.59,1.6499,3.87,2.48
c1.73,1.13,3.43,2.27,5.1,3.48c0.83,0.6,1.64,1.21,2.45,1.8401c1.61,1.2699,3.21,2.5599,4.8,3.8499
c0.5,0.41,0.9901,0.8201,1.4901,1.22c1.17,0.9601,2.33,1.9202,3.49,2.8801c0.49,0.3999,0.98,0.8099,1.47,1.21
c1.42,1.1899,2.84,2.38,4.26,3.5701c0.04,0.02,0.07,0.0499,0.11,0.08c1.47,1.24,2.95,2.46,4.43,3.6901
c0.3701,0.2999,0.73,0.5999,1.09,0.8999c1.53,1.26,3.06,2.51,4.6,3.75l0.75,0.6001c1.4,1.1299,2.8,2.24,4.22,3.3398
c0.27,0.2101,0.54,0.42,0.81,0.6301c1.55,1.1899,3.11,2.3699,4.68,3.52c0.34,0.25,0.69,0.5,1.03,0.75
c1.64,1.1899,3.29,2.3599,4.96,3.5c1.44,1.0898,2.88,2.2,4.32,3.2999c2.16,1.66,4.33,3.2999,6.56,4.85
c0.75,0.51,1.5,1.02,2.26,1.51c1.52,0.98,3.09,1.9,4.7,2.74c1.35,0.73,2.73,1.38,4.13,1.97c1.4,0.5901,2.82,1.1101,4.26,1.5901
c0.97,0.3199,1.95,0.6199,2.93,0.8999c0.25,0.0701,0.49,0.1401,0.74,0.2101c2.16,0.61,4.35,1.15,6.55,1.67
c0.19,0.0499,0.38,0.0898,0.57,0.1399c0.73,0.17,1.46,0.3401,2.19,0.51c0.1,0.02,0.21,0.05,0.31,0.0701
c0.41,0.1,0.83,0.1899,1.24,0.29c1.16,0.2699,2.3,0.5499,3.45,0.8298c0.17,0.05,0.34,0.0901,0.52,0.1401
c1.19,0.2999,2.39,0.6099,3.5699,0.96c1.46,0.4199,2.91,0.87,4.34,1.38c1.97,0.42,3.94,0.8199,5.91,1.25
c0.98,0.21,1.97,0.42,2.95,0.65c0.87,0.2,1.75,0.4099,2.62,0.6199c0.25,0.0601,0.51,0.1301,0.76,0.1901
c0.66,0.17,1.31,0.34,1.96,0.52c0.26,0.0699,0.52,0.14,0.79,0.2101c0.87,0.25,1.75,0.51,2.62,0.7799
c1.92,0.61,3.81,1.29,5.68,2.0699c0.7,0.29,1.4,0.5601,2.1,0.8301c0.23,0.0801,0.45,0.1599,0.68,0.24
c0.49,0.1799,0.98,0.35,1.48,0.52c0.25,0.08,0.5,0.1699,0.75,0.25c0.49,0.1599,0.99,0.3201,1.5,0.47
c0.22,0.0701,0.44,0.14,0.66,0.2c0.71,0.2101,1.42,0.41,2.13,0.6101h0.03c0,0,0.01,0,0.01,0.01c0.78,0.21,1.56,0.3999,2.35,0.5999
c0.23,0.05,0.46,0.1101,0.68,0.1602c0.61,0.1499,1.22,0.2899,1.83,0.4299c0.2,0.04,0.4,0.0901,0.59,0.13
c0.79,0.17,1.57,0.34,2.36,0.5c0.15,0.0399,0.3,0.0699,0.45,0.1c0.67,0.13,1.34,0.27,2.01,0.4c0.23,0.0499,0.47,0.09,0.7,0.14
c0.67,0.13,1.34,0.26,2.01,0.3899c0.14,0.02,0.28,0.05,0.41,0.0801c0.35,0.0601,0.69,0.13,1.04,0.2
c0.35,0.0601,0.7,0.1301,1.04,0.2001c0.2401,0.0399,0.47,0.08,0.7,0.13c0.62,0.12,1.25,0.24,1.87,0.36
c0.24,0.0499,0.48,0.09,0.71,0.14c0.81,0.1599,1.62,0.3201,2.43,0.49c1.35,0.1,2.7,0.24,4.05,0.3999c0.01,0.01,0.02,0.01,0.03,0.01
c0.83,0.1001,1.67,0.2101,2.5,0.3301c0.26,0.03,0.52,0.0701,0.78,0.1c0.64,0.1,1.28,0.1901,1.92,0.28
c0.24,0.0399,0.47,0.0699,0.7,0.11c0.63,0.0901,1.26,0.1899,1.89,0.28c0.1,0.01,0.2,0.03,0.29,0.04
c0.16,0.03,0.3101,0.0499,0.46,0.0699c0.69,0.11,1.39,0.2101,2.08,0.3099c0.26,0.03,0.52,0.0701,0.77,0.1101
c0.6899,0.09,1.3799,0.1899,2.0699,0.27c0.16,0.02,0.33,0.0499,0.5,0.0699c0.82,0.1,1.64,0.1901,2.47,0.2799
c0.2,0.02,0.41,0.03,0.62,0.05c0.64,0.0601,1.29,0.1201,1.93,0.16c0.24,0.02,0.48,0.0299,0.73,0.0499
c0.83,0.05,1.67,0.0901,2.5,0.1001c0.01,0.01,0.01,0.01,0.01,0.01c0.01,0,0.01,0,0.01,0c0.9,0.01,1.79,0,2.69-0.03
c0.23,0,0.45-0.01,0.68-0.02c0.91-0.05,1.83-0.1,2.74-0.2c1.13-0.14,2.27-0.28,3.4-0.4401c0.01,0,0.01,0,0.02,0v-0.0099
c1.14-0.1602,2.28-0.3301,3.41-0.52c1.9-0.3301,3.78-0.7101,5.64-1.1602c0.18-0.0499,0.37-0.0898,0.56-0.1399
c0.74-0.1899,1.49-0.39,2.22-0.6001c0-0.01,0.01-0.01,0.01-0.01c0.55-0.1599,1.1-0.3298,1.64-0.5099
c0.73-0.2401,1.44-0.5,2.15-0.77l0.54-0.2101c0.71-0.2799,1.42-0.5798,2.12-0.8999c1.57-0.71,3.09-1.53,4.57-2.46
c8.66-4.54,16.4399-10.55,25.0701-15.1501c13.3398-7.0898,27.2999-14.45,42.72-15.1599c11.2999-1.53,22.83,0.26,34.03-2.1799
c8.6099-1.8801,17.3199-3.26,25.9299-5.1801c7.51-1.7301,15.28-1.5699,22.9399-1.36c11.6101,0.3199,22.3601,5.1399,33.4401,8.08
c8.2999,2.86,16.92,4.67,25.71,5c9.3099,1.41,18.58-0.73,27.9-0.92c6-0.1799,11.97-1.1499,17.99-0.76
c6.99,0.4601,14.03,0.1301,21,0.99c8.64,1,17.3101,2.04,26.03,1.79c8.7-0.26,17.35,0.8101,25.95,2.04
c17.29,2.36,34.8601-1.8201,50.4-9.38c8.15-3.7101,15.11-9.41,22-15.02c2.15-2.0399,4.26-4.12,6.51-6.0599
c15.42-14.0701,28.62-30.3301,42.64-45.75c10.12-12.0901,23.11-21.3101,36.3101-29.75c9.7-6.3201,20.5399-10.5901,30.5999-16.27
c8.48-4.2,15.79-10.27,23.6301-15.5c8.6199-6.55,18.4399-11.23,28.2-15.8201c6.59-3.28,13.86-4.9399,21.21-5.1599
c5.71,0.5699,11.51,0.27,17.17,1.3799c8.74,1.6501,17.67,2.28,26.2699,4.6501c5.9801,1.4099,12.1501,2.0599,17.9901,4.0599
c12.5099,4.2799,25.2,8.12,38.1901,10.65c7.74,1.46,14.7599,5.3999,22.5698,6.5601C1412.8,380.35,1419.8,382.22,1427.01,382.76
c8.95,0.72,17.2,4.51,25.38,7.9099c15.16,5.53,29.51,13.1201,43.0399,21.8801c9.6901,6.27,20.5901,10.4199,30.2101,16.83
c7.41,4.9301,14.8099,9.89,22.23,14.8099c7.89,5.7001,16.27,10.72,25.11,14.79c6.73,2.96,12.92,6.9399,18.87,11.24
c7.3,5.3601,15.79,8.6899,23.4,13.54c10.4199,5.9299,20.98,11.6499,31.5,17.4099c6.1599,3.26,11.9399,7.2201,18.27,10.1702
c2.96,1.4299,5.96,2.8198,8.8999,4.3398c0.6101,0.1901,1.2101,0.3801,1.8201,0.5801c0.49,0.1499,0.98,0.3101,1.47,0.46
c1.1101,0.3501,2.21,0.7,3.3101,1.05c0.38,0.12,0.76,0.24,1.1399,0.36c0.8601,0.27,1.7101,0.5499,2.5601,0.83
c0.4301,0.14,0.8701,0.28,1.3,0.4301c0.84,0.2799,1.6699,0.5699,2.5,0.86c0.3899,0.13,0.78,0.27,1.1699,0.4
c1.2001,0.4301,2.4001,0.87,3.5901,1.33c2.0601,0.8101,4.1,1.66,6.1,2.6001c1.39,0.71,2.7999,1.3499,4.23,1.96
c0.66,0.28,1.33,0.55,2,0.8199c0.2101,0.08,0.4301,0.17,0.64,0.26c0.53,0.2001,1.05,0.41,1.5701,0.62
c0.73,0.28,1.46,0.5701,2.1799,0.86c0.04,0.02,0.0801,0.03,0.13,0.05c0.63,0.25,1.25,0.5099,1.88,0.7699
c0.1899,0.0801,0.38,0.1602,0.5701,0.24c0.47,0.2001,0.95,0.4102,1.4299,0.6201c0.1899,0.09,0.39,0.1699,0.5801,0.26
c0.6499,0.3,1.2899,0.6,1.9199,0.9199c7.6599,3.74,15.3601,7.79,23.8601,9.28c1.3298,0.25,2.6699,0.51,4,0.77
c0.9199,0.1799,1.8398,0.37,2.7598,0.5601c0.3901,0.0699,0.79,0.1499,1.1802,0.23c1.1499,0.24,2.2998,0.48,3.45,0.72
c0.1499,0.03,0.29,0.0601,0.4399,0.09c1.23,0.26,2.46,0.53,3.6902,0.7999c0.0698,0.02,0.1299,0.03,0.2,0.05
c1.28,0.28,2.5598,0.5701,3.8298,0.8701c0.01,0.01,0.02,0.01,0.03,0.01c3.8901,0.9199,7.77,1.8999,11.6201,2.99
c0.8298,0.23,1.6699,0.46,2.51,0.71c8.3101,2.79,17.0999,3.6399,25.5999,5.7C1807.75,556.5601,1816.3999,558.5601,1825.24,558.14z"
/>
<path fill="#F38700" d="M1751.7002,543.6106c1.2319,0.262,2.4626,0.5295,3.6919,0.803
C1754.1626,544.1406,1752.9321,543.8719,1751.7002,543.6106z"/>
<linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="1753.5461" y1="788.26" x2="1753.5461" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_39_)" d="M1751.7002,543.6106c1.2319,0.262,2.4626,0.5295,3.6919,0.803
C1754.1626,544.1406,1752.9321,543.8719,1751.7002,543.6106z"/>
<path fill="#F38700" d="M1743.8699,542.0137c0.9209,0.1809,1.8411,0.3663,2.761,0.5516
C1745.7107,542.3804,1744.7908,542.1943,1743.8699,542.0137z"/>
<linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="1745.2504" y1="788.26" x2="1745.2504" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_40_)" d="M1743.8699,542.0137c0.9209,0.1809,1.8411,0.3663,2.761,0.5516
C1745.7107,542.3804,1744.7908,542.1943,1743.8699,542.0137z"/>
<path fill="#F38700" d="M1711.5085,529.917c0.1895,0.079,0.3782,0.1602,0.5671,0.2402
C1711.8867,530.0771,1711.698,529.996,1711.5085,529.917z"/>
<linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="1711.7921" y1="788.26" x2="1711.7921" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_41_)" d="M1711.5085,529.917c0.1895,0.079,0.3782,0.1602,0.5671,0.2402
C1711.8867,530.0771,1711.698,529.996,1711.5085,529.917z"/>
<path fill="#F38700" d="M1755.5894,544.457c1.2791,0.2852,2.5564,0.5771,3.832,0.8767
C1758.1455,545.0347,1756.8687,544.7416,1755.5894,544.457z"/>
<linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="1757.5054" y1="788.26" x2="1757.5054" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_42_)" d="M1755.5894,544.457c1.2791,0.2852,2.5564,0.5771,3.832,0.8767
C1758.1455,545.0347,1756.8687,544.7416,1755.5894,544.457z"/>
<path fill="#F38700" d="M1747.8096,542.8015c1.1501,0.2343,2.2993,0.4736,3.448,0.7166
C1750.1089,543.2756,1748.96,543.0354,1747.8096,542.8015z"/>
<linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="1749.5336" y1="788.26" x2="1749.5336" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_43_)" d="M1747.8096,542.8015c1.1501,0.2343,2.2993,0.4736,3.448,0.7166
C1750.1089,543.2756,1748.96,543.0354,1747.8096,542.8015z"/>
<path fill="#F38700" d="M1773.5801,549.04c-4.6743-1.3752-9.3889-2.5874-14.1272-3.699c3.8904,0.9146,7.7642,1.9008,11.6135,2.9854
C1771.9048,548.5625,1772.7441,548.7942,1773.5801,549.04z"/>
<linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="1766.5165" y1="788.26" x2="1766.5165" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_44_)" d="M1773.5801,549.04c-4.6743-1.3752-9.3889-2.5874-14.1272-3.699
c3.8904,0.9146,7.7642,1.9008,11.6135,2.9854C1771.9048,548.5625,1772.7441,548.7942,1773.5801,549.04z"/>
<path fill="#F38700" d="M1263.39,527.8101c-1.0614,0.0868-2.1224,0.1371-3.1831,0.1711
C1261.2676,527.9471,1262.3286,527.8969,1263.39,527.8101z"/>
<linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="1261.7985" y1="788.26" x2="1261.7985" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_45_)" d="M1263.39,527.8101c-1.0614,0.0868-2.1224,0.1371-3.1831,0.1711
C1261.2676,527.9471,1262.3286,527.8969,1263.39,527.8101z"/>
<path fill="#F38700" d="M1259.4131,528.002c-1.0554,0.021-2.1101,0.0259-3.1628-0.0034
C1257.303,528.0278,1258.3577,528.0229,1259.4131,528.002z"/>
<linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="1257.8317" y1="610.3105" x2="1257.8317" y2="445.7278">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_46_)" d="M1259.4131,528.002c-1.0554,0.021-2.1101,0.0259-3.1628-0.0034
C1257.303,528.0278,1258.3577,528.0229,1259.4131,528.002z"/>
<path fill="#F38700" d="M626.3649,536.9087c0.1364,0.0262,0.2727,0.0527,0.4092,0.0789
C626.6377,536.9614,626.5013,536.9349,626.3649,536.9087z"/>
<linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="626.5695" y1="788.26" x2="626.5695" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_47_)" d="M626.3649,536.9087c0.1364,0.0262,0.2727,0.0527,0.4092,0.0789
C626.6377,536.9614,626.5013,536.9349,626.3649,536.9087z"/>
<path fill="#F38700" d="M1713.5076,530.7808c0.1952,0.0872,0.3906,0.1738,0.5851,0.2629
C1713.8982,530.9546,1713.7028,530.8679,1713.5076,530.7808z"/>
<linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="1713.8" y1="788.26" x2="1713.8002" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_48_)" d="M1713.5076,530.7808c0.1952,0.0872,0.3906,0.1738,0.5851,0.2629
C1713.8982,530.9546,1713.7028,530.8679,1713.5076,530.7808z"/>
<path fill="#F38700" d="M623.6459,536.3794c0.2358,0.0466,0.4715,0.0931,0.7074,0.1394
C624.1174,536.4727,623.8817,536.426,623.6459,536.3794z"/>
<linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="623.9996" y1="788.26" x2="623.9996" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_49_)" d="M623.6459,536.3794c0.2358,0.0466,0.4715,0.0931,0.7074,0.1394
C624.1174,536.4727,623.8817,536.426,623.6459,536.3794z"/>
<path fill="#F38700" d="M391.7781,413.564c0.7496,0.4454,1.4923,0.9038,2.2219,1.386
C393.2704,414.4678,392.5276,414.0094,391.7781,413.564z"/>
<linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="392.889" y1="788.26" x2="392.889" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_50_)" d="M391.7781,413.564c0.7496,0.4454,1.4923,0.9038,2.2219,1.386
C393.2704,414.4678,392.5276,414.0094,391.7781,413.564z"/>
<path fill="#F38700" d="M445.18,443.28c0.7894,0.4736,1.5915,0.9238,2.4002,1.3619
C446.7715,444.2039,445.9694,443.7537,445.18,443.28z"/>
<linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="446.3801" y1="788.26" x2="446.3801" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_51_)" d="M445.18,443.28c0.7894,0.4736,1.5915,0.9238,2.4002,1.3619
C446.7715,444.2039,445.9694,443.7537,445.18,443.28z"/>
<path fill="#F38700" d="M383.9201,409.6594c0.7993,0.3269,1.5896,0.6746,2.3744,1.0342
C385.5096,410.334,384.7194,409.9863,383.9201,409.6594z"/>
<linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="385.1073" y1="788.26" x2="385.1073" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_52_)" d="M383.9201,409.6594c0.7993,0.3269,1.5896,0.6746,2.3744,1.0342
C385.5096,410.334,384.7194,409.9863,383.9201,409.6594z"/>
<path fill="#F38700" d="M387.0266,411.0413c0.5494,0.2609,1.0956,0.5287,1.6371,0.8064
C388.1223,411.5699,387.5762,411.3021,387.0266,411.0413z"/>
<linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="387.8452" y1="788.26" x2="387.8452" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_53_)" d="M387.0266,411.0413c0.5494,0.2609,1.0956,0.5287,1.6371,0.8064
C388.1223,411.5699,387.5762,411.3021,387.0266,411.0413z"/>
<path fill="#F38700" d="M459.9652,450.8767c0.2818,0.1523,0.5662,0.3004,0.8459,0.4565
C460.5314,451.177,460.2471,451.0291,459.9652,450.8767z"/>
<linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="460.3882" y1="788.26" x2="460.3882" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_54_)" d="M459.9652,450.8767c0.2818,0.1523,0.5662,0.3004,0.8459,0.4565
C460.5314,451.177,460.2471,451.0291,459.9652,450.8767z"/>
<path fill="#F38700" d="M457.3326,449.5051c0.3441,0.1726,0.6882,0.345,1.0303,0.5208
C458.0208,449.85,457.6766,449.6777,457.3326,449.5051z"/>
<linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="457.8477" y1="788.26" x2="457.8477" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_55_)" d="M457.3326,449.5051c0.3441,0.1726,0.6882,0.345,1.0303,0.5208
C458.0208,449.85,457.6766,449.6777,457.3326,449.5051z"/>
<path fill="#F38700" d="M381.2825,408.6538c0.8793,0.3162,1.754,0.6443,2.6183,0.9976
C383.0365,409.2981,382.1618,408.97,381.2825,408.6538z"/>
<linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="382.5917" y1="788.26" x2="382.5917" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_56_)" d="M381.2825,408.6538c0.8793,0.3162,1.754,0.6443,2.6183,0.9976
C383.0365,409.2981,382.1618,408.97,381.2825,408.6538z"/>
<path fill="#F38700" d="M454.5255,448.1221c0.4324,0.2092,0.8638,0.4202,1.2952,0.6312
C455.3893,448.5422,454.9578,448.3313,454.5255,448.1221z"/>
<linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="455.1731" y1="788.26" x2="455.1731" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_57_)" d="M454.5255,448.1221c0.4324,0.2092,0.8638,0.4202,1.2952,0.6312
C455.3893,448.5422,454.9578,448.3313,454.5255,448.1221z"/>
<path fill="#F38700" d="M451.109,446.4553c0.5187,0.2561,1.0372,0.5125,1.5578,0.7651
C452.1462,446.9679,451.6277,446.7114,451.109,446.4553z"/>
<linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="451.8879" y1="788.26" x2="451.8879" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_58_)" d="M451.109,446.4553c0.5187,0.2561,1.0372,0.5125,1.5578,0.7651
C452.1462,446.9679,451.6277,446.7114,451.109,446.4553z"/>
<path fill="#F38700" d="M448.4377,445.0928c0.5363,0.2822,1.0728,0.564,1.6143,0.8369
C449.5105,445.6567,448.974,445.375,448.4377,445.0928z"/>
<linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="449.2448" y1="788.26" x2="449.2448" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_59_)" d="M448.4377,445.0928c0.5363,0.2822,1.0728,0.564,1.6143,0.8369
C449.5105,445.6567,448.974,445.375,448.4377,445.0928z"/>
<path fill="#F38700" d="M474.5028,460.2856c1.2931,0.825,2.5862,1.6497,3.8708,2.4875
C477.0892,461.9353,475.7959,461.1106,474.5028,460.2856z"/>
<linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="476.4382" y1="788.26" x2="476.4382" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_60_)" d="M474.5028,460.2856c1.2931,0.825,2.5862,1.6497,3.8708,2.4875
C477.0892,461.9353,475.7959,461.1106,474.5028,460.2856z"/>
<path fill="#F38700" d="M356.9565,404.1982c0.84-0.0022,1.6808,0.0066,2.5236,0.0417
C358.6373,404.2048,357.7964,404.196,356.9565,404.1982z"/>
<linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="358.2183" y1="788.26" x2="358.2183" y2="451.7506">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_61_)" d="M356.9565,404.1982c0.84-0.0022,1.6808,0.0066,2.5236,0.0417
C358.6373,404.2048,357.7964,404.196,356.9565,404.1982z"/>
<path fill="#F38700" d="M334.1559,406.8309c0.1397-0.0211,0.2794-0.0421,0.4191-0.0634
C334.4354,406.7888,334.2956,406.8098,334.1559,406.8309z"/>
<linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="334.3654" y1="788.26" x2="334.3654" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_62_)" d="M334.1559,406.8309c0.1397-0.0211,0.2794-0.0421,0.4191-0.0634
C334.4354,406.7888,334.2956,406.8098,334.1559,406.8309z"/>
<path fill="#F38700" d="M266.64,419.8037c0.8731-0.5439,1.7538-1.0732,2.6463-1.5779
C268.3938,418.7305,267.5131,419.2598,266.64,419.8037z"/>
<linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="267.9632" y1="788.26" x2="267.9632" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_63_)" d="M266.64,419.8037c0.8731-0.5439,1.7538-1.0732,2.6463-1.5779
C268.3938,418.7305,267.5131,419.2598,266.64,419.8037z"/>
<path fill="#F38700" d="M258.8606,424.8491c0.0047-0.0029,0.0094-0.006,0.0141-0.0089
C258.87,424.8433,258.8653,424.8462,258.8606,424.8491z"/>
<linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="258.8676" y1="460.4937" x2="258.8676" y2="389.2046">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_64_)" d="M258.8606,424.8491c0.0047-0.0029,0.0094-0.006,0.0141-0.0089
C258.87,424.8433,258.8653,424.8462,258.8606,424.8491z"/>
<path fill="#F38700" d="M359.48,404.24c0.9284,0.0669,1.8577,0.1516,2.7868,0.2454
C361.3377,404.3916,360.4085,404.3069,359.48,404.24z"/>
<linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="360.8734" y1="788.26" x2="360.8734" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_65_)" d="M359.48,404.24c0.9284,0.0669,1.8577,0.1516,2.7868,0.2454
C361.3377,404.3916,360.4085,404.3069,359.48,404.24z"/>
<path fill="#F38700" d="M365.9379,404.9283c0.9236,0.1307,1.8458,0.2744,2.7656,0.4348
C367.7837,405.2028,366.8616,405.0591,365.9379,404.9283z"/>
<linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="367.3207" y1="788.26" x2="367.3207" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_66_)" d="M365.9379,404.9283c0.9236,0.1307,1.8458,0.2744,2.7656,0.4348
C367.7837,405.2028,366.8616,405.0591,365.9379,404.9283z"/>
<path fill="#F38700" d="M372.3096,406.0796c0.7566,0.167,1.5105,0.3452,2.2615,0.5345
C373.82,406.4247,373.0662,406.2466,372.3096,406.0796z"/>
<linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="373.4403" y1="788.26" x2="373.4403" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_67_)" d="M372.3096,406.0796c0.7566,0.167,1.5105,0.3452,2.2615,0.5345
C373.82,406.4247,373.0662,406.2466,372.3096,406.0796z"/>
<path fill="#F38700" d="M375.0822,406.74c0.9013,0.2339,1.7972,0.4867,2.6882,0.7544
C376.8793,407.2266,375.9835,406.9739,375.0822,406.74z"/>
<linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="376.4263" y1="788.26" x2="376.4263" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_68_)" d="M375.0822,406.74c0.9013,0.2339,1.7972,0.4867,2.6882,0.7544
C376.8793,407.2266,375.9835,406.9739,375.0822,406.74z"/>
<path fill="#F38700" d="M378.4571,407.7092c0.6904,0.2151,1.377,0.4407,2.0598,0.677
C379.834,408.1499,379.1475,407.9243,378.4571,407.7092z"/>
<linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="379.487" y1="788.26" x2="379.487" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_69_)" d="M378.4571,407.7092c0.6904,0.2151,1.377,0.4407,2.0598,0.677
C379.834,408.1499,379.1475,407.9243,378.4571,407.7092z"/>
<path fill="#F38700" d="M369.2072,405.457c0.7639,0.1379,1.5258,0.2871,2.2855,0.4465
C370.7329,405.7441,369.9711,405.595,369.2072,405.457z"/>
<linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="370.35" y1="788.26" x2="370.35" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_70_)" d="M369.2072,405.457c0.7639,0.1379,1.5258,0.2871,2.2855,0.4465
C370.7329,405.7441,369.9711,405.595,369.2072,405.457z"/>
<path fill="#F38700" d="M363.0621,404.5709c0.7199,0.0789,1.4395,0.1664,2.1584,0.2623
C364.5015,404.7373,363.7821,404.6497,363.0621,404.5709z"/>
<linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="364.1413" y1="788.26" x2="364.1413" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_71_)" d="M363.0621,404.5709c0.7199,0.0789,1.4395,0.1664,2.1584,0.2623
C364.5015,404.7373,363.7821,404.6497,363.0621,404.5709z"/>
<path fill="#F38700" d="M389.4722,412.2704c0.537,0.2861,1.0688,0.5828,1.597,0.8862
C390.541,412.853,390.0093,412.5565,389.4722,412.2704z"/>
<linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="390.2708" y1="788.26" x2="390.2708" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_72_)" d="M389.4722,412.2704c0.537,0.2861,1.0688,0.5828,1.597,0.8862
C390.541,412.853,390.0093,412.5565,389.4722,412.2704z"/>
<path fill="#F38700" d="M594.9487,527.8683c0.2625,0.0714,0.5253,0.1422,0.7872,0.2158
C595.4739,528.0105,595.2112,527.9397,594.9487,527.8683z"/>
<linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="595.3422" y1="788.26" x2="595.3423" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_73_)" d="M594.9487,527.8683c0.2625,0.0714,0.5253,0.1422,0.7872,0.2158
C595.4739,528.0105,595.2112,527.9397,594.9487,527.8683z"/>
<path fill="#F38700" d="M568.874,521.3312c1.1511,0.2704,2.3006,0.546,3.4465,0.8329
C571.1746,521.8772,570.025,521.6016,568.874,521.3312z"/>
<linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="570.5972" y1="788.26" x2="570.5972" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_74_)" d="M568.874,521.3312c1.1511,0.2704,2.3006,0.546,3.4465,0.8329
C571.1746,521.8772,570.025,521.6016,568.874,521.3312z"/>
<path fill="#F38700" d="M580.75,524.64c1.9675,0.4175,3.9406,0.8237,5.9102,1.2472
C584.6906,525.4637,582.7175,525.0575,580.75,524.64z"/>
<linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="583.7051" y1="788.26" x2="583.7051" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_75_)" d="M580.75,524.64c1.9675,0.4175,3.9406,0.8237,5.9102,1.2472
C584.6906,525.4637,582.7175,525.0575,580.75,524.64z"/>
<path fill="#F38700" d="M572.837,522.2964c1.1965,0.3038,2.3897,0.618,3.5741,0.9595
C575.2267,522.9144,574.0335,522.6002,572.837,522.2964z"/>
<linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="574.624" y1="788.26" x2="574.624" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_76_)" d="M572.837,522.2964c1.1965,0.3038,2.3897,0.618,3.5741,0.9595
C575.2267,522.9144,574.0335,522.6002,572.837,522.2964z"/>
<path fill="#F38700" d="M606.1436,531.7554c0.2231,0.0835,0.4476,0.1624,0.6714,0.2434
C606.5912,531.9177,606.3667,531.8389,606.1436,531.7554z"/>
<linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="606.4793" y1="788.26" x2="606.4794" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_77_)" d="M606.1436,531.7554c0.2231,0.0835,0.4476,0.1624,0.6714,0.2434
C606.5912,531.9177,606.3667,531.8389,606.1436,531.7554z"/>
<path fill="#F38700" d="M592.2271,527.1611c0.2561,0.063,0.5115,0.1288,0.7672,0.1935
C592.7386,527.2899,592.4833,527.2241,592.2271,527.1611z"/>
<linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="592.6107" y1="788.26" x2="592.6107" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_78_)" d="M592.2271,527.1611c0.2561,0.063,0.5115,0.1288,0.7672,0.1935
C592.7386,527.2899,592.4833,527.2241,592.2271,527.1611z"/>
<path fill="#F38700" d="M608.2969,532.5186c0.2492,0.084,0.4987,0.167,0.7487,0.2483
C608.7956,532.6855,608.5461,532.6025,608.2969,532.5186z"/>
<linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="608.6712" y1="788.26" x2="608.6712" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_79_)" d="M608.2969,532.5186c0.2492,0.084,0.4987,0.167,0.7487,0.2483
C608.7956,532.6855,608.5461,532.6025,608.2969,532.5186z"/>
<path fill="#F38700" d="M621.1902,535.8835c0.1511,0.0315,0.3026,0.0615,0.4537,0.0925
C621.4927,535.9451,621.3414,535.915,621.1902,535.8835z"/>
<linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="621.4171" y1="788.26" x2="621.4171" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_80_)" d="M621.1902,535.8835c0.1511,0.0315,0.3026,0.0615,0.4537,0.0925
C621.4927,535.9451,621.3414,535.915,621.1902,535.8835z"/>
<path fill="#F38700" d="M618.2435,535.2454c0.1966,0.0443,0.3929,0.0898,0.5897,0.1333
C618.6363,535.3351,618.4401,535.2897,618.2435,535.2454z"/>
<linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="618.5383" y1="788.26" x2="618.5383" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_81_)" d="M618.2435,535.2454c0.1966,0.0443,0.3929,0.0898,0.5897,0.1333
C618.6363,535.3351,618.4401,535.2897,618.2435,535.2454z"/>
<path fill="#F38700" d="M610.5453,533.2384c0.2231,0.0677,0.4455,0.1377,0.6691,0.2037
C610.9908,533.3761,610.7683,533.3062,610.5453,533.2384z"/>
<linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="610.8798" y1="788.26" x2="610.8798" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_82_)" d="M610.5453,533.2384c0.2231,0.0677,0.4455,0.1377,0.6691,0.2037
C610.9908,533.3761,610.7683,533.3062,610.5453,533.2384z"/>
<path fill="#F38700" d="M615.7277,534.655c0.2288,0.0562,0.4581,0.1108,0.6873,0.1658
C616.1859,534.7659,615.9565,534.7112,615.7277,534.655z"/>
<linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="616.0714" y1="788.26" x2="616.0714" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_83_)" d="M615.7277,534.655c0.2288,0.0562,0.4581,0.1108,0.6873,0.1658
C616.1859,534.7659,615.9565,534.7112,615.7277,534.655z"/>
<path fill="#F38700" d="M523.1519,498.083c1.6359,1.1871,3.2832,2.3596,4.9581,3.4969
C526.4351,500.4426,524.7877,499.2701,523.1519,498.083z"/>
<linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="525.6309" y1="788.26" x2="525.6309" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_84_)" d="M523.1519,498.083c1.6359,1.1871,3.2832,2.3596,4.9581,3.4969
C526.4351,500.4426,524.7877,499.2701,523.1519,498.083z"/>
<path fill="#F38700" d="M512.4069,489.8428c1.3985,1.1228,2.8055,2.2346,4.2216,3.3351
C515.2124,492.0774,513.8054,490.9656,512.4069,489.8428z"/>
<linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="514.5176" y1="788.26" x2="514.5176" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_85_)" d="M512.4069,489.8428c1.3985,1.1228,2.8055,2.2346,4.2216,3.3351
C515.2124,492.0774,513.8054,490.9656,512.4069,489.8428z"/>
<path fill="#F38700" d="M517.4424,493.8125c1.5438,1.191,3.1027,2.3628,4.6746,3.5178
C520.545,496.1753,518.9862,495.0035,517.4424,493.8125z"/>
<linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="519.7797" y1="788.26" x2="519.7798" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_86_)" d="M517.4424,493.8125c1.5438,1.191,3.1027,2.3628,4.6746,3.5178
C520.545,496.1753,518.9862,495.0035,517.4424,493.8125z"/>
<path fill="#F38700" d="M567.3212,520.9672c0.1028,0.0239,0.2056,0.048,0.3084,0.0719
C567.5269,521.0151,567.424,520.9911,567.3212,520.9672z"/>
<linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="567.4754" y1="788.26" x2="567.4755" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_87_)" d="M567.3212,520.9672c0.1028,0.0239,0.2056,0.048,0.3084,0.0719
C567.5269,521.0151,567.424,520.9911,567.3212,520.9672z"/>
<path fill="#F38700" d="M490.7227,471.9447c0.4968,0.4042,0.992,0.8104,1.4874,1.2164
C491.7147,472.7551,491.2194,472.3489,490.7227,471.9447z"/>
<linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="491.4663" y1="788.26" x2="491.4663" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_88_)" d="M490.7227,471.9447c0.4968,0.4042,0.992,0.8104,1.4874,1.2164
C491.7147,472.7551,491.2194,472.3489,490.7227,471.9447z"/>
<path fill="#F38700" d="M495.7007,476.0391c0.4883,0.4053,0.9775,0.8096,1.4651,1.2156
C496.6782,476.8486,496.1891,476.4443,495.7007,476.0391z"/>
<linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="496.4333" y1="788.26" x2="496.4333" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_89_)" d="M495.7007,476.0391c0.4883,0.4053,0.9775,0.8096,1.4651,1.2156
C496.6782,476.8486,496.1891,476.4443,495.7007,476.0391z"/>
<path fill="#F38700" d="M507.0644,485.4922c1.5253,1.2585,3.0557,2.511,4.5946,3.7523
C510.1201,488.0031,508.5898,486.7507,507.0644,485.4922z"/>
<linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="509.3617" y1="788.26" x2="509.3617" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_90_)" d="M507.0644,485.4922c1.5253,1.2585,3.0557,2.511,4.5946,3.7523
C510.1201,488.0031,508.5898,486.7507,507.0644,485.4922z"/>
<path fill="#F38700" d="M528.11,501.58c1.445,1.0875,2.8787,2.1963,4.3175,3.3002
C530.9887,503.7762,529.555,502.6675,528.11,501.58z"/>
<linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="530.2687" y1="788.26" x2="530.2687" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_91_)" d="M528.11,501.58c1.445,1.0875,2.8787,2.1963,4.3175,3.3002
C530.9887,503.7762,529.555,502.6675,528.11,501.58z"/>
<path fill="#F38700" d="M557.2745,518.4415c0.2446,0.0709,0.4892,0.1414,0.7344,0.2103
C557.7637,518.5829,557.519,518.5125,557.2745,518.4415z"/>
<linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="557.6417" y1="788.26" x2="557.6417" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_92_)" d="M557.2745,518.4415c0.2446,0.0709,0.4892,0.1414,0.7344,0.2103
C557.7637,518.5829,557.519,518.5125,557.2745,518.4415z"/>
<path fill="#F38700" d="M564.5623,520.321c0.1901,0.0449,0.38,0.0908,0.5702,0.1353
C564.9422,520.4117,564.7524,520.366,564.5623,520.321z"/>
<linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="564.8474" y1="788.26" x2="564.8474" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_93_)" d="M564.5623,520.321c0.1901,0.0449,0.38,0.0908,0.5702,0.1353
C564.9422,520.4117,564.7524,520.366,564.5623,520.321z"/>
<path fill="#F38700" d="M550.0822,515.9482c1.4005,0.5876,2.8222,1.1123,4.2598,1.5902
C552.9044,517.0605,551.4827,516.5359,550.0822,515.9482z"/>
<linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="552.2121" y1="788.26" x2="552.2122" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_94_)" d="M550.0822,515.9482c1.4005,0.5876,2.8222,1.1123,4.2598,1.5902
C552.9044,517.0605,551.4827,516.5359,550.0822,515.9482z"/>
<path fill="#F38700" d="M532.4275,504.8801c2.1581,1.6558,4.3275,3.3008,6.563,4.8468
C536.755,508.1809,534.5856,506.536,532.4275,504.8801z"/>
<linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="535.709" y1="788.26" x2="535.709" y2="352.04">
<stop offset="0" style="stop-color:#F07A00"/>
<stop offset="1" style="stop-color:#EF7401"/>
</linearGradient>
<path fill="url(#SVGID_95_)" d="M532.4275,504.8801c2.1581,1.6558,4.3275,3.3008,6.563,4.8468
C536.755,508.1809,534.5856,506.536,532.4275,504.8801z"/>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment