Location: Beard, 2005 @ 8ec69b34c31c / beard_2005.xul

Author:
Catherine Lloyd <c.lloyd@auckland.ac.nz>
Date:
2010-05-27 22:53:23+12:00
Desc:
Made minor change to namespace.
Permanent Source URI:
https://models.physiomeproject.org/workspace/beard_2005/rawfile/8ec69b34c31cd1cbb53580d1853841bb333de78e/beard_2005.xul

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="layout-diagram" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" style="overflow: auto" onload="setupDocument()">
<hbox>
	<scale id="zoom_scale" value="10" min="7" max="14" flex="4"/>
	<label value="Zoom" control="zoom_scale" flex="1"/>
	<button id="reset_button" label="Reset View" flex="1"/>
	<spacer flex="34"/>
</hbox>
<script>
<![CDATA[
window.model_entities =
  {

			J_C1:

			{	id: "J_C1",
				y: 'Electron_flux_complex_I/J_C1',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#FF0000',
				linestyle: 'none'
			},
			
			J_C3:

			{	id: "J_C3",
				y: 'Electron_flux_complex_III/J_C3',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#FF6600',
				linestyle: 'none'
			},
			
			J_C4:

			{	id: "J_C4",
				y: 'Electron_flux_complex_IV/J_C4',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#FFcc00',
				linestyle: 'none'
			},
			
			Q:

			{	id: "Q",
				y: 'Q_concentration/Q',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#FFff66',
				linestyle: 'none'
			},
			
			QH2:

			{	id: "QH2",
				y: 'dQH2_dt/QH2',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#99ff99',
				linestyle: 'none'
			},
			
			H_x:

			{	id: "H_x",
				y: 'dH_x_dt/H_x',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#33ccff',
				linestyle: 'none'
			},
			
			J_F1:

			{	id: "J_F1",
				y: 'ATP_synthesis_flux/J_F1',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#ff00ff',
				linestyle: 'none'
			},
			
			NADH_x:

			{	id: "NADH_x",
				y: 'dNADH_x_dt/NADH_x',
				x: 'Environment/t',
				graph: 'Traces: Fluxes and Concentrations against Time',
				colour: '#00ff00',
				linestyle: 'none'
			}
			

			
 // Repeat the above section for each controllable graph trace.
 // Remember to add a comma to each repeat after the final },
 // except for the final one!
 
};

function flushVisibilityInformation(entity_id, entity_colour)
{
	var message = "";
	var entity;

	if (typeof pcenv != "undefined")
	{
		for (var i in window.model_entities)
		{
			entity = window.model_entities[i];
			if (typeof entity_id == "undefined" || entity_id == window.model_entities[i].id)
			{
				pcenv.selectTrace
				(
					entity.graph,
					entity.x,
					entity.y,
					typeof entity_colour == "undefined" ? "" : entity_colour,
					entity.linestyle
				);
			}
			if (entity.linestyle != "none")
				message += i + ", ";
		}
		pcenv.status(message == "" ? "No fluxes displayed" : "Displaying flux of " + message.slice(0, -2));
	}
}

function processSelectEntity(event)
{
	if (typeof pcenv != "undefined")
		pcenv.status("In processSelectEntity");

	var entity = window.model_entities[window.svgIdToName[event.currentTarget.id]];

	switch(entity.linestyle)
	{
	case "none":
		entity.linestyle = "lines";
		highlightEntity(event.currentTarget.id);
		break;
	case "lines":
		entity.linestyle = "none";
		unlightEntity(event.currentTarget.id);
		break;
	}

	flushVisibilityInformation(entity.id);
}

function processContext(event)
{
	// if (event.button != 2)
	//   return true;

	var entity = window.model_entities[window.svgIdToName[event.currentTarget.id]];

	if (entity.context == null)
		return true;

	var menu = document.getElementById("entityContextMenu");

	for (var c = menu.firstChild, x = null; c != null; c = x)
	{
		x = c.nextSibling;
		menu.removeChild(c);
	}

	for (var i in entity.context)
	{
		var item = entity.context[i];

		var mitem = document.createElementNS
		(
			"http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
			"menuitem"
		);

		mitem.setAttribute("label", item.label);
		mitem.setAttribute("url", item.url);
		mitem.addEventListener("command", processShowEntityURL, false);
		menu.appendChild(mitem);
	}

	menu.showPopup(window.diagram, event.screenX, event.screenY, "context");

	event.stopPropagation;
	return false;
}

function processShowEntityURL(event)
{
	url = event.target.getAttribute("url");

	window.open(url);

	var hl = document.getElementById("hidden-link");
	hl.href = url;

	// This is ugly, but it is one way to force everything through the proper
	// external handler...
	var evt = document.createEvent("HTMLEvents");
	evt.initEvent("click", true, true);
	hl.dispatchEvent(evt);
}

function highlightEntity(id)
{
	for (var path = document.getElementById(id + "_path1"), i = 1; path != null; path = document.getElementById(id + "_path" + ++i))
	{
		if (!(i in window.model_entities[window.svgIdToName[id]].path_colours))
			window.model_entities[window.svgIdToName[id]].path_colours[i] = path.attributes.getNamedItem("stroke").value;
		path.attributes.getNamedItem("stroke").value = "#ff0000";
	}
}

function highlightEntityOnRollover(event) {
	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].colour)
		flushVisibilityInformation(event.currentTarget.id, "#ffffff");

	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].linestyle == "none")
		highlightEntity(event.currentTarget.id);
}

function unlightEntity(id)
{
	for (var path = document.getElementById(id + "_path1"), i = 1; path != null; path = document.getElementById(id + "_path" + ++i))
		path.attributes.getNamedItem("stroke").value = window.model_entities[window.svgIdToName[id]].path_colours[i];
}

function unlightEntityOnRollover(event) {
	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].colour)
		flushVisibilityInformation(event.currentTarget.id, window.model_entities[window.svgIdToName[event.currentTarget.id]].colour);

	if (window.model_entities[window.svgIdToName[event.currentTarget.id]].linestyle == "none")
		unlightEntity(event.currentTarget.id);
}

var mouseDown = false;
var initial_x;
var initial_y;
var viewBox;

function startDrag(event)
{
	if (event.button)
		return true;

	mouseDown = true;

	initial_x = parseInt(currentZoom * event.pageX + parseInt(viewBox.value.match(/^-?\d+/)[0]));
	initial_y = parseInt(currentZoom * event.pageY + parseInt(viewBox.value.match(/^-?\d+\s+(-?(\d+))/)[1]));
}

function stopDrag(event)
{
	if (!event.button)
		mouseDown = false;
}

function moveDrag(event)
{
	if (mouseDown == true)
		viewBox.value = viewBox.value.replace(/^-?\d+\s+-?\d+/, parseInt(initial_x - currentZoom * event.pageX) + " " + parseInt(initial_y - currentZoom * event.pageY));
}

function reset()
{
	var zoom_scale = document.getElementById("zoom_scale")
	zoom_scale.value = zoom_scale.originalValue;
	viewBox.value = viewBox.originalValue;
}

var initialZoom;
var currentZoom = 1;
var initialHeight;
var initialWidth;

function zoomDiagram(event)
{
	currentZoom = initialZoom / event.currentTarget.value;
	viewBox.value = viewBox.value.replace(/\d+\s+\d+$/, parseInt(initialHeight * currentZoom) + " " + parseInt(initialWidth * currentZoom));
}

function setupDocument()
{
	flushVisibilityInformation();

	window.diagram = document.getElementById("sachse");

	window.svgIdToName = {};

	for (var name in window.model_entities)
	{
		var id = window.model_entities[name].id;
		window.model_entities[name].path_colours = [];

		var svg = document.getElementById(id);
		window.svgIdToName[id] = name;

		svg.addEventListener("click", processSelectEntity, false);
		svg.addEventListener("contextmenu", processContext, false);
		svg.addEventListener("mouseover", highlightEntityOnRollover ,false);
		svg.addEventListener("mouseout", unlightEntityOnRollover, false);
	}

	document.getElementsByTagName("svg")[0].addEventListener("mousedown", startDrag, false);
	document.addEventListener("mouseup", stopDrag, false);
	document.addEventListener("mousemove", moveDrag, false);
	document.getElementById("reset_button").addEventListener("click", reset, false);

	document.getElementById("zoom_scale").addEventListener("change", zoomDiagram, false);
	document.getElementById("zoom_scale").originalValue = document.getElementById("zoom_scale").value;

	viewBox = document.getElementsByTagName("svg")[0].attributes.getNamedItem("viewBox");
	viewBox.originalValue = viewBox.value;

	initialZoom = document.getElementById("zoom_scale").value;
	initialHeight = parseInt(viewBox.value.match(/(\d+)\s+\d+$/)[1]);
	initialWidth = parseInt(viewBox.value.match(/\d+$/)[0]);
}

]]>
</script>

<popupset>
  <menupopup id="entityContextMenu" />
</popupset>

<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"
	 width="423px" height="486px" viewBox="0 0 423 486" enable-background="new 0 0 423 486" xml:space="preserve">

<g>
	<g id="g59398" transform="translate(21.16987,-31.23187)">
		<g id="g7045">
			<g id="g7047">
				<path id="path7049" fill="#C1DAF2" stroke="#288ECD" d="M290.951,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C289.906,128.232,290.951,127.187,290.951,125.898z"/>
				<path id="path7051" fill="none" stroke="#288ECD" d="M288.619,123.566v-16.334"/>
			</g>
			<g id="g7053">
				<path id="path7055" fill="#C1DAF2" stroke="#288ECD" d="M285.6,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C284.555,128.232,285.6,127.187,285.6,125.898z"/>
				<path id="path7057" fill="none" stroke="#288ECD" d="M283.268,123.566v-16.334"/>
			</g>
			<g id="g7059">
				<path id="path7061" fill="#C1DAF2" stroke="#288ECD" d="M280.252,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C279.207,128.232,280.252,127.187,280.252,125.898z"/>
				<path id="path7063" fill="none" stroke="#288ECD" d="M277.918,123.566v-16.334"/>
			</g>
			<g id="g7065">
				<path id="path7067" fill="#C1DAF2" stroke="#288ECD" d="M307.003,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C305.959,128.232,307.003,127.187,307.003,125.898z"/>
				<path id="path7069" fill="none" stroke="#288ECD" d="M304.669,123.566v-16.334"/>
			</g>
			<g id="g7071">
				<path id="path7073" fill="#C1DAF2" stroke="#288ECD" d="M301.652,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C300.607,128.232,301.652,127.187,301.652,125.898z"/>
				<path id="path7075" fill="none" stroke="#288ECD" d="M299.32,123.566v-16.334"/>
			</g>
			<g id="g7077">
				<path id="path7079" fill="#C1DAF2" stroke="#288ECD" d="M296.302,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C295.257,128.232,296.302,127.187,296.302,125.898z"/>
				<path id="path7081" fill="none" stroke="#288ECD" d="M293.968,123.566v-16.334"/>
			</g>
			<g id="g7083">
				<path id="path7085" fill="#C1DAF2" stroke="#288ECD" d="M293.627,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C292.582,100.665,293.627,101.711,293.627,102.998z"/>
				<path id="path7087" fill="none" stroke="#288ECD" d="M291.294,105.331v16.334"/>
			</g>
			<g id="g7089">
				<path id="path7091" fill="#C1DAF2" stroke="#288ECD" d="M288.277,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C287.232,100.665,288.277,101.711,288.277,102.998z"/>
				<path id="path7093" fill="none" stroke="#288ECD" d="M285.943,105.331v16.334"/>
			</g>
			<g id="g7095">
				<path id="path7097" fill="#C1DAF2" stroke="#288ECD" d="M282.925,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C281.88,100.665,282.925,101.711,282.925,102.998z"/>
				<path id="path7099" fill="none" stroke="#288ECD" d="M280.593,105.331v16.334"/>
			</g>
			<g id="g7101">
				<path id="path7103" fill="#C1DAF2" stroke="#288ECD" d="M309.677,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C308.632,100.665,309.677,101.711,309.677,102.998z"/>
				<path id="path7105" fill="none" stroke="#288ECD" d="M307.345,105.331v16.334"/>
			</g>
			<g id="g7107">
				<path id="path7109" fill="#C1DAF2" stroke="#288ECD" d="M304.328,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C303.283,100.665,304.328,101.711,304.328,102.998z"/>
				<path id="path7111" fill="none" stroke="#288ECD" d="M301.996,105.331v16.334"/>
			</g>
			<g id="g7113">
				<path id="path7115" fill="#C1DAF2" stroke="#288ECD" d="M298.977,102.998c0,1.288-1.047,2.333-2.334,2.333
					s-2.332-1.045-2.332-2.333s1.046-2.333,2.332-2.333C297.93,100.665,298.977,101.711,298.977,102.998z"/>
				<path id="path7117" fill="none" stroke="#288ECD" d="M296.643,105.331v16.334"/>
			</g>
		</g>
		<g id="g7119">
			<g id="g7121">
				<path id="path7123" fill="#C1DAF2" stroke="#288ECD" d="M258.955,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C257.91,128.232,258.955,127.187,258.955,125.898z"/>
				<path id="path7125" fill="none" stroke="#288ECD" d="M256.623,123.566v-16.334"/>
			</g>
			<g id="g7127">
				<path id="path7129" fill="#C1DAF2" stroke="#288ECD" d="M253.605,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C252.56,128.232,253.605,127.187,253.605,125.898z"/>
				<path id="path7131" fill="none" stroke="#288ECD" d="M251.273,123.566v-16.334"/>
			</g>
			<g id="g7133">
				<path id="path7135" fill="#C1DAF2" stroke="#288ECD" d="M248.253,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C247.209,128.232,248.253,127.187,248.253,125.898z"/>
				<path id="path7137" fill="none" stroke="#288ECD" d="M245.921,123.566v-16.334"/>
			</g>
			<g id="g7139">
				<path id="path7141" fill="#C1DAF2" stroke="#288ECD" d="M275.005,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C273.961,128.232,275.005,127.187,275.005,125.898z"/>
				<path id="path7143" fill="none" stroke="#288ECD" d="M272.673,123.566v-16.334"/>
			</g>
			<g id="g7145">
				<path id="path7147" fill="#C1DAF2" stroke="#288ECD" d="M269.656,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C268.611,128.232,269.656,127.187,269.656,125.898z"/>
				<path id="path7149" fill="none" stroke="#288ECD" d="M267.324,123.566v-16.334"/>
			</g>
			<g id="g7151">
				<path id="path7153" fill="#C1DAF2" stroke="#288ECD" d="M264.304,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.286,0-2.334,1.045-2.334,2.332c0,1.289,1.048,2.334,2.334,2.334C263.259,128.232,264.304,127.187,264.304,125.898z"/>
				<path id="path7155" fill="none" stroke="#288ECD" d="M261.971,123.566v-16.334"/>
			</g>
			<g id="g7157">
				<path id="path7159" fill="#C1DAF2" stroke="#288ECD" d="M261.63,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C260.586,100.665,261.63,101.711,261.63,102.998z"/>
				<path id="path7161" fill="none" stroke="#288ECD" d="M259.296,105.331v16.334"/>
			</g>
			<g id="g7163">
				<path id="path7165" fill="#C1DAF2" stroke="#288ECD" d="M256.279,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C255.234,100.665,256.279,101.711,256.279,102.998z"/>
				<path id="path7167" fill="none" stroke="#288ECD" d="M253.947,105.331v16.334"/>
			</g>
			<g id="g7169">
				<path id="path7171" fill="#C1DAF2" stroke="#288ECD" d="M250.929,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.286,0-2.332-1.045-2.332-2.333s1.046-2.333,2.332-2.333C249.884,100.665,250.929,101.711,250.929,102.998z"/>
				<path id="path7173" fill="none" stroke="#288ECD" d="M248.595,105.331v16.334"/>
			</g>
			<g id="g7175">
				<path id="path7177" fill="#C1DAF2" stroke="#288ECD" d="M277.68,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.286,0-2.331-1.045-2.331-2.333s1.045-2.333,2.331-2.333C276.636,100.665,277.68,101.711,277.68,102.998z"/>
				<path id="path7179" fill="none" stroke="#288ECD" d="M275.349,105.331v16.334"/>
			</g>
			<g id="g7181">
				<path id="path7183" fill="#C1DAF2" stroke="#288ECD" d="M272.332,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C271.287,100.665,272.332,101.711,272.332,102.998z"/>
				<path id="path7185" fill="none" stroke="#288ECD" d="M269.998,105.331v16.334"/>
			</g>
			<g id="g7187">
				<path id="path7189" fill="#C1DAF2" stroke="#288ECD" d="M266.982,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C265.937,100.665,266.982,101.711,266.982,102.998z"/>
				<path id="path7191" fill="none" stroke="#288ECD" d="M264.648,105.331v16.334"/>
			</g>
		</g>
		<g id="g7193">
			<g id="g7195">
				<path id="path7197" fill="#C1DAF2" stroke="#288ECD" d="M226.959,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C225.914,128.232,226.959,127.187,226.959,125.898z"/>
				<path id="path7199" fill="none" stroke="#288ECD" d="M224.625,123.566v-16.334"/>
			</g>
			<g id="g7201">
				<path id="path7203" fill="#C1DAF2" stroke="#288ECD" d="M221.609,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C220.564,128.232,221.609,127.187,221.609,125.898z"/>
				<path id="path7205" fill="none" stroke="#288ECD" d="M219.275,123.566v-16.334"/>
			</g>
			<g id="g7207">
				<path id="path7209" fill="#C1DAF2" stroke="#288ECD" d="M216.257,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S216.257,127.187,216.257,125.898z"/>
				<path id="path7211" fill="none" stroke="#288ECD" d="M213.924,123.566v-16.334"/>
			</g>
			<g id="g7213">
				<path id="path7215" fill="#C1DAF2" stroke="#288ECD" d="M243.009,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C241.964,128.232,243.009,127.187,243.009,125.898z"/>
				<path id="path7217" fill="none" stroke="#288ECD" d="M240.677,123.566v-16.334"/>
			</g>
			<g id="g7219">
				<path id="path7221" fill="#C1DAF2" stroke="#288ECD" d="M237.66,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C236.615,128.232,237.66,127.187,237.66,125.898z"/>
				<path id="path7223" fill="none" stroke="#288ECD" d="M235.326,123.566v-16.334"/>
			</g>
			<g id="g7225">
				<path id="path7227" fill="#C1DAF2" stroke="#288ECD" d="M232.31,125.898c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S232.31,127.187,232.31,125.898z"/>
				<path id="path7229" fill="none" stroke="#288ECD" d="M229.976,123.566v-16.334"/>
			</g>
			<g id="g7231">
				<path id="path7233" fill="#C1DAF2" stroke="#288ECD" d="M229.632,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C228.587,100.665,229.632,101.711,229.632,102.998z"/>
				<path id="path7235" fill="none" stroke="#288ECD" d="M227.3,105.331v16.334"/>
			</g>
			<g id="g7237">
				<path id="path7239" fill="#C1DAF2" stroke="#288ECD" d="M224.283,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C223.238,100.665,224.283,101.711,224.283,102.998z"/>
				<path id="path7241" fill="none" stroke="#288ECD" d="M221.951,105.331v16.334"/>
			</g>
			<g id="g7243">
				<path id="path7245" fill="#C1DAF2" stroke="#288ECD" d="M218.933,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S218.933,101.711,218.933,102.998z"/>
				<path id="path7247" fill="none" stroke="#288ECD" d="M216.6,105.331v16.334"/>
			</g>
			<g id="g7249">
				<path id="path7251" fill="#C1DAF2" stroke="#288ECD" d="M245.685,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C244.64,100.665,245.685,101.711,245.685,102.998z"/>
				<path id="path7253" fill="none" stroke="#288ECD" d="M243.353,105.331v16.334"/>
			</g>
			<g id="g7255">
				<path id="path7257" fill="#C1DAF2" stroke="#288ECD" d="M240.336,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C239.291,100.665,240.336,101.711,240.336,102.998z"/>
				<path id="path7259" fill="none" stroke="#288ECD" d="M238.002,105.331v16.334"/>
			</g>
			<g id="g7261">
				<path id="path7263" fill="#C1DAF2" stroke="#288ECD" d="M234.984,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C233.939,100.665,234.984,101.711,234.984,102.998z"/>
				<path id="path7265" fill="none" stroke="#288ECD" d="M232.652,105.331v16.334"/>
			</g>
		</g>
		<g id="g7267">
			<g id="g7269">
				<path id="path7271" fill="#C1DAF2" stroke="#288ECD" d="M194.962,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S194.962,127.187,194.962,125.898z"/>
				<path id="path7273" fill="none" stroke="#288ECD" d="M192.629,123.566v-16.334"/>
			</g>
			<g id="g7275">
				<path id="path7277" fill="#C1DAF2" stroke="#288ECD" d="M189.611,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S189.611,127.187,189.611,125.898z"/>
				<path id="path7279" fill="none" stroke="#288ECD" d="M187.278,123.566v-16.334"/>
			</g>
			<g id="g7281">
				<path id="path7283" fill="#C1DAF2" stroke="#288ECD" d="M184.261,125.898c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C183.216,128.232,184.261,127.187,184.261,125.898z"/>
				<path id="path7285" fill="none" stroke="#288ECD" d="M181.928,123.566v-16.334"/>
			</g>
			<g id="g7287">
				<path id="path7289" fill="#C1DAF2" stroke="#288ECD" d="M211.013,125.898c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C209.968,128.232,211.013,127.187,211.013,125.898z"/>
				<path id="path7291" fill="none" stroke="#288ECD" d="M208.68,123.566v-16.334"/>
			</g>
			<g id="g7293">
				<path id="path7295" fill="#C1DAF2" stroke="#288ECD" d="M205.663,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S205.663,127.187,205.663,125.898z"/>
				<path id="path7297" fill="none" stroke="#288ECD" d="M203.33,123.566v-16.334"/>
			</g>
			<g id="g7299">
				<path id="path7301" fill="#C1DAF2" stroke="#288ECD" d="M200.313,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C199.267,128.232,200.313,127.187,200.313,125.898z"/>
				<path id="path7303" fill="none" stroke="#288ECD" d="M197.98,123.566v-16.334"/>
			</g>
			<g id="g7305">
				<path id="path7307" fill="#C1DAF2" stroke="#288ECD" d="M197.637,102.998c0,1.288-1.045,2.333-2.333,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C196.592,100.665,197.637,101.711,197.637,102.998z"/>
				<path id="path7309" fill="none" stroke="#288ECD" d="M195.304,105.331v16.334"/>
			</g>
			<g id="g7311">
				<path id="path7313" fill="#C1DAF2" stroke="#288ECD" d="M192.286,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S192.286,101.711,192.286,102.998z"/>
				<path id="path7315" fill="none" stroke="#288ECD" d="M189.953,105.331v16.334"/>
			</g>
			<g id="g7317">
				<path id="path7319" fill="#C1DAF2" stroke="#288ECD" d="M186.937,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333C185.891,100.665,186.937,101.711,186.937,102.998z"/>
				<path id="path7321" fill="none" stroke="#288ECD" d="M184.604,105.331v16.334"/>
			</g>
			<g id="g7323">
				<path id="path7325" fill="#C1DAF2" stroke="#288ECD" d="M213.689,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S213.689,101.711,213.689,102.998z"/>
				<path id="path7327" fill="none" stroke="#288ECD" d="M211.357,105.331v16.334"/>
			</g>
			<g id="g7329">
				<path id="path7331" fill="#C1DAF2" stroke="#288ECD" d="M208.338,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S208.338,101.711,208.338,102.998z"/>
				<path id="path7333" fill="none" stroke="#288ECD" d="M206.005,105.331v16.334"/>
			</g>
			<g id="g7335">
				<path id="path7337" fill="#C1DAF2" stroke="#288ECD" d="M202.987,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S202.987,101.711,202.987,102.998z"/>
				<path id="path7339" fill="none" stroke="#288ECD" d="M200.654,105.331v16.334"/>
			</g>
		</g>
		<g id="g7341">
			<g id="g7343">
				<path id="path7345" fill="#C1DAF2" stroke="#288ECD" d="M162.965,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S162.965,127.187,162.965,125.898z"/>
				<path id="path7347" fill="none" stroke="#288ECD" d="M160.632,123.566v-16.334"/>
			</g>
			<g id="g7349">
				<path id="path7351" fill="#C1DAF2" stroke="#288ECD" d="M157.615,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C156.569,128.232,157.615,127.187,157.615,125.898z"/>
				<path id="path7353" fill="none" stroke="#288ECD" d="M155.282,123.566v-16.334"/>
			</g>
			<g id="g7355">
				<path id="path7357" fill="#C1DAF2" stroke="#288ECD" d="M152.264,125.898c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C151.219,128.232,152.264,127.187,152.264,125.898z"/>
				<path id="path7359" fill="none" stroke="#288ECD" d="M149.931,123.566v-16.334"/>
			</g>
			<g id="g7361">
				<path id="path7363" fill="#C1DAF2" stroke="#288ECD" d="M179.017,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S179.017,127.187,179.017,125.898z"/>
				<path id="path7365" fill="none" stroke="#288ECD" d="M176.684,123.566v-16.334"/>
			</g>
			<g id="g7367">
				<path id="path7369" fill="#C1DAF2" stroke="#288ECD" d="M173.667,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C172.621,128.232,173.667,127.187,173.667,125.898z"/>
				<path id="path7371" fill="none" stroke="#288ECD" d="M171.334,123.566v-16.334"/>
			</g>
			<g id="g7373">
				<path id="path7375" fill="#C1DAF2" stroke="#288ECD" d="M168.316,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S168.316,127.187,168.316,125.898z"/>
				<path id="path7377" fill="none" stroke="#288ECD" d="M165.983,123.566v-16.334"/>
			</g>
			<g id="g7379">
				<path id="path7381" fill="#C1DAF2" stroke="#288ECD" d="M165.64,102.998c0,1.288-1.046,2.333-2.333,2.333
					c-1.288,0-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333C164.595,100.665,165.64,101.711,165.64,102.998z"/>
				<path id="path7383" fill="none" stroke="#288ECD" d="M163.307,105.331v16.334"/>
			</g>
			<g id="g7385">
				<path id="path7387" fill="#C1DAF2" stroke="#288ECD" d="M160.291,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333C159.245,100.665,160.291,101.711,160.291,102.998z"/>
				<path id="path7389" fill="none" stroke="#288ECD" d="M157.958,105.331v16.334"/>
			</g>
			<g id="g7391">
				<path id="path7393" fill="#C1DAF2" stroke="#288ECD" d="M154.94,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S154.94,101.711,154.94,102.998z"/>
				<path id="path7395" fill="none" stroke="#288ECD" d="M152.607,105.331v16.334"/>
			</g>
			<g id="g7397">
				<path id="path7399" fill="#C1DAF2" stroke="#288ECD" d="M181.692,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S181.692,101.711,181.692,102.998z"/>
				<path id="path7401" fill="none" stroke="#288ECD" d="M179.359,105.331v16.334"/>
			</g>
			<g id="g7403">
				<path id="path7405" fill="#C1DAF2" stroke="#288ECD" d="M176.341,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S176.341,101.711,176.341,102.998z"/>
				<path id="path7407" fill="none" stroke="#288ECD" d="M174.008,105.331v16.334"/>
			</g>
			<g id="g7409">
				<path id="path7411" fill="#C1DAF2" stroke="#288ECD" d="M170.991,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S170.991,101.711,170.991,102.998z"/>
				<path id="path7413" fill="none" stroke="#288ECD" d="M168.658,105.331v16.334"/>
			</g>
		</g>
		<g id="g7415">
			<g id="g7417">
				<path id="path7419" fill="#C1DAF2" stroke="#288ECD" d="M130.968,125.898c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C129.923,128.232,130.968,127.187,130.968,125.898z"/>
				<path id="path7421" fill="none" stroke="#288ECD" d="M128.635,123.566v-16.334"/>
			</g>
			<g id="g7423">
				<path id="path7425" fill="#C1DAF2" stroke="#288ECD" d="M125.618,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S125.618,127.187,125.618,125.898z"/>
				<path id="path7427" fill="none" stroke="#288ECD" d="M123.285,123.566v-16.334"/>
			</g>
			<g id="g7429">
				<path id="path7431" fill="#C1DAF2" stroke="#288ECD" d="M120.269,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C119.223,128.232,120.269,127.187,120.269,125.898z"/>
				<path id="path7433" fill="none" stroke="#288ECD" d="M117.936,123.566v-16.334"/>
			</g>
			<g id="g7435">
				<path id="path7437" fill="#C1DAF2" stroke="#288ECD" d="M147.021,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C145.975,128.232,147.021,127.187,147.021,125.898z"/>
				<path id="path7439" fill="none" stroke="#288ECD" d="M144.688,123.566v-16.334"/>
			</g>
			<g id="g7441">
				<path id="path7443" fill="#C1DAF2" stroke="#288ECD" d="M141.67,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S141.67,127.187,141.67,125.898z"/>
				<path id="path7445" fill="none" stroke="#288ECD" d="M139.337,123.566v-16.334"/>
			</g>
			<g id="g7447">
				<path id="path7449" fill="#C1DAF2" stroke="#288ECD" d="M136.319,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S136.319,127.187,136.319,125.898z"/>
				<path id="path7451" fill="none" stroke="#288ECD" d="M133.986,123.566v-16.334"/>
			</g>
			<g id="g7453">
				<path id="path7455" fill="#C1DAF2" stroke="#288ECD" d="M133.645,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333C132.599,100.665,133.645,101.711,133.645,102.998z"/>
				<path id="path7457" fill="none" stroke="#288ECD" d="M131.312,105.331v16.334"/>
			</g>
			<g id="g7459">
				<path id="path7461" fill="#C1DAF2" stroke="#288ECD" d="M128.294,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S128.294,101.711,128.294,102.998z"/>
				<path id="path7463" fill="none" stroke="#288ECD" d="M125.961,105.331v16.334"/>
			</g>
			<g id="g7465">
				<path id="path7467" fill="#C1DAF2" stroke="#288ECD" d="M122.943,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S122.943,101.711,122.943,102.998z"/>
				<path id="path7469" fill="none" stroke="#288ECD" d="M120.61,105.331v16.334"/>
			</g>
			<g id="g7471">
				<path id="path7473" fill="#C1DAF2" stroke="#288ECD" d="M149.695,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S149.695,101.711,149.695,102.998z"/>
				<path id="path7475" fill="none" stroke="#288ECD" d="M147.362,105.331v16.334"/>
			</g>
			<g id="g7477">
				<path id="path7479" fill="#C1DAF2" stroke="#288ECD" d="M144.345,102.998c0,1.288-1.045,2.333-2.333,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C143.3,100.665,144.345,101.711,144.345,102.998z"/>
				<path id="path7481" fill="none" stroke="#288ECD" d="M142.012,105.331v16.334"/>
			</g>
			<g id="g7483">
				<path id="path7485" fill="#C1DAF2" stroke="#288ECD" d="M138.994,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S138.994,101.711,138.994,102.998z"/>
				<path id="path7487" fill="none" stroke="#288ECD" d="M136.661,105.331v16.334"/>
			</g>
		</g>
	</g>
	<g id="g59398_1_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_1_">
			<g id="g7047_1_">
				<path id="path7049_1_" fill="#C1DAF2" stroke="#288ECD" d="M483.637,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C482.592,128.232,483.637,127.187,483.637,125.898z"/>
				<path id="path7051_1_" fill="none" stroke="#288ECD" d="M481.305,123.566v-16.334"/>
			</g>
			<g id="g7053_1_">
				<path id="path7055_1_" fill="#C1DAF2" stroke="#288ECD" d="M478.287,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C477.242,128.232,478.287,127.187,478.287,125.898z"/>
				<path id="path7057_1_" fill="none" stroke="#288ECD" d="M475.955,123.566v-16.334"/>
			</g>
			<g id="g7059_1_">
				<path id="path7061_1_" fill="#C1DAF2" stroke="#288ECD" d="M472.937,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.286,0-2.332,1.045-2.332,2.332c0,1.289,1.046,2.334,2.332,2.334C471.892,128.232,472.937,127.187,472.937,125.898z"/>
				<path id="path7063_1_" fill="none" stroke="#288ECD" d="M470.603,123.566v-16.334"/>
			</g>
			<g id="g7065_1_">
				<path id="path7067_1_" fill="#C1DAF2" stroke="#288ECD" d="M499.689,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.286,0-2.332,1.045-2.332,2.332c0,1.289,1.046,2.334,2.332,2.334C498.644,128.232,499.689,127.187,499.689,125.898z"/>
				<path id="path7069_1_" fill="none" stroke="#288ECD" d="M497.355,123.566v-16.334"/>
			</g>
			<g id="g7071_1_">
				<path id="path7073_1_" fill="#C1DAF2" stroke="#288ECD" d="M494.338,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C493.293,128.232,494.338,127.187,494.338,125.898z"/>
				<path id="path7075_1_" fill="none" stroke="#288ECD" d="M492.006,123.566v-16.334"/>
			</g>
			<g id="g7077_1_">
				<path id="path7079_1_" fill="#C1DAF2" stroke="#288ECD" d="M488.988,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C487.943,128.232,488.988,127.187,488.988,125.898z"/>
				<path id="path7081_1_" fill="none" stroke="#288ECD" d="M486.654,123.566v-16.334"/>
			</g>
			<g id="g7083_1_">
				<path id="path7085_1_" fill="#C1DAF2" stroke="#288ECD" d="M486.312,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.288,0-2.334-1.045-2.334-2.333s1.046-2.333,2.334-2.333C485.267,100.665,486.312,101.711,486.312,102.998z"/>
				<path id="path7087_1_" fill="none" stroke="#288ECD" d="M483.98,105.331v16.334"/>
			</g>
			<g id="g7089_1_">
				<path id="path7091_1_" fill="#C1DAF2" stroke="#288ECD" d="M480.963,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C479.918,100.665,480.963,101.711,480.963,102.998z"/>
				<path id="path7093_1_" fill="none" stroke="#288ECD" d="M478.629,105.331v16.334"/>
			</g>
			<g id="g7095_1_">
				<path id="path7097_1_" fill="#C1DAF2" stroke="#288ECD" d="M475.611,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C474.566,100.665,475.611,101.711,475.611,102.998z"/>
				<path id="path7099_1_" fill="none" stroke="#288ECD" d="M473.279,105.331v16.334"/>
			</g>
			<g id="g7101_1_">
				<path id="path7103_1_" fill="#C1DAF2" stroke="#288ECD" d="M502.363,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C501.318,100.665,502.363,101.711,502.363,102.998z"/>
				<path id="path7105_1_" fill="none" stroke="#288ECD" d="M500.031,105.331v16.334"/>
			</g>
			<g id="g7107_1_">
				<path id="path7109_1_" fill="#C1DAF2" stroke="#288ECD" d="M497.013,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C495.969,100.665,497.013,101.711,497.013,102.998z"/>
				<path id="path7111_1_" fill="none" stroke="#288ECD" d="M494.681,105.331v16.334"/>
			</g>
			<g id="g7113_1_">
				<path id="path7115_1_" fill="#C1DAF2" stroke="#288ECD" d="M491.664,102.998c0,1.288-1.047,2.333-2.334,2.333
					s-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333S491.664,101.711,491.664,102.998z"/>
				<path id="path7117_1_" fill="none" stroke="#288ECD" d="M489.33,105.331v16.334"/>
			</g>
		</g>
		<g id="g7119_1_">
			<g id="g7121_1_">
				<path id="path7123_1_" fill="#C1DAF2" stroke="#288ECD" d="M451.64,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C450.596,128.232,451.64,127.187,451.64,125.898z"/>
				<path id="path7125_1_" fill="none" stroke="#288ECD" d="M449.308,123.566v-16.334"/>
			</g>
			<g id="g7127_1_">
				<path id="path7129_1_" fill="#C1DAF2" stroke="#288ECD" d="M446.291,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C445.246,128.232,446.291,127.187,446.291,125.898z"/>
				<path id="path7131_1_" fill="none" stroke="#288ECD" d="M443.959,123.566v-16.334"/>
			</g>
			<g id="g7133_1_">
				<path id="path7135_1_" fill="#C1DAF2" stroke="#288ECD" d="M440.939,125.898c0-1.287-1.045-2.332-2.331-2.332
					c-1.289,0-2.335,1.045-2.335,2.332c0,1.289,1.046,2.334,2.335,2.334C439.894,128.232,440.939,127.187,440.939,125.898z"/>
				<path id="path7137_1_" fill="none" stroke="#288ECD" d="M438.607,123.566v-16.334"/>
			</g>
			<g id="g7139_1_">
				<path id="path7141_1_" fill="#C1DAF2" stroke="#288ECD" d="M467.691,125.898c0-1.287-1.046-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C466.646,128.232,467.691,127.187,467.691,125.898z"/>
				<path id="path7143_1_" fill="none" stroke="#288ECD" d="M465.359,123.566v-16.334"/>
			</g>
			<g id="g7145_1_">
				<path id="path7147_1_" fill="#C1DAF2" stroke="#288ECD" d="M462.342,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C461.297,128.232,462.342,127.187,462.342,125.898z"/>
				<path id="path7149_1_" fill="none" stroke="#288ECD" d="M460.01,123.566v-16.334"/>
			</g>
			<g id="g7151_1_">
				<path id="path7153_1_" fill="#C1DAF2" stroke="#288ECD" d="M456.99,125.898c0-1.287-1.045-2.332-2.332-2.332
					s-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334S456.99,127.187,456.99,125.898z"/>
				<path id="path7155_1_" fill="none" stroke="#288ECD" d="M454.658,123.566v-16.334"/>
			</g>
			<g id="g7157_1_">
				<path id="path7159_1_" fill="#C1DAF2" stroke="#288ECD" d="M454.316,102.998c0,1.288-1.046,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C453.271,100.665,454.316,101.711,454.316,102.998z"/>
				<path id="path7161_1_" fill="none" stroke="#288ECD" d="M451.982,105.331v16.334"/>
			</g>
			<g id="g7163_1_">
				<path id="path7165_1_" fill="#C1DAF2" stroke="#288ECD" d="M448.965,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C447.92,100.665,448.965,101.711,448.965,102.998z"/>
				<path id="path7167_1_" fill="none" stroke="#288ECD" d="M446.633,105.331v16.334"/>
			</g>
			<g id="g7169_1_">
				<path id="path7171_1_" fill="#C1DAF2" stroke="#288ECD" d="M443.615,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C442.57,100.665,443.615,101.711,443.615,102.998z"/>
				<path id="path7173_1_" fill="none" stroke="#288ECD" d="M441.281,105.331v16.334"/>
			</g>
			<g id="g7175_1_">
				<path id="path7177_1_" fill="#C1DAF2" stroke="#288ECD" d="M470.367,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C469.322,100.665,470.367,101.711,470.367,102.998z"/>
				<path id="path7179_1_" fill="none" stroke="#288ECD" d="M468.035,105.331v16.334"/>
			</g>
			<g id="g7181_1_">
				<path id="path7183_1_" fill="#C1DAF2" stroke="#288ECD" d="M465.017,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C463.972,100.665,465.017,101.711,465.017,102.998z"/>
				<path id="path7185_1_" fill="none" stroke="#288ECD" d="M462.683,105.331v16.334"/>
			</g>
			<g id="g7187_1_">
				<path id="path7189_1_" fill="#C1DAF2" stroke="#288ECD" d="M459.668,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C458.623,100.665,459.668,101.711,459.668,102.998z"/>
				<path id="path7191_1_" fill="none" stroke="#288ECD" d="M457.334,105.331v16.334"/>
			</g>
		</g>
		<g id="g7193_1_">
			<g id="g7195_1_">
				<path id="path7197_1_" fill="#C1DAF2" stroke="#288ECD" d="M419.644,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C418.599,128.232,419.644,127.187,419.644,125.898z"/>
				<path id="path7199_1_" fill="none" stroke="#288ECD" d="M417.31,123.566v-16.334"/>
			</g>
			<g id="g7201_1_">
				<path id="path7203_1_" fill="#C1DAF2" stroke="#288ECD" d="M414.295,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C413.25,128.232,414.295,127.187,414.295,125.898z"/>
				<path id="path7205_1_" fill="none" stroke="#288ECD" d="M411.961,123.566v-16.334"/>
			</g>
			<g id="g7207_1_">
				<path id="path7209_1_" fill="#C1DAF2" stroke="#288ECD" d="M408.943,125.898c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C407.897,128.232,408.943,127.187,408.943,125.898z"/>
				<path id="path7211_1_" fill="none" stroke="#288ECD" d="M406.61,123.566v-16.334"/>
			</g>
			<g id="g7213_1_">
				<path id="path7215_1_" fill="#C1DAF2" stroke="#288ECD" d="M435.695,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C434.65,128.232,435.695,127.187,435.695,125.898z"/>
				<path id="path7217_1_" fill="none" stroke="#288ECD" d="M433.363,123.566v-16.334"/>
			</g>
			<g id="g7219_1_">
				<path id="path7221_1_" fill="#C1DAF2" stroke="#288ECD" d="M430.346,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C429.301,128.232,430.346,127.187,430.346,125.898z"/>
				<path id="path7223_1_" fill="none" stroke="#288ECD" d="M428.012,123.566v-16.334"/>
			</g>
			<g id="g7225_1_">
				<path id="path7227_1_" fill="#C1DAF2" stroke="#288ECD" d="M424.996,125.898c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S424.996,127.187,424.996,125.898z"/>
				<path id="path7229_1_" fill="none" stroke="#288ECD" d="M422.662,123.566v-16.334"/>
			</g>
			<g id="g7231_1_">
				<path id="path7233_1_" fill="#C1DAF2" stroke="#288ECD" d="M422.318,102.998c0,1.288-1.046,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C421.273,100.665,422.318,101.711,422.318,102.998z"/>
				<path id="path7235_1_" fill="none" stroke="#288ECD" d="M419.986,105.331v16.334"/>
			</g>
			<g id="g7237_1_">
				<path id="path7239_1_" fill="#C1DAF2" stroke="#288ECD" d="M416.969,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C415.924,100.665,416.969,101.711,416.969,102.998z"/>
				<path id="path7241_1_" fill="none" stroke="#288ECD" d="M414.637,105.331v16.334"/>
			</g>
			<g id="g7243_1_">
				<path id="path7245_1_" fill="#C1DAF2" stroke="#288ECD" d="M411.619,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S411.619,101.711,411.619,102.998z"/>
				<path id="path7247_1_" fill="none" stroke="#288ECD" d="M409.286,105.331v16.334"/>
			</g>
			<g id="g7249_1_">
				<path id="path7251_1_" fill="#C1DAF2" stroke="#288ECD" d="M438.371,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C437.326,100.665,438.371,101.711,438.371,102.998z"/>
				<path id="path7253_1_" fill="none" stroke="#288ECD" d="M436.039,105.331v16.334"/>
			</g>
			<g id="g7255_1_">
				<path id="path7257_1_" fill="#C1DAF2" stroke="#288ECD" d="M433.021,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.286,0-2.332-1.045-2.332-2.333s1.046-2.333,2.332-2.333C431.976,100.665,433.021,101.711,433.021,102.998z"/>
				<path id="path7259_1_" fill="none" stroke="#288ECD" d="M430.687,105.331v16.334"/>
			</g>
			<g id="g7261_1_">
				<path id="path7263_1_" fill="#C1DAF2" stroke="#288ECD" d="M427.67,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C426.625,100.665,427.67,101.711,427.67,102.998z"/>
				<path id="path7265_1_" fill="none" stroke="#288ECD" d="M425.338,105.331v16.334"/>
			</g>
		</g>
		<g id="g7267_1_">
			<g id="g7269_1_">
				<path id="path7271_1_" fill="#C1DAF2" stroke="#288ECD" d="M387.648,125.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C386.602,128.232,387.648,127.187,387.648,125.898z"/>
				<path id="path7273_1_" fill="none" stroke="#288ECD" d="M385.314,123.566v-16.334"/>
			</g>
			<g id="g7275_1_">
				<path id="path7277_1_" fill="#C1DAF2" stroke="#288ECD" d="M382.298,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C381.253,128.232,382.298,127.187,382.298,125.898z"/>
				<path id="path7279_1_" fill="none" stroke="#288ECD" d="M379.964,123.566v-16.334"/>
			</g>
			<g id="g7281_1_">
				<path id="path7283_1_" fill="#C1DAF2" stroke="#288ECD" d="M376.947,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S376.947,127.187,376.947,125.898z"/>
				<path id="path7285_1_" fill="none" stroke="#288ECD" d="M374.614,123.566v-16.334"/>
			</g>
			<g id="g7287_1_">
				<path id="path7289_1_" fill="#C1DAF2" stroke="#288ECD" d="M403.699,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S403.699,127.187,403.699,125.898z"/>
				<path id="path7291_1_" fill="none" stroke="#288ECD" d="M401.366,123.566v-16.334"/>
			</g>
			<g id="g7293_1_">
				<path id="path7295_1_" fill="#C1DAF2" stroke="#288ECD" d="M398.348,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.288,0-2.334,1.045-2.334,2.332c0,1.289,1.046,2.334,2.334,2.334C397.304,128.232,398.348,127.187,398.348,125.898z"/>
				<path id="path7297_1_" fill="none" stroke="#288ECD" d="M396.016,123.566v-16.334"/>
			</g>
			<g id="g7299_1_">
				<path id="path7301_1_" fill="#C1DAF2" stroke="#288ECD" d="M392.999,125.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C391.953,128.232,392.999,127.187,392.999,125.898z"/>
				<path id="path7303_1_" fill="none" stroke="#288ECD" d="M390.665,123.566v-16.334"/>
			</g>
			<g id="g7305_1_">
				<path id="path7307_1_" fill="#C1DAF2" stroke="#288ECD" d="M390.323,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S390.323,101.711,390.323,102.998z"/>
				<path id="path7309_1_" fill="none" stroke="#288ECD" d="M387.99,105.331v16.334"/>
			</g>
			<g id="g7311_1_">
				<path id="path7313_1_" fill="#C1DAF2" stroke="#288ECD" d="M384.971,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.288,0-2.334-1.045-2.334-2.333s1.046-2.333,2.334-2.333C383.927,100.665,384.971,101.711,384.971,102.998z"/>
				<path id="path7315_1_" fill="none" stroke="#288ECD" d="M382.639,105.331v16.334"/>
			</g>
			<g id="g7317_1_">
				<path id="path7319_1_" fill="#C1DAF2" stroke="#288ECD" d="M379.622,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C378.577,100.665,379.622,101.711,379.622,102.998z"/>
				<path id="path7321_1_" fill="none" stroke="#288ECD" d="M377.29,105.331v16.334"/>
			</g>
			<g id="g7323_1_">
				<path id="path7325_1_" fill="#C1DAF2" stroke="#288ECD" d="M406.375,102.998c0,1.288-1.045,2.333-2.333,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C405.33,100.665,406.375,101.711,406.375,102.998z"/>
				<path id="path7327_1_" fill="none" stroke="#288ECD" d="M404.042,105.331v16.334"/>
			</g>
			<g id="g7329_1_">
				<path id="path7331_1_" fill="#C1DAF2" stroke="#288ECD" d="M401.023,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.288,0-2.334-1.045-2.334-2.333s1.046-2.333,2.334-2.333C399.978,100.665,401.023,101.711,401.023,102.998z"/>
				<path id="path7333_1_" fill="none" stroke="#288ECD" d="M398.691,105.331v16.334"/>
			</g>
			<g id="g7335_1_">
				<path id="path7337_1_" fill="#C1DAF2" stroke="#288ECD" d="M395.673,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C394.628,100.665,395.673,101.711,395.673,102.998z"/>
				<path id="path7339_1_" fill="none" stroke="#288ECD" d="M393.341,105.331v16.334"/>
			</g>
		</g>
		<g id="g7341_1_">
			<g id="g7343_1_">
				<path id="path7345_1_" fill="#C1DAF2" stroke="#288ECD" d="M355.651,125.898c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C354.605,128.232,355.651,127.187,355.651,125.898z"/>
				<path id="path7347_1_" fill="none" stroke="#288ECD" d="M353.318,123.566v-16.334"/>
			</g>
			<g id="g7349_1_">
				<path id="path7351_1_" fill="#C1DAF2" stroke="#288ECD" d="M350.302,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S350.302,127.187,350.302,125.898z"/>
				<path id="path7353_1_" fill="none" stroke="#288ECD" d="M347.968,123.566v-16.334"/>
			</g>
			<g id="g7355_1_">
				<path id="path7357_1_" fill="#C1DAF2" stroke="#288ECD" d="M344.95,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S344.95,127.187,344.95,125.898z"/>
				<path id="path7359_1_" fill="none" stroke="#288ECD" d="M342.617,123.566v-16.334"/>
			</g>
			<g id="g7361_1_">
				<path id="path7363_1_" fill="#C1DAF2" stroke="#288ECD" d="M371.703,125.898c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C370.658,128.232,371.703,127.187,371.703,125.898z"/>
				<path id="path7365_1_" fill="none" stroke="#288ECD" d="M369.37,123.566v-16.334"/>
			</g>
			<g id="g7367_1_">
				<path id="path7369_1_" fill="#C1DAF2" stroke="#288ECD" d="M366.352,125.898c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C365.307,128.232,366.352,127.187,366.352,125.898z"/>
				<path id="path7371_1_" fill="none" stroke="#288ECD" d="M364.019,123.566v-16.334"/>
			</g>
			<g id="g7373_1_">
				<path id="path7375_1_" fill="#C1DAF2" stroke="#288ECD" d="M361.003,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C359.958,128.232,361.003,127.187,361.003,125.898z"/>
				<path id="path7377_1_" fill="none" stroke="#288ECD" d="M358.669,123.566v-16.334"/>
			</g>
			<g id="g7379_1_">
				<path id="path7381_1_" fill="#C1DAF2" stroke="#288ECD" d="M358.326,102.998c0,1.288-1.045,2.333-2.333,2.333
					c-1.287,0-2.333-1.045-2.333-2.333s1.046-2.333,2.333-2.333C357.281,100.665,358.326,101.711,358.326,102.998z"/>
				<path id="path7383_1_" fill="none" stroke="#288ECD" d="M355.993,105.331v16.334"/>
			</g>
			<g id="g7385_1_">
				<path id="path7387_1_" fill="#C1DAF2" stroke="#288ECD" d="M352.976,102.998c0,1.288-1.046,2.333-2.333,2.333
					c-1.288,0-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333C351.93,100.665,352.976,101.711,352.976,102.998z"/>
				<path id="path7389_1_" fill="none" stroke="#288ECD" d="M350.643,105.331v16.334"/>
			</g>
			<g id="g7391_1_">
				<path id="path7393_1_" fill="#C1DAF2" stroke="#288ECD" d="M347.626,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C346.581,100.665,347.626,101.711,347.626,102.998z"/>
				<path id="path7395_1_" fill="none" stroke="#288ECD" d="M345.294,105.331v16.334"/>
			</g>
			<g id="g7397_1_">
				<path id="path7399_1_" fill="#C1DAF2" stroke="#288ECD" d="M374.378,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C373.333,100.665,374.378,101.711,374.378,102.998z"/>
				<path id="path7401_1_" fill="none" stroke="#288ECD" d="M372.046,105.331v16.334"/>
			</g>
			<g id="g7403_1_">
				<path id="path7405_1_" fill="#C1DAF2" stroke="#288ECD" d="M369.027,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S369.027,101.711,369.027,102.998z"/>
				<path id="path7407_1_" fill="none" stroke="#288ECD" d="M366.694,105.331v16.334"/>
			</g>
			<g id="g7409_1_">
				<path id="path7411_1_" fill="#C1DAF2" stroke="#288ECD" d="M363.677,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C362.632,100.665,363.677,101.711,363.677,102.998z"/>
				<path id="path7413_1_" fill="none" stroke="#288ECD" d="M361.345,105.331v16.334"/>
			</g>
		</g>
		<g id="g7415_1_">
			<g id="g7417_1_">
				<path id="path7419_1_" fill="#C1DAF2" stroke="#288ECD" d="M323.654,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S323.654,127.187,323.654,125.898z"/>
				<path id="path7421_1_" fill="none" stroke="#288ECD" d="M321.321,123.566v-16.334"/>
			</g>
			<g id="g7423_1_">
				<path id="path7425_1_" fill="#C1DAF2" stroke="#288ECD" d="M318.304,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S318.304,127.187,318.304,125.898z"/>
				<path id="path7427_1_" fill="none" stroke="#288ECD" d="M315.971,123.566v-16.334"/>
			</g>
			<g id="g7429_1_">
				<path id="path7431_1_" fill="#C1DAF2" stroke="#288ECD" d="M312.955,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C311.909,128.232,312.955,127.187,312.955,125.898z"/>
				<path id="path7433_1_" fill="none" stroke="#288ECD" d="M310.622,123.566v-16.334"/>
			</g>
			<g id="g7435_1_">
				<path id="path7437_1_" fill="#C1DAF2" stroke="#288ECD" d="M339.706,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C338.661,128.232,339.706,127.187,339.706,125.898z"/>
				<path id="path7439_1_" fill="none" stroke="#288ECD" d="M337.374,123.566v-16.334"/>
			</g>
			<g id="g7441_1_">
				<path id="path7443_1_" fill="#C1DAF2" stroke="#288ECD" d="M334.357,125.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C333.311,128.232,334.357,127.187,334.357,125.898z"/>
				<path id="path7445_1_" fill="none" stroke="#288ECD" d="M332.023,123.566v-16.334"/>
			</g>
			<g id="g7447_1_">
				<path id="path7449_1_" fill="#C1DAF2" stroke="#288ECD" d="M329.005,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S329.005,127.187,329.005,125.898z"/>
				<path id="path7451_1_" fill="none" stroke="#288ECD" d="M326.672,123.566v-16.334"/>
			</g>
			<g id="g7453_1_">
				<path id="path7455_1_" fill="#C1DAF2" stroke="#288ECD" d="M326.331,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333C325.285,100.665,326.331,101.711,326.331,102.998z"/>
				<path id="path7457_1_" fill="none" stroke="#288ECD" d="M323.998,105.331v16.334"/>
			</g>
			<g id="g7459_1_">
				<path id="path7461_1_" fill="#C1DAF2" stroke="#288ECD" d="M320.979,102.998c0,1.288-1.045,2.333-2.333,2.333
					c-1.287,0-2.333-1.045-2.333-2.333s1.046-2.333,2.333-2.333C319.934,100.665,320.979,101.711,320.979,102.998z"/>
				<path id="path7463_1_" fill="none" stroke="#288ECD" d="M318.646,105.331v16.334"/>
			</g>
			<g id="g7465_1_">
				<path id="path7467_1_" fill="#C1DAF2" stroke="#288ECD" d="M315.629,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S315.629,101.711,315.629,102.998z"/>
				<path id="path7469_1_" fill="none" stroke="#288ECD" d="M313.296,105.331v16.334"/>
			</g>
			<g id="g7471_1_">
				<path id="path7473_1_" fill="#C1DAF2" stroke="#288ECD" d="M342.382,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C341.337,100.665,342.382,101.711,342.382,102.998z"/>
				<path id="path7475_1_" fill="none" stroke="#288ECD" d="M340.048,105.331v16.334"/>
			</g>
			<g id="g7477_1_">
				<path id="path7479_1_" fill="#C1DAF2" stroke="#288ECD" d="M337.031,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S337.031,101.711,337.031,102.998z"/>
				<path id="path7481_1_" fill="none" stroke="#288ECD" d="M334.698,105.331v16.334"/>
			</g>
			<g id="g7483_1_">
				<path id="path7485_1_" fill="#C1DAF2" stroke="#288ECD" d="M331.68,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S331.68,101.711,331.68,102.998z"/>
				<path id="path7487_1_" fill="none" stroke="#288ECD" d="M329.346,105.331v16.334"/>
			</g>
		</g>
	</g>
	<g id="g59398_2_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_2_">
			<g id="g7047_2_">
				<path id="path7049_2_" fill="#C1DAF2" stroke="#288ECD" d="M675.38,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C674.335,128.232,675.38,127.187,675.38,125.898z"/>
				<path id="path7051_2_" fill="none" stroke="#288ECD" d="M673.048,123.566v-16.334"/>
			</g>
			<g id="g7053_2_">
				<path id="path7055_2_" fill="#C1DAF2" stroke="#288ECD" d="M670.03,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C668.985,128.232,670.03,127.187,670.03,125.898z"/>
				<path id="path7057_2_" fill="none" stroke="#288ECD" d="M667.698,123.566v-16.334"/>
			</g>
			<g id="g7059_2_">
				<path id="path7061_2_" fill="#C1DAF2" stroke="#288ECD" d="M664.68,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C663.636,128.232,664.68,127.187,664.68,125.898z"/>
				<path id="path7063_2_" fill="none" stroke="#288ECD" d="M662.346,123.566v-16.334"/>
			</g>
			<g id="g7065_2_">
				<path id="path7067_2_" fill="#C1DAF2" stroke="#288ECD" d="M691.432,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C690.388,128.232,691.432,127.187,691.432,125.898z"/>
				<path id="path7069_2_" fill="none" stroke="#288ECD" d="M689.098,123.566v-16.334"/>
			</g>
			<g id="g7071_2_">
				<path id="path7073_2_" fill="#C1DAF2" stroke="#288ECD" d="M686.081,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C685.036,128.232,686.081,127.187,686.081,125.898z"/>
				<path id="path7075_2_" fill="none" stroke="#288ECD" d="M683.749,123.566v-16.334"/>
			</g>
			<g id="g7077_2_">
				<path id="path7079_2_" fill="#C1DAF2" stroke="#288ECD" d="M680.732,125.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C679.686,128.232,680.732,127.187,680.732,125.898z"/>
				<path id="path7081_2_" fill="none" stroke="#288ECD" d="M678.398,123.566v-16.334"/>
			</g>
			<g id="g7083_2_">
				<path id="path7085_2_" fill="#C1DAF2" stroke="#288ECD" d="M678.055,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C677.011,100.665,678.055,101.711,678.055,102.998z"/>
				<path id="path7087_2_" fill="none" stroke="#288ECD" d="M675.723,105.331v16.334"/>
			</g>
			<g id="g7089_2_">
				<path id="path7091_2_" fill="#C1DAF2" stroke="#288ECD" d="M672.706,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C671.661,100.665,672.706,101.711,672.706,102.998z"/>
				<path id="path7093_2_" fill="none" stroke="#288ECD" d="M670.372,105.331v16.334"/>
			</g>
			<g id="g7095_2_">
				<path id="path7097_2_" fill="#C1DAF2" stroke="#288ECD" d="M667.354,102.998c0,1.288-1.045,2.333-2.331,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C666.309,100.665,667.354,101.711,667.354,102.998z"/>
				<path id="path7099_2_" fill="none" stroke="#288ECD" d="M665.023,105.331v16.334"/>
			</g>
			<g id="g7101_2_">
				<path id="path7103_2_" fill="#C1DAF2" stroke="#288ECD" d="M694.107,102.998c0,1.288-1.046,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C693.061,100.665,694.107,101.711,694.107,102.998z"/>
				<path id="path7105_2_" fill="none" stroke="#288ECD" d="M691.773,105.331v16.334"/>
			</g>
			<g id="g7107_2_">
				<path id="path7109_2_" fill="#C1DAF2" stroke="#288ECD" d="M688.757,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C687.712,100.665,688.757,101.711,688.757,102.998z"/>
				<path id="path7111_2_" fill="none" stroke="#288ECD" d="M686.425,105.331v16.334"/>
			</g>
			<g id="g7113_2_">
				<path id="path7115_2_" fill="#C1DAF2" stroke="#288ECD" d="M683.407,102.998c0,1.288-1.047,2.333-2.334,2.333
					s-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333S683.407,101.711,683.407,102.998z"/>
				<path id="path7117_2_" fill="none" stroke="#288ECD" d="M681.073,105.331v16.334"/>
			</g>
		</g>
		<g id="g7119_2_">
			<g id="g7121_2_">
				<path id="path7123_2_" fill="#C1DAF2" stroke="#288ECD" d="M643.384,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C642.339,128.232,643.384,127.187,643.384,125.898z"/>
				<path id="path7125_2_" fill="none" stroke="#288ECD" d="M641.052,123.566v-16.334"/>
			</g>
			<g id="g7127_2_">
				<path id="path7129_2_" fill="#C1DAF2" stroke="#288ECD" d="M638.034,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C636.989,128.232,638.034,127.187,638.034,125.898z"/>
				<path id="path7131_2_" fill="none" stroke="#288ECD" d="M635.702,123.566v-16.334"/>
			</g>
			<g id="g7133_2_">
				<path id="path7135_2_" fill="#C1DAF2" stroke="#288ECD" d="M632.682,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C631.638,128.232,632.682,127.187,632.682,125.898z"/>
				<path id="path7137_2_" fill="none" stroke="#288ECD" d="M630.35,123.566v-16.334"/>
			</g>
			<g id="g7139_2_">
				<path id="path7141_2_" fill="#C1DAF2" stroke="#288ECD" d="M659.434,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.288,0-2.334,1.045-2.334,2.332c0,1.289,1.046,2.334,2.334,2.334C658.389,128.232,659.434,127.187,659.434,125.898z"/>
				<path id="path7143_2_" fill="none" stroke="#288ECD" d="M657.102,123.566v-16.334"/>
			</g>
			<g id="g7145_2_">
				<path id="path7147_2_" fill="#C1DAF2" stroke="#288ECD" d="M654.085,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C653.04,128.232,654.085,127.187,654.085,125.898z"/>
				<path id="path7149_2_" fill="none" stroke="#288ECD" d="M651.753,123.566v-16.334"/>
			</g>
			<g id="g7151_2_">
				<path id="path7153_2_" fill="#C1DAF2" stroke="#288ECD" d="M648.732,125.898c0-1.287-1.045-2.332-2.331-2.332
					c-1.287,0-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334C647.687,128.232,648.732,127.187,648.732,125.898z"/>
				<path id="path7155_2_" fill="none" stroke="#288ECD" d="M646.401,123.566v-16.334"/>
			</g>
			<g id="g7157_2_">
				<path id="path7159_2_" fill="#C1DAF2" stroke="#288ECD" d="M646.059,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.286,0-2.332-1.045-2.332-2.333s1.046-2.333,2.332-2.333C645.014,100.665,646.059,101.711,646.059,102.998z"/>
				<path id="path7161_2_" fill="none" stroke="#288ECD" d="M643.725,105.331v16.334"/>
			</g>
			<g id="g7163_2_">
				<path id="path7165_2_" fill="#C1DAF2" stroke="#288ECD" d="M640.708,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C639.663,100.665,640.708,101.711,640.708,102.998z"/>
				<path id="path7167_2_" fill="none" stroke="#288ECD" d="M638.376,105.331v16.334"/>
			</g>
			<g id="g7169_2_">
				<path id="path7171_2_" fill="#C1DAF2" stroke="#288ECD" d="M635.357,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.286,0-2.331-1.045-2.331-2.333s1.045-2.333,2.331-2.333C634.314,100.665,635.357,101.711,635.357,102.998z"/>
				<path id="path7173_2_" fill="none" stroke="#288ECD" d="M633.023,105.331v16.334"/>
			</g>
			<g id="g7175_2_">
				<path id="path7177_2_" fill="#C1DAF2" stroke="#288ECD" d="M662.11,102.998c0,1.288-1.046,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C661.064,100.665,662.11,101.711,662.11,102.998z"/>
				<path id="path7179_2_" fill="none" stroke="#288ECD" d="M659.778,105.331v16.334"/>
			</g>
			<g id="g7181_2_">
				<path id="path7183_2_" fill="#C1DAF2" stroke="#288ECD" d="M656.761,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C655.716,100.665,656.761,101.711,656.761,102.998z"/>
				<path id="path7185_2_" fill="none" stroke="#288ECD" d="M654.427,105.331v16.334"/>
			</g>
			<g id="g7187_2_">
				<path id="path7189_2_" fill="#C1DAF2" stroke="#288ECD" d="M651.411,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C650.366,100.665,651.411,101.711,651.411,102.998z"/>
				<path id="path7191_2_" fill="none" stroke="#288ECD" d="M649.077,105.331v16.334"/>
			</g>
		</g>
		<g id="g7193_2_">
			<g id="g7195_2_">
				<path id="path7197_2_" fill="#C1DAF2" stroke="#288ECD" d="M611.388,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C610.343,128.232,611.388,127.187,611.388,125.898z"/>
				<path id="path7199_2_" fill="none" stroke="#288ECD" d="M609.054,123.566v-16.334"/>
			</g>
			<g id="g7201_2_">
				<path id="path7203_2_" fill="#C1DAF2" stroke="#288ECD" d="M606.038,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C604.993,128.232,606.038,127.187,606.038,125.898z"/>
				<path id="path7205_2_" fill="none" stroke="#288ECD" d="M603.704,123.566v-16.334"/>
			</g>
			<g id="g7207_2_">
				<path id="path7209_2_" fill="#C1DAF2" stroke="#288ECD" d="M600.686,125.898c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C599.641,128.232,600.686,127.187,600.686,125.898z"/>
				<path id="path7211_2_" fill="none" stroke="#288ECD" d="M598.353,123.566v-16.334"/>
			</g>
			<g id="g7213_2_">
				<path id="path7215_2_" fill="#C1DAF2" stroke="#288ECD" d="M627.439,125.898c0-1.287-1.046-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C626.393,128.232,627.439,127.187,627.439,125.898z"/>
				<path id="path7217_2_" fill="none" stroke="#288ECD" d="M625.107,123.566v-16.334"/>
			</g>
			<g id="g7219_2_">
				<path id="path7221_2_" fill="#C1DAF2" stroke="#288ECD" d="M622.089,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C621.044,128.232,622.089,127.187,622.089,125.898z"/>
				<path id="path7223_2_" fill="none" stroke="#288ECD" d="M619.755,123.566v-16.334"/>
			</g>
			<g id="g7225_2_">
				<path id="path7227_2_" fill="#C1DAF2" stroke="#288ECD" d="M616.739,125.898c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S616.739,127.187,616.739,125.898z"/>
				<path id="path7229_2_" fill="none" stroke="#288ECD" d="M614.405,123.566v-16.334"/>
			</g>
			<g id="g7231_2_">
				<path id="path7233_2_" fill="#C1DAF2" stroke="#288ECD" d="M614.061,102.998c0,1.288-1.045,2.333-2.331,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C613.016,100.665,614.061,101.711,614.061,102.998z"/>
				<path id="path7235_2_" fill="none" stroke="#288ECD" d="M611.729,105.331v16.334"/>
			</g>
			<g id="g7237_2_">
				<path id="path7239_2_" fill="#C1DAF2" stroke="#288ECD" d="M608.712,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C607.667,100.665,608.712,101.711,608.712,102.998z"/>
				<path id="path7241_2_" fill="none" stroke="#288ECD" d="M606.38,105.331v16.334"/>
			</g>
			<g id="g7243_2_">
				<path id="path7245_2_" fill="#C1DAF2" stroke="#288ECD" d="M603.362,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S603.362,101.711,603.362,102.998z"/>
				<path id="path7247_2_" fill="none" stroke="#288ECD" d="M601.029,105.331v16.334"/>
			</g>
			<g id="g7249_2_">
				<path id="path7251_2_" fill="#C1DAF2" stroke="#288ECD" d="M630.114,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C629.069,100.665,630.114,101.711,630.114,102.998z"/>
				<path id="path7253_2_" fill="none" stroke="#288ECD" d="M627.782,105.331v16.334"/>
			</g>
			<g id="g7255_2_">
				<path id="path7257_2_" fill="#C1DAF2" stroke="#288ECD" d="M624.764,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C623.72,100.665,624.764,101.711,624.764,102.998z"/>
				<path id="path7259_2_" fill="none" stroke="#288ECD" d="M622.43,105.331v16.334"/>
			</g>
			<g id="g7261_2_">
				<path id="path7263_2_" fill="#C1DAF2" stroke="#288ECD" d="M619.413,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C618.368,100.665,619.413,101.711,619.413,102.998z"/>
				<path id="path7265_2_" fill="none" stroke="#288ECD" d="M617.081,105.331v16.334"/>
			</g>
		</g>
		<g id="g7267_2_">
			<g id="g7269_2_">
				<path id="path7271_2_" fill="#C1DAF2" stroke="#288ECD" d="M579.391,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S579.391,127.187,579.391,125.898z"/>
				<path id="path7273_2_" fill="none" stroke="#288ECD" d="M577.058,123.566v-16.334"/>
			</g>
			<g id="g7275_2_">
				<path id="path7277_2_" fill="#C1DAF2" stroke="#288ECD" d="M574.04,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C572.995,128.232,574.04,127.187,574.04,125.898z"/>
				<path id="path7279_2_" fill="none" stroke="#288ECD" d="M571.708,123.566v-16.334"/>
			</g>
			<g id="g7281_2_">
				<path id="path7283_2_" fill="#C1DAF2" stroke="#288ECD" d="M568.689,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.288,0-2.334,1.045-2.334,2.332c0,1.289,1.046,2.334,2.334,2.334C567.644,128.232,568.689,127.187,568.689,125.898z"/>
				<path id="path7285_2_" fill="none" stroke="#288ECD" d="M566.357,123.566v-16.334"/>
			</g>
			<g id="g7287_2_">
				<path id="path7289_2_" fill="#C1DAF2" stroke="#288ECD" d="M595.442,125.898c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C594.396,128.232,595.442,127.187,595.442,125.898z"/>
				<path id="path7291_2_" fill="none" stroke="#288ECD" d="M593.109,123.566v-16.334"/>
			</g>
			<g id="g7293_2_">
				<path id="path7295_2_" fill="#C1DAF2" stroke="#288ECD" d="M590.093,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C589.048,128.232,590.093,127.187,590.093,125.898z"/>
				<path id="path7297_2_" fill="none" stroke="#288ECD" d="M587.759,123.566v-16.334"/>
			</g>
			<g id="g7299_2_">
				<path id="path7301_2_" fill="#C1DAF2" stroke="#288ECD" d="M584.741,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C583.696,128.232,584.741,127.187,584.741,125.898z"/>
				<path id="path7303_2_" fill="none" stroke="#288ECD" d="M582.409,123.566v-16.334"/>
			</g>
			<g id="g7305_2_">
				<path id="path7307_2_" fill="#C1DAF2" stroke="#288ECD" d="M582.066,102.998c0,1.288-1.046,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C581.02,100.665,582.066,101.711,582.066,102.998z"/>
				<path id="path7309_2_" fill="none" stroke="#288ECD" d="M579.732,105.331v16.334"/>
			</g>
			<g id="g7311_2_">
				<path id="path7313_2_" fill="#C1DAF2" stroke="#288ECD" d="M576.716,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C575.671,100.665,576.716,101.711,576.716,102.998z"/>
				<path id="path7315_2_" fill="none" stroke="#288ECD" d="M574.382,105.331v16.334"/>
			</g>
			<g id="g7317_2_">
				<path id="path7319_2_" fill="#C1DAF2" stroke="#288ECD" d="M571.366,102.998c0,1.288-1.046,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C570.32,100.665,571.366,101.711,571.366,102.998z"/>
				<path id="path7321_2_" fill="none" stroke="#288ECD" d="M569.032,105.331v16.334"/>
			</g>
			<g id="g7323_2_">
				<path id="path7325_2_" fill="#C1DAF2" stroke="#288ECD" d="M598.118,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C597.073,100.665,598.118,101.711,598.118,102.998z"/>
				<path id="path7327_2_" fill="none" stroke="#288ECD" d="M595.786,105.331v16.334"/>
			</g>
			<g id="g7329_2_">
				<path id="path7331_2_" fill="#C1DAF2" stroke="#288ECD" d="M592.767,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S592.767,101.711,592.767,102.998z"/>
				<path id="path7333_2_" fill="none" stroke="#288ECD" d="M590.434,105.331v16.334"/>
			</g>
			<g id="g7335_2_">
				<path id="path7337_2_" fill="#C1DAF2" stroke="#288ECD" d="M587.417,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C586.372,100.665,587.417,101.711,587.417,102.998z"/>
				<path id="path7339_2_" fill="none" stroke="#288ECD" d="M585.083,105.331v16.334"/>
			</g>
		</g>
		<g id="g7341_2_">
			<g id="g7343_2_">
				<path id="path7345_2_" fill="#C1DAF2" stroke="#288ECD" d="M547.394,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S547.394,127.187,547.394,125.898z"/>
				<path id="path7347_2_" fill="none" stroke="#288ECD" d="M545.061,123.566v-16.334"/>
			</g>
			<g id="g7349_2_">
				<path id="path7351_2_" fill="#C1DAF2" stroke="#288ECD" d="M542.044,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C540.999,128.232,542.044,127.187,542.044,125.898z"/>
				<path id="path7353_2_" fill="none" stroke="#288ECD" d="M539.712,123.566v-16.334"/>
			</g>
			<g id="g7355_2_">
				<path id="path7357_2_" fill="#C1DAF2" stroke="#288ECD" d="M536.693,125.898c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C535.648,128.232,536.693,127.187,536.693,125.898z"/>
				<path id="path7359_2_" fill="none" stroke="#288ECD" d="M534.36,123.566v-16.334"/>
			</g>
			<g id="g7361_2_">
				<path id="path7363_2_" fill="#C1DAF2" stroke="#288ECD" d="M563.446,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S563.446,127.187,563.446,125.898z"/>
				<path id="path7365_2_" fill="none" stroke="#288ECD" d="M561.113,123.566v-16.334"/>
			</g>
			<g id="g7367_2_">
				<path id="path7369_2_" fill="#C1DAF2" stroke="#288ECD" d="M558.096,125.898c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C557.05,128.232,558.096,127.187,558.096,125.898z"/>
				<path id="path7371_2_" fill="none" stroke="#288ECD" d="M555.763,123.566v-16.334"/>
			</g>
			<g id="g7373_2_">
				<path id="path7375_2_" fill="#C1DAF2" stroke="#288ECD" d="M552.745,125.898c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C551.7,128.232,552.745,127.187,552.745,125.898z"/>
				<path id="path7377_2_" fill="none" stroke="#288ECD" d="M550.413,123.566v-16.334"/>
			</g>
			<g id="g7379_2_">
				<path id="path7381_2_" fill="#C1DAF2" stroke="#288ECD" d="M550.069,102.998c0,1.288-1.046,2.333-2.333,2.333
					c-1.288,0-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333C549.023,100.665,550.069,101.711,550.069,102.998z"/>
				<path id="path7383_2_" fill="none" stroke="#288ECD" d="M547.736,105.331v16.334"/>
			</g>
			<g id="g7385_2_">
				<path id="path7387_2_" fill="#C1DAF2" stroke="#288ECD" d="M544.72,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S544.72,101.711,544.72,102.998z"/>
				<path id="path7389_2_" fill="none" stroke="#288ECD" d="M542.387,105.331v16.334"/>
			</g>
			<g id="g7391_2_">
				<path id="path7393_2_" fill="#C1DAF2" stroke="#288ECD" d="M539.37,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C538.325,100.665,539.37,101.711,539.37,102.998z"/>
				<path id="path7395_2_" fill="none" stroke="#288ECD" d="M537.036,105.331v16.334"/>
			</g>
			<g id="g7397_2_">
				<path id="path7399_2_" fill="#C1DAF2" stroke="#288ECD" d="M566.122,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C565.077,100.665,566.122,101.711,566.122,102.998z"/>
				<path id="path7401_2_" fill="none" stroke="#288ECD" d="M563.788,105.331v16.334"/>
			</g>
			<g id="g7403_2_">
				<path id="path7405_2_" fill="#C1DAF2" stroke="#288ECD" d="M560.77,102.998c0,1.288-1.045,2.333-2.333,2.333
					c-1.287,0-2.333-1.045-2.333-2.333s1.046-2.333,2.333-2.333C559.725,100.665,560.77,101.711,560.77,102.998z"/>
				<path id="path7407_2_" fill="none" stroke="#288ECD" d="M558.437,105.331v16.334"/>
			</g>
			<g id="g7409_2_">
				<path id="path7411_2_" fill="#C1DAF2" stroke="#288ECD" d="M555.421,102.998c0,1.288-1.045,2.333-2.334,2.333
					c-1.287,0-2.332-1.045-2.332-2.333s1.045-2.333,2.332-2.333C554.376,100.665,555.421,101.711,555.421,102.998z"/>
				<path id="path7413_2_" fill="none" stroke="#288ECD" d="M553.087,105.331v16.334"/>
			</g>
		</g>
		<g id="g7415_2_">
			<g id="g7417_2_">
				<path id="path7419_2_" fill="#C1DAF2" stroke="#288ECD" d="M515.398,125.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C514.352,128.232,515.398,127.187,515.398,125.898z"/>
				<path id="path7421_2_" fill="none" stroke="#288ECD" d="M513.064,123.566v-16.334"/>
			</g>
			<g id="g7423_2_">
				<path id="path7425_2_" fill="#C1DAF2" stroke="#288ECD" d="M510.048,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C509.003,128.232,510.048,127.187,510.048,125.898z"/>
				<path id="path7427_2_" fill="none" stroke="#288ECD" d="M507.714,123.566v-16.334"/>
			</g>
			<g id="g7429_2_">
				<path id="path7431_2_" fill="#C1DAF2" stroke="#288ECD" d="M504.698,125.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C503.652,128.232,504.698,127.187,504.698,125.898z"/>
				<path id="path7433_2_" fill="none" stroke="#288ECD" d="M502.364,123.566v-16.334"/>
			</g>
			<g id="g7435_2_">
				<path id="path7437_2_" fill="#C1DAF2" stroke="#288ECD" d="M531.45,125.898c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C530.404,128.232,531.45,127.187,531.45,125.898z"/>
				<path id="path7439_2_" fill="none" stroke="#288ECD" d="M529.116,123.566v-16.334"/>
			</g>
			<g id="g7441_2_">
				<path id="path7443_2_" fill="#C1DAF2" stroke="#288ECD" d="M526.099,125.898c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S526.099,127.187,526.099,125.898z"/>
				<path id="path7445_2_" fill="none" stroke="#288ECD" d="M523.766,123.566v-16.334"/>
			</g>
			<g id="g7447_2_">
				<path id="path7449_2_" fill="#C1DAF2" stroke="#288ECD" d="M520.749,125.898c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C519.704,128.232,520.749,127.187,520.749,125.898z"/>
				<path id="path7451_2_" fill="none" stroke="#288ECD" d="M518.415,123.566v-16.334"/>
			</g>
			<g id="g7453_2_">
				<path id="path7455_2_" fill="#C1DAF2" stroke="#288ECD" d="M518.073,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C517.028,100.665,518.073,101.711,518.073,102.998z"/>
				<path id="path7457_2_" fill="none" stroke="#288ECD" d="M515.741,105.331v16.334"/>
			</g>
			<g id="g7459_2_">
				<path id="path7461_2_" fill="#C1DAF2" stroke="#288ECD" d="M512.722,102.998c0,1.288-1.045,2.333-2.333,2.333
					s-2.333-1.045-2.333-2.333s1.045-2.333,2.333-2.333S512.722,101.711,512.722,102.998z"/>
				<path id="path7463_2_" fill="none" stroke="#288ECD" d="M510.389,105.331v16.334"/>
			</g>
			<g id="g7465_2_">
				<path id="path7467_2_" fill="#C1DAF2" stroke="#288ECD" d="M507.372,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C506.327,100.665,507.372,101.711,507.372,102.998z"/>
				<path id="path7469_2_" fill="none" stroke="#288ECD" d="M505.04,105.331v16.334"/>
			</g>
			<g id="g7471_2_">
				<path id="path7473_2_" fill="#C1DAF2" stroke="#288ECD" d="M534.124,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.289,0-2.334-1.045-2.334-2.333s1.045-2.333,2.334-2.333C533.079,100.665,534.124,101.711,534.124,102.998z"/>
				<path id="path7475_2_" fill="none" stroke="#288ECD" d="M531.792,105.331v16.334"/>
			</g>
			<g id="g7477_2_">
				<path id="path7479_2_" fill="#C1DAF2" stroke="#288ECD" d="M528.773,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.288,0-2.334-1.045-2.334-2.333s1.046-2.333,2.334-2.333C527.728,100.665,528.773,101.711,528.773,102.998z"/>
				<path id="path7481_2_" fill="none" stroke="#288ECD" d="M526.441,105.331v16.334"/>
			</g>
			<g id="g7483_2_">
				<path id="path7485_2_" fill="#C1DAF2" stroke="#288ECD" d="M523.423,102.998c0,1.288-1.045,2.333-2.332,2.333
					c-1.288,0-2.334-1.045-2.334-2.333s1.046-2.333,2.334-2.333C522.378,100.665,523.423,101.711,523.423,102.998z"/>
				<path id="path7487_2_" fill="none" stroke="#288ECD" d="M521.091,105.331v16.334"/>
			</g>
		</g>
	</g>
</g>
<g>
	<g id="g59398_5_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_5_">
			<g id="g7047_5_">
				<path id="path7049_5_" fill="#C1DAF2" stroke="#288ECD" d="M290.951,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C289.906,236.565,290.951,235.52,290.951,234.231z"/>
				<path id="path7051_5_" fill="none" stroke="#288ECD" d="M288.619,231.899v-16.335"/>
			</g>
			<g id="g7053_5_">
				<path id="path7055_5_" fill="#C1DAF2" stroke="#288ECD" d="M285.6,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C284.555,236.565,285.6,235.52,285.6,234.231z"/>
				<path id="path7057_5_" fill="none" stroke="#288ECD" d="M283.268,231.899v-16.335"/>
			</g>
			<g id="g7059_5_">
				<path id="path7061_5_" fill="#C1DAF2" stroke="#288ECD" d="M280.252,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C279.207,236.565,280.252,235.52,280.252,234.231z"/>
				<path id="path7063_5_" fill="none" stroke="#288ECD" d="M277.918,231.899v-16.335"/>
			</g>
			<g id="g7065_5_">
				<path id="path7067_5_" fill="#C1DAF2" stroke="#288ECD" d="M307.003,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C305.959,236.565,307.003,235.52,307.003,234.231z"/>
				<path id="path7069_5_" fill="none" stroke="#288ECD" d="M304.669,231.899v-16.335"/>
			</g>
			<g id="g7071_5_">
				<path id="path7073_5_" fill="#C1DAF2" stroke="#288ECD" d="M301.652,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C300.607,236.565,301.652,235.52,301.652,234.231z"/>
				<path id="path7075_5_" fill="none" stroke="#288ECD" d="M299.32,231.899v-16.335"/>
			</g>
			<g id="g7077_5_">
				<path id="path7079_5_" fill="#C1DAF2" stroke="#288ECD" d="M296.302,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C295.257,236.565,296.302,235.52,296.302,234.231z"/>
				<path id="path7081_5_" fill="none" stroke="#288ECD" d="M293.968,231.899v-16.335"/>
			</g>
			<g id="g7083_5_">
				<path id="path7085_5_" fill="#C1DAF2" stroke="#288ECD" d="M293.627,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C292.582,208.997,293.627,210.042,293.627,211.33z"/>
				<path id="path7087_5_" fill="none" stroke="#288ECD" d="M291.294,213.664v16.332"/>
			</g>
			<g id="g7089_5_">
				<path id="path7091_5_" fill="#C1DAF2" stroke="#288ECD" d="M288.277,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C287.232,208.997,288.277,210.042,288.277,211.33z"/>
				<path id="path7093_5_" fill="none" stroke="#288ECD" d="M285.943,213.664v16.332"/>
			</g>
			<g id="g7095_5_">
				<path id="path7097_5_" fill="#C1DAF2" stroke="#288ECD" d="M282.925,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C281.88,208.997,282.925,210.042,282.925,211.33z"/>
				<path id="path7099_5_" fill="none" stroke="#288ECD" d="M280.593,213.664v16.332"/>
			</g>
			<g id="g7101_5_">
				<path id="path7103_5_" fill="#C1DAF2" stroke="#288ECD" d="M309.677,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C308.632,208.997,309.677,210.042,309.677,211.33z"/>
				<path id="path7105_5_" fill="none" stroke="#288ECD" d="M307.345,213.664v16.332"/>
			</g>
			<g id="g7107_5_">
				<path id="path7109_5_" fill="#C1DAF2" stroke="#288ECD" d="M304.328,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C303.283,208.997,304.328,210.042,304.328,211.33z"/>
				<path id="path7111_5_" fill="none" stroke="#288ECD" d="M301.996,213.664v16.332"/>
			</g>
			<g id="g7113_5_">
				<path id="path7115_5_" fill="#C1DAF2" stroke="#288ECD" d="M298.977,211.33c0,1.289-1.047,2.334-2.334,2.334
					s-2.332-1.045-2.332-2.334c0-1.287,1.046-2.332,2.332-2.332C297.93,208.997,298.977,210.042,298.977,211.33z"/>
				<path id="path7117_5_" fill="none" stroke="#288ECD" d="M296.643,213.664v16.332"/>
			</g>
		</g>
		<g id="g7119_5_">
			<g id="g7121_5_">
				<path id="path7123_5_" fill="#C1DAF2" stroke="#288ECD" d="M258.955,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C257.91,236.565,258.955,235.52,258.955,234.231z"/>
				<path id="path7125_5_" fill="none" stroke="#288ECD" d="M256.623,231.899v-16.335"/>
			</g>
			<g id="g7127_5_">
				<path id="path7129_5_" fill="#C1DAF2" stroke="#288ECD" d="M253.605,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C252.56,236.565,253.605,235.52,253.605,234.231z"/>
				<path id="path7131_5_" fill="none" stroke="#288ECD" d="M251.273,231.899v-16.335"/>
			</g>
			<g id="g7133_5_">
				<path id="path7135_5_" fill="#C1DAF2" stroke="#288ECD" d="M248.253,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C247.209,236.565,248.253,235.52,248.253,234.231z"/>
				<path id="path7137_5_" fill="none" stroke="#288ECD" d="M245.921,231.899v-16.335"/>
			</g>
			<g id="g7139_5_">
				<path id="path7141_5_" fill="#C1DAF2" stroke="#288ECD" d="M275.005,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C273.961,236.565,275.005,235.52,275.005,234.231z"/>
				<path id="path7143_5_" fill="none" stroke="#288ECD" d="M272.673,231.899v-16.335"/>
			</g>
			<g id="g7145_5_">
				<path id="path7147_5_" fill="#C1DAF2" stroke="#288ECD" d="M269.656,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C268.611,236.565,269.656,235.52,269.656,234.231z"/>
				<path id="path7149_5_" fill="none" stroke="#288ECD" d="M267.324,231.899v-16.335"/>
			</g>
			<g id="g7151_5_">
				<path id="path7153_5_" fill="#C1DAF2" stroke="#288ECD" d="M264.304,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.286,0-2.334,1.045-2.334,2.332c0,1.289,1.048,2.334,2.334,2.334C263.259,236.565,264.304,235.52,264.304,234.231z"/>
				<path id="path7155_5_" fill="none" stroke="#288ECD" d="M261.971,231.899v-16.335"/>
			</g>
			<g id="g7157_5_">
				<path id="path7159_5_" fill="#C1DAF2" stroke="#288ECD" d="M261.63,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C260.586,208.997,261.63,210.042,261.63,211.33z"/>
				<path id="path7161_5_" fill="none" stroke="#288ECD" d="M259.296,213.664v16.332"/>
			</g>
			<g id="g7163_5_">
				<path id="path7165_5_" fill="#C1DAF2" stroke="#288ECD" d="M256.279,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C255.234,208.997,256.279,210.042,256.279,211.33z"/>
				<path id="path7167_5_" fill="none" stroke="#288ECD" d="M253.947,213.664v16.332"/>
			</g>
			<g id="g7169_5_">
				<path id="path7171_5_" fill="#C1DAF2" stroke="#288ECD" d="M250.929,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.286,0-2.332-1.045-2.332-2.334c0-1.287,1.046-2.332,2.332-2.332C249.884,208.997,250.929,210.042,250.929,211.33z"/>
				<path id="path7173_5_" fill="none" stroke="#288ECD" d="M248.595,213.664v16.332"/>
			</g>
			<g id="g7175_5_">
				<path id="path7177_5_" fill="#C1DAF2" stroke="#288ECD" d="M277.68,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.286,0-2.331-1.045-2.331-2.334c0-1.287,1.045-2.332,2.331-2.332C276.636,208.997,277.68,210.042,277.68,211.33z"/>
				<path id="path7179_5_" fill="none" stroke="#288ECD" d="M275.349,213.664v16.332"/>
			</g>
			<g id="g7181_5_">
				<path id="path7183_5_" fill="#C1DAF2" stroke="#288ECD" d="M272.332,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C271.287,208.997,272.332,210.042,272.332,211.33z"/>
				<path id="path7185_5_" fill="none" stroke="#288ECD" d="M269.998,213.664v16.332"/>
			</g>
			<g id="g7187_5_">
				<path id="path7189_5_" fill="#C1DAF2" stroke="#288ECD" d="M266.982,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C265.937,208.997,266.982,210.042,266.982,211.33z"/>
				<path id="path7191_5_" fill="none" stroke="#288ECD" d="M264.648,213.664v16.332"/>
			</g>
		</g>
		<g id="g7193_5_">
			<g id="g7195_5_">
				<path id="path7197_5_" fill="#C1DAF2" stroke="#288ECD" d="M226.959,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C225.914,236.565,226.959,235.52,226.959,234.231z"/>
				<path id="path7199_5_" fill="none" stroke="#288ECD" d="M224.625,231.899v-16.335"/>
			</g>
			<g id="g7201_5_">
				<path id="path7203_5_" fill="#C1DAF2" stroke="#288ECD" d="M221.609,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C220.564,236.565,221.609,235.52,221.609,234.231z"/>
				<path id="path7205_5_" fill="none" stroke="#288ECD" d="M219.275,231.899v-16.335"/>
			</g>
			<g id="g7207_5_">
				<path id="path7209_5_" fill="#C1DAF2" stroke="#288ECD" d="M216.257,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S216.257,235.52,216.257,234.231z"/>
				<path id="path7211_5_" fill="none" stroke="#288ECD" d="M213.924,231.899v-16.335"/>
			</g>
			<g id="g7213_5_">
				<path id="path7215_5_" fill="#C1DAF2" stroke="#288ECD" d="M243.009,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C241.964,236.565,243.009,235.52,243.009,234.231z"/>
				<path id="path7217_5_" fill="none" stroke="#288ECD" d="M240.677,231.899v-16.335"/>
			</g>
			<g id="g7219_5_">
				<path id="path7221_5_" fill="#C1DAF2" stroke="#288ECD" d="M237.66,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C236.615,236.565,237.66,235.52,237.66,234.231z"/>
				<path id="path7223_5_" fill="none" stroke="#288ECD" d="M235.326,231.899v-16.335"/>
			</g>
			<g id="g7225_5_">
				<path id="path7227_5_" fill="#C1DAF2" stroke="#288ECD" d="M232.31,234.231c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S232.31,235.52,232.31,234.231z"/>
				<path id="path7229_5_" fill="none" stroke="#288ECD" d="M229.976,231.899v-16.335"/>
			</g>
			<g id="g7231_5_">
				<path id="path7233_5_" fill="#C1DAF2" stroke="#288ECD" d="M229.632,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C228.587,208.997,229.632,210.042,229.632,211.33z"/>
				<path id="path7235_5_" fill="none" stroke="#288ECD" d="M227.3,213.664v16.332"/>
			</g>
			<g id="g7237_5_">
				<path id="path7239_5_" fill="#C1DAF2" stroke="#288ECD" d="M224.283,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C223.238,208.997,224.283,210.042,224.283,211.33z"/>
				<path id="path7241_5_" fill="none" stroke="#288ECD" d="M221.951,213.664v16.332"/>
			</g>
			<g id="g7243_5_">
				<path id="path7245_5_" fill="#C1DAF2" stroke="#288ECD" d="M218.933,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S218.933,210.042,218.933,211.33z"/>
				<path id="path7247_5_" fill="none" stroke="#288ECD" d="M216.6,213.664v16.332"/>
			</g>
			<g id="g7249_5_">
				<path id="path7251_5_" fill="#C1DAF2" stroke="#288ECD" d="M245.685,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C244.64,208.997,245.685,210.042,245.685,211.33z"/>
				<path id="path7253_5_" fill="none" stroke="#288ECD" d="M243.353,213.664v16.332"/>
			</g>
			<g id="g7255_5_">
				<path id="path7257_5_" fill="#C1DAF2" stroke="#288ECD" d="M240.336,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C239.291,208.997,240.336,210.042,240.336,211.33z"/>
				<path id="path7259_5_" fill="none" stroke="#288ECD" d="M238.002,213.664v16.332"/>
			</g>
			<g id="g7261_5_">
				<path id="path7263_5_" fill="#C1DAF2" stroke="#288ECD" d="M234.984,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C233.939,208.997,234.984,210.042,234.984,211.33z"/>
				<path id="path7265_5_" fill="none" stroke="#288ECD" d="M232.652,213.664v16.332"/>
			</g>
		</g>
		<g id="g7267_5_">
			<g id="g7269_5_">
				<path id="path7271_5_" fill="#C1DAF2" stroke="#288ECD" d="M194.962,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S194.962,235.52,194.962,234.231z"/>
				<path id="path7273_5_" fill="none" stroke="#288ECD" d="M192.629,231.899v-16.335"/>
			</g>
			<g id="g7275_5_">
				<path id="path7277_5_" fill="#C1DAF2" stroke="#288ECD" d="M189.611,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S189.611,235.52,189.611,234.231z"/>
				<path id="path7279_5_" fill="none" stroke="#288ECD" d="M187.278,231.899v-16.335"/>
			</g>
			<g id="g7281_5_">
				<path id="path7283_5_" fill="#C1DAF2" stroke="#288ECD" d="M184.261,234.231c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C183.216,236.565,184.261,235.52,184.261,234.231z"/>
				<path id="path7285_5_" fill="none" stroke="#288ECD" d="M181.928,231.899v-16.335"/>
			</g>
			<g id="g7287_5_">
				<path id="path7289_5_" fill="#C1DAF2" stroke="#288ECD" d="M211.013,234.231c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C209.968,236.565,211.013,235.52,211.013,234.231z"/>
				<path id="path7291_5_" fill="none" stroke="#288ECD" d="M208.68,231.899v-16.335"/>
			</g>
			<g id="g7293_5_">
				<path id="path7295_5_" fill="#C1DAF2" stroke="#288ECD" d="M205.663,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S205.663,235.52,205.663,234.231z"/>
				<path id="path7297_5_" fill="none" stroke="#288ECD" d="M203.33,231.899v-16.335"/>
			</g>
			<g id="g7299_5_">
				<path id="path7301_5_" fill="#C1DAF2" stroke="#288ECD" d="M200.313,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C199.267,236.565,200.313,235.52,200.313,234.231z"/>
				<path id="path7303_5_" fill="none" stroke="#288ECD" d="M197.98,231.899v-16.335"/>
			</g>
			<g id="g7305_5_">
				<path id="path7307_5_" fill="#C1DAF2" stroke="#288ECD" d="M197.637,211.33c0,1.289-1.045,2.334-2.333,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C196.592,208.997,197.637,210.042,197.637,211.33z"/>
				<path id="path7309_5_" fill="none" stroke="#288ECD" d="M195.304,213.664v16.332"/>
			</g>
			<g id="g7311_5_">
				<path id="path7313_5_" fill="#C1DAF2" stroke="#288ECD" d="M192.286,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S192.286,210.042,192.286,211.33z"/>
				<path id="path7315_5_" fill="none" stroke="#288ECD" d="M189.953,213.664v16.332"/>
			</g>
			<g id="g7317_5_">
				<path id="path7319_5_" fill="#C1DAF2" stroke="#288ECD" d="M186.937,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332C185.891,208.997,186.937,210.042,186.937,211.33z"/>
				<path id="path7321_5_" fill="none" stroke="#288ECD" d="M184.604,213.664v16.332"/>
			</g>
			<g id="g7323_5_">
				<path id="path7325_5_" fill="#C1DAF2" stroke="#288ECD" d="M213.689,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S213.689,210.042,213.689,211.33z"/>
				<path id="path7327_5_" fill="none" stroke="#288ECD" d="M211.357,213.664v16.332"/>
			</g>
			<g id="g7329_5_">
				<path id="path7331_5_" fill="#C1DAF2" stroke="#288ECD" d="M208.338,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S208.338,210.042,208.338,211.33z"/>
				<path id="path7333_5_" fill="none" stroke="#288ECD" d="M206.005,213.664v16.332"/>
			</g>
			<g id="g7335_5_">
				<path id="path7337_5_" fill="#C1DAF2" stroke="#288ECD" d="M202.987,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S202.987,210.042,202.987,211.33z"/>
				<path id="path7339_5_" fill="none" stroke="#288ECD" d="M200.654,213.664v16.332"/>
			</g>
		</g>
		<g id="g7341_5_">
			<g id="g7343_5_">
				<path id="path7345_5_" fill="#C1DAF2" stroke="#288ECD" d="M162.965,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S162.965,235.52,162.965,234.231z"/>
				<path id="path7347_5_" fill="none" stroke="#288ECD" d="M160.632,231.899v-16.335"/>
			</g>
			<g id="g7349_5_">
				<path id="path7351_5_" fill="#C1DAF2" stroke="#288ECD" d="M157.615,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C156.569,236.565,157.615,235.52,157.615,234.231z"/>
				<path id="path7353_5_" fill="none" stroke="#288ECD" d="M155.282,231.899v-16.335"/>
			</g>
			<g id="g7355_5_">
				<path id="path7357_5_" fill="#C1DAF2" stroke="#288ECD" d="M152.264,234.231c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C151.219,236.565,152.264,235.52,152.264,234.231z"/>
				<path id="path7359_5_" fill="none" stroke="#288ECD" d="M149.931,231.899v-16.335"/>
			</g>
			<g id="g7361_5_">
				<path id="path7363_5_" fill="#C1DAF2" stroke="#288ECD" d="M179.017,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S179.017,235.52,179.017,234.231z"/>
				<path id="path7365_5_" fill="none" stroke="#288ECD" d="M176.684,231.899v-16.335"/>
			</g>
			<g id="g7367_5_">
				<path id="path7369_5_" fill="#C1DAF2" stroke="#288ECD" d="M173.667,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C172.621,236.565,173.667,235.52,173.667,234.231z"/>
				<path id="path7371_5_" fill="none" stroke="#288ECD" d="M171.334,231.899v-16.335"/>
			</g>
			<g id="g7373_5_">
				<path id="path7375_5_" fill="#C1DAF2" stroke="#288ECD" d="M168.316,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S168.316,235.52,168.316,234.231z"/>
				<path id="path7377_5_" fill="none" stroke="#288ECD" d="M165.983,231.899v-16.335"/>
			</g>
			<g id="g7379_5_">
				<path id="path7381_5_" fill="#C1DAF2" stroke="#288ECD" d="M165.64,211.33c0,1.289-1.046,2.334-2.333,2.334
					c-1.288,0-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332C164.595,208.997,165.64,210.042,165.64,211.33z"/>
				<path id="path7383_5_" fill="none" stroke="#288ECD" d="M163.307,213.664v16.332"/>
			</g>
			<g id="g7385_5_">
				<path id="path7387_5_" fill="#C1DAF2" stroke="#288ECD" d="M160.291,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332C159.245,208.997,160.291,210.042,160.291,211.33z"/>
				<path id="path7389_5_" fill="none" stroke="#288ECD" d="M157.958,213.664v16.332"/>
			</g>
			<g id="g7391_5_">
				<path id="path7393_5_" fill="#C1DAF2" stroke="#288ECD" d="M154.94,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S154.94,210.042,154.94,211.33z"/>
				<path id="path7395_5_" fill="none" stroke="#288ECD" d="M152.607,213.664v16.332"/>
			</g>
			<g id="g7397_5_">
				<path id="path7399_5_" fill="#C1DAF2" stroke="#288ECD" d="M181.692,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S181.692,210.042,181.692,211.33z"/>
				<path id="path7401_5_" fill="none" stroke="#288ECD" d="M179.359,213.664v16.332"/>
			</g>
			<g id="g7403_5_">
				<path id="path7405_5_" fill="#C1DAF2" stroke="#288ECD" d="M176.341,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S176.341,210.042,176.341,211.33z"/>
				<path id="path7407_5_" fill="none" stroke="#288ECD" d="M174.008,213.664v16.332"/>
			</g>
			<g id="g7409_5_">
				<path id="path7411_5_" fill="#C1DAF2" stroke="#288ECD" d="M170.991,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S170.991,210.042,170.991,211.33z"/>
				<path id="path7413_5_" fill="none" stroke="#288ECD" d="M168.658,213.664v16.332"/>
			</g>
		</g>
		<g id="g7415_5_">
			<g id="g7417_5_">
				<path id="path7419_5_" fill="#C1DAF2" stroke="#288ECD" d="M130.968,234.231c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C129.923,236.565,130.968,235.52,130.968,234.231z"/>
				<path id="path7421_5_" fill="none" stroke="#288ECD" d="M128.635,231.899v-16.335"/>
			</g>
			<g id="g7423_5_">
				<path id="path7425_5_" fill="#C1DAF2" stroke="#288ECD" d="M125.618,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S125.618,235.52,125.618,234.231z"/>
				<path id="path7427_5_" fill="none" stroke="#288ECD" d="M123.285,231.899v-16.335"/>
			</g>
			<g id="g7429_5_">
				<path id="path7431_5_" fill="#C1DAF2" stroke="#288ECD" d="M120.269,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C119.223,236.565,120.269,235.52,120.269,234.231z"/>
				<path id="path7433_5_" fill="none" stroke="#288ECD" d="M117.936,231.899v-16.335"/>
			</g>
			<g id="g7435_5_">
				<path id="path7437_5_" fill="#C1DAF2" stroke="#288ECD" d="M147.021,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C145.975,236.565,147.021,235.52,147.021,234.231z"/>
				<path id="path7439_5_" fill="none" stroke="#288ECD" d="M144.688,231.899v-16.335"/>
			</g>
			<g id="g7441_5_">
				<path id="path7443_5_" fill="#C1DAF2" stroke="#288ECD" d="M141.67,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S141.67,235.52,141.67,234.231z"/>
				<path id="path7445_5_" fill="none" stroke="#288ECD" d="M139.337,231.899v-16.335"/>
			</g>
			<g id="g7447_5_">
				<path id="path7449_5_" fill="#C1DAF2" stroke="#288ECD" d="M136.319,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S136.319,235.52,136.319,234.231z"/>
				<path id="path7451_5_" fill="none" stroke="#288ECD" d="M133.986,231.899v-16.335"/>
			</g>
			<g id="g7453_5_">
				<path id="path7455_5_" fill="#C1DAF2" stroke="#288ECD" d="M133.645,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332C132.599,208.997,133.645,210.042,133.645,211.33z"/>
				<path id="path7457_5_" fill="none" stroke="#288ECD" d="M131.312,213.664v16.332"/>
			</g>
			<g id="g7459_5_">
				<path id="path7461_5_" fill="#C1DAF2" stroke="#288ECD" d="M128.294,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S128.294,210.042,128.294,211.33z"/>
				<path id="path7463_5_" fill="none" stroke="#288ECD" d="M125.961,213.664v16.332"/>
			</g>
			<g id="g7465_5_">
				<path id="path7467_5_" fill="#C1DAF2" stroke="#288ECD" d="M122.943,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S122.943,210.042,122.943,211.33z"/>
				<path id="path7469_5_" fill="none" stroke="#288ECD" d="M120.61,213.664v16.332"/>
			</g>
			<g id="g7471_5_">
				<path id="path7473_5_" fill="#C1DAF2" stroke="#288ECD" d="M149.695,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S149.695,210.042,149.695,211.33z"/>
				<path id="path7475_5_" fill="none" stroke="#288ECD" d="M147.362,213.664v16.332"/>
			</g>
			<g id="g7477_5_">
				<path id="path7479_5_" fill="#C1DAF2" stroke="#288ECD" d="M144.345,211.33c0,1.289-1.045,2.334-2.333,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C143.3,208.997,144.345,210.042,144.345,211.33z"/>
				<path id="path7481_5_" fill="none" stroke="#288ECD" d="M142.012,213.664v16.332"/>
			</g>
			<g id="g7483_5_">
				<path id="path7485_5_" fill="#C1DAF2" stroke="#288ECD" d="M138.994,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S138.994,210.042,138.994,211.33z"/>
				<path id="path7487_5_" fill="none" stroke="#288ECD" d="M136.661,213.664v16.332"/>
			</g>
		</g>
	</g>
	<g id="g59398_4_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_4_">
			<g id="g7047_4_">
				<path id="path7049_4_" fill="#C1DAF2" stroke="#288ECD" d="M483.637,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C482.592,236.565,483.637,235.52,483.637,234.231z"/>
				<path id="path7051_4_" fill="none" stroke="#288ECD" d="M481.305,231.899v-16.335"/>
			</g>
			<g id="g7053_4_">
				<path id="path7055_4_" fill="#C1DAF2" stroke="#288ECD" d="M478.287,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C477.242,236.565,478.287,235.52,478.287,234.231z"/>
				<path id="path7057_4_" fill="none" stroke="#288ECD" d="M475.955,231.899v-16.335"/>
			</g>
			<g id="g7059_4_">
				<path id="path7061_4_" fill="#C1DAF2" stroke="#288ECD" d="M472.937,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.286,0-2.332,1.045-2.332,2.332c0,1.289,1.046,2.334,2.332,2.334C471.892,236.565,472.937,235.52,472.937,234.231z"/>
				<path id="path7063_4_" fill="none" stroke="#288ECD" d="M470.603,231.899v-16.335"/>
			</g>
			<g id="g7065_4_">
				<path id="path7067_4_" fill="#C1DAF2" stroke="#288ECD" d="M499.689,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.286,0-2.332,1.045-2.332,2.332c0,1.289,1.046,2.334,2.332,2.334C498.644,236.565,499.689,235.52,499.689,234.231z"/>
				<path id="path7069_4_" fill="none" stroke="#288ECD" d="M497.355,231.899v-16.335"/>
			</g>
			<g id="g7071_4_">
				<path id="path7073_4_" fill="#C1DAF2" stroke="#288ECD" d="M494.338,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C493.293,236.565,494.338,235.52,494.338,234.231z"/>
				<path id="path7075_4_" fill="none" stroke="#288ECD" d="M492.006,231.899v-16.335"/>
			</g>
			<g id="g7077_4_">
				<path id="path7079_4_" fill="#C1DAF2" stroke="#288ECD" d="M488.988,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C487.943,236.565,488.988,235.52,488.988,234.231z"/>
				<path id="path7081_4_" fill="none" stroke="#288ECD" d="M486.654,231.899v-16.335"/>
			</g>
			<g id="g7083_4_">
				<path id="path7085_4_" fill="#C1DAF2" stroke="#288ECD" d="M486.312,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.288,0-2.334-1.045-2.334-2.334c0-1.287,1.046-2.332,2.334-2.332C485.267,208.997,486.312,210.042,486.312,211.33z"/>
				<path id="path7087_4_" fill="none" stroke="#288ECD" d="M483.98,213.664v16.332"/>
			</g>
			<g id="g7089_4_">
				<path id="path7091_4_" fill="#C1DAF2" stroke="#288ECD" d="M480.963,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C479.918,208.997,480.963,210.042,480.963,211.33z"/>
				<path id="path7093_4_" fill="none" stroke="#288ECD" d="M478.629,213.664v16.332"/>
			</g>
			<g id="g7095_4_">
				<path id="path7097_4_" fill="#C1DAF2" stroke="#288ECD" d="M475.611,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C474.566,208.997,475.611,210.042,475.611,211.33z"/>
				<path id="path7099_4_" fill="none" stroke="#288ECD" d="M473.279,213.664v16.332"/>
			</g>
			<g id="g7101_4_">
				<path id="path7103_4_" fill="#C1DAF2" stroke="#288ECD" d="M502.363,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C501.318,208.997,502.363,210.042,502.363,211.33z"/>
				<path id="path7105_4_" fill="none" stroke="#288ECD" d="M500.031,213.664v16.332"/>
			</g>
			<g id="g7107_4_">
				<path id="path7109_4_" fill="#C1DAF2" stroke="#288ECD" d="M497.013,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C495.969,208.997,497.013,210.042,497.013,211.33z"/>
				<path id="path7111_4_" fill="none" stroke="#288ECD" d="M494.681,213.664v16.332"/>
			</g>
			<g id="g7113_4_">
				<path id="path7115_4_" fill="#C1DAF2" stroke="#288ECD" d="M491.664,211.33c0,1.289-1.047,2.334-2.334,2.334
					s-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332S491.664,210.042,491.664,211.33z"/>
				<path id="path7117_4_" fill="none" stroke="#288ECD" d="M489.33,213.664v16.332"/>
			</g>
		</g>
		<g id="g7119_4_">
			<g id="g7121_4_">
				<path id="path7123_4_" fill="#C1DAF2" stroke="#288ECD" d="M451.64,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C450.596,236.565,451.64,235.52,451.64,234.231z"/>
				<path id="path7125_4_" fill="none" stroke="#288ECD" d="M449.308,231.899v-16.335"/>
			</g>
			<g id="g7127_4_">
				<path id="path7129_4_" fill="#C1DAF2" stroke="#288ECD" d="M446.291,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C445.246,236.565,446.291,235.52,446.291,234.231z"/>
				<path id="path7131_4_" fill="none" stroke="#288ECD" d="M443.959,231.899v-16.335"/>
			</g>
			<g id="g7133_4_">
				<path id="path7135_4_" fill="#C1DAF2" stroke="#288ECD" d="M440.939,234.231c0-1.287-1.045-2.332-2.331-2.332
					c-1.289,0-2.335,1.045-2.335,2.332c0,1.289,1.046,2.334,2.335,2.334C439.894,236.565,440.939,235.52,440.939,234.231z"/>
				<path id="path7137_4_" fill="none" stroke="#288ECD" d="M438.607,231.899v-16.335"/>
			</g>
			<g id="g7139_4_">
				<path id="path7141_4_" fill="#C1DAF2" stroke="#288ECD" d="M467.691,234.231c0-1.287-1.046-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C466.646,236.565,467.691,235.52,467.691,234.231z"/>
				<path id="path7143_4_" fill="none" stroke="#288ECD" d="M465.359,231.899v-16.335"/>
			</g>
			<g id="g7145_4_">
				<path id="path7147_4_" fill="#C1DAF2" stroke="#288ECD" d="M462.342,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C461.297,236.565,462.342,235.52,462.342,234.231z"/>
				<path id="path7149_4_" fill="none" stroke="#288ECD" d="M460.01,231.899v-16.335"/>
			</g>
			<g id="g7151_4_">
				<path id="path7153_4_" fill="#C1DAF2" stroke="#288ECD" d="M456.99,234.231c0-1.287-1.045-2.332-2.332-2.332
					s-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334S456.99,235.52,456.99,234.231z"/>
				<path id="path7155_4_" fill="none" stroke="#288ECD" d="M454.658,231.899v-16.335"/>
			</g>
			<g id="g7157_4_">
				<path id="path7159_4_" fill="#C1DAF2" stroke="#288ECD" d="M454.316,211.33c0,1.289-1.046,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C453.271,208.997,454.316,210.042,454.316,211.33z"/>
				<path id="path7161_4_" fill="none" stroke="#288ECD" d="M451.982,213.664v16.332"/>
			</g>
			<g id="g7163_4_">
				<path id="path7165_4_" fill="#C1DAF2" stroke="#288ECD" d="M448.965,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C447.92,208.997,448.965,210.042,448.965,211.33z"/>
				<path id="path7167_4_" fill="none" stroke="#288ECD" d="M446.633,213.664v16.332"/>
			</g>
			<g id="g7169_4_">
				<path id="path7171_4_" fill="#C1DAF2" stroke="#288ECD" d="M443.615,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C442.57,208.997,443.615,210.042,443.615,211.33z"/>
				<path id="path7173_4_" fill="none" stroke="#288ECD" d="M441.281,213.664v16.332"/>
			</g>
			<g id="g7175_4_">
				<path id="path7177_4_" fill="#C1DAF2" stroke="#288ECD" d="M470.367,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C469.322,208.997,470.367,210.042,470.367,211.33z"/>
				<path id="path7179_4_" fill="none" stroke="#288ECD" d="M468.035,213.664v16.332"/>
			</g>
			<g id="g7181_4_">
				<path id="path7183_4_" fill="#C1DAF2" stroke="#288ECD" d="M465.017,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C463.972,208.997,465.017,210.042,465.017,211.33z"/>
				<path id="path7185_4_" fill="none" stroke="#288ECD" d="M462.683,213.664v16.332"/>
			</g>
			<g id="g7187_4_">
				<path id="path7189_4_" fill="#C1DAF2" stroke="#288ECD" d="M459.668,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C458.623,208.997,459.668,210.042,459.668,211.33z"/>
				<path id="path7191_4_" fill="none" stroke="#288ECD" d="M457.334,213.664v16.332"/>
			</g>
		</g>
		<g id="g7193_4_">
			<g id="g7195_4_">
				<path id="path7197_4_" fill="#C1DAF2" stroke="#288ECD" d="M419.644,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C418.599,236.565,419.644,235.52,419.644,234.231z"/>
				<path id="path7199_4_" fill="none" stroke="#288ECD" d="M417.31,231.899v-16.335"/>
			</g>
			<g id="g7201_4_">
				<path id="path7203_4_" fill="#C1DAF2" stroke="#288ECD" d="M414.295,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C413.25,236.565,414.295,235.52,414.295,234.231z"/>
				<path id="path7205_4_" fill="none" stroke="#288ECD" d="M411.961,231.899v-16.335"/>
			</g>
			<g id="g7207_4_">
				<path id="path7209_4_" fill="#C1DAF2" stroke="#288ECD" d="M408.943,234.231c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C407.897,236.565,408.943,235.52,408.943,234.231z"/>
				<path id="path7211_4_" fill="none" stroke="#288ECD" d="M406.61,231.899v-16.335"/>
			</g>
			<g id="g7213_4_">
				<path id="path7215_4_" fill="#C1DAF2" stroke="#288ECD" d="M435.695,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C434.65,236.565,435.695,235.52,435.695,234.231z"/>
				<path id="path7217_4_" fill="none" stroke="#288ECD" d="M433.363,231.899v-16.335"/>
			</g>
			<g id="g7219_4_">
				<path id="path7221_4_" fill="#C1DAF2" stroke="#288ECD" d="M430.346,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C429.301,236.565,430.346,235.52,430.346,234.231z"/>
				<path id="path7223_4_" fill="none" stroke="#288ECD" d="M428.012,231.899v-16.335"/>
			</g>
			<g id="g7225_4_">
				<path id="path7227_4_" fill="#C1DAF2" stroke="#288ECD" d="M424.996,234.231c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S424.996,235.52,424.996,234.231z"/>
				<path id="path7229_4_" fill="none" stroke="#288ECD" d="M422.662,231.899v-16.335"/>
			</g>
			<g id="g7231_4_">
				<path id="path7233_4_" fill="#C1DAF2" stroke="#288ECD" d="M422.318,211.33c0,1.289-1.046,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C421.273,208.997,422.318,210.042,422.318,211.33z"/>
				<path id="path7235_4_" fill="none" stroke="#288ECD" d="M419.986,213.664v16.332"/>
			</g>
			<g id="g7237_4_">
				<path id="path7239_4_" fill="#C1DAF2" stroke="#288ECD" d="M416.969,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C415.924,208.997,416.969,210.042,416.969,211.33z"/>
				<path id="path7241_4_" fill="none" stroke="#288ECD" d="M414.637,213.664v16.332"/>
			</g>
			<g id="g7243_4_">
				<path id="path7245_4_" fill="#C1DAF2" stroke="#288ECD" d="M411.619,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S411.619,210.042,411.619,211.33z"/>
				<path id="path7247_4_" fill="none" stroke="#288ECD" d="M409.286,213.664v16.332"/>
			</g>
			<g id="g7249_4_">
				<path id="path7251_4_" fill="#C1DAF2" stroke="#288ECD" d="M438.371,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C437.326,208.997,438.371,210.042,438.371,211.33z"/>
				<path id="path7253_4_" fill="none" stroke="#288ECD" d="M436.039,213.664v16.332"/>
			</g>
			<g id="g7255_4_">
				<path id="path7257_4_" fill="#C1DAF2" stroke="#288ECD" d="M433.021,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.286,0-2.332-1.045-2.332-2.334c0-1.287,1.046-2.332,2.332-2.332C431.976,208.997,433.021,210.042,433.021,211.33z"/>
				<path id="path7259_4_" fill="none" stroke="#288ECD" d="M430.687,213.664v16.332"/>
			</g>
			<g id="g7261_4_">
				<path id="path7263_4_" fill="#C1DAF2" stroke="#288ECD" d="M427.67,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C426.625,208.997,427.67,210.042,427.67,211.33z"/>
				<path id="path7265_4_" fill="none" stroke="#288ECD" d="M425.338,213.664v16.332"/>
			</g>
		</g>
		<g id="g7267_4_">
			<g id="g7269_4_">
				<path id="path7271_4_" fill="#C1DAF2" stroke="#288ECD" d="M387.648,234.231c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C386.602,236.565,387.648,235.52,387.648,234.231z"/>
				<path id="path7273_4_" fill="none" stroke="#288ECD" d="M385.314,231.899v-16.335"/>
			</g>
			<g id="g7275_4_">
				<path id="path7277_4_" fill="#C1DAF2" stroke="#288ECD" d="M382.298,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C381.253,236.565,382.298,235.52,382.298,234.231z"/>
				<path id="path7279_4_" fill="none" stroke="#288ECD" d="M379.964,231.899v-16.335"/>
			</g>
			<g id="g7281_4_">
				<path id="path7283_4_" fill="#C1DAF2" stroke="#288ECD" d="M376.947,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S376.947,235.52,376.947,234.231z"/>
				<path id="path7285_4_" fill="none" stroke="#288ECD" d="M374.614,231.899v-16.335"/>
			</g>
			<g id="g7287_4_">
				<path id="path7289_4_" fill="#C1DAF2" stroke="#288ECD" d="M403.699,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S403.699,235.52,403.699,234.231z"/>
				<path id="path7291_4_" fill="none" stroke="#288ECD" d="M401.366,231.899v-16.335"/>
			</g>
			<g id="g7293_4_">
				<path id="path7295_4_" fill="#C1DAF2" stroke="#288ECD" d="M398.348,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.288,0-2.334,1.045-2.334,2.332c0,1.289,1.046,2.334,2.334,2.334C397.304,236.565,398.348,235.52,398.348,234.231z"/>
				<path id="path7297_4_" fill="none" stroke="#288ECD" d="M396.016,231.899v-16.335"/>
			</g>
			<g id="g7299_4_">
				<path id="path7301_4_" fill="#C1DAF2" stroke="#288ECD" d="M392.999,234.231c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C391.953,236.565,392.999,235.52,392.999,234.231z"/>
				<path id="path7303_4_" fill="none" stroke="#288ECD" d="M390.665,231.899v-16.335"/>
			</g>
			<g id="g7305_4_">
				<path id="path7307_4_" fill="#C1DAF2" stroke="#288ECD" d="M390.323,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S390.323,210.042,390.323,211.33z"/>
				<path id="path7309_4_" fill="none" stroke="#288ECD" d="M387.99,213.664v16.332"/>
			</g>
			<g id="g7311_4_">
				<path id="path7313_4_" fill="#C1DAF2" stroke="#288ECD" d="M384.971,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.288,0-2.334-1.045-2.334-2.334c0-1.287,1.046-2.332,2.334-2.332C383.927,208.997,384.971,210.042,384.971,211.33z"/>
				<path id="path7315_4_" fill="none" stroke="#288ECD" d="M382.639,213.664v16.332"/>
			</g>
			<g id="g7317_4_">
				<path id="path7319_4_" fill="#C1DAF2" stroke="#288ECD" d="M379.622,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C378.577,208.997,379.622,210.042,379.622,211.33z"/>
				<path id="path7321_4_" fill="none" stroke="#288ECD" d="M377.29,213.664v16.332"/>
			</g>
			<g id="g7323_4_">
				<path id="path7325_4_" fill="#C1DAF2" stroke="#288ECD" d="M406.375,211.33c0,1.289-1.045,2.334-2.333,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C405.33,208.997,406.375,210.042,406.375,211.33z"/>
				<path id="path7327_4_" fill="none" stroke="#288ECD" d="M404.042,213.664v16.332"/>
			</g>
			<g id="g7329_4_">
				<path id="path7331_4_" fill="#C1DAF2" stroke="#288ECD" d="M401.023,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.288,0-2.334-1.045-2.334-2.334c0-1.287,1.046-2.332,2.334-2.332C399.978,208.997,401.023,210.042,401.023,211.33z"/>
				<path id="path7333_4_" fill="none" stroke="#288ECD" d="M398.691,213.664v16.332"/>
			</g>
			<g id="g7335_4_">
				<path id="path7337_4_" fill="#C1DAF2" stroke="#288ECD" d="M395.673,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C394.628,208.997,395.673,210.042,395.673,211.33z"/>
				<path id="path7339_4_" fill="none" stroke="#288ECD" d="M393.341,213.664v16.332"/>
			</g>
		</g>
		<g id="g7341_4_">
			<g id="g7343_4_">
				<path id="path7345_4_" fill="#C1DAF2" stroke="#288ECD" d="M355.651,234.231c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C354.605,236.565,355.651,235.52,355.651,234.231z"/>
				<path id="path7347_4_" fill="none" stroke="#288ECD" d="M353.318,231.899v-16.335"/>
			</g>
			<g id="g7349_4_">
				<path id="path7351_4_" fill="#C1DAF2" stroke="#288ECD" d="M350.302,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S350.302,235.52,350.302,234.231z"/>
				<path id="path7353_4_" fill="none" stroke="#288ECD" d="M347.968,231.899v-16.335"/>
			</g>
			<g id="g7355_4_">
				<path id="path7357_4_" fill="#C1DAF2" stroke="#288ECD" d="M344.95,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S344.95,235.52,344.95,234.231z"/>
				<path id="path7359_4_" fill="none" stroke="#288ECD" d="M342.617,231.899v-16.335"/>
			</g>
			<g id="g7361_4_">
				<path id="path7363_4_" fill="#C1DAF2" stroke="#288ECD" d="M371.703,234.231c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C370.658,236.565,371.703,235.52,371.703,234.231z"/>
				<path id="path7365_4_" fill="none" stroke="#288ECD" d="M369.37,231.899v-16.335"/>
			</g>
			<g id="g7367_4_">
				<path id="path7369_4_" fill="#C1DAF2" stroke="#288ECD" d="M366.352,234.231c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C365.307,236.565,366.352,235.52,366.352,234.231z"/>
				<path id="path7371_4_" fill="none" stroke="#288ECD" d="M364.019,231.899v-16.335"/>
			</g>
			<g id="g7373_4_">
				<path id="path7375_4_" fill="#C1DAF2" stroke="#288ECD" d="M361.003,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C359.958,236.565,361.003,235.52,361.003,234.231z"/>
				<path id="path7377_4_" fill="none" stroke="#288ECD" d="M358.669,231.899v-16.335"/>
			</g>
			<g id="g7379_4_">
				<path id="path7381_4_" fill="#C1DAF2" stroke="#288ECD" d="M358.326,211.33c0,1.289-1.045,2.334-2.333,2.334
					c-1.287,0-2.333-1.045-2.333-2.334c0-1.287,1.046-2.332,2.333-2.332C357.281,208.997,358.326,210.042,358.326,211.33z"/>
				<path id="path7383_4_" fill="none" stroke="#288ECD" d="M355.993,213.664v16.332"/>
			</g>
			<g id="g7385_4_">
				<path id="path7387_4_" fill="#C1DAF2" stroke="#288ECD" d="M352.976,211.33c0,1.289-1.046,2.334-2.333,2.334
					c-1.288,0-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332C351.93,208.997,352.976,210.042,352.976,211.33z"/>
				<path id="path7389_4_" fill="none" stroke="#288ECD" d="M350.643,213.664v16.332"/>
			</g>
			<g id="g7391_4_">
				<path id="path7393_4_" fill="#C1DAF2" stroke="#288ECD" d="M347.626,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C346.581,208.997,347.626,210.042,347.626,211.33z"/>
				<path id="path7395_4_" fill="none" stroke="#288ECD" d="M345.294,213.664v16.332"/>
			</g>
			<g id="g7397_4_">
				<path id="path7399_4_" fill="#C1DAF2" stroke="#288ECD" d="M374.378,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C373.333,208.997,374.378,210.042,374.378,211.33z"/>
				<path id="path7401_4_" fill="none" stroke="#288ECD" d="M372.046,213.664v16.332"/>
			</g>
			<g id="g7403_4_">
				<path id="path7405_4_" fill="#C1DAF2" stroke="#288ECD" d="M369.027,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S369.027,210.042,369.027,211.33z"/>
				<path id="path7407_4_" fill="none" stroke="#288ECD" d="M366.694,213.664v16.332"/>
			</g>
			<g id="g7409_4_">
				<path id="path7411_4_" fill="#C1DAF2" stroke="#288ECD" d="M363.677,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C362.632,208.997,363.677,210.042,363.677,211.33z"/>
				<path id="path7413_4_" fill="none" stroke="#288ECD" d="M361.345,213.664v16.332"/>
			</g>
		</g>
		<g id="g7415_4_">
			<g id="g7417_4_">
				<path id="path7419_4_" fill="#C1DAF2" stroke="#288ECD" d="M323.654,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S323.654,235.52,323.654,234.231z"/>
				<path id="path7421_4_" fill="none" stroke="#288ECD" d="M321.321,231.899v-16.335"/>
			</g>
			<g id="g7423_4_">
				<path id="path7425_4_" fill="#C1DAF2" stroke="#288ECD" d="M318.304,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S318.304,235.52,318.304,234.231z"/>
				<path id="path7427_4_" fill="none" stroke="#288ECD" d="M315.971,231.899v-16.335"/>
			</g>
			<g id="g7429_4_">
				<path id="path7431_4_" fill="#C1DAF2" stroke="#288ECD" d="M312.955,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C311.909,236.565,312.955,235.52,312.955,234.231z"/>
				<path id="path7433_4_" fill="none" stroke="#288ECD" d="M310.622,231.899v-16.335"/>
			</g>
			<g id="g7435_4_">
				<path id="path7437_4_" fill="#C1DAF2" stroke="#288ECD" d="M339.706,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C338.661,236.565,339.706,235.52,339.706,234.231z"/>
				<path id="path7439_4_" fill="none" stroke="#288ECD" d="M337.374,231.899v-16.335"/>
			</g>
			<g id="g7441_4_">
				<path id="path7443_4_" fill="#C1DAF2" stroke="#288ECD" d="M334.357,234.231c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C333.311,236.565,334.357,235.52,334.357,234.231z"/>
				<path id="path7445_4_" fill="none" stroke="#288ECD" d="M332.023,231.899v-16.335"/>
			</g>
			<g id="g7447_4_">
				<path id="path7449_4_" fill="#C1DAF2" stroke="#288ECD" d="M329.005,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S329.005,235.52,329.005,234.231z"/>
				<path id="path7451_4_" fill="none" stroke="#288ECD" d="M326.672,231.899v-16.335"/>
			</g>
			<g id="g7453_4_">
				<path id="path7455_4_" fill="#C1DAF2" stroke="#288ECD" d="M326.331,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332C325.285,208.997,326.331,210.042,326.331,211.33z"/>
				<path id="path7457_4_" fill="none" stroke="#288ECD" d="M323.998,213.664v16.332"/>
			</g>
			<g id="g7459_4_">
				<path id="path7461_4_" fill="#C1DAF2" stroke="#288ECD" d="M320.979,211.33c0,1.289-1.045,2.334-2.333,2.334
					c-1.287,0-2.333-1.045-2.333-2.334c0-1.287,1.046-2.332,2.333-2.332C319.934,208.997,320.979,210.042,320.979,211.33z"/>
				<path id="path7463_4_" fill="none" stroke="#288ECD" d="M318.646,213.664v16.332"/>
			</g>
			<g id="g7465_4_">
				<path id="path7467_4_" fill="#C1DAF2" stroke="#288ECD" d="M315.629,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S315.629,210.042,315.629,211.33z"/>
				<path id="path7469_4_" fill="none" stroke="#288ECD" d="M313.296,213.664v16.332"/>
			</g>
			<g id="g7471_4_">
				<path id="path7473_4_" fill="#C1DAF2" stroke="#288ECD" d="M342.382,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C341.337,208.997,342.382,210.042,342.382,211.33z"/>
				<path id="path7475_4_" fill="none" stroke="#288ECD" d="M340.048,213.664v16.332"/>
			</g>
			<g id="g7477_4_">
				<path id="path7479_4_" fill="#C1DAF2" stroke="#288ECD" d="M337.031,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S337.031,210.042,337.031,211.33z"/>
				<path id="path7481_4_" fill="none" stroke="#288ECD" d="M334.698,213.664v16.332"/>
			</g>
			<g id="g7483_4_">
				<path id="path7485_4_" fill="#C1DAF2" stroke="#288ECD" d="M331.68,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S331.68,210.042,331.68,211.33z"/>
				<path id="path7487_4_" fill="none" stroke="#288ECD" d="M329.346,213.664v16.332"/>
			</g>
		</g>
	</g>
	<g id="g59398_3_" transform="translate(21.16987,-31.23187)">
		<g id="g7045_3_">
			<g id="g7047_3_">
				<path id="path7049_3_" fill="#C1DAF2" stroke="#288ECD" d="M675.38,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C674.335,236.565,675.38,235.52,675.38,234.231z"/>
				<path id="path7051_3_" fill="none" stroke="#288ECD" d="M673.048,231.899v-16.335"/>
			</g>
			<g id="g7053_3_">
				<path id="path7055_3_" fill="#C1DAF2" stroke="#288ECD" d="M670.03,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C668.985,236.565,670.03,235.52,670.03,234.231z"/>
				<path id="path7057_3_" fill="none" stroke="#288ECD" d="M667.698,231.899v-16.335"/>
			</g>
			<g id="g7059_3_">
				<path id="path7061_3_" fill="#C1DAF2" stroke="#288ECD" d="M664.68,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C663.636,236.565,664.68,235.52,664.68,234.231z"/>
				<path id="path7063_3_" fill="none" stroke="#288ECD" d="M662.346,231.899v-16.335"/>
			</g>
			<g id="g7065_3_">
				<path id="path7067_3_" fill="#C1DAF2" stroke="#288ECD" d="M691.432,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C690.388,236.565,691.432,235.52,691.432,234.231z"/>
				<path id="path7069_3_" fill="none" stroke="#288ECD" d="M689.098,231.899v-16.335"/>
			</g>
			<g id="g7071_3_">
				<path id="path7073_3_" fill="#C1DAF2" stroke="#288ECD" d="M686.081,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C685.036,236.565,686.081,235.52,686.081,234.231z"/>
				<path id="path7075_3_" fill="none" stroke="#288ECD" d="M683.749,231.899v-16.335"/>
			</g>
			<g id="g7077_3_">
				<path id="path7079_3_" fill="#C1DAF2" stroke="#288ECD" d="M680.732,234.231c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C679.686,236.565,680.732,235.52,680.732,234.231z"/>
				<path id="path7081_3_" fill="none" stroke="#288ECD" d="M678.398,231.899v-16.335"/>
			</g>
			<g id="g7083_3_">
				<path id="path7085_3_" fill="#C1DAF2" stroke="#288ECD" d="M678.055,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C677.011,208.997,678.055,210.042,678.055,211.33z"/>
				<path id="path7087_3_" fill="none" stroke="#288ECD" d="M675.723,213.664v16.332"/>
			</g>
			<g id="g7089_3_">
				<path id="path7091_3_" fill="#C1DAF2" stroke="#288ECD" d="M672.706,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C671.661,208.997,672.706,210.042,672.706,211.33z"/>
				<path id="path7093_3_" fill="none" stroke="#288ECD" d="M670.372,213.664v16.332"/>
			</g>
			<g id="g7095_3_">
				<path id="path7097_3_" fill="#C1DAF2" stroke="#288ECD" d="M667.354,211.33c0,1.289-1.045,2.334-2.331,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C666.309,208.997,667.354,210.042,667.354,211.33z"/>
				<path id="path7099_3_" fill="none" stroke="#288ECD" d="M665.023,213.664v16.332"/>
			</g>
			<g id="g7101_3_">
				<path id="path7103_3_" fill="#C1DAF2" stroke="#288ECD" d="M694.107,211.33c0,1.289-1.046,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C693.061,208.997,694.107,210.042,694.107,211.33z"/>
				<path id="path7105_3_" fill="none" stroke="#288ECD" d="M691.773,213.664v16.332"/>
			</g>
			<g id="g7107_3_">
				<path id="path7109_3_" fill="#C1DAF2" stroke="#288ECD" d="M688.757,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C687.712,208.997,688.757,210.042,688.757,211.33z"/>
				<path id="path7111_3_" fill="none" stroke="#288ECD" d="M686.425,213.664v16.332"/>
			</g>
			<g id="g7113_3_">
				<path id="path7115_3_" fill="#C1DAF2" stroke="#288ECD" d="M683.407,211.33c0,1.289-1.047,2.334-2.334,2.334
					s-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332S683.407,210.042,683.407,211.33z"/>
				<path id="path7117_3_" fill="none" stroke="#288ECD" d="M681.073,213.664v16.332"/>
			</g>
		</g>
		<g id="g7119_3_">
			<g id="g7121_3_">
				<path id="path7123_3_" fill="#C1DAF2" stroke="#288ECD" d="M643.384,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C642.339,236.565,643.384,235.52,643.384,234.231z"/>
				<path id="path7125_3_" fill="none" stroke="#288ECD" d="M641.052,231.899v-16.335"/>
			</g>
			<g id="g7127_3_">
				<path id="path7129_3_" fill="#C1DAF2" stroke="#288ECD" d="M638.034,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C636.989,236.565,638.034,235.52,638.034,234.231z"/>
				<path id="path7131_3_" fill="none" stroke="#288ECD" d="M635.702,231.899v-16.335"/>
			</g>
			<g id="g7133_3_">
				<path id="path7135_3_" fill="#C1DAF2" stroke="#288ECD" d="M632.682,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C631.638,236.565,632.682,235.52,632.682,234.231z"/>
				<path id="path7137_3_" fill="none" stroke="#288ECD" d="M630.35,231.899v-16.335"/>
			</g>
			<g id="g7139_3_">
				<path id="path7141_3_" fill="#C1DAF2" stroke="#288ECD" d="M659.434,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.288,0-2.334,1.045-2.334,2.332c0,1.289,1.046,2.334,2.334,2.334C658.389,236.565,659.434,235.52,659.434,234.231z"/>
				<path id="path7143_3_" fill="none" stroke="#288ECD" d="M657.102,231.899v-16.335"/>
			</g>
			<g id="g7145_3_">
				<path id="path7147_3_" fill="#C1DAF2" stroke="#288ECD" d="M654.085,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C653.04,236.565,654.085,235.52,654.085,234.231z"/>
				<path id="path7149_3_" fill="none" stroke="#288ECD" d="M651.753,231.899v-16.335"/>
			</g>
			<g id="g7151_3_">
				<path id="path7153_3_" fill="#C1DAF2" stroke="#288ECD" d="M648.732,234.231c0-1.287-1.045-2.332-2.331-2.332
					c-1.287,0-2.334,1.045-2.334,2.332c0,1.289,1.047,2.334,2.334,2.334C647.687,236.565,648.732,235.52,648.732,234.231z"/>
				<path id="path7155_3_" fill="none" stroke="#288ECD" d="M646.401,231.899v-16.335"/>
			</g>
			<g id="g7157_3_">
				<path id="path7159_3_" fill="#C1DAF2" stroke="#288ECD" d="M646.059,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.286,0-2.332-1.045-2.332-2.334c0-1.287,1.046-2.332,2.332-2.332C645.014,208.997,646.059,210.042,646.059,211.33z"/>
				<path id="path7161_3_" fill="none" stroke="#288ECD" d="M643.725,213.664v16.332"/>
			</g>
			<g id="g7163_3_">
				<path id="path7165_3_" fill="#C1DAF2" stroke="#288ECD" d="M640.708,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C639.663,208.997,640.708,210.042,640.708,211.33z"/>
				<path id="path7167_3_" fill="none" stroke="#288ECD" d="M638.376,213.664v16.332"/>
			</g>
			<g id="g7169_3_">
				<path id="path7171_3_" fill="#C1DAF2" stroke="#288ECD" d="M635.357,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.286,0-2.331-1.045-2.331-2.334c0-1.287,1.045-2.332,2.331-2.332C634.314,208.997,635.357,210.042,635.357,211.33z"/>
				<path id="path7173_3_" fill="none" stroke="#288ECD" d="M633.023,213.664v16.332"/>
			</g>
			<g id="g7175_3_">
				<path id="path7177_3_" fill="#C1DAF2" stroke="#288ECD" d="M662.11,211.33c0,1.289-1.046,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C661.064,208.997,662.11,210.042,662.11,211.33z"/>
				<path id="path7179_3_" fill="none" stroke="#288ECD" d="M659.778,213.664v16.332"/>
			</g>
			<g id="g7181_3_">
				<path id="path7183_3_" fill="#C1DAF2" stroke="#288ECD" d="M656.761,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C655.716,208.997,656.761,210.042,656.761,211.33z"/>
				<path id="path7185_3_" fill="none" stroke="#288ECD" d="M654.427,213.664v16.332"/>
			</g>
			<g id="g7187_3_">
				<path id="path7189_3_" fill="#C1DAF2" stroke="#288ECD" d="M651.411,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C650.366,208.997,651.411,210.042,651.411,211.33z"/>
				<path id="path7191_3_" fill="none" stroke="#288ECD" d="M649.077,213.664v16.332"/>
			</g>
		</g>
		<g id="g7193_3_">
			<g id="g7195_3_">
				<path id="path7197_3_" fill="#C1DAF2" stroke="#288ECD" d="M611.388,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C610.343,236.565,611.388,235.52,611.388,234.231z"/>
				<path id="path7199_3_" fill="none" stroke="#288ECD" d="M609.054,231.899v-16.335"/>
			</g>
			<g id="g7201_3_">
				<path id="path7203_3_" fill="#C1DAF2" stroke="#288ECD" d="M606.038,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C604.993,236.565,606.038,235.52,606.038,234.231z"/>
				<path id="path7205_3_" fill="none" stroke="#288ECD" d="M603.704,231.899v-16.335"/>
			</g>
			<g id="g7207_3_">
				<path id="path7209_3_" fill="#C1DAF2" stroke="#288ECD" d="M600.686,234.231c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C599.641,236.565,600.686,235.52,600.686,234.231z"/>
				<path id="path7211_3_" fill="none" stroke="#288ECD" d="M598.353,231.899v-16.335"/>
			</g>
			<g id="g7213_3_">
				<path id="path7215_3_" fill="#C1DAF2" stroke="#288ECD" d="M627.439,234.231c0-1.287-1.046-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C626.393,236.565,627.439,235.52,627.439,234.231z"/>
				<path id="path7217_3_" fill="none" stroke="#288ECD" d="M625.107,231.899v-16.335"/>
			</g>
			<g id="g7219_3_">
				<path id="path7221_3_" fill="#C1DAF2" stroke="#288ECD" d="M622.089,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C621.044,236.565,622.089,235.52,622.089,234.231z"/>
				<path id="path7223_3_" fill="none" stroke="#288ECD" d="M619.755,231.899v-16.335"/>
			</g>
			<g id="g7225_3_">
				<path id="path7227_3_" fill="#C1DAF2" stroke="#288ECD" d="M616.739,234.231c0-1.287-1.047-2.332-2.334-2.332
					s-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334S616.739,235.52,616.739,234.231z"/>
				<path id="path7229_3_" fill="none" stroke="#288ECD" d="M614.405,231.899v-16.335"/>
			</g>
			<g id="g7231_3_">
				<path id="path7233_3_" fill="#C1DAF2" stroke="#288ECD" d="M614.061,211.33c0,1.289-1.045,2.334-2.331,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C613.016,208.997,614.061,210.042,614.061,211.33z"/>
				<path id="path7235_3_" fill="none" stroke="#288ECD" d="M611.729,213.664v16.332"/>
			</g>
			<g id="g7237_3_">
				<path id="path7239_3_" fill="#C1DAF2" stroke="#288ECD" d="M608.712,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C607.667,208.997,608.712,210.042,608.712,211.33z"/>
				<path id="path7241_3_" fill="none" stroke="#288ECD" d="M606.38,213.664v16.332"/>
			</g>
			<g id="g7243_3_">
				<path id="path7245_3_" fill="#C1DAF2" stroke="#288ECD" d="M603.362,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S603.362,210.042,603.362,211.33z"/>
				<path id="path7247_3_" fill="none" stroke="#288ECD" d="M601.029,213.664v16.332"/>
			</g>
			<g id="g7249_3_">
				<path id="path7251_3_" fill="#C1DAF2" stroke="#288ECD" d="M630.114,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C629.069,208.997,630.114,210.042,630.114,211.33z"/>
				<path id="path7253_3_" fill="none" stroke="#288ECD" d="M627.782,213.664v16.332"/>
			</g>
			<g id="g7255_3_">
				<path id="path7257_3_" fill="#C1DAF2" stroke="#288ECD" d="M624.764,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C623.72,208.997,624.764,210.042,624.764,211.33z"/>
				<path id="path7259_3_" fill="none" stroke="#288ECD" d="M622.43,213.664v16.332"/>
			</g>
			<g id="g7261_3_">
				<path id="path7263_3_" fill="#C1DAF2" stroke="#288ECD" d="M619.413,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C618.368,208.997,619.413,210.042,619.413,211.33z"/>
				<path id="path7265_3_" fill="none" stroke="#288ECD" d="M617.081,213.664v16.332"/>
			</g>
		</g>
		<g id="g7267_3_">
			<g id="g7269_3_">
				<path id="path7271_3_" fill="#C1DAF2" stroke="#288ECD" d="M579.391,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S579.391,235.52,579.391,234.231z"/>
				<path id="path7273_3_" fill="none" stroke="#288ECD" d="M577.058,231.899v-16.335"/>
			</g>
			<g id="g7275_3_">
				<path id="path7277_3_" fill="#C1DAF2" stroke="#288ECD" d="M574.04,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C572.995,236.565,574.04,235.52,574.04,234.231z"/>
				<path id="path7279_3_" fill="none" stroke="#288ECD" d="M571.708,231.899v-16.335"/>
			</g>
			<g id="g7281_3_">
				<path id="path7283_3_" fill="#C1DAF2" stroke="#288ECD" d="M568.689,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.288,0-2.334,1.045-2.334,2.332c0,1.289,1.046,2.334,2.334,2.334C567.644,236.565,568.689,235.52,568.689,234.231z"/>
				<path id="path7285_3_" fill="none" stroke="#288ECD" d="M566.357,231.899v-16.335"/>
			</g>
			<g id="g7287_3_">
				<path id="path7289_3_" fill="#C1DAF2" stroke="#288ECD" d="M595.442,234.231c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C594.396,236.565,595.442,235.52,595.442,234.231z"/>
				<path id="path7291_3_" fill="none" stroke="#288ECD" d="M593.109,231.899v-16.335"/>
			</g>
			<g id="g7293_3_">
				<path id="path7295_3_" fill="#C1DAF2" stroke="#288ECD" d="M590.093,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C589.048,236.565,590.093,235.52,590.093,234.231z"/>
				<path id="path7297_3_" fill="none" stroke="#288ECD" d="M587.759,231.899v-16.335"/>
			</g>
			<g id="g7299_3_">
				<path id="path7301_3_" fill="#C1DAF2" stroke="#288ECD" d="M584.741,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C583.696,236.565,584.741,235.52,584.741,234.231z"/>
				<path id="path7303_3_" fill="none" stroke="#288ECD" d="M582.409,231.899v-16.335"/>
			</g>
			<g id="g7305_3_">
				<path id="path7307_3_" fill="#C1DAF2" stroke="#288ECD" d="M582.066,211.33c0,1.289-1.046,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C581.02,208.997,582.066,210.042,582.066,211.33z"/>
				<path id="path7309_3_" fill="none" stroke="#288ECD" d="M579.732,213.664v16.332"/>
			</g>
			<g id="g7311_3_">
				<path id="path7313_3_" fill="#C1DAF2" stroke="#288ECD" d="M576.716,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C575.671,208.997,576.716,210.042,576.716,211.33z"/>
				<path id="path7315_3_" fill="none" stroke="#288ECD" d="M574.382,213.664v16.332"/>
			</g>
			<g id="g7317_3_">
				<path id="path7319_3_" fill="#C1DAF2" stroke="#288ECD" d="M571.366,211.33c0,1.289-1.046,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C570.32,208.997,571.366,210.042,571.366,211.33z"/>
				<path id="path7321_3_" fill="none" stroke="#288ECD" d="M569.032,213.664v16.332"/>
			</g>
			<g id="g7323_3_">
				<path id="path7325_3_" fill="#C1DAF2" stroke="#288ECD" d="M598.118,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C597.073,208.997,598.118,210.042,598.118,211.33z"/>
				<path id="path7327_3_" fill="none" stroke="#288ECD" d="M595.786,213.664v16.332"/>
			</g>
			<g id="g7329_3_">
				<path id="path7331_3_" fill="#C1DAF2" stroke="#288ECD" d="M592.767,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S592.767,210.042,592.767,211.33z"/>
				<path id="path7333_3_" fill="none" stroke="#288ECD" d="M590.434,213.664v16.332"/>
			</g>
			<g id="g7335_3_">
				<path id="path7337_3_" fill="#C1DAF2" stroke="#288ECD" d="M587.417,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C586.372,208.997,587.417,210.042,587.417,211.33z"/>
				<path id="path7339_3_" fill="none" stroke="#288ECD" d="M585.083,213.664v16.332"/>
			</g>
		</g>
		<g id="g7341_3_">
			<g id="g7343_3_">
				<path id="path7345_3_" fill="#C1DAF2" stroke="#288ECD" d="M547.394,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S547.394,235.52,547.394,234.231z"/>
				<path id="path7347_3_" fill="none" stroke="#288ECD" d="M545.061,231.899v-16.335"/>
			</g>
			<g id="g7349_3_">
				<path id="path7351_3_" fill="#C1DAF2" stroke="#288ECD" d="M542.044,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C540.999,236.565,542.044,235.52,542.044,234.231z"/>
				<path id="path7353_3_" fill="none" stroke="#288ECD" d="M539.712,231.899v-16.335"/>
			</g>
			<g id="g7355_3_">
				<path id="path7357_3_" fill="#C1DAF2" stroke="#288ECD" d="M536.693,234.231c0-1.287-1.045-2.332-2.333-2.332
					c-1.287,0-2.333,1.045-2.333,2.332c0,1.289,1.046,2.334,2.333,2.334C535.648,236.565,536.693,235.52,536.693,234.231z"/>
				<path id="path7359_3_" fill="none" stroke="#288ECD" d="M534.36,231.899v-16.335"/>
			</g>
			<g id="g7361_3_">
				<path id="path7363_3_" fill="#C1DAF2" stroke="#288ECD" d="M563.446,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S563.446,235.52,563.446,234.231z"/>
				<path id="path7365_3_" fill="none" stroke="#288ECD" d="M561.113,231.899v-16.335"/>
			</g>
			<g id="g7367_3_">
				<path id="path7369_3_" fill="#C1DAF2" stroke="#288ECD" d="M558.096,234.231c0-1.287-1.046-2.332-2.333-2.332
					c-1.288,0-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334C557.05,236.565,558.096,235.52,558.096,234.231z"/>
				<path id="path7371_3_" fill="none" stroke="#288ECD" d="M555.763,231.899v-16.335"/>
			</g>
			<g id="g7373_3_">
				<path id="path7375_3_" fill="#C1DAF2" stroke="#288ECD" d="M552.745,234.231c0-1.287-1.045-2.332-2.332-2.332
					c-1.289,0-2.334,1.045-2.334,2.332c0,1.289,1.045,2.334,2.334,2.334C551.7,236.565,552.745,235.52,552.745,234.231z"/>
				<path id="path7377_3_" fill="none" stroke="#288ECD" d="M550.413,231.899v-16.335"/>
			</g>
			<g id="g7379_3_">
				<path id="path7381_3_" fill="#C1DAF2" stroke="#288ECD" d="M550.069,211.33c0,1.289-1.046,2.334-2.333,2.334
					c-1.288,0-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332C549.023,208.997,550.069,210.042,550.069,211.33z"/>
				<path id="path7383_3_" fill="none" stroke="#288ECD" d="M547.736,213.664v16.332"/>
			</g>
			<g id="g7385_3_">
				<path id="path7387_3_" fill="#C1DAF2" stroke="#288ECD" d="M544.72,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S544.72,210.042,544.72,211.33z"/>
				<path id="path7389_3_" fill="none" stroke="#288ECD" d="M542.387,213.664v16.332"/>
			</g>
			<g id="g7391_3_">
				<path id="path7393_3_" fill="#C1DAF2" stroke="#288ECD" d="M539.37,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C538.325,208.997,539.37,210.042,539.37,211.33z"/>
				<path id="path7395_3_" fill="none" stroke="#288ECD" d="M537.036,213.664v16.332"/>
			</g>
			<g id="g7397_3_">
				<path id="path7399_3_" fill="#C1DAF2" stroke="#288ECD" d="M566.122,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C565.077,208.997,566.122,210.042,566.122,211.33z"/>
				<path id="path7401_3_" fill="none" stroke="#288ECD" d="M563.788,213.664v16.332"/>
			</g>
			<g id="g7403_3_">
				<path id="path7405_3_" fill="#C1DAF2" stroke="#288ECD" d="M560.77,211.33c0,1.289-1.045,2.334-2.333,2.334
					c-1.287,0-2.333-1.045-2.333-2.334c0-1.287,1.046-2.332,2.333-2.332C559.725,208.997,560.77,210.042,560.77,211.33z"/>
				<path id="path7407_3_" fill="none" stroke="#288ECD" d="M558.437,213.664v16.332"/>
			</g>
			<g id="g7409_3_">
				<path id="path7411_3_" fill="#C1DAF2" stroke="#288ECD" d="M555.421,211.33c0,1.289-1.045,2.334-2.334,2.334
					c-1.287,0-2.332-1.045-2.332-2.334c0-1.287,1.045-2.332,2.332-2.332C554.376,208.997,555.421,210.042,555.421,211.33z"/>
				<path id="path7413_3_" fill="none" stroke="#288ECD" d="M553.087,213.664v16.332"/>
			</g>
		</g>
		<g id="g7415_3_">
			<g id="g7417_3_">
				<path id="path7419_3_" fill="#C1DAF2" stroke="#288ECD" d="M515.398,234.231c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C514.352,236.565,515.398,235.52,515.398,234.231z"/>
				<path id="path7421_3_" fill="none" stroke="#288ECD" d="M513.064,231.899v-16.335"/>
			</g>
			<g id="g7423_3_">
				<path id="path7425_3_" fill="#C1DAF2" stroke="#288ECD" d="M510.048,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C509.003,236.565,510.048,235.52,510.048,234.231z"/>
				<path id="path7427_3_" fill="none" stroke="#288ECD" d="M507.714,231.899v-16.335"/>
			</g>
			<g id="g7429_3_">
				<path id="path7431_3_" fill="#C1DAF2" stroke="#288ECD" d="M504.698,234.231c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C503.652,236.565,504.698,235.52,504.698,234.231z"/>
				<path id="path7433_3_" fill="none" stroke="#288ECD" d="M502.364,231.899v-16.335"/>
			</g>
			<g id="g7435_3_">
				<path id="path7437_3_" fill="#C1DAF2" stroke="#288ECD" d="M531.45,234.231c0-1.287-1.046-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C530.404,236.565,531.45,235.52,531.45,234.231z"/>
				<path id="path7439_3_" fill="none" stroke="#288ECD" d="M529.116,231.899v-16.335"/>
			</g>
			<g id="g7441_3_">
				<path id="path7443_3_" fill="#C1DAF2" stroke="#288ECD" d="M526.099,234.231c0-1.287-1.045-2.332-2.333-2.332
					s-2.333,1.045-2.333,2.332c0,1.289,1.045,2.334,2.333,2.334S526.099,235.52,526.099,234.231z"/>
				<path id="path7445_3_" fill="none" stroke="#288ECD" d="M523.766,231.899v-16.335"/>
			</g>
			<g id="g7447_3_">
				<path id="path7449_3_" fill="#C1DAF2" stroke="#288ECD" d="M520.749,234.231c0-1.287-1.045-2.332-2.334-2.332
					c-1.287,0-2.332,1.045-2.332,2.332c0,1.289,1.045,2.334,2.332,2.334C519.704,236.565,520.749,235.52,520.749,234.231z"/>
				<path id="path7451_3_" fill="none" stroke="#288ECD" d="M518.415,231.899v-16.335"/>
			</g>
			<g id="g7453_3_">
				<path id="path7455_3_" fill="#C1DAF2" stroke="#288ECD" d="M518.073,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C517.028,208.997,518.073,210.042,518.073,211.33z"/>
				<path id="path7457_3_" fill="none" stroke="#288ECD" d="M515.741,213.664v16.332"/>
			</g>
			<g id="g7459_3_">
				<path id="path7461_3_" fill="#C1DAF2" stroke="#288ECD" d="M512.722,211.33c0,1.289-1.045,2.334-2.333,2.334
					s-2.333-1.045-2.333-2.334c0-1.287,1.045-2.332,2.333-2.332S512.722,210.042,512.722,211.33z"/>
				<path id="path7463_3_" fill="none" stroke="#288ECD" d="M510.389,213.664v16.332"/>
			</g>
			<g id="g7465_3_">
				<path id="path7467_3_" fill="#C1DAF2" stroke="#288ECD" d="M507.372,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C506.327,208.997,507.372,210.042,507.372,211.33z"/>
				<path id="path7469_3_" fill="none" stroke="#288ECD" d="M505.04,213.664v16.332"/>
			</g>
			<g id="g7471_3_">
				<path id="path7473_3_" fill="#C1DAF2" stroke="#288ECD" d="M534.124,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.289,0-2.334-1.045-2.334-2.334c0-1.287,1.045-2.332,2.334-2.332C533.079,208.997,534.124,210.042,534.124,211.33z"/>
				<path id="path7475_3_" fill="none" stroke="#288ECD" d="M531.792,213.664v16.332"/>
			</g>
			<g id="g7477_3_">
				<path id="path7479_3_" fill="#C1DAF2" stroke="#288ECD" d="M528.773,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.288,0-2.334-1.045-2.334-2.334c0-1.287,1.046-2.332,2.334-2.332C527.728,208.997,528.773,210.042,528.773,211.33z"/>
				<path id="path7481_3_" fill="none" stroke="#288ECD" d="M526.441,213.664v16.332"/>
			</g>
			<g id="g7483_3_">
				<path id="path7485_3_" fill="#C1DAF2" stroke="#288ECD" d="M523.423,211.33c0,1.289-1.045,2.334-2.332,2.334
					c-1.288,0-2.334-1.045-2.334-2.334c0-1.287,1.046-2.332,2.334-2.332C522.378,208.997,523.423,210.042,523.423,211.33z"/>
				<path id="path7487_3_" fill="none" stroke="#288ECD" d="M521.091,213.664v16.332"/>
			</g>
		</g>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="634.208" y1="255.213" x2="634.208" y2="149.933"/>
		<polygon points="630.505,252.405 634.208,253.979 637.912,252.405 634.208,261.184 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="488.178" y1="149.933" x2="488.178" y2="250.912"/>
		<polygon points="491.882,152.741 488.178,151.168 484.474,152.741 488.178,143.963 		"/>
	</g>
</g>
<g id="J_F1">
	
		<radialGradient id="J_F1_path1_1_" cx="-23.7698" cy="252.2998" r="30.335" gradientTransform="matrix(0 -1 -1 0 886.5081 173.7791)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="J_F1_path1" fill="url(#J_F1_path1_1_)" stroke="#000000" d="M634.209,167.214c16.752,0,30.334,13.586,30.334,30.335
		c0,16.758-13.582,30.335-30.334,30.335c-16.756,0-30.336-13.577-30.336-30.335C603.875,180.8,617.454,167.214,634.209,167.214z"/>
	<g>
		<path d="M625.675,190.99h4.354v0.875h-3.298v2.687h3.046v0.863h-3.046v3.658h-1.057V190.99z"/>
		<path d="M632.603,198.294h-0.017l-0.95,0.513l-0.144-0.562l1.193-0.639h0.632v5.465h-0.716L632.603,198.294L632.603,198.294z"/>
		<path d="M635.828,190.99h4.354v0.875h-3.298v2.687h3.046v0.863h-3.046v3.658h-1.056V190.99z"/>
		<path d="M644.791,200.277c0,1.858-0.697,2.885-1.899,2.885c-1.067,0-1.8-1-1.815-2.809c0-1.84,0.799-2.842,1.908-2.842
			C644.127,197.512,644.791,198.538,644.791,200.277z M641.823,200.361c0,1.422,0.438,2.229,1.109,2.229
			c0.748,0,1.109-0.883,1.109-2.279c0-1.345-0.336-2.228-1.109-2.228C642.294,198.083,641.823,198.874,641.823,200.361z"/>
	</g>
</g>
<g id="J_C4">
	
		<radialGradient id="J_C4_path1_1" cx="-23.7698" cy="398.3291" r="30.335" gradientTransform="matrix(0 -1 -1 0 886.5081 173.7791)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="J_C4_path1" fill="url(#J_C4_path1_1)" stroke="#000000" d="M488.179,167.214c16.752,0,30.334,13.586,30.334,30.335
		c0,16.758-13.582,30.335-30.334,30.335c-16.756,0-30.336-13.577-30.336-30.335C457.845,180.8,471.425,167.214,488.179,167.214z"/>
	<g>
		<path d="M488.17,200.818c-0.372,0.192-1.151,0.385-2.135,0.385c-2.279,0-3.982-1.439-3.982-4.102c0-2.543,1.715-4.246,4.223-4.246
			c0.994,0,1.644,0.215,1.919,0.359l-0.265,0.852c-0.384-0.191-0.946-0.336-1.619-0.336c-1.895,0-3.153,1.211-3.153,3.334
			c0,1.992,1.14,3.25,3.095,3.25c0.647,0,1.295-0.131,1.715-0.336L488.17,200.818z"/>
		<path d="M492.383,201.07v-2.135h-3.622v-0.684l3.479-4.979h1.14v4.847h1.091v0.815h-1.091v2.135H492.383L492.383,201.07z
			 M492.383,198.121v-2.604c0-0.408,0.012-0.815,0.036-1.224h-0.036c-0.239,0.456-0.432,0.792-0.646,1.151l-1.907,2.649v0.024h2.554
			V198.121z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="207.765" y1="149.933" x2="207.765" y2="250.912"/>
		<polygon points="211.468,152.742 207.765,151.169 204.061,152.742 207.765,143.964 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="357.175" y1="149.933" x2="357.175" y2="250.912"/>
		<polygon points="360.878,152.742 357.175,151.169 353.47,152.742 357.175,143.964 		"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_2_" cx="547.8669" cy="487.4072" r="16.1858" gradientTransform="matrix(1.5933 0 0 -0.6358 -193.3353 565.1067)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609_1_" fill="url(#path16609_2_)" stroke="#000000" d="M704.896,255.212c0,5.786-11.339,10.478-25.316,10.478
		c-13.98,0-25.314-4.688-25.314-10.478s11.334-10.476,25.314-10.476C693.558,244.736,704.896,249.425,704.896,255.212z"/>
	<g>
		<path d="M670.939,256.193l-0.841,2.541h-1.077l2.758-8.082h1.248l2.758,8.082h-1.115l-0.863-2.541H670.939z M673.601,255.377
			l-0.803-2.327c-0.18-0.526-0.299-1.007-0.42-1.475h-0.022c-0.121,0.468-0.24,0.972-0.408,1.463l-0.791,2.338L673.601,255.377
			L673.601,255.377z"/>
		<path d="M677.588,251.539h-2.459v-0.887h5.984v0.887h-2.472v7.195h-1.055L677.588,251.539L677.588,251.539z"/>
		<path d="M682.015,250.748c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.434,0.385,0.709,0.971,0.709,1.691c0,0.73-0.217,1.307-0.625,1.727c-0.562,0.588-1.451,0.889-2.469,0.889
			c-0.312,0-0.603-0.012-0.841-0.072v3.238h-1.045V250.748z M683.06,254.646c0.228,0.06,0.517,0.084,0.863,0.084
			c1.26,0,2.027-0.625,2.027-1.715c0-1.08-0.769-1.596-1.908-1.596c-0.455,0-0.803,0.036-0.982,0.084V254.646L683.06,254.646z"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M658.481,242.027c-23.562-24.061-41.093-15.102-57.144,7.898"/>
		<polygon points="653.87,242.611 657.617,241.145 659.163,237.43 662.658,246.292 		"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_7_" cx="496.3787" cy="487.4072" r="16.1858" gradientTransform="matrix(1.5933 0 0 -0.6358 -193.3353 565.1067)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="path16609" fill="url(#path16609_7_)" stroke="#000000" d="M622.859,255.212c0,5.786-11.338,10.478-25.316,10.478
		c-13.979,0-25.314-4.688-25.314-10.478s11.334-10.476,25.314-10.476C611.521,244.736,622.859,249.425,622.859,255.212z"/>
	<g>
		<path d="M588.902,256.193l-0.841,2.541h-1.077l2.758-8.082h1.248l2.758,8.082h-1.115l-0.863-2.541H588.902z M591.564,255.377
			l-0.804-2.327c-0.18-0.526-0.299-1.007-0.42-1.475h-0.022c-0.121,0.468-0.24,0.972-0.408,1.463l-0.791,2.338L591.564,255.377
			L591.564,255.377z"/>
		<path d="M594.939,250.771c0.635-0.108,1.391-0.181,2.219-0.181c1.5,0,2.565,0.36,3.272,1.007c0.732,0.66,1.152,1.596,1.152,2.902
			c0,1.318-0.42,2.398-1.164,3.143c-0.768,0.756-2.014,1.164-3.586,1.164c-0.756,0-1.367-0.037-1.896-0.097v-7.938H594.939z
			 M595.982,257.92c0.264,0.036,0.647,0.048,1.057,0.048c2.242,0,3.441-1.247,3.441-3.43c0.012-1.907-1.068-3.118-3.273-3.118
			c-0.541,0-0.949,0.048-1.225,0.107V257.92z"/>
		<path d="M602.931,250.748c0.504-0.084,1.164-0.156,2.002-0.156c1.033,0,1.787,0.24,2.269,0.672
			c0.432,0.385,0.707,0.971,0.707,1.691c0,0.73-0.215,1.307-0.623,1.727c-0.564,0.588-1.451,0.889-2.471,0.889
			c-0.312,0-0.601-0.012-0.841-0.072v3.238h-1.043V250.748L602.931,250.748z M603.974,254.646c0.229,0.06,0.517,0.084,0.863,0.084
			c1.26,0,2.027-0.625,2.027-1.715c0-1.08-0.769-1.596-1.906-1.596c-0.457,0-0.805,0.036-0.984,0.084V254.646L603.974,254.646z"/>
	</g>
</g>
<g id="H_x">
	
		<radialGradient id="H_x_path1_1_" cx="1252.4324" cy="499.2197" r="30.1885" gradientTransform="matrix(0.3664 0 0 -0.3664 174.8402 459.6649)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="H_x_path1" fill="url(#H_x_path1_1_)" stroke="#000000" stroke-width="0.9921" d="M644.792,276.752
		c0,6.107-4.951,11.061-11.059,11.061c-6.11,0-11.062-4.953-11.062-11.061s4.951-11.062,11.062-11.062
		C639.841,265.689,644.792,270.645,644.792,276.752z"/>
	<g>
		<path fill="#000100" d="M629.681,273.921v3.072h3.552v-3.072h0.959v7.343h-0.959v-3.441h-3.552v3.441h-0.959v-7.343H629.681z"/>
		<path fill="#000100" d="M637.529,273.576v1.793h1.725v0.457h-1.725v1.809h-0.488v-1.809h-1.725v-0.457h1.725v-1.793H637.529z"/>
	</g>
</g>
<g>
	<path id="path19818" fill="#F5EA14" stroke="#000000" d="M602.224,292.664c0,2.682-2.098,4.854-4.681,4.854
		c-2.586,0-4.68-2.172-4.68-4.854c0-2.68,2.094-4.852,4.68-4.852C600.127,287.812,602.224,289.984,602.224,292.664z"/>
	<g enable-background="new    ">
		<path fill="#ED3C95" d="M596.09,289.718c0.321-0.062,0.742-0.11,1.279-0.11c0.658,0,1.141,0.158,1.447,0.443
			c0.282,0.254,0.459,0.643,0.459,1.119c0,0.482-0.138,0.864-0.405,1.143c-0.354,0.39-0.927,0.588-1.578,0.588
			c-0.199,0-0.383-0.008-0.536-0.049v2.144h-0.666V289.718L596.09,289.718z M596.756,292.289c0.146,0.04,0.337,0.056,0.552,0.056
			c0.812,0,1.294-0.411,1.294-1.135c0-0.714-0.481-1.055-1.218-1.055c-0.291,0-0.513,0.03-0.628,0.056V292.289z"/>
	</g>
</g>
<g>
	<path d="M597.926,274.371v2.818h2.71v0.72h-2.71v2.842h-0.768v-2.842h-2.711v-0.72h2.711v-2.818H597.926z"/>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M236.336,242.027c-23.562-24.061-41.092-15.102-57.143,7.898"/>
		<polygon points="231.725,242.611 235.471,241.145 237.017,237.43 240.513,246.292 		"/>
	</g>
</g>
<g id="NADH_x">
	
		<radialGradient id="NADH_x_path1_1_" cx="230.0481" cy="487.4072" r="16.1858" gradientTransform="matrix(1.5933 0 0 -0.6358 -193.3353 565.1067)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="NADH_x_path1" fill="url(#NADH_x_path1_1_)" stroke="#000000" d="M198.515,255.212
		c0,5.786-11.339,10.478-25.316,10.478c-13.979,0-25.314-4.688-25.314-10.478s11.335-10.476,25.314-10.476
		C187.177,244.736,198.515,249.425,198.515,255.212z"/>
	<g>
		<path d="M158.583,258.736v-8.084h1.151l2.579,4.091c0.587,0.946,1.066,1.799,1.438,2.626l0.036-0.012
			c-0.096-1.08-0.12-2.062-0.12-3.322v-3.383h0.983v8.084h-1.055l-2.566-4.103c-0.564-0.899-1.104-1.823-1.5-2.698l-0.036,0.012
			c0.061,1.019,0.072,1.99,0.072,3.334v3.453h-0.983V258.736z"/>
		<path d="M167.786,256.193l-0.839,2.541h-1.08l2.758-8.082h1.248l2.758,8.082h-1.114l-0.863-2.541H167.786z M170.449,255.377
			l-0.804-2.327c-0.181-0.526-0.3-1.007-0.419-1.475h-0.024c-0.12,0.468-0.24,0.972-0.408,1.463l-0.792,2.338L170.449,255.377
			L170.449,255.377z"/>
		<path d="M173.823,250.771c0.636-0.107,1.391-0.18,2.219-0.18c1.499,0,2.566,0.36,3.274,1.008c0.731,0.659,1.15,1.594,1.15,2.901
			c0,1.319-0.419,2.399-1.162,3.144c-0.769,0.754-2.016,1.162-3.587,1.162c-0.756,0-1.367-0.035-1.895-0.096V250.771z
			 M174.866,257.92c0.264,0.036,0.647,0.048,1.055,0.048c2.243,0,3.442-1.247,3.442-3.43c0.012-1.907-1.067-3.118-3.274-3.118
			c-0.54,0-0.946,0.048-1.223,0.107V257.92L174.866,257.92z"/>
		<path d="M182.858,250.652v3.382h3.91v-3.382h1.056v8.082h-1.056v-3.789h-3.91v3.789h-1.057v-8.082H182.858z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_8_" cx="281.4695" cy="487.4072" r="16.1855" gradientTransform="matrix(1.5933 0 0 -0.6358 -193.3353 565.1067)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_3_" fill="url(#path16609_8_)" stroke="#000000" d="M280.444,255.212c0,5.786-11.338,10.478-25.316,10.478
		c-13.979,0-25.313-4.688-25.313-10.478s11.334-10.476,25.313-10.476C269.106,244.736,280.444,249.425,280.444,255.212z"/>
	<g>
		<path d="M241.921,260.732v-8.082h1.151l2.579,4.09c0.587,0.947,1.066,1.799,1.438,2.626l0.036-0.013
			c-0.096-1.078-0.12-2.062-0.12-3.321v-3.382h0.983v8.082h-1.055l-2.566-4.102c-0.563-0.9-1.104-1.822-1.5-2.699l-0.036,0.012
			c0.061,1.02,0.072,1.992,0.072,3.334v3.455H241.921L241.921,260.732z"/>
		<path d="M251.125,258.191l-0.839,2.541h-1.08l2.758-8.082h1.248l2.758,8.082h-1.114l-0.863-2.541H251.125z M253.787,257.375
			l-0.804-2.327c-0.18-0.526-0.3-1.007-0.419-1.475h-0.024c-0.12,0.468-0.24,0.972-0.408,1.463l-0.792,2.338L253.787,257.375
			L253.787,257.375z"/>
		<path d="M257.161,252.77c0.636-0.107,1.391-0.18,2.219-0.18c1.499,0,2.566,0.36,3.274,1.008c0.731,0.659,1.151,1.594,1.151,2.901
			c0,1.319-0.42,2.399-1.163,3.144c-0.769,0.754-2.016,1.162-3.586,1.162c-0.757,0-1.368-0.035-1.896-0.096V252.77z
			 M258.205,259.918c0.264,0.036,0.647,0.048,1.055,0.048c2.243,0,3.442-1.247,3.442-3.43c0.012-1.907-1.067-3.118-3.274-3.118
			c-0.539,0-0.946,0.048-1.223,0.107V259.918z"/>
		<path d="M267.016,252.266v1.976h1.899v0.504h-1.899v1.993h-0.538v-1.993h-1.9v-0.504h1.9v-1.976H267.016z"/>
	</g>
</g>
<g id="Q">
	
		<radialGradient id="Q_path1_1_" cx="674.1599" cy="653.2842" r="30.189" gradientTransform="matrix(0.3664 0 0 -0.3664 174.8402 459.6649)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="Q_path1" fill="url(#Q_path1_1_)" stroke="#000000" stroke-width="0.9921" d="M432.913,220.302
		c0,6.107-4.951,11.062-11.06,11.062c-6.109,0-11.062-4.953-11.062-11.062s4.951-11.062,11.062-11.062
		C427.962,209.24,432.913,214.195,432.913,220.302z"/>
	<g>
		<path fill="#000100" d="M424.984,225.893c-0.992-0.261-1.961-0.556-2.812-0.85c-0.164-0.054-0.306-0.107-0.447-0.107
			c-1.754-0.065-3.235-1.353-3.235-3.717c0-2.353,1.428-3.867,3.41-3.867c2.006,0,3.302,1.547,3.302,3.715
			c0,1.886-0.872,3.084-2.092,3.521v0.043c0.729,0.187,1.523,0.36,2.146,0.47L424.984,225.893z M421.845,224.162
			c1.504,0,2.354-1.385,2.354-3.051c0-1.471-0.762-2.985-2.32-2.985c-1.602,0-2.386,1.481-2.386,3.072
			c0,1.558,0.85,2.964,2.343,2.964H421.845z"/>
	</g>
</g>
<g id="QH2">
	
		<radialGradient id="QH2_path1_1_" cx="301.0193" cy="653.2842" r="30.189" gradientTransform="matrix(0.3664 0 0 -0.3664 174.8402 459.6649)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="QH2_path1" fill="url(#QH2_path1_1_)" stroke="#000000" stroke-width="0.9921" d="M296.194,220.302
		c0,6.107-4.951,11.062-11.06,11.062c-6.109,0-11.062-4.953-11.062-11.062s4.951-11.062,11.062-11.062
		C291.243,209.24,296.194,214.195,296.194,220.302z"/>
	<g>
		<path fill="#000100" d="M283.174,225.707c-0.818-0.217-1.62-0.459-2.322-0.702c-0.136-0.046-0.252-0.091-0.369-0.091
			c-1.45-0.055-2.674-1.116-2.674-3.069c0-1.944,1.179-3.196,2.817-3.196c1.656,0,2.729,1.278,2.729,3.07
			c0,1.559-0.721,2.549-1.729,2.907v0.036c0.604,0.152,1.261,0.297,1.773,0.388L283.174,225.707z M280.582,224.275
			c1.242,0,1.944-1.145,1.944-2.521c0-1.216-0.63-2.467-1.917-2.467c-1.324,0-1.972,1.224-1.972,2.538
			c0,1.288,0.701,2.448,1.936,2.448h0.009V224.275z"/>
		<path fill="#000100" d="M285.153,218.748v2.538h2.935v-2.538h0.792v6.066h-0.792v-2.845h-2.935v2.845h-0.792v-6.066H285.153z"/>
		<path fill="#000100" d="M289.837,227.812v-0.34l0.436-0.424c1.046-0.994,1.524-1.523,1.524-2.143c0-0.416-0.194-0.801-0.807-0.801
			c-0.372,0-0.681,0.188-0.87,0.347l-0.177-0.392c0.277-0.231,0.687-0.416,1.16-0.416c0.876,0,1.248,0.605,1.248,1.191
			c0,0.756-0.549,1.367-1.412,2.199l-0.321,0.303v0.014h1.834v0.459h-2.615V227.812z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="266.513" y1="220.301" x2="157.489" y2="220.301"/>
		<polygon points="263.704,224.004 265.277,220.301 263.704,216.598 272.482,220.301 		"/>
	</g>
</g>
<g id="J_C1">
	
		<radialGradient id="J_C1_path1_1_" cx="-23.7698" cy="678.7422" r="30.335" gradientTransform="matrix(0 -1 -1 0 886.5081 173.7791)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="J_C1_path1" fill="url(#J_C1_path1_1_)" stroke="#000000" d="M207.765,167.214c16.752,0,30.334,13.586,30.334,30.335
		c0,16.758-13.582,30.335-30.334,30.335c-16.757,0-30.335-13.577-30.335-30.335C177.432,180.8,191.011,167.214,207.765,167.214z"/>
	<g>
		<path d="M207.755,200.818c-0.372,0.192-1.15,0.385-2.135,0.385c-2.279,0-3.981-1.439-3.981-4.102c0-2.543,1.715-4.246,4.222-4.246
			c0.996,0,1.643,0.215,1.919,0.359l-0.264,0.852c-0.385-0.191-0.948-0.336-1.619-0.336c-1.896,0-3.154,1.211-3.154,3.334
			c0,1.992,1.139,3.25,3.094,3.25c0.648,0,1.295-0.131,1.715-0.336L207.755,200.818z"/>
		<path d="M210.997,194.259h-0.023l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.795h-1.021V194.259z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="403.126" y1="220.301" x2="295.62" y2="220.301"/>
		<polygon points="400.317,224.004 401.89,220.301 400.317,216.598 409.095,220.301 		"/>
	</g>
</g>
<g id="J_C3">
	
		<radialGradient id="J_C3_path1_1" cx="-23.7698" cy="529.334" r="30.3345" gradientTransform="matrix(0 -1 -1 0 886.5081 173.7791)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="J_C3_path1" fill="url(#J_C3_path1_1)" stroke="#000000" d="M357.175,167.214c16.753,0,30.334,13.586,30.334,30.335
		c0,16.758-13.582,30.335-30.334,30.335c-16.756,0-30.335-13.577-30.335-30.335C326.842,180.8,340.421,167.214,357.175,167.214z"/>
	<g>
		<path d="M357.165,200.818c-0.372,0.192-1.151,0.385-2.135,0.385c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.543,1.715-4.246,4.222-4.246c0.996,0,1.644,0.215,1.92,0.359l-0.265,0.852c-0.384-0.191-0.948-0.336-1.619-0.336
			c-1.895,0-3.153,1.211-3.153,3.334c0,1.992,1.139,3.25,3.094,3.25c0.648,0,1.295-0.131,1.715-0.336L357.165,200.818z"/>
		<path d="M358.368,199.872c0.3,0.18,0.982,0.479,1.727,0.479c1.343,0,1.775-0.853,1.764-1.512
			c-0.013-1.091-0.996-1.559-2.016-1.559h-0.587v-0.792h0.587c0.769,0,1.739-0.396,1.739-1.319c0-0.624-0.396-1.175-1.367-1.175
			c-0.624,0-1.224,0.276-1.559,0.516l-0.288-0.768c0.42-0.3,1.211-0.601,2.051-0.601c1.535,0,2.231,0.912,2.231,1.859
			c0,0.816-0.492,1.5-1.439,1.848v0.023c0.959,0.18,1.727,0.898,1.739,1.99c0,1.248-0.983,2.34-2.842,2.34
			c-0.875,0-1.644-0.276-2.027-0.528L358.368,199.872z"/>
	</g>
</g>
<g>
	
		<radialGradient id="Q_path2_1_" cx="-50.0862" cy="653.2812" r="30.1875" gradientTransform="matrix(0.3664 0 0 -0.3664 174.8402 459.6649)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="Q_path2" fill="url(#Q_path2_1_)" stroke="#000000" stroke-width="0.9921" d="M167.549,220.303
		c0,6.107-4.95,11.062-11.059,11.062c-6.11,0-11.062-4.953-11.062-11.062c0-6.107,4.95-11.062,11.062-11.062
		C162.598,209.24,167.549,214.195,167.549,220.303z"/>
	<g>
		<path fill="#000100" d="M159.62,225.893c-0.991-0.261-1.961-0.556-2.811-0.85c-0.164-0.054-0.306-0.107-0.447-0.107
			c-1.754-0.065-3.236-1.353-3.236-3.717c0-2.353,1.427-3.867,3.41-3.867c2.005,0,3.301,1.547,3.301,3.715
			c0,1.886-0.872,3.084-2.092,3.521v0.043c0.73,0.187,1.525,0.36,2.146,0.47L159.62,225.893z M156.482,224.161
			c1.504,0,2.354-1.384,2.354-3.052c0-1.471-0.763-2.984-2.32-2.984c-1.602,0-2.387,1.48-2.387,3.072
			c0,1.558,0.851,2.964,2.343,2.964H156.482z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path11134_1_" cx="855.1814" cy="903.8691" r="30.1885" gradientTransform="matrix(0.3664 0 0 -0.3664 174.8402 459.6649)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path11134_5_" fill="url(#path11134_1_)" stroke="#000000" stroke-width="0.9921" d="M499.239,128.488
		c0,6.106-4.951,11.061-11.06,11.061c-6.109,0-11.062-4.953-11.062-11.061c0-6.108,4.951-11.062,11.062-11.062
		C494.288,117.426,499.239,122.381,499.239,128.488z"/>
	<g>
		<path fill="#000100" d="M484.128,125.658v3.072h3.552v-3.072h0.959V133h-0.959v-3.442h-3.552V133h-0.959v-7.343L484.128,125.658
			L484.128,125.658z"/>
		<path fill="#000100" d="M491.976,125.312v1.793h1.725v0.457h-1.725v1.809h-0.487v-1.809h-1.726v-0.457h1.726v-1.793H491.976z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path11134_2_" cx="497.6375" cy="903.8691" r="30.188" gradientTransform="matrix(0.3664 0 0 -0.3664 174.8402 459.6649)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path11134_6_" fill="url(#path11134_2_)" stroke="#000000" stroke-width="0.9921" d="M368.235,128.488
		c0,6.106-4.951,11.061-11.06,11.061c-6.109,0-11.062-4.953-11.062-11.061c0-6.108,4.951-11.062,11.062-11.062
		C363.284,117.426,368.235,122.381,368.235,128.488z"/>
	<g>
		<path fill="#000100" d="M353.125,125.658v3.072h3.552v-3.072h0.958V133h-0.958v-3.442h-3.552V133h-0.959v-7.343L353.125,125.658
			L353.125,125.658z"/>
		<path fill="#000100" d="M360.972,125.312v1.793h1.725v0.457h-1.725v1.809h-0.487v-1.809h-1.725v-0.457h1.725v-1.793H360.972z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path11134_3_" cx="89.8591" cy="903.8691" r="30.1885" gradientTransform="matrix(0.3664 0 0 -0.3664 174.8402 459.6649)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path11134_7_" fill="url(#path11134_3_)" stroke="#000000" stroke-width="0.9921" d="M218.825,128.488
		c0,6.106-4.951,11.061-11.059,11.061c-6.11,0-11.062-4.953-11.062-11.061c0-6.108,4.951-11.062,11.062-11.062
		C213.874,117.426,218.825,122.381,218.825,128.488z"/>
	<g>
		<path fill="#000100" d="M203.714,125.658v3.072h3.553v-3.072h0.958V133h-0.958v-3.442h-3.553V133h-0.959v-7.343L203.714,125.658
			L203.714,125.658z"/>
		<path fill="#000100" d="M211.562,125.312v1.793h1.724v0.457h-1.724v1.809h-0.488v-1.809h-1.724v-0.457h1.724v-1.793H211.562z"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M384.782,152.963c-23.562,24.061-41.092,15.102-57.144-7.899"/>
		<polygon points="385.462,157.561 383.917,153.846 380.17,152.378 388.958,148.698 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M545.278,152.529c-23.562,24.06-95.729,17.678-111.778-5.322"/>
		<polygon points="545.959,157.127 544.414,153.412 540.667,151.944 549.455,148.265 		"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_9_" cx="327.5906" cy="722.7393" r="16.186" gradientTransform="matrix(1.9987 0 0 -1.1557 -350.3091 969.7581)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_4_" fill="url(#path16609_9_)" stroke="#000000" d="M336.204,134.485c0,10.517-14.223,19.045-31.758,19.045
		c-17.538,0-31.756-8.525-31.756-19.045c0-10.521,14.218-19.041,31.756-19.041C321.981,115.446,336.204,123.966,336.204,134.485z"/>
	<g>
		<path d="M295.276,130.604c-0.276,0.132-0.887,0.336-1.667,0.336c-1.751,0-2.892-1.188-2.892-2.962
			c0-1.787,1.225-3.094,3.119-3.094c0.624,0,1.176,0.156,1.463,0.312l-0.239,0.803c-0.252-0.132-0.647-0.275-1.224-0.275
			c-1.332,0-2.051,0.995-2.051,2.194c0,1.343,0.864,2.171,2.016,2.171c0.6,0,0.995-0.144,1.295-0.276L295.276,130.604z"/>
		<path d="M297.114,125.004l1.259,3.43c0.144,0.384,0.288,0.839,0.384,1.187h0.024c0.107-0.348,0.228-0.792,0.372-1.211l1.15-3.406
			h1.115l-1.583,4.138c-0.756,1.991-1.271,2.998-1.99,3.634c-0.527,0.444-1.031,0.624-1.296,0.672l-0.264-0.875
			c0.264-0.084,0.612-0.252,0.924-0.516c0.288-0.228,0.636-0.635,0.887-1.175c0.048-0.108,0.084-0.192,0.084-0.251
			c0-0.06-0.023-0.144-0.084-0.276l-2.135-5.349h1.152V125.004z"/>
		<path d="M303.653,123.612v1.392h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
			l0.049,0.803c-0.204,0.072-0.528,0.144-0.937,0.144c-0.492,0-0.888-0.168-1.14-0.444c-0.288-0.324-0.408-0.839-0.408-1.523v-3.167
			h-0.899v-0.803h0.899v-1.08L303.653,123.612z"/>
		<path d="M312.027,130.557c-0.372,0.192-1.151,0.384-2.136,0.384c-2.278,0-3.981-1.439-3.981-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.996,0,1.644,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.948-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.295-0.132,1.715-0.336L312.027,130.557z"/>
		<path d="M293.417,136.885c-0.875,1.188-1.499,2.734-1.499,4.917c0,2.135,0.66,3.658,1.499,4.857h-0.814
			c-0.756-0.996-1.571-2.531-1.571-4.869c0.012-2.351,0.815-3.898,1.571-4.905H293.417z"/>
		<path d="M299.799,142.258c0,2.146-1.499,3.082-2.89,3.082c-1.559,0-2.783-1.151-2.783-2.986c0-1.931,1.284-3.07,2.878-3.07
			C298.672,139.284,299.799,140.495,299.799,142.258z M295.206,142.318c0,1.271,0.72,2.231,1.751,2.231
			c1.007,0,1.763-0.947,1.763-2.255c0-0.983-0.492-2.219-1.738-2.219C295.746,140.075,295.206,141.227,295.206,142.318z"/>
		<path d="M301.458,139.404l0.828,1.247c0.228,0.324,0.408,0.612,0.6,0.936h0.024c0.191-0.336,0.384-0.636,0.588-0.947l0.803-1.235
			h1.151l-1.979,2.806l2.027,2.999h-1.188l-0.863-1.307c-0.229-0.336-0.42-0.66-0.624-1.008h-0.024
			c-0.191,0.348-0.384,0.66-0.611,1.008l-0.84,1.307h-1.163l2.062-2.962l-1.967-2.842h1.176V139.404z"/>
		<path d="M307.697,137.772c0,0.36-0.252,0.648-0.671,0.648c-0.385,0-0.637-0.288-0.637-0.648s0.265-0.66,0.66-0.66
			C307.433,137.113,307.697,137.401,307.697,137.772z M306.522,145.208v-5.805h1.056v5.805H306.522z"/>
		<path d="M314.332,136.693v7.016c0,0.516,0.024,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036
			c-0.312,0.647-1.008,1.139-1.955,1.139c-1.403,0-2.495-1.187-2.495-2.95c-0.012-1.931,1.2-3.106,2.603-3.106
			c0.9,0,1.487,0.42,1.751,0.875h0.024v-3.466H314.332z M313.288,141.767c0-0.132-0.012-0.312-0.048-0.444
			c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.739,0.959-1.739,2.231c0,1.175,0.589,2.146,1.716,2.146
			c0.708,0,1.354-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V141.767L313.288,141.767z"/>
		<path d="M315.462,146.66c0.84-1.188,1.5-2.734,1.5-4.893c0-2.159-0.647-3.682-1.5-4.881h0.816c0.755,0.983,1.57,2.53,1.57,4.881
			c-0.012,2.351-0.814,3.886-1.57,4.893H315.462z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_10_" cx="461.5681" cy="722.7412" r="16.1863" gradientTransform="matrix(1.9987 0 0 -1.1557 -350.3091 969.7581)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_5_" fill="url(#path16609_10_)" stroke="#000000" d="M603.985,134.484c0,10.517-14.224,19.045-31.759,19.045
		c-17.537,0-31.757-8.525-31.757-19.045c0-10.521,14.22-19.041,31.757-19.041C589.762,115.445,603.985,123.965,603.985,134.484z"/>
	<g>
		<path d="M563.056,130.604c-0.274,0.132-0.887,0.336-1.666,0.336c-1.752,0-2.891-1.188-2.891-2.962
			c0-1.787,1.223-3.094,3.118-3.094c0.624,0,1.175,0.156,1.463,0.312l-0.239,0.803c-0.252-0.132-0.647-0.275-1.224-0.275
			c-1.331,0-2.052,0.995-2.052,2.194c0,1.343,0.863,2.171,2.016,2.171c0.6,0,0.996-0.144,1.295-0.276L563.056,130.604z"/>
		<path d="M564.894,125.003l1.261,3.43c0.145,0.384,0.288,0.839,0.384,1.187h0.023c0.107-0.348,0.229-0.792,0.371-1.211l1.152-3.406
			h1.115l-1.584,4.138c-0.756,1.991-1.271,2.998-1.99,3.634c-0.527,0.444-1.031,0.624-1.295,0.672l-0.265-0.875
			c0.265-0.084,0.611-0.252,0.924-0.516c0.288-0.228,0.636-0.635,0.888-1.175c0.047-0.108,0.084-0.192,0.084-0.251
			c0-0.06-0.023-0.144-0.084-0.276l-2.135-5.349h1.15V125.003z"/>
		<path d="M571.434,123.611v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.287,0,0.455-0.024,0.611-0.072
			l0.048,0.803c-0.204,0.072-0.527,0.144-0.936,0.144c-0.491,0-0.888-0.168-1.141-0.444c-0.286-0.324-0.407-0.839-0.407-1.523
			v-3.167h-0.898v-0.803h0.898v-1.08L571.434,123.611z"/>
		<path d="M579.808,130.556c-0.371,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.981-1.439-3.981-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.995,0,1.644,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.947-0.336-1.619-0.336
			c-1.896,0-3.154,1.211-3.154,3.334c0,1.991,1.139,3.25,3.094,3.25c0.648,0,1.296-0.132,1.717-0.336L579.808,130.556z"/>
		<path d="M561.198,136.884c-0.876,1.187-1.499,2.734-1.499,4.917c0,2.135,0.66,3.658,1.499,4.857h-0.815
			c-0.756-0.996-1.57-2.531-1.57-4.869c0.013-2.351,0.814-3.898,1.57-4.905H561.198L561.198,136.884z"/>
		<path d="M567.58,142.257c0,2.146-1.498,3.082-2.89,3.082c-1.561,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
			C566.453,139.283,567.58,140.494,567.58,142.257z M562.987,142.317c0,1.271,0.72,2.231,1.751,2.231
			c1.008,0,1.764-0.947,1.764-2.255c0-0.983-0.492-2.219-1.74-2.219C563.527,140.074,562.987,141.226,562.987,142.317z"/>
		<path d="M569.239,139.403l0.827,1.247c0.229,0.324,0.407,0.612,0.6,0.936h0.024c0.191-0.336,0.384-0.636,0.588-0.947l0.804-1.235
			h1.15l-1.979,2.806l2.027,2.999h-1.188l-0.862-1.307c-0.229-0.336-0.421-0.66-0.624-1.008h-0.024
			c-0.191,0.348-0.383,0.66-0.611,1.008l-0.84,1.307h-1.163l2.063-2.962l-1.968-2.842h1.177V139.403z"/>
		<path d="M575.478,137.771c0,0.36-0.252,0.648-0.672,0.648c-0.383,0-0.635-0.288-0.635-0.648s0.264-0.66,0.659-0.66
			C575.215,137.112,575.478,137.4,575.478,137.771z M574.302,145.208v-5.805h1.058v5.805H574.302z"/>
		<path d="M582.113,136.692v7.016c0,0.516,0.022,1.103,0.047,1.499h-0.937l-0.047-1.007h-0.037
			c-0.312,0.647-1.007,1.139-1.955,1.139c-1.401,0-2.493-1.187-2.493-2.95c-0.013-1.931,1.198-3.106,2.603-3.106
			c0.899,0,1.487,0.42,1.751,0.875h0.024v-3.466H582.113z M581.069,141.766c0-0.132-0.014-0.312-0.048-0.444
			c-0.156-0.66-0.732-1.211-1.523-1.211c-1.092,0-1.739,0.959-1.739,2.231c0,1.175,0.588,2.146,1.716,2.146
			c0.707,0,1.354-0.479,1.547-1.259c0.035-0.144,0.049-0.288,0.049-0.456L581.069,141.766L581.069,141.766z"/>
		<path d="M583.244,146.659c0.84-1.188,1.499-2.734,1.499-4.893c0-2.159-0.647-3.682-1.499-4.881h0.814
			c0.756,0.983,1.571,2.53,1.571,4.881c-0.012,2.351-0.815,3.886-1.571,4.893H583.244z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_11_" cx="381.1482" cy="722.7393" r="16.1863" gradientTransform="matrix(1.9987 0 0 -1.1557 -350.3091 969.7581)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_6_" fill="url(#path16609_11_)" stroke="#000000" d="M443.251,134.485c0,10.517-14.223,19.045-31.758,19.045
		c-17.538,0-31.757-8.525-31.757-19.045c0-10.521,14.219-19.041,31.757-19.041C429.028,115.446,443.251,123.966,443.251,134.485z"/>
	<g>
		<path d="M402.322,130.604c-0.275,0.132-0.888,0.336-1.666,0.336c-1.752,0-2.892-1.188-2.892-2.962
			c0-1.787,1.224-3.094,3.118-3.094c0.624,0,1.175,0.156,1.463,0.312l-0.238,0.803c-0.252-0.132-0.648-0.275-1.225-0.275
			c-1.331,0-2.052,0.995-2.052,2.194c0,1.343,0.864,2.171,2.016,2.171c0.601,0,0.996-0.144,1.295-0.276L402.322,130.604z"/>
		<path d="M404.16,125.003l1.26,3.43c0.146,0.384,0.288,0.839,0.384,1.187h0.024c0.106-0.348,0.228-0.792,0.371-1.211l1.151-3.406
			h1.115l-1.584,4.138c-0.756,1.991-1.271,2.998-1.99,3.634c-0.526,0.444-1.03,0.624-1.295,0.672l-0.265-0.875
			c0.265-0.084,0.612-0.252,0.924-0.516c0.288-0.228,0.636-0.635,0.888-1.175c0.048-0.108,0.084-0.192,0.084-0.251
			c0-0.06-0.023-0.144-0.084-0.276l-2.135-5.349h1.151V125.003z"/>
		<path d="M410.7,123.612v1.392h1.511v0.803H410.7v3.13c0,0.72,0.204,1.127,0.792,1.127c0.287,0,0.455-0.024,0.61-0.072l0.049,0.803
			c-0.204,0.072-0.528,0.144-0.937,0.144c-0.491,0-0.888-0.168-1.14-0.444c-0.287-0.324-0.408-0.839-0.408-1.523v-3.167h-0.898
			v-0.803h0.898v-1.08L410.7,123.612z"/>
		<path d="M419.074,130.556c-0.372,0.192-1.152,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102
			c0-2.542,1.715-4.246,4.222-4.246c0.995,0,1.645,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.947-0.336-1.619-0.336
			c-1.895,0-3.154,1.211-3.154,3.334c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.296-0.132,1.716-0.336L419.074,130.556z"/>
		<path d="M400.464,136.885c-0.876,1.188-1.499,2.734-1.499,4.917c0,2.135,0.66,3.658,1.499,4.857h-0.814
			c-0.757-0.996-1.571-2.531-1.571-4.869c0.013-2.351,0.814-3.898,1.571-4.905H400.464z"/>
		<path d="M401.594,141.214c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.265-0.78,0.912-1.271,1.619-1.271
			c0.107,0,0.191,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.742,0-1.271,0.552-1.415,1.343
			c-0.023,0.144-0.035,0.324-0.035,0.492v3.094h-1.056V141.214z"/>
		<path d="M405.984,142.498c0.023,1.427,0.924,2.015,1.99,2.015c0.756,0,1.225-0.132,1.606-0.3l0.192,0.756
			c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.855-1.187-2.855-2.938s1.032-3.118,2.724-3.118c1.907,0,2.398,1.655,2.398,2.723
			c0,0.216-0.013,0.372-0.036,0.492h-4.077V142.498z M409.079,141.742c0.012-0.659-0.276-1.703-1.464-1.703
			c-1.079,0-1.535,0.971-1.619,1.703H409.079z"/>
		<path d="M416.41,136.693v7.016c0,0.516,0.022,1.103,0.048,1.499h-0.936l-0.049-1.007h-0.036c-0.312,0.647-1.007,1.139-1.954,1.139
			c-1.403,0-2.495-1.187-2.495-2.95c-0.013-1.931,1.2-3.106,2.604-3.106c0.899,0,1.486,0.42,1.751,0.875h0.024v-3.466H416.41z
			 M415.367,141.766c0-0.132-0.014-0.312-0.049-0.444c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.738,0.959-1.738,2.231
			c0,1.175,0.588,2.146,1.715,2.146c0.707,0,1.355-0.479,1.548-1.259c0.036-0.144,0.049-0.288,0.049-0.456L415.367,141.766
			L415.367,141.766z"/>
		<path d="M417.541,146.659c0.84-1.188,1.5-2.734,1.5-4.893c0-2.159-0.648-3.682-1.5-4.881h0.815c0.756,0.983,1.57,2.53,1.57,4.881
			c-0.012,2.351-0.814,3.886-1.57,4.893H417.541z"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" d="M516.529,57.11c0,154.274-57.714,139.541-57.41-5.11"/>
		<polygon points="520.232,59.919 516.529,58.346 512.825,59.919 516.529,51.141 		"/>
	</g>
</g>
<g>
	<path d="M462.01,39.302c0,2.771-1.689,4.258-3.754,4.258c-2.146,0-3.634-1.667-3.634-4.114c0-2.566,1.583-4.246,3.742-4.246
		C460.584,35.201,462.01,36.892,462.01,39.302z M455.726,39.422c0,1.739,0.937,3.286,2.592,3.286c1.654,0,2.591-1.523,2.591-3.358
		c0-1.619-0.84-3.298-2.579-3.298S455.726,37.659,455.726,39.422z"/>
	<path d="M462.837,47.424V46.97l0.58-0.562c1.396-1.329,2.035-2.035,2.035-2.859c0-0.555-0.261-1.068-1.076-1.068
		c-0.496,0-0.908,0.252-1.16,0.462l-0.234-0.521c0.369-0.311,0.916-0.555,1.537-0.555c1.179,0,1.675,0.807,1.675,1.589
		c0,1.009-0.731,1.824-1.885,2.934l-0.429,0.404v0.017h2.446v0.614H462.837z"/>
</g>
<g>
	<path d="M512.113,35.345v3.382h3.91v-3.382h1.055v8.083h-1.055v-3.79h-3.91v3.79h-1.057v-8.083H512.113z"/>
	<path d="M518.36,47.425v-0.454l0.58-0.563c1.396-1.329,2.034-2.035,2.034-2.859c0-0.555-0.261-1.068-1.075-1.068
		c-0.496,0-0.908,0.252-1.16,0.462l-0.235-0.521c0.37-0.311,0.916-0.555,1.538-0.555c1.178,0,1.674,0.807,1.674,1.589
		c0,1.009-0.73,1.824-1.884,2.934l-0.429,0.404v0.017h2.445v0.614H518.36z"/>
	<path d="M530.11,39.303c0,2.771-1.69,4.258-3.755,4.258c-2.146,0-3.634-1.667-3.634-4.114c0-2.566,1.583-4.246,3.742-4.246
		C528.683,35.201,530.11,36.892,530.11,39.303z M523.826,39.423c0,1.739,0.936,3.286,2.591,3.286s2.591-1.523,2.591-3.358
		c0-1.619-0.84-3.298-2.579-3.298C524.69,36.053,523.826,37.66,523.826,39.423z"/>
</g>
<g>
	<path d="M15.042,227.812c-0.06-1.127-0.132-2.494-0.132-3.489h-0.023c-0.288,0.936-0.612,1.954-1.021,3.069l-1.427,3.922h-0.792
		l-1.319-3.85c-0.384-1.15-0.695-2.183-0.923-3.142H9.381c-0.023,1.007-0.084,2.351-0.155,3.573l-0.217,3.467H8.014l0.562-8.083
		h1.332l1.379,3.909c0.336,0.996,0.601,1.884,0.815,2.724h0.023c0.216-0.815,0.503-1.703,0.863-2.724l1.439-3.909h1.33l0.505,8.083
		h-1.032L15.042,227.812z"/>
	<path d="M19.161,223.927c0,0.36-0.252,0.648-0.671,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.264-0.659,0.66-0.659
		C18.897,223.268,19.161,223.557,19.161,223.927z M17.986,231.363v-5.805h1.056v5.805H17.986z"/>
	<path d="M22.065,224.167v1.392h1.511v0.803h-1.511v3.131c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.61-0.072
		l0.049,0.803c-0.204,0.072-0.528,0.145-0.937,0.145c-0.492,0-0.888-0.168-1.14-0.444c-0.288-0.323-0.408-0.839-0.408-1.522v-3.168
		h-0.899v-0.803h0.899v-1.08L22.065,224.167z"/>
	<path d="M29.946,228.413c0,2.146-1.499,3.082-2.89,3.082c-1.56,0-2.783-1.151-2.783-2.986c0-1.931,1.284-3.069,2.878-3.069
		C28.819,225.438,29.946,226.65,29.946,228.413z M25.353,228.473c0,1.271,0.72,2.231,1.751,2.231c1.007,0,1.763-0.947,1.763-2.255
		c0-0.983-0.492-2.219-1.739-2.219C25.893,226.23,25.353,227.381,25.353,228.473z"/>
	<path d="M35.419,231.159c-0.275,0.132-0.888,0.336-1.667,0.336c-1.751,0-2.891-1.188-2.891-2.962c0-1.787,1.224-3.094,3.119-3.094
		c0.624,0,1.175,0.155,1.463,0.312l-0.24,0.803c-0.252-0.132-0.646-0.274-1.223-0.274c-1.332,0-2.051,0.994-2.051,2.193
		c0,1.344,0.863,2.172,2.015,2.172c0.6,0,0.996-0.145,1.295-0.276L35.419,231.159z"/>
	<path d="M36.657,222.848h1.056v3.635h0.024c0.168-0.301,0.432-0.576,0.755-0.756c0.312-0.18,0.684-0.287,1.08-0.287
		c0.779,0,2.027,0.479,2.027,2.471v3.454h-1.057v-3.334c0-0.937-0.348-1.716-1.343-1.716c-0.684,0-1.211,0.48-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.503h-1.056V222.848z"/>
	<path d="M48.57,228.413c0,2.146-1.499,3.082-2.89,3.082c-1.56,0-2.783-1.151-2.783-2.986c0-1.931,1.284-3.069,2.878-3.069
		C47.443,225.438,48.57,226.65,48.57,228.413z M43.977,228.473c0,1.271,0.72,2.231,1.751,2.231c1.007,0,1.763-0.947,1.763-2.255
		c0-0.983-0.492-2.219-1.739-2.219C44.517,226.23,43.977,227.381,43.977,228.473z"/>
	<path d="M49.905,227.129c0-0.611-0.012-1.091-0.048-1.57h0.936l0.061,0.959h0.023c0.288-0.541,0.959-1.08,1.919-1.08
		c0.804,0,2.052,0.479,2.052,2.471v3.453h-1.057v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.223,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.489h-1.056V227.129z"/>
	<path d="M61.566,222.848v7.017c0,0.516,0.023,1.103,0.048,1.499h-0.936l-0.049-1.008h-0.035c-0.312,0.647-1.008,1.14-1.955,1.14
		c-1.403,0-2.495-1.188-2.495-2.95c-0.013-1.931,1.2-3.105,2.603-3.105c0.9,0,1.487,0.42,1.751,0.875h0.024v-3.467H61.566z
		 M60.523,227.921c0-0.132-0.012-0.312-0.048-0.444c-0.156-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.739,0.959-1.739,2.231
		c0,1.175,0.588,2.146,1.716,2.146c0.708,0,1.354-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V227.921z"/>
	<path d="M63.333,227.37c0-0.685-0.012-1.271-0.048-1.812h0.923l0.048,1.151h0.036c0.265-0.78,0.912-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.023v0.996c-0.108-0.023-0.216-0.023-0.359-0.023c-0.743,0-1.271,0.551-1.416,1.342
		c-0.023,0.145-0.035,0.324-0.035,0.492v3.095h-1.057L63.333,227.37L63.333,227.37z"/>
	<path d="M68.48,223.927c0,0.36-0.252,0.648-0.671,0.648c-0.385,0-0.637-0.288-0.637-0.648s0.265-0.659,0.66-0.659
		C68.217,223.268,68.48,223.557,68.48,223.927z M67.305,231.363v-5.805h1.056v5.805H67.305z"/>
	<path d="M74.19,229.973c0,0.502,0.023,0.994,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.774,0.863
		c-1.176,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.116,0.156-1.522,0.433l-0.24-0.709c0.479-0.299,1.187-0.504,1.919-0.504c1.774,0,2.207,1.211,2.207,2.363
		L74.19,229.973L74.19,229.973z M73.171,228.4c-1.15-0.023-2.458,0.181-2.458,1.308c0,0.696,0.456,1.008,0.983,1.008
		c0.768,0,1.259-0.479,1.427-0.972c0.036-0.12,0.048-0.24,0.048-0.336V228.4z"/>
	<path d="M75.897,222.848h1.056v8.516h-1.056V222.848z"/>
	<path d="M88.121,227.812c-0.06-1.127-0.132-2.494-0.132-3.489h-0.024c-0.288,0.936-0.611,1.954-1.02,3.069l-1.427,3.922h-0.792
		l-1.319-3.85c-0.384-1.15-0.695-2.183-0.923-3.142H82.46c-0.023,1.007-0.084,2.351-0.155,3.573l-0.217,3.467h-0.995l0.563-8.083
		h1.332l1.379,3.909c0.336,0.996,0.6,1.884,0.815,2.724h0.023c0.216-0.815,0.503-1.703,0.863-2.724l1.438-3.909h1.331l0.504,8.083
		h-1.031L88.121,227.812z"/>
	<path d="M95.07,229.973c0,0.502,0.024,0.994,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.323,0.456-0.946,0.863-1.774,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.116,0.156-1.522,0.433l-0.24-0.709c0.479-0.299,1.187-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363
		L95.07,229.973L95.07,229.973z M94.051,228.4c-1.15-0.023-2.458,0.181-2.458,1.308c0,0.696,0.456,1.008,0.983,1.008
		c0.769,0,1.259-0.479,1.427-0.972c0.036-0.12,0.048-0.24,0.048-0.336V228.4z"/>
	<path d="M98,224.167v1.392h1.512v0.803H98v3.131c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.612-0.072l0.048,0.803
		c-0.204,0.072-0.528,0.145-0.936,0.145c-0.492,0-0.889-0.168-1.141-0.444c-0.288-0.323-0.408-0.839-0.408-1.522v-3.168h-0.898
		v-0.803h0.898v-1.08L98,224.167z"/>
	<path d="M100.7,227.37c0-0.685-0.012-1.271-0.048-1.812h0.923l0.048,1.151h0.036c0.264-0.78,0.912-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.023v0.996c-0.108-0.023-0.216-0.023-0.359-0.023c-0.744,0-1.271,0.551-1.416,1.342
		c-0.023,0.145-0.036,0.324-0.036,0.492v3.095H100.7V227.37z"/>
	<path d="M105.848,223.927c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.659,0.66-0.659
		C105.584,223.268,105.848,223.557,105.848,223.927z M104.672,231.363v-5.805h1.057v5.805H104.672z"/>
	<path d="M107.972,225.559l0.827,1.248c0.229,0.323,0.408,0.611,0.601,0.936h0.023c0.192-0.336,0.385-0.637,0.589-0.947l0.803-1.234
		h1.15l-1.979,2.806l2.027,2.999h-1.188l-0.863-1.307c-0.228-0.336-0.42-0.66-0.624-1.009h-0.023
		c-0.192,0.349-0.384,0.66-0.612,1.009l-0.839,1.307H106.7l2.063-2.963l-1.968-2.842h1.177V225.559z"/>
</g>
<g>
	<path d="M9.273,127.642v8.083H8.218v-8.083H9.273L9.273,127.642z"/>
	<path d="M11.182,131.491c0-0.611-0.013-1.091-0.049-1.571h0.937l0.06,0.959h0.024c0.288-0.54,0.959-1.08,1.919-1.08
		c0.803,0,2.051,0.48,2.051,2.471v3.454h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.685,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V131.491z"/>
	<path d="M19.065,128.529v1.392h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.61-0.072
		l0.049,0.803c-0.204,0.072-0.528,0.144-0.937,0.144c-0.492,0-0.888-0.168-1.14-0.444c-0.288-0.324-0.408-0.839-0.408-1.523v-3.167
		h-0.899v-0.803h0.899v-1.08L19.065,128.529z"/>
	<path d="M22.282,133.015c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.606-0.3l0.192,0.756
		c-0.372,0.168-1.019,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.118,2.723-3.118c1.907,0,2.399,1.655,2.399,2.723
		c0,0.216-0.013,0.372-0.036,0.492h-4.079V133.015z M25.376,132.259c0.013-0.66-0.275-1.703-1.463-1.703
		c-1.08,0-1.535,0.971-1.619,1.703H25.376z"/>
	<path d="M27.706,131.731c0-0.684-0.012-1.271-0.048-1.811h0.923l0.048,1.151h0.036c0.265-0.78,0.912-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.744,0-1.271,0.552-1.416,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.056v-3.994H27.706z"/>
	<path d="M31.677,131.491c0-0.611-0.023-1.091-0.048-1.571h0.923l0.049,0.947h0.036c0.323-0.552,0.863-1.067,1.835-1.067
		c0.779,0,1.379,0.48,1.631,1.164h0.023c0.181-0.336,0.419-0.576,0.66-0.756c0.348-0.264,0.719-0.408,1.271-0.408
		c0.779,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.259-1.787c-0.612,0-1.067,0.443-1.26,0.947
		c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.03v-3.478c0-0.923-0.408-1.583-1.211-1.583c-0.648,0-1.141,0.527-1.309,1.055
		c-0.06,0.145-0.084,0.336-0.084,0.516v3.49h-1.03v-4.234H31.677z"/>
	<path d="M42.273,133.015c0.023,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.606-0.3l0.192,0.756
		c-0.372,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.907,0,2.399,1.655,2.399,2.723
		c0,0.216-0.013,0.372-0.036,0.492h-4.079V133.015z M45.368,132.259c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.079,0-1.535,0.971-1.619,1.703H45.368z"/>
	<path d="M47.697,131.491c0-0.611-0.024-1.091-0.048-1.571h0.923l0.048,0.947h0.036c0.324-0.552,0.864-1.067,1.835-1.067
		c0.78,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.419-0.576,0.66-0.756c0.348-0.264,0.719-0.408,1.271-0.408
		c0.78,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.259-1.787c-0.611,0-1.066,0.443-1.259,0.947
		c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.032v-3.478c0-0.923-0.408-1.583-1.211-1.583c-0.647,0-1.14,0.527-1.308,1.055
		c-0.061,0.145-0.084,0.336-0.084,0.516v3.49h-1.031V131.491z"/>
	<path d="M57.706,127.21h1.043v3.646h0.024c0.372-0.648,1.043-1.056,1.979-1.056c1.451,0,2.458,1.199,2.458,2.95
		c0,2.075-1.318,3.106-2.613,3.106c-0.841,0-1.512-0.324-1.955-1.079h-0.024l-0.06,0.947h-0.899
		c0.024-0.396,0.048-0.983,0.048-1.499V127.21z M58.749,133.398c0,0.132,0.013,0.264,0.048,0.384
		c0.192,0.731,0.815,1.235,1.583,1.235c1.116,0,1.764-0.899,1.764-2.231c0-1.163-0.601-2.159-1.739-2.159
		c-0.708,0-1.379,0.504-1.595,1.295c-0.036,0.132-0.061,0.276-0.061,0.443V133.398z"/>
	<path d="M64.533,131.731c0-0.684-0.012-1.271-0.048-1.811h0.923l0.048,1.151h0.036c0.264-0.78,0.912-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.359-0.024c-0.744,0-1.271,0.552-1.416,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.056L64.533,131.731L64.533,131.731z"/>
	<path d="M72.475,134.334c0,0.503,0.023,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.133-1.343-1.319-1.331
		c-0.551,0-1.115,0.156-1.523,0.432l-0.239-0.708c0.479-0.3,1.188-0.504,1.919-0.504c1.774,0,2.207,1.211,2.207,2.363
		L72.475,134.334L72.475,134.334z M71.456,132.763c-1.15-0.024-2.459,0.18-2.459,1.307c0,0.696,0.456,1.008,0.983,1.008
		c0.768,0,1.259-0.48,1.427-0.972c0.036-0.12,0.048-0.24,0.048-0.336L71.456,132.763L71.456,132.763z"/>
	<path d="M74.181,131.491c0-0.611-0.013-1.091-0.049-1.571h0.937l0.06,0.959h0.024c0.288-0.54,0.959-1.08,1.919-1.08
		c0.803,0,2.051,0.48,2.051,2.471v3.454h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.685,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V131.491z"/>
	<path d="M81.429,133.015c0.023,1.427,0.923,2.015,1.99,2.015c0.755,0,1.224-0.132,1.607-0.3l0.192,0.756
		c-0.372,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.118,2.724-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.012,0.372-0.036,0.492h-4.078V133.015z M84.523,132.259c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.971-1.619,1.703H84.523z"/>
	<path d="M89.301,134.454c0.468,0.3,1.14,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.433-1.187-1.523-1.595
		c-1.319-0.48-2.135-1.176-2.135-2.303c0-1.259,1.043-2.195,2.614-2.195c0.814,0,1.427,0.192,1.774,0.396l-0.288,0.852
		c-0.252-0.156-0.792-0.384-1.522-0.384c-1.104,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
		c1.367,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.778,0-1.631-0.24-2.062-0.528L89.301,134.454z"/>
	<path d="M95.313,131.815c0-0.744-0.024-1.343-0.048-1.895h0.936l0.061,0.995h0.023c0.419-0.708,1.115-1.115,2.062-1.115
		c1.416,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.65,3.118c-0.768,0-1.438-0.336-1.787-0.912h-0.023v3.154h-1.043
		L95.313,131.815L95.313,131.815z M96.356,133.362c0,0.156,0.012,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235
		c1.116,0,1.763-0.911,1.763-2.243c0-1.151-0.611-2.146-1.727-2.146c-0.72,0-1.403,0.503-1.595,1.295
		c-0.036,0.132-0.072,0.288-0.072,0.42V133.362z"/>
	<path d="M106.218,134.334c0,0.503,0.024,0.995,0.084,1.391h-0.946l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.489-2.159v-0.12c0-0.468-0.132-1.343-1.318-1.331
		c-0.551,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.479-0.3,1.188-0.504,1.92-0.504c1.774,0,2.206,1.211,2.206,2.363L106.218,134.334
		L106.218,134.334z M105.199,132.763c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.696,0.456,1.008,0.983,1.008
		c0.768,0,1.259-0.48,1.427-0.972c0.036-0.12,0.048-0.24,0.048-0.336L105.199,132.763L105.199,132.763z"/>
	<path d="M112.062,135.521c-0.276,0.132-0.889,0.336-1.667,0.336c-1.751,0-2.892-1.188-2.892-2.962c0-1.787,1.225-3.094,3.119-3.094
		c0.624,0,1.175,0.156,1.463,0.312l-0.239,0.803c-0.252-0.132-0.647-0.275-1.224-0.275c-1.332,0-2.051,0.995-2.051,2.194
		c0,1.343,0.864,2.171,2.015,2.171c0.601,0,0.996-0.144,1.295-0.276L112.062,135.521z"/>
	<path d="M113.816,133.015c0.023,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.606-0.3l0.192,0.756
		c-0.372,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.907,0,2.399,1.655,2.399,2.723
		c0,0.216-0.013,0.372-0.036,0.492h-4.079V133.015z M116.911,132.259c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.079,0-1.535,0.971-1.619,1.703H116.911z"/>
</g>
<g>
	<path d="M12.403,38.114h-3.13v2.915h3.502v0.875H8.218v-8.083h4.379v0.875H9.273v2.555h3.13V38.114z"/>
	<path d="M14.589,36.1l0.828,1.247c0.229,0.324,0.408,0.612,0.601,0.936h0.023c0.192-0.336,0.384-0.636,0.588-0.947l0.804-1.235
		h1.15l-1.979,2.806l2.026,2.999h-1.188l-0.864-1.307c-0.228-0.336-0.419-0.66-0.624-1.008h-0.023
		c-0.192,0.348-0.385,0.66-0.612,1.008l-0.839,1.307h-1.163l2.062-2.962L13.414,36.1H14.589z"/>
	<path d="M21.081,34.708V36.1h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.612-0.072l0.048,0.803
		c-0.204,0.072-0.528,0.144-0.936,0.144c-0.492,0-0.889-0.168-1.141-0.444c-0.288-0.324-0.408-0.839-0.408-1.523v-3.167H19.15V36.1
		h0.898v-1.08L21.081,34.708z"/>
	<path d="M24.297,39.194c0.024,1.427,0.924,2.015,1.991,2.015c0.755,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.019,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.118,2.724-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.012,0.372-0.036,0.492h-4.079V39.194z M27.392,38.438c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.971-1.619,1.703H27.392z"/>
	<path d="M29.721,37.911c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.618-1.271
		c0.108,0,0.192,0.012,0.288,0.024V37c-0.107-0.024-0.216-0.024-0.359-0.024c-0.744,0-1.271,0.552-1.416,1.343
		c-0.024,0.144-0.036,0.324-0.036,0.492v3.094h-1.056v-3.994H29.721z"/>
	<path d="M33.693,37.67c0-0.611-0.012-1.091-0.048-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.959-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.685,0-1.223,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V37.67z"/>
	<path d="M44.431,40.513c0,0.503,0.023,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.133-1.343-1.319-1.331
		c-0.552,0-1.116,0.156-1.523,0.432l-0.239-0.708c0.479-0.3,1.187-0.504,1.919-0.504c1.774,0,2.207,1.211,2.207,2.363L44.431,40.513
		L44.431,40.513z M43.411,38.942c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.456,1.008,0.983,1.008
		c0.768,0,1.259-0.48,1.427-0.972c0.036-0.12,0.048-0.24,0.048-0.336V38.942z"/>
	<path d="M46.137,33.389h1.056v8.515h-1.056V33.389z"/>
	<path d="M51.417,40.633c0.467,0.3,1.14,0.528,1.859,0.528c1.066,0,1.69-0.563,1.69-1.379c0-0.743-0.432-1.188-1.522-1.595
		c-1.319-0.48-2.135-1.176-2.135-2.303c0-1.259,1.043-2.195,2.613-2.195c0.815,0,1.428,0.192,1.775,0.396l-0.288,0.852
		c-0.252-0.156-0.792-0.384-1.522-0.384c-1.104,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
		c1.366,0.528,2.051,1.188,2.051,2.375c0,1.248-0.912,2.339-2.819,2.339c-0.779,0-1.631-0.24-2.062-0.528L51.417,40.633z"/>
	<path d="M57.429,37.995c0-0.744-0.024-1.343-0.049-1.895h0.937l0.06,0.995H58.4c0.419-0.708,1.115-1.115,2.062-1.115
		c1.416,0,2.472,1.188,2.472,2.938c0,2.087-1.283,3.118-2.65,3.118c-0.768,0-1.438-0.336-1.787-0.912h-0.023v3.154h-1.043V37.995z
		 M58.472,39.542c0,0.156,0.012,0.3,0.048,0.432c0.191,0.732,0.828,1.235,1.583,1.235c1.114,0,1.763-0.911,1.763-2.243
		c0-1.151-0.611-2.146-1.727-2.146c-0.721,0-1.403,0.503-1.596,1.295c-0.036,0.132-0.071,0.288-0.071,0.42V39.542z"/>
	<path d="M68.334,40.513c0,0.503,0.024,0.995,0.084,1.391h-0.946l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.318-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.479-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363L68.334,40.513
		L68.334,40.513z M67.315,38.942c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.696,0.456,1.008,0.982,1.008
		c0.769,0,1.26-0.48,1.428-0.972c0.036-0.12,0.048-0.24,0.048-0.336L67.315,38.942L67.315,38.942z"/>
	<path d="M74.178,41.7c-0.276,0.132-0.888,0.336-1.667,0.336c-1.752,0-2.892-1.188-2.892-2.962c0-1.787,1.225-3.094,3.119-3.094
		c0.624,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.646-0.275-1.223-0.275c-1.332,0-2.051,0.995-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.996-0.144,1.295-0.276L74.178,41.7z"/>
	<path d="M75.933,39.194c0.023,1.427,0.923,2.015,1.99,2.015c0.756,0,1.224-0.132,1.607-0.3l0.192,0.756
		c-0.372,0.168-1.02,0.372-1.943,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.118,2.724-3.118c1.907,0,2.398,1.655,2.398,2.723
		c0,0.216-0.012,0.372-0.035,0.492h-4.079V39.194z M79.027,38.438c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.079,0-1.535,0.971-1.619,1.703H79.027z"/>
</g>
</svg>
</window>