Location: Corrias, Buist, 2007 @ c9ad21ac1383 / corrias_2007.xul

Author:
Catherine Lloyd <c.lloyd@auckland.ac.nz>
Date:
2010-06-22 02:16:15+12:00
Desc:
Removed xml:base="" from the model file.
Permanent Source URI:
https://models.physiomeproject.org/workspace/corrias_buist_2007/rawfile/c9ad21ac1383cd612172a0fcfc7e372a913a5068/corrias_2007.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 =
  {

			
	Ca_i: {
		id: "Ca_i",
		y: "SM_Membrane/Ca_i",
		x: "Time/time",
		graph: "Traces: Clickable Elements against Time ",
		colour: "#ff9900",
		linestyle: "none"
	},

	I_LVA_SM: {
		id: "I_LVA_SM",
		y: "I_LVA_SM/I_LVA_SM",
		x: "Time/time",
		graph: "Traces: Clickable Elements against Time ",
		colour: "#ff00cc",
		linestyle: "none"
	},

	I_NSCC_SM: {
		id: "I_NSCC_SM",
		y: "I_NSCC_SM/I_NSCC_SM",
		x: "Time/time",
		graph: "Traces: Clickable Elements against Time ",
		colour: "#cc00ff",
		linestyle: "none"
	},


	I_BK_SM: {
		id: "I_BK_SM",
		y: "I_BK_SM/I_BK_SM",
		x: "Time/time",
		graph: "Traces: Clickable Elements against Time ",
		colour: "#3300ff",
		linestyle: "none"
	},


	I_kr_SM: {
		id: "I_kr_SM",
		y: "I_kr_SM/I_kr_SM",
		x: "Time/time",
		graph: "Traces: Clickable Elements against Time ",
		colour: "#66ff66",
		linestyle: "none"
	},


	I_ka_SM: {
		id: "I_ka_SM",
		y: "I_ka_SM/I_ka_SM",
		x: "Time/time",
		graph: "Traces: Clickable Elements against Time ",
		colour: "#33ffff",
		linestyle: "none"
	},


	I_Na_SM: {
		id: "I_Na_SM",
		y: "I_Na_SM/I_Na_SM",
		x: "Time/time",
		graph: "Traces: Clickable Elements against Time ",
		colour: "#ffff00",
		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_18_" transform="translate(21.16987,-31.23187)">
		<g id="g7119_18_">
			<g id="g7121_20_">
				<path id="path7123_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,297.821c1.288,0,2.333-1.045,2.333-2.331
					c0-1.289-1.045-2.335-2.333-2.335s-2.333,1.046-2.333,2.335C23.236,296.776,24.281,297.821,25.569,297.821z"/>
				<path id="path7125_20_" fill="none" stroke="#2A8FCE" d="M27.902,295.49h16.334"/>
			</g>
			<g id="g7127_20_">
				<path id="path7129_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,292.471c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,291.426,24.281,292.471,25.569,292.471z"/>
				<path id="path7131_20_" fill="none" stroke="#2A8FCE" d="M27.902,290.139h16.334"/>
			</g>
			<g id="g7133_20_">
				<path id="path7135_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,287.121c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,286.076,24.281,287.121,25.569,287.121z"/>
				<path id="path7137_20_" fill="none" stroke="#2A8FCE" d="M27.902,284.789h16.334"/>
			</g>
			<g id="g7139_20_">
				<path id="path7141_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,313.872c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,312.828,24.281,313.872,25.569,313.872z"/>
				<path id="path7143_20_" fill="none" stroke="#2A8FCE" d="M27.902,311.539h16.334"/>
			</g>
			<g id="g7145_20_">
				<path id="path7147_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,308.522c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,307.477,24.281,308.522,25.569,308.522z"/>
				<path id="path7149_20_" fill="none" stroke="#2A8FCE" d="M27.902,306.19h16.334"/>
			</g>
			<g id="g7151_20_">
				<path id="path7153_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,303.169c1.288,0,2.333-1.045,2.333-2.332
					c0-1.286-1.045-2.334-2.333-2.334s-2.333,1.048-2.333,2.334C23.236,302.124,24.281,303.169,25.569,303.169z"/>
				<path id="path7155_20_" fill="none" stroke="#2A8FCE" d="M27.902,300.837h16.334"/>
			</g>
			<g id="g7157_20_">
				<path id="path7159_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,300.497c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,299.453,49.757,300.497,48.47,300.497z"/>
				<path id="path7161_20_" fill="none" stroke="#2A8FCE" d="M46.138,298.164H29.804"/>
			</g>
			<g id="g7163_20_">
				<path id="path7165_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,295.145c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,294.1,49.757,295.145,48.47,295.145z"/>
				<path id="path7167_20_" fill="none" stroke="#2A8FCE" d="M46.138,292.813H29.804"/>
			</g>
			<g id="g7169_20_">
				<path id="path7171_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,289.794c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.286,1.045-2.332,2.331-2.332c1.289,0,2.334,1.046,2.334,2.332C50.804,288.749,49.757,289.794,48.47,289.794z"/>
				<path id="path7173_20_" fill="none" stroke="#2A8FCE" d="M46.138,287.46H29.804"/>
			</g>
			<g id="g7175_20_">
				<path id="path7177_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,316.546c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.286,1.045-2.332,2.331-2.332c1.289,0,2.334,1.046,2.334,2.332C50.804,315.501,49.757,316.546,48.47,316.546z"/>
				<path id="path7179_20_" fill="none" stroke="#2A8FCE" d="M46.138,314.215H29.804"/>
			</g>
			<g id="g7181_20_">
				<path id="path7183_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,311.199c-1.286,0-2.331-1.046-2.331-2.335
					c0-1.286,1.045-2.331,2.331-2.331c1.289,0,2.334,1.045,2.334,2.331C50.804,310.153,49.757,311.199,48.47,311.199z"/>
				<path id="path7185_20_" fill="none" stroke="#2A8FCE" d="M46.138,308.865H29.804"/>
			</g>
			<g id="g7187_20_">
				<path id="path7189_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,305.848c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,304.803,49.757,305.848,48.47,305.848z"/>
				<path id="path7191_20_" fill="none" stroke="#2A8FCE" d="M46.138,303.514H29.804"/>
			</g>
		</g>
		<g id="g7193_18_">
			<g id="g7195_20_">
				<path id="path7197_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,265.826c1.288,0,2.333-1.046,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,264.78,24.281,265.826,25.569,265.826z"/>
				<path id="path7199_20_" fill="none" stroke="#2A8FCE" d="M27.902,263.492h16.334"/>
			</g>
			<g id="g7201_20_">
				<path id="path7203_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,260.475c1.288,0,2.333-1.045,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,259.43,24.281,260.475,25.569,260.475z"/>
				<path id="path7205_20_" fill="none" stroke="#2A8FCE" d="M27.902,258.141h16.334"/>
			</g>
			<g id="g7207_20_">
				<path id="path7209_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,255.122c1.288,0,2.333-1.045,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,254.08,24.281,255.122,25.569,255.122z"/>
				<path id="path7211_20_" fill="none" stroke="#2A8FCE" d="M27.902,252.789h16.334"/>
			</g>
			<g id="g7213_20_">
				<path id="path7215_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,281.874c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334S24.281,281.874,25.569,281.874z"/>
				<path id="path7217_20_" fill="none" stroke="#2A8FCE" d="M27.902,279.542h16.334"/>
			</g>
			<g id="g7219_20_">
				<path id="path7221_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,276.526c1.288,0,2.333-1.045,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,275.481,24.281,276.526,25.569,276.526z"/>
				<path id="path7223_20_" fill="none" stroke="#2A8FCE" d="M27.902,274.192h16.334"/>
			</g>
			<g id="g7225_20_">
				<path id="path7227_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,271.176c1.288,0,2.333-1.048,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,270.128,24.281,271.176,25.569,271.176z"/>
				<path id="path7229_20_" fill="none" stroke="#2A8FCE" d="M27.902,268.842h16.334"/>
			</g>
			<g id="g7231_20_">
				<path id="path7233_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,268.497c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334S49.757,268.497,48.47,268.497z"/>
				<path id="path7235_20_" fill="none" stroke="#2A8FCE" d="M46.138,266.165H29.804"/>
			</g>
			<g id="g7237_20_">
				<path id="path7239_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,263.149c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,262.104,49.757,263.149,48.47,263.149z"/>
				<path id="path7241_20_" fill="none" stroke="#2A8FCE" d="M46.138,260.817H29.804"/>
			</g>
			<g id="g7243_20_">
				<path id="path7245_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,257.799c-1.286,0-2.331-1.046-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,256.753,49.757,257.799,48.47,257.799z"/>
				<path id="path7247_20_" fill="none" stroke="#2A8FCE" d="M46.138,255.465H29.804"/>
			</g>
			<g id="g7249_20_">
				<path id="path7251_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,284.551c-1.286,0-2.331-1.046-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,283.506,49.757,284.551,48.47,284.551z"/>
				<path id="path7253_20_" fill="none" stroke="#2A8FCE" d="M46.138,282.219H29.804"/>
			</g>
			<g id="g7255_20_">
				<path id="path7257_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,279.203c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,278.158,49.757,279.203,48.47,279.203z"/>
				<path id="path7259_20_" fill="none" stroke="#2A8FCE" d="M46.138,276.869H29.804"/>
			</g>
			<g id="g7261_20_">
				<path id="path7263_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,273.85c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,272.805,49.757,273.85,48.47,273.85z"/>
				<path id="path7265_20_" fill="none" stroke="#2A8FCE" d="M46.138,271.518H29.804"/>
			</g>
		</g>
		<g id="g7267_18_">
			<g id="g7269_20_">
				<path id="path7271_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,233.83c1.288,0,2.333-1.045,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,232.785,24.281,233.83,25.569,233.83z"/>
				<path id="path7273_20_" fill="none" stroke="#2A8FCE" d="M27.902,231.496h16.334"/>
			</g>
			<g id="g7275_20_">
				<path id="path7277_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,228.477c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,227.432,24.281,228.477,25.569,228.477z"/>
				<path id="path7279_20_" fill="none" stroke="#2A8FCE" d="M27.902,226.145h16.334"/>
			</g>
			<g id="g7281_20_">
				<path id="path7283_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,223.126c1.288,0,2.333-1.045,2.333-2.334
					c0-1.284-1.045-2.33-2.333-2.33s-2.333,1.045-2.333,2.33C23.236,222.081,24.281,223.126,25.569,223.126z"/>
				<path id="path7285_20_" fill="none" stroke="#2A8FCE" d="M27.902,220.792h16.334"/>
			</g>
			<g id="g7287_20_">
				<path id="path7289_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,249.878c1.288,0,2.333-1.045,2.333-2.334
					c0-1.286-1.045-2.332-2.333-2.332s-2.333,1.046-2.333,2.332C23.236,248.833,24.281,249.878,25.569,249.878z"/>
				<path id="path7291_20_" fill="none" stroke="#2A8FCE" d="M27.902,247.544h16.334"/>
			</g>
			<g id="g7293_20_">
				<path id="path7295_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,244.53c1.288,0,2.333-1.045,2.333-2.334
					c0-1.286-1.045-2.331-2.333-2.331s-2.333,1.045-2.333,2.331C23.236,243.485,24.281,244.53,25.569,244.53z"/>
				<path id="path7297_20_" fill="none" stroke="#2A8FCE" d="M27.902,242.196h16.334"/>
			</g>
			<g id="g7299_20_">
				<path id="path7301_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,239.178c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,238.133,24.281,239.178,25.569,239.178z"/>
				<path id="path7303_20_" fill="none" stroke="#2A8FCE" d="M27.902,236.846h16.334"/>
			</g>
			<g id="g7305_20_">
				<path id="path7307_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,236.501c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,235.456,49.757,236.501,48.47,236.501z"/>
				<path id="path7309_20_" fill="none" stroke="#2A8FCE" d="M46.138,234.169H29.804"/>
			</g>
			<g id="g7311_20_">
				<path id="path7313_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,231.153c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.286,1.045-2.332,2.331-2.332c1.289,0,2.334,1.046,2.334,2.332C50.804,230.108,49.757,231.153,48.47,231.153z"/>
				<path id="path7315_20_" fill="none" stroke="#2A8FCE" d="M46.138,228.819H29.804"/>
			</g>
			<g id="g7317_20_">
				<path id="path7319_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,225.803c-1.286,0-2.331-1.048-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,224.755,49.757,225.803,48.47,225.803z"/>
				<path id="path7321_20_" fill="none" stroke="#2A8FCE" d="M46.138,223.469H29.804"/>
			</g>
			<g id="g7323_20_">
				<path id="path7325_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,252.555c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,251.51,49.757,252.555,48.47,252.555z"/>
				<path id="path7327_20_" fill="none" stroke="#2A8FCE" d="M46.138,250.223H29.804"/>
			</g>
			<g id="g7329_20_">
				<path id="path7331_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,247.205c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,246.16,49.757,247.205,48.47,247.205z"/>
				<path id="path7333_20_" fill="none" stroke="#2A8FCE" d="M46.138,244.872H29.804"/>
			</g>
			<g id="g7335_20_">
				<path id="path7337_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,241.854c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,240.809,49.757,241.854,48.47,241.854z"/>
				<path id="path7339_20_" fill="none" stroke="#2A8FCE" d="M46.138,239.52H29.804"/>
			</g>
		</g>
		<g id="g7341_18_">
			<g id="g7343_20_">
				<path id="path7345_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,201.832c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,200.788,24.281,201.832,25.569,201.832z"/>
				<path id="path7347_20_" fill="none" stroke="#2A8FCE" d="M27.902,199.5h16.334"/>
			</g>
			<g id="g7349_20_">
				<path id="path7351_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,196.483c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,195.438,24.281,196.483,25.569,196.483z"/>
				<path id="path7353_20_" fill="none" stroke="#2A8FCE" d="M27.902,194.151h16.334"/>
			</g>
			<g id="g7355_20_">
				<path id="path7357_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,191.131c1.288,0,2.333-1.045,2.333-2.332
					c0-1.287-1.045-2.334-2.333-2.334s-2.333,1.047-2.333,2.334C23.236,190.086,24.281,191.131,25.569,191.131z"/>
				<path id="path7359_20_" fill="none" stroke="#2A8FCE" d="M27.902,188.799h16.334"/>
			</g>
			<g id="g7361_20_">
				<path id="path7363_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,217.885c1.288,0,2.333-1.045,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,216.84,24.281,217.885,25.569,217.885z"/>
				<path id="path7365_20_" fill="none" stroke="#2A8FCE" d="M27.902,215.551h16.334"/>
			</g>
			<g id="g7367_20_">
				<path id="path7369_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,212.534c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,211.489,24.281,212.534,25.569,212.534z"/>
				<path id="path7371_20_" fill="none" stroke="#2A8FCE" d="M27.902,210.202h16.334"/>
			</g>
			<g id="g7373_20_">
				<path id="path7375_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,207.184c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,206.139,24.281,207.184,25.569,207.184z"/>
				<path id="path7377_20_" fill="none" stroke="#2A8FCE" d="M27.902,204.852h16.334"/>
			</g>
			<g id="g7379_20_">
				<path id="path7381_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,204.508c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,203.463,49.757,204.508,48.47,204.508z"/>
				<path id="path7383_20_" fill="none" stroke="#2A8FCE" d="M46.138,202.174H29.804"/>
			</g>
			<g id="g7385_20_">
				<path id="path7387_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,199.159c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,198.114,49.757,199.159,48.47,199.159z"/>
				<path id="path7389_20_" fill="none" stroke="#2A8FCE" d="M46.138,196.825H29.804"/>
			</g>
			<g id="g7391_20_">
				<path id="path7393_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,193.809c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,192.764,49.757,193.809,48.47,193.809z"/>
				<path id="path7395_20_" fill="none" stroke="#2A8FCE" d="M46.138,191.475H29.804"/>
			</g>
			<g id="g7397_20_">
				<path id="path7399_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,220.559c-1.286,0-2.331-1.043-2.331-2.332
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,219.516,49.757,220.559,48.47,220.559z"/>
				<path id="path7401_20_" fill="none" stroke="#2A8FCE" d="M46.138,218.227H29.804"/>
			</g>
			<g id="g7403_20_">
				<path id="path7405_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,215.209c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,214.164,49.757,215.209,48.47,215.209z"/>
				<path id="path7407_20_" fill="none" stroke="#2A8FCE" d="M46.138,212.875H29.804"/>
			</g>
			<g id="g7409_20_">
				<path id="path7411_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,209.86c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,208.815,49.757,209.86,48.47,209.86z"/>
				<path id="path7413_20_" fill="none" stroke="#2A8FCE" d="M46.138,207.526H29.804"/>
			</g>
		</g>
		<g id="g7415_19_">
			<g id="g7417_21_">
				<path id="path7419_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,169.836c1.288,0,2.333-1.045,2.333-2.334
					c0-1.287-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332C23.236,168.791,24.281,169.836,25.569,169.836z"/>
				<path id="path7421_21_" fill="none" stroke="#2A8FCE" d="M27.902,167.502h16.334"/>
			</g>
			<g id="g7423_21_">
				<path id="path7425_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,164.485c1.288,0,2.333-1.045,2.333-2.332
					c0-1.287-1.045-2.334-2.333-2.334s-2.333,1.047-2.333,2.334C23.236,163.44,24.281,164.485,25.569,164.485z"/>
				<path id="path7427_21_" fill="none" stroke="#2A8FCE" d="M27.902,162.153h16.334"/>
			</g>
			<g id="g7429_21_">
				<path id="path7431_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,159.135c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,158.09,24.281,159.135,25.569,159.135z"/>
				<path id="path7433_21_" fill="none" stroke="#2A8FCE" d="M27.902,156.803h16.334"/>
			</g>
			<g id="g7435_21_">
				<path id="path7437_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,185.889c1.288,0,2.333-1.047,2.333-2.334
					s-1.045-2.332-2.333-2.332s-2.333,1.045-2.333,2.332S24.281,185.889,25.569,185.889z"/>
				<path id="path7439_21_" fill="none" stroke="#2A8FCE" d="M27.902,183.555h16.334"/>
			</g>
			<g id="g7441_21_">
				<path id="path7443_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,180.538c1.288,0,2.333-1.045,2.333-2.332
					c0-1.289-1.045-2.334-2.333-2.334s-2.333,1.045-2.333,2.334C23.236,179.493,24.281,180.538,25.569,180.538z"/>
				<path id="path7445_21_" fill="none" stroke="#2A8FCE" d="M27.902,178.206h16.334"/>
			</g>
			<g id="g7447_21_">
				<path id="path7449_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M25.569,175.188c1.288,0,2.333-1.045,2.333-2.334
					c0-1.287-1.045-2.334-2.333-2.334s-2.333,1.047-2.333,2.334C23.236,174.143,24.281,175.188,25.569,175.188z"/>
				<path id="path7451_21_" fill="none" stroke="#2A8FCE" d="M27.902,172.854h16.334"/>
			</g>
			<g id="g7453_21_">
				<path id="path7455_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,172.512c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,171.467,49.757,172.512,48.47,172.512z"/>
				<path id="path7457_21_" fill="none" stroke="#2A8FCE" d="M46.138,170.178H29.804"/>
			</g>
			<g id="g7459_21_">
				<path id="path7461_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,167.161c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,166.116,49.757,167.161,48.47,167.161z"/>
				<path id="path7463_21_" fill="none" stroke="#2A8FCE" d="M46.138,164.829H29.804"/>
			</g>
			<g id="g7465_21_">
				<path id="path7467_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,161.811c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,160.766,49.757,161.811,48.47,161.811z"/>
				<path id="path7469_21_" fill="none" stroke="#2A8FCE" d="M46.138,159.477H29.804"/>
			</g>
			<g id="g7471_21_">
				<path id="path7473_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,188.563c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,187.518,49.757,188.563,48.47,188.563z"/>
				<path id="path7475_21_" fill="none" stroke="#2A8FCE" d="M46.138,186.231H29.804"/>
			</g>
			<g id="g7477_21_">
				<path id="path7479_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,183.213c-1.286,0-2.331-1.045-2.331-2.334
					c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.334,1.045,2.334,2.332C50.804,182.168,49.757,183.213,48.47,183.213z"/>
				<path id="path7481_21_" fill="none" stroke="#2A8FCE" d="M46.138,180.879H29.804"/>
			</g>
			<g id="g7483_21_">
				<path id="path7485_21_" fill="#C2DCF3" stroke="#2A8FCE" d="M48.47,177.862c-1.286,0-2.331-1.045-2.331-2.332
					c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.334,1.045,2.334,2.334C50.804,176.817,49.757,177.862,48.47,177.862z"/>
				<path id="path7487_21_" fill="none" stroke="#2A8FCE" d="M46.138,175.53H29.804"/>
			</g>
		</g>
	</g>
	<g id="g6923_12_" transform="translate(19.90030,-35.04058)">
		<g id="g6560_14_">
			<g id="g3088_14_">
				<path id="path3084_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.956,125.442c1.287,0,2.332-1.045,2.332-2.332
					c0-1.289-1.045-2.334-2.332-2.334c-1.288,0-2.333,1.045-2.333,2.334C24.623,124.397,25.668,125.442,26.956,125.442z"/>
				<path id="path3086_14_" fill="none" stroke="#2A8FCE" d="M29.288,123.11h16.335"/>
			</g>
			<g id="g3092_14_">
				<path id="path3094_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M27.081,120.001c1.277,0.16,2.445-0.746,2.605-2.023
					c0.16-1.277-0.746-2.445-2.023-2.605c-1.278-0.16-2.445,0.746-2.604,2.023C24.898,118.673,25.803,119.84,27.081,120.001z"/>
				<path id="path3096_14_" fill="none" stroke="#2A8FCE" d="M29.687,117.975l16.207,2.037"/>
			</g>
			<g id="g3098_13_">
				<path id="path3100_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.997,123.086c-1.288,0-2.334,1.043-2.336,2.33
					c-0.002,1.289,1.041,2.336,2.33,2.336c1.287,0.002,2.334-1.041,2.336-2.328C52.329,124.135,51.284,123.088,49.997,123.086z"/>
				<path id="path3102_13_" fill="none" stroke="#2A8FCE" d="M47.659,125.417l-16.334-0.023"/>
			</g>
			<g id="g3104_14_">
				<path id="path3106_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M51.817,117.547c-1.224-0.404-2.543,0.26-2.947,1.48
					c-0.404,1.225,0.26,2.543,1.482,2.947c1.223,0.406,2.543-0.258,2.946-1.482C53.704,119.27,53.04,117.95,51.817,117.547z"/>
				<path id="path3108_14_" fill="none" stroke="#2A8FCE" d="M48.87,119.028l-15.508-5.129"/>
			</g>
			<g id="g3110_14_">
				<path id="path3112_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M61.988,112.61c-0.002-1.287-1.052-2.33-2.339-2.326
					c-1.289,0.006-2.33,1.053-2.326,2.342c0.004,1.287,1.052,2.33,2.34,2.324C60.951,114.946,61.992,113.899,61.988,112.61z"/>
				<path id="path3114_14_" fill="none" stroke="#2A8FCE" d="M59.65,110.284L59.601,93.95"/>
			</g>
			<g id="g3116_14_">
				<path id="path3118_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M56.68,113.991c-0.697-1.082-2.144-1.393-3.226-0.693
					c-1.082,0.7-1.394,2.145-0.694,3.227c0.7,1.082,2.145,1.393,3.227,0.693C57.068,116.518,57.379,115.073,56.68,113.991z"/>
				<path id="path3120_14_" fill="none" stroke="#2A8FCE" d="M53.454,113.297l-8.859-13.723"/>
			</g>
			<g id="g3122_14_">
				<path id="path3124_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M27.932,114.608c1.226,0.398,2.542-0.271,2.939-1.496
					c0.397-1.227-0.271-2.543-1.498-2.939c-1.225-0.398-2.542,0.271-2.939,1.496C26.036,112.893,26.707,114.211,27.932,114.608z"/>
				<path id="path3126_14_" fill="none" stroke="#2A8FCE" d="M30.872,113.112l15.533,5.051"/>
			</g>
			<g id="g3128_14_">
				<path id="path3130_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M29.719,109.378c1.149,0.58,2.555,0.119,3.135-1.031
					c0.58-1.15,0.117-2.553-1.031-3.133c-1.15-0.582-2.555-0.119-3.135,1.029C28.108,107.393,28.569,108.797,29.719,109.378z"/>
				<path id="path3132_14_" fill="none" stroke="#2A8FCE" d="M32.854,108.346l14.582,7.359"/>
			</g>
			<g id="g3134_14_">
				<path id="path3136_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M32.347,104.655c1.038,0.764,2.499,0.537,3.263-0.502
					c0.762-1.037,0.537-2.498-0.502-3.26c-1.037-0.762-2.498-0.537-3.262,0.5C31.084,102.432,31.308,103.893,32.347,104.655z"/>
				<path id="path3138_14_" fill="none" stroke="#2A8FCE" d="M35.608,104.153l13.17,9.662"/>
			</g>
			<g id="g3140_14_">
				<path id="path3142_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M35.603,100.229c0.893,0.93,2.37,0.959,3.299,0.066
					c0.928-0.895,0.957-2.371,0.063-3.299c-0.893-0.93-2.37-0.959-3.299-0.066C34.739,97.825,34.71,99.301,35.603,100.229z"/>
				<path id="path3144_14_" fill="none" stroke="#2A8FCE" d="M38.901,100.295l11.32,11.773"/>
			</g>
			<g id="g3146_14_">
				<path id="path3148_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M54.548,89.626c0.064,1.287,1.159,2.277,2.445,2.215
					c1.287-0.064,2.279-1.158,2.216-2.445s-1.159-2.279-2.446-2.215C55.476,87.243,54.483,88.338,54.548,89.626z"/>
				<path id="path3150_14_" fill="none" stroke="#2A8FCE" d="M56.993,91.84l0.808,16.313"/>
			</g>
			<g id="g3152_14_">
				<path id="path3154_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.118,91.061c0.279,1.258,1.524,2.053,2.781,1.775
					c1.258-0.279,2.053-1.525,1.774-2.781c-0.276-1.258-1.522-2.053-2.781-1.775C49.636,88.557,48.841,89.803,49.118,91.061z"/>
				<path id="path3156_14_" fill="none" stroke="#2A8FCE" d="M51.9,92.836l3.524,15.949"/>
			</g>
			<g id="g3158_14_">
				<path id="path3160_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M39.442,96.358c0.709,1.076,2.156,1.371,3.23,0.662
					c1.075-0.709,1.372-2.156,0.662-3.23c-0.71-1.076-2.157-1.371-3.231-0.662C39.028,93.837,38.732,95.284,39.442,96.358z"/>
				<path id="path3162_14_" fill="none" stroke="#2A8FCE" d="M42.674,97.02l8.996,13.635"/>
			</g>
			<g id="g3164_14_">
				<path id="path3166_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M44.108,93.311c0.492,1.191,1.856,1.758,3.047,1.266
					c1.189-0.492,1.758-1.854,1.266-3.047c-0.492-1.189-1.856-1.758-3.047-1.266C44.183,90.758,43.616,92.122,44.108,93.311z"/>
				<path id="path3168_14_" fill="none" stroke="#2A8FCE" d="M47.155,94.577l6.24,15.096"/>
			</g>
			<g id="g3340_14_">
				<path id="path3342_14_" fill="#C2DCF3" stroke="#2A8FCE" d="M59.995,89.223c-0.012,1.289,1.024,2.342,2.313,2.354
					c1.288,0.012,2.343-1.022,2.353-2.312c0.012-1.289-1.024-2.342-2.313-2.355C61.06,86.899,60.006,87.936,59.995,89.223z"/>
				<path id="path3344_14_" fill="none" stroke="#2A8FCE" d="M62.308,91.577l-0.14,16.334"/>
			</g>
		</g>
		<g id="g6281_13_">
			<g id="g3643_13_">
				<path id="path3645_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M78.297,112.004c0-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.332S78.297,113.292,78.297,112.004z"/>
				<path id="path3647_13_" fill="none" stroke="#2A8FCE" d="M75.964,109.67V93.336"/>
			</g>
			<g id="g3649_13_">
				<path id="path3651_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M72.945,112.004c0-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.332C71.9,114.336,72.945,113.292,72.945,112.004z"/>
				<path id="path3653_13_" fill="none" stroke="#2A8FCE" d="M70.613,109.67V93.336"/>
			</g>
			<g id="g3655_13_">
				<path id="path3657_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M67.595,112.004c0-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.332C66.55,114.336,67.595,113.292,67.595,112.004z"/>
				<path id="path3659_13_" fill="none" stroke="#2A8FCE" d="M65.262,109.67V93.336"/>
			</g>
			<g id="g3661_13_">
				<path id="path3663_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M94.348,112.004c0-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.332C93.303,114.336,94.348,113.292,94.348,112.004z"/>
				<path id="path3665_13_" fill="none" stroke="#2A8FCE" d="M92.015,109.67V93.336"/>
			</g>
			<g id="g3667_13_">
				<path id="path3669_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M88.996,112.004c0-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.332C87.951,114.336,88.996,113.292,88.996,112.004z"/>
				<path id="path3671_13_" fill="none" stroke="#2A8FCE" d="M86.664,109.67V93.336"/>
			</g>
			<g id="g3673_13_">
				<path id="path3675_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M83.647,112.004c0-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.332C82.602,114.336,83.647,113.292,83.647,112.004z"/>
				<path id="path3677_13_" fill="none" stroke="#2A8FCE" d="M81.315,109.67V93.336"/>
			</g>
			<g id="g3679_13_">
				<path id="path3681_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M80.972,89.102c0,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.332C79.927,86.77,80.972,87.815,80.972,89.102z"/>
				<path id="path3683_13_" fill="none" stroke="#2A8FCE" d="M78.639,91.436v16.334"/>
			</g>
			<g id="g3685_13_">
				<path id="path3687_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M75.621,89.102c0,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.332C74.576,86.77,75.621,87.815,75.621,89.102z"/>
				<path id="path3689_13_" fill="none" stroke="#2A8FCE" d="M73.287,91.436v16.334"/>
			</g>
			<g id="g3691_13_">
				<path id="path3693_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M70.271,89.102c0,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.332C69.226,86.77,70.271,87.815,70.271,89.102z"/>
				<path id="path3695_13_" fill="none" stroke="#2A8FCE" d="M67.938,91.436v16.334"/>
			</g>
			<g id="g3697_13_">
				<path id="path3699_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M97.024,89.102c0,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.332C95.978,86.77,97.024,87.815,97.024,89.102z"/>
				<path id="path3701_13_" fill="none" stroke="#2A8FCE" d="M94.69,91.436v16.334"/>
			</g>
			<g id="g3703_13_">
				<path id="path3705_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M91.673,89.102c0,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.332S91.673,87.815,91.673,89.102z"/>
				<path id="path3707_13_" fill="none" stroke="#2A8FCE" d="M89.34,91.436v16.334"/>
			</g>
			<g id="g3709_13_">
				<path id="path3711_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M86.322,89.102c0,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.332C85.277,86.77,86.322,87.815,86.322,89.102z"/>
				<path id="path3713_13_" fill="none" stroke="#2A8FCE" d="M83.988,91.436v16.334"/>
			</g>
		</g>
		<g id="g6439_13_">
			<g id="g6441_13_">
				<path id="path6443_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.737,144.801c-1.287,0-2.332,1.045-2.332,2.332
					c0,1.289,1.045,2.334,2.332,2.334c1.289,0,2.334-1.045,2.334-2.334C52.071,145.846,51.026,144.801,49.737,144.801z"/>
				<path id="path6445_13_" fill="none" stroke="#2A8FCE" d="M47.405,147.133H31.071"/>
			</g>
			<g id="g6447_13_">
				<path id="path6449_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.737,150.151c-1.287,0-2.332,1.045-2.332,2.332
					c0,1.289,1.045,2.334,2.332,2.334c1.289,0,2.334-1.045,2.334-2.334C52.071,151.196,51.026,150.151,49.737,150.151z"/>
				<path id="path6451_13_" fill="none" stroke="#2A8FCE" d="M47.405,152.483H31.071"/>
			</g>
			<g id="g6453_13_">
				<path id="path6455_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.737,155.503c-1.287,0-2.332,1.045-2.332,2.332
					c0,1.289,1.045,2.334,2.332,2.334c1.289,0,2.334-1.045,2.334-2.334C52.071,156.547,51.026,155.503,49.737,155.503z"/>
				<path id="path6457_13_" fill="none" stroke="#2A8FCE" d="M47.405,157.835H31.071"/>
			</g>
			<g id="g6459_13_">
				<path id="path6461_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.737,128.751c-1.287,0-2.332,1.045-2.332,2.332
					s1.045,2.334,2.332,2.334c1.289,0,2.334-1.047,2.334-2.334S51.026,128.751,49.737,128.751z"/>
				<path id="path6463_13_" fill="none" stroke="#2A8FCE" d="M47.405,131.083H31.071"/>
			</g>
			<g id="g6465_13_">
				<path id="path6467_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.737,134.098c-1.287,0-2.332,1.045-2.332,2.334
					c0,1.287,1.045,2.332,2.332,2.332c1.289,0,2.334-1.045,2.334-2.332C52.071,135.143,51.026,134.098,49.737,134.098z"/>
				<path id="path6469_13_" fill="none" stroke="#2A8FCE" d="M47.405,136.432H31.071"/>
			</g>
			<g id="g6471_13_">
				<path id="path6473_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M49.737,139.45c-1.287,0-2.332,1.045-2.332,2.332
					c0,1.289,1.045,2.334,2.332,2.334c1.289,0,2.334-1.045,2.334-2.334C52.071,140.495,51.026,139.45,49.737,139.45z"/>
				<path id="path6475_13_" fill="none" stroke="#2A8FCE" d="M47.405,141.782H31.071"/>
			</g>
			<g id="g6477_13_">
				<path id="path6479_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.839,142.126c1.288,0,2.333,1.045,2.333,2.334
					c0,1.287-1.045,2.332-2.333,2.332s-2.333-1.045-2.333-2.332C24.506,143.17,25.55,142.126,26.839,142.126z"/>
				<path id="path6481_13_" fill="none" stroke="#2A8FCE" d="M29.172,144.46h16.334"/>
			</g>
			<g id="g6483_13_">
				<path id="path6485_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.839,147.475c1.288,0,2.333,1.045,2.333,2.334
					c0,1.287-1.045,2.332-2.333,2.332s-2.333-1.045-2.333-2.332C24.506,148.52,25.55,147.475,26.839,147.475z"/>
				<path id="path6487_13_" fill="none" stroke="#2A8FCE" d="M29.172,149.809h16.334"/>
			</g>
			<g id="g6489_13_">
				<path id="path6491_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.839,152.825c1.288,0,2.333,1.047,2.333,2.334
					c0,1.287-1.045,2.332-2.333,2.332s-2.333-1.045-2.333-2.332C24.506,153.872,25.55,152.825,26.839,152.825z"/>
				<path id="path6493_13_" fill="none" stroke="#2A8FCE" d="M29.172,155.159h16.334"/>
			</g>
			<g id="g6495_13_">
				<path id="path6497_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.839,126.073c1.288,0,2.333,1.045,2.333,2.334
					c0,1.287-1.045,2.332-2.333,2.332s-2.333-1.045-2.333-2.332C24.506,127.118,25.55,126.073,26.839,126.073z"/>
				<path id="path6499_13_" fill="none" stroke="#2A8FCE" d="M29.172,128.407h16.334"/>
			</g>
			<g id="g6501_13_">
				<path id="path6503_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.839,131.424c1.288,0,2.333,1.045,2.333,2.334
					c0,1.287-1.045,2.332-2.333,2.332s-2.333-1.045-2.333-2.332C24.506,132.469,25.55,131.424,26.839,131.424z"/>
				<path id="path6505_13_" fill="none" stroke="#2A8FCE" d="M29.172,133.758h16.334"/>
			</g>
			<g id="g6507_13_">
				<path id="path6509_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.839,136.774c1.288,0,2.333,1.045,2.333,2.334
					c0,1.287-1.045,2.332-2.333,2.332s-2.333-1.045-2.333-2.332C24.506,137.819,25.55,136.774,26.839,136.774z"/>
				<path id="path6511_13_" fill="none" stroke="#2A8FCE" d="M29.172,139.108h16.334"/>
			</g>
		</g>
	</g>
	<g>
		<g>
			<g id="g59398_17_" transform="translate(21.16987,-31.23187)">
				<g id="g7045_18_">
					<g id="g7047_19_">
						<path id="path7049_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M268.948,108.196c0-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.332C267.903,110.528,268.948,109.483,268.948,108.196z"/>
						<path id="path7051_19_" fill="none" stroke="#2A8FCE" d="M266.614,105.862V89.528"/>
					</g>
					<g id="g7053_19_">
						<path id="path7055_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M263.599,108.196c0-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.332C262.554,110.528,263.599,109.483,263.599,108.196z"/>
						<path id="path7057_19_" fill="none" stroke="#2A8FCE" d="M261.265,105.862V89.528"/>
					</g>
					<g id="g7059_20_">
						<path id="path7061_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M258.249,108.196c0-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.332C257.204,110.528,258.249,109.483,258.249,108.196z"/>
						<path id="path7063_20_" fill="none" stroke="#2A8FCE" d="M255.915,105.862V89.528"/>
					</g>
					<g id="g7065_19_">
						<path id="path7067_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M285.001,108.196c0-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.332C283.956,110.528,285.001,109.483,285.001,108.196z"/>
						<path id="path7069_19_" fill="none" stroke="#2A8FCE" d="M282.667,105.862V89.528"/>
					</g>
					<g id="g7071_19_">
						<path id="path7073_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M279.648,108.196c0-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.332C278.604,110.528,279.648,109.483,279.648,108.196z"/>
						<path id="path7075_19_" fill="none" stroke="#2A8FCE" d="M277.314,105.862V89.528"/>
					</g>
					<g id="g7077_19_">
						<path id="path7079_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M274.3,108.196c0-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.332C273.255,110.528,274.3,109.483,274.3,108.196z"/>
						<path id="path7081_19_" fill="none" stroke="#2A8FCE" d="M271.966,105.862V89.528"/>
					</g>
					<g id="g7083_19_">
						<path id="path7085_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M271.624,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C270.579,82.961,271.624,84.006,271.624,85.293z"/>
						<path id="path7087_19_" fill="none" stroke="#2A8FCE" d="M269.292,87.627v16.334"/>
					</g>
					<g id="g7089_19_">
						<path id="path7091_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M266.273,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C265.228,82.961,266.273,84.006,266.273,85.293z"/>
						<path id="path7093_19_" fill="none" stroke="#2A8FCE" d="M263.94,87.627v16.334"/>
					</g>
					<g id="g7095_19_">
						<path id="path7097_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M260.923,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C259.878,82.961,260.923,84.006,260.923,85.293z"/>
						<path id="path7099_19_" fill="none" stroke="#2A8FCE" d="M258.591,87.627v16.334"/>
					</g>
					<g id="g7101_19_">
						<path id="path7103_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M287.675,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C286.63,82.961,287.675,84.006,287.675,85.293z"/>
						<path id="path7105_19_" fill="none" stroke="#2A8FCE" d="M285.343,87.627v16.334"/>
					</g>
					<g id="g7107_19_">
						<path id="path7109_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M282.325,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C281.28,82.961,282.325,84.006,282.325,85.293z"/>
						<path id="path7111_19_" fill="none" stroke="#2A8FCE" d="M279.991,87.627v16.334"/>
					</g>
					<g id="g7113_18_">
						<path id="path7115_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M276.973,85.293c0,1.287-1.045,2.334-2.331,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C275.929,82.961,276.973,84.006,276.973,85.293z"/>
						<path id="path7117_19_" fill="none" stroke="#2A8FCE" d="M274.642,87.627v16.334"/>
					</g>
				</g>
				<g id="g7119_17_">
					<g id="g7121_19_">
						<path id="path7123_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M236.952,108.196c0-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.332C235.907,110.528,236.952,109.483,236.952,108.196z"/>
						<path id="path7125_19_" fill="none" stroke="#2A8FCE" d="M234.62,105.862V89.528"/>
					</g>
					<g id="g7127_19_">
						<path id="path7129_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M231.603,108.196c0-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.332S231.603,109.483,231.603,108.196z"/>
						<path id="path7131_19_" fill="none" stroke="#2A8FCE" d="M229.269,105.862V89.528"/>
					</g>
					<g id="g7133_19_">
						<path id="path7135_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M226.251,108.196c0-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.332C225.206,110.528,226.251,109.483,226.251,108.196z"/>
						<path id="path7137_19_" fill="none" stroke="#2A8FCE" d="M223.919,105.862V89.528"/>
					</g>
					<g id="g7139_19_">
						<path id="path7141_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M253.003,108.196c0-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.332C251.958,110.528,253.003,109.483,253.003,108.196z"/>
						<path id="path7143_19_" fill="none" stroke="#2A8FCE" d="M250.671,105.862V89.528"/>
					</g>
					<g id="g7145_19_">
						<path id="path7147_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M247.653,108.196c0-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.332C246.608,110.528,247.653,109.483,247.653,108.196z"/>
						<path id="path7149_19_" fill="none" stroke="#2A8FCE" d="M245.319,105.862V89.528"/>
					</g>
					<g id="g7151_19_">
						<path id="path7153_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M242.302,108.196c0-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.332C241.257,110.528,242.302,109.483,242.302,108.196z"/>
						<path id="path7155_19_" fill="none" stroke="#2A8FCE" d="M239.97,105.862V89.528"/>
					</g>
					<g id="g7157_19_">
						<path id="path7159_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M239.628,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C238.583,82.961,239.628,84.006,239.628,85.293z"/>
						<path id="path7161_19_" fill="none" stroke="#2A8FCE" d="M237.294,87.627v16.334"/>
					</g>
					<g id="g7163_19_">
						<path id="path7165_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M234.276,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C233.232,82.961,234.276,84.006,234.276,85.293z"/>
						<path id="path7167_19_" fill="none" stroke="#2A8FCE" d="M231.944,87.627v16.334"/>
					</g>
					<g id="g7169_19_">
						<path id="path7171_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M228.927,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.286,0-2.332-1.047-2.332-2.334s1.046-2.332,2.332-2.332C227.882,82.961,228.927,84.006,228.927,85.293z"/>
						<path id="path7173_19_" fill="none" stroke="#2A8FCE" d="M226.593,87.627v16.334"/>
					</g>
					<g id="g7175_19_">
						<path id="path7177_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M255.679,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.286,0-2.332-1.047-2.332-2.334s1.046-2.332,2.332-2.332C254.634,82.961,255.679,84.006,255.679,85.293z"/>
						<path id="path7179_19_" fill="none" stroke="#2A8FCE" d="M253.347,87.627v16.334"/>
					</g>
					<g id="g7181_19_">
						<path id="path7183_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M250.329,85.293c0,1.287-1.047,2.334-2.334,2.334
							s-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332S250.329,84.006,250.329,85.293z"/>
						<path id="path7185_19_" fill="none" stroke="#2A8FCE" d="M247.995,87.627v16.334"/>
					</g>
					<g id="g7187_19_">
						<path id="path7189_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M244.978,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C243.933,82.961,244.978,84.006,244.978,85.293z"/>
						<path id="path7191_19_" fill="none" stroke="#2A8FCE" d="M242.646,87.627v16.334"/>
					</g>
				</g>
				<g id="g7193_17_">
					<g id="g7195_19_">
						<path id="path7197_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M204.956,108.196c0-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.332S204.956,109.483,204.956,108.196z"/>
						<path id="path7199_19_" fill="none" stroke="#2A8FCE" d="M202.622,105.862V89.528"/>
					</g>
					<g id="g7201_19_">
						<path id="path7203_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M199.605,108.196c0-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.332C198.56,110.528,199.605,109.483,199.605,108.196z"/>
						<path id="path7205_19_" fill="none" stroke="#2A8FCE" d="M197.273,105.862V89.528"/>
					</g>
					<g id="g7207_19_">
						<path id="path7209_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M194.255,108.196c0-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.332C193.21,110.528,194.255,109.483,194.255,108.196z"/>
						<path id="path7211_19_" fill="none" stroke="#2A8FCE" d="M191.921,105.862V89.528"/>
					</g>
					<g id="g7213_19_">
						<path id="path7215_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M221.007,108.196c0-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.332C219.962,110.528,221.007,109.483,221.007,108.196z"/>
						<path id="path7217_19_" fill="none" stroke="#2A8FCE" d="M218.675,105.862V89.528"/>
					</g>
					<g id="g7219_19_">
						<path id="path7221_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M215.655,108.196c0-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.332C214.61,110.528,215.655,109.483,215.655,108.196z"/>
						<path id="path7223_19_" fill="none" stroke="#2A8FCE" d="M213.323,105.862V89.528"/>
					</g>
					<g id="g7225_19_">
						<path id="path7227_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M210.306,108.196c0-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.332C209.261,110.528,210.306,109.483,210.306,108.196z"/>
						<path id="path7229_19_" fill="none" stroke="#2A8FCE" d="M207.974,105.862V89.528"/>
					</g>
					<g id="g7231_19_">
						<path id="path7233_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M207.63,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C206.585,82.961,207.63,84.006,207.63,85.293z"/>
						<path id="path7235_19_" fill="none" stroke="#2A8FCE" d="M205.298,87.627v16.334"/>
					</g>
					<g id="g7237_19_">
						<path id="path7239_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M202.28,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C201.235,82.961,202.28,84.006,202.28,85.293z"/>
						<path id="path7241_19_" fill="none" stroke="#2A8FCE" d="M199.946,87.627v16.334"/>
					</g>
					<g id="g7243_19_">
						<path id="path7245_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M196.931,85.293c0,1.287-1.046,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C195.886,82.961,196.931,84.006,196.931,85.293z"/>
						<path id="path7247_19_" fill="none" stroke="#2A8FCE" d="M194.597,87.627v16.334"/>
					</g>
					<g id="g7249_19_">
						<path id="path7251_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M223.683,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C222.638,82.961,223.683,84.006,223.683,85.293z"/>
						<path id="path7253_19_" fill="none" stroke="#2A8FCE" d="M221.349,87.627v16.334"/>
					</g>
					<g id="g7255_19_">
						<path id="path7257_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M218.333,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C217.288,82.961,218.333,84.006,218.333,85.293z"/>
						<path id="path7259_19_" fill="none" stroke="#2A8FCE" d="M215.999,87.627v16.334"/>
					</g>
					<g id="g7261_19_">
						<path id="path7263_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M212.982,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C211.937,82.961,212.982,84.006,212.982,85.293z"/>
						<path id="path7265_19_" fill="none" stroke="#2A8FCE" d="M210.648,87.627v16.334"/>
					</g>
				</g>
				<g id="g7267_17_">
					<g id="g7269_19_">
						<path id="path7271_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M172.96,108.196c0-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.332C171.915,110.528,172.96,109.483,172.96,108.196z"/>
						<path id="path7273_19_" fill="none" stroke="#2A8FCE" d="M170.626,105.862V89.528"/>
					</g>
					<g id="g7275_19_">
						<path id="path7277_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M167.608,108.196c0-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.332C166.564,110.528,167.608,109.483,167.608,108.196z"/>
						<path id="path7279_19_" fill="none" stroke="#2A8FCE" d="M165.274,105.862V89.528"/>
					</g>
					<g id="g7281_19_">
						<path id="path7283_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M162.259,108.196c0-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.332C161.214,110.528,162.259,109.483,162.259,108.196z"/>
						<path id="path7285_19_" fill="none" stroke="#2A8FCE" d="M159.925,105.862V89.528"/>
					</g>
					<g id="g7287_19_">
						<path id="path7289_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M189.011,108.196c0-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.332C187.966,110.528,189.011,109.483,189.011,108.196z"/>
						<path id="path7291_19_" fill="none" stroke="#2A8FCE" d="M186.677,105.862V89.528"/>
					</g>
					<g id="g7293_19_">
						<path id="path7295_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M183.659,108.196c0-1.289-1.045-2.334-2.332-2.334
							s-2.334,1.045-2.334,2.334c0,1.287,1.047,2.332,2.334,2.332S183.659,109.483,183.659,108.196z"/>
						<path id="path7297_19_" fill="none" stroke="#2A8FCE" d="M181.327,105.862V89.528"/>
					</g>
					<g id="g7299_19_">
						<path id="path7301_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M178.31,108.196c0-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.332C177.265,110.528,178.31,109.483,178.31,108.196z"/>
						<path id="path7303_19_" fill="none" stroke="#2A8FCE" d="M175.976,105.862V89.528"/>
					</g>
					<g id="g7305_19_">
						<path id="path7307_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M175.634,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.288,0-2.334-1.047-2.334-2.334s1.046-2.332,2.334-2.332C174.589,82.961,175.634,84.006,175.634,85.293z"/>
						<path id="path7309_19_" fill="none" stroke="#2A8FCE" d="M173.302,87.627v16.334"/>
					</g>
					<g id="g7311_19_">
						<path id="path7313_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M170.282,85.293c0,1.287-1.045,2.334-2.332,2.334
							s-2.334-1.047-2.334-2.334s1.047-2.332,2.334-2.332S170.282,84.006,170.282,85.293z"/>
						<path id="path7315_19_" fill="none" stroke="#2A8FCE" d="M167.95,87.627v16.334"/>
					</g>
					<g id="g7317_19_">
						<path id="path7319_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M164.933,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C163.888,82.961,164.933,84.006,164.933,85.293z"/>
						<path id="path7321_19_" fill="none" stroke="#2A8FCE" d="M162.601,87.627v16.334"/>
					</g>
					<g id="g7323_19_">
						<path id="path7325_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M191.685,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C190.64,82.961,191.685,84.006,191.685,85.293z"/>
						<path id="path7327_19_" fill="none" stroke="#2A8FCE" d="M189.353,87.627v16.334"/>
					</g>
					<g id="g7329_19_">
						<path id="path7331_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M186.335,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C185.29,82.961,186.335,84.006,186.335,85.293z"/>
						<path id="path7333_19_" fill="none" stroke="#2A8FCE" d="M184.003,87.627v16.334"/>
					</g>
					<g id="g7335_19_">
						<path id="path7337_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M180.983,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C179.939,82.961,180.983,84.006,180.983,85.293z"/>
						<path id="path7339_19_" fill="none" stroke="#2A8FCE" d="M178.651,87.627v16.334"/>
					</g>
				</g>
				<g id="g7341_17_">
					<g id="g7343_19_">
						<path id="path7345_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M140.962,108.196c0-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.332C139.917,110.528,140.962,109.483,140.962,108.196z"/>
						<path id="path7347_19_" fill="none" stroke="#2A8FCE" d="M138.63,105.862V89.528"/>
					</g>
					<g id="g7349_19_">
						<path id="path7351_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M135.612,108.196c0-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.332S135.612,109.483,135.612,108.196z"/>
						<path id="path7353_19_" fill="none" stroke="#2A8FCE" d="M133.278,105.862V89.528"/>
					</g>
					<g id="g7355_19_">
						<path id="path7357_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M130.261,108.196c0-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.332C129.216,110.528,130.261,109.483,130.261,108.196z"/>
						<path id="path7359_19_" fill="none" stroke="#2A8FCE" d="M127.929,105.862V89.528"/>
					</g>
					<g id="g7361_19_">
						<path id="path7363_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M157.015,108.196c0-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.332C155.97,110.528,157.015,109.483,157.015,108.196z"/>
						<path id="path7365_19_" fill="none" stroke="#2A8FCE" d="M154.681,105.862V89.528"/>
					</g>
					<g id="g7367_19_">
						<path id="path7369_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M151.663,108.196c0-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.332C150.618,110.528,151.663,109.483,151.663,108.196z"/>
						<path id="path7371_19_" fill="none" stroke="#2A8FCE" d="M149.331,105.862V89.528"/>
					</g>
					<g id="g7373_19_">
						<path id="path7375_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M146.314,108.196c0-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.332C145.269,110.528,146.314,109.483,146.314,108.196z"/>
						<path id="path7377_19_" fill="none" stroke="#2A8FCE" d="M143.98,105.862V89.528"/>
					</g>
					<g id="g7379_19_">
						<path id="path7381_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M143.638,85.293c0,1.287-1.046,2.334-2.335,2.334
							c-1.286,0-2.331-1.047-2.331-2.334s1.045-2.332,2.331-2.332C142.593,82.961,143.638,84.006,143.638,85.293z"/>
						<path id="path7383_19_" fill="none" stroke="#2A8FCE" d="M141.304,87.627v16.334"/>
					</g>
					<g id="g7385_19_">
						<path id="path7387_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M138.288,85.293c0,1.287-1.047,2.334-2.334,2.334
							s-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332S138.288,84.006,138.288,85.293z"/>
						<path id="path7389_19_" fill="none" stroke="#2A8FCE" d="M135.954,87.627v16.334"/>
					</g>
					<g id="g7391_19_">
						<path id="path7393_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M132.937,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C131.892,82.961,132.937,84.006,132.937,85.293z"/>
						<path id="path7395_19_" fill="none" stroke="#2A8FCE" d="M130.605,87.627v16.334"/>
					</g>
					<g id="g7397_19_">
						<path id="path7399_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M159.689,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C158.644,82.961,159.689,84.006,159.689,85.293z"/>
						<path id="path7401_19_" fill="none" stroke="#2A8FCE" d="M157.357,87.627v16.334"/>
					</g>
					<g id="g7403_19_">
						<path id="path7405_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M154.339,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C153.294,82.961,154.339,84.006,154.339,85.293z"/>
						<path id="path7407_19_" fill="none" stroke="#2A8FCE" d="M152.005,87.627v16.334"/>
					</g>
					<g id="g7409_19_">
						<path id="path7411_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M148.987,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C147.942,82.961,148.987,84.006,148.987,85.293z"/>
						<path id="path7413_19_" fill="none" stroke="#2A8FCE" d="M146.655,87.627v16.334"/>
					</g>
				</g>
				<g id="g7415_18_">
					<g id="g7417_20_">
						<path id="path7419_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M108.965,108.196c0-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.332S108.965,109.483,108.965,108.196z"/>
						<path id="path7421_20_" fill="none" stroke="#2A8FCE" d="M106.632,105.862V89.528"/>
					</g>
					<g id="g7423_20_">
						<path id="path7425_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M103.614,108.196c0-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.332C102.569,110.528,103.614,109.483,103.614,108.196z"/>
					</g>
					<g id="g7429_20_">
						<path id="path7431_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M98.265,108.196c0-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.332C97.22,110.528,98.265,109.483,98.265,108.196z"/>
						<path id="path7433_20_" fill="none" stroke="#2A8FCE" d="M95.933,105.862V89.528"/>
					</g>
					<g id="g7435_20_">
						<path id="path7437_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M125.017,108.196c0-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.332C123.972,110.528,125.017,109.483,125.017,108.196z"/>
						<path id="path7439_20_" fill="none" stroke="#2A8FCE" d="M122.685,105.862V89.528"/>
					</g>
					<g id="g7441_20_">
						<path id="path7443_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M119.667,108.196c0-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.332C118.622,110.528,119.667,109.483,119.667,108.196z"/>
						<path id="path7445_20_" fill="none" stroke="#2A8FCE" d="M117.335,105.862V89.528"/>
					</g>
					<g id="g7447_20_">
						<path id="path7449_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M114.315,108.196c0-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.332C113.271,110.528,114.315,109.483,114.315,108.196z"/>
						<path id="path7451_20_" fill="none" stroke="#2A8FCE" d="M111.983,105.862V89.528"/>
					</g>
					<g id="g7453_20_">
						<path id="path7455_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M111.642,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C110.597,82.961,111.642,84.006,111.642,85.293z"/>
						<path id="path7457_20_" fill="none" stroke="#2A8FCE" d="M109.308,87.627v16.334"/>
					</g>
					<g id="g7459_20_">
						<path id="path7461_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M106.29,85.293c0,1.287-1.045,2.334-2.333,2.334
							s-2.333-1.047-2.333-2.334s1.045-2.332,2.333-2.332S106.29,84.006,106.29,85.293z"/>
						<path id="path7463_20_" fill="none" stroke="#2A8FCE" d="M103.957,87.627v16.334"/>
					</g>
					<g id="g7465_20_">
						<path id="path7467_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M100.94,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C99.896,82.961,100.94,84.006,100.94,85.293z"/>
						<path id="path7469_20_" fill="none" stroke="#2A8FCE" d="M98.606,87.627v16.334"/>
					</g>
					<g id="g7471_20_">
						<path id="path7473_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M127.692,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C126.648,82.961,127.692,84.006,127.692,85.293z"/>
						<path id="path7475_20_" fill="none" stroke="#2A8FCE" d="M125.358,87.627v16.334"/>
					</g>
					<g id="g7477_20_">
						<path id="path7479_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M122.343,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.286,0-2.332-1.047-2.332-2.334s1.046-2.332,2.332-2.332C121.298,82.961,122.343,84.006,122.343,85.293z"/>
						<path id="path7481_20_" fill="none" stroke="#2A8FCE" d="M120.009,87.627v16.334"/>
					</g>
					<g id="g7483_20_">
						<path id="path7485_20_" fill="#C2DCF3" stroke="#2A8FCE" d="M116.991,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C115.946,82.961,116.991,84.006,116.991,85.293z"/>
						<path id="path7487_20_" fill="none" stroke="#2A8FCE" d="M114.657,87.627v16.334"/>
					</g>
				</g>
			</g>
			<g id="g59398_16_" transform="translate(21.16987,-31.23187)">
				<g id="g7415_17_">
					<g id="g7417_19_">
						<path id="path7419_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M301.091,108.196c0-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.332C300.046,110.528,301.091,109.483,301.091,108.196z"/>
						<path id="path7421_19_" fill="none" stroke="#2A8FCE" d="M298.757,105.862V89.528"/>
					</g>
					<g id="g7423_19_">
						<path id="path7425_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M295.739,108.196c0-1.289-1.045-2.334-2.332-2.334
							s-2.334,1.045-2.334,2.334c0,1.287,1.047,2.332,2.334,2.332S295.739,109.483,295.739,108.196z"/>
						<path id="path7427_19_" fill="none" stroke="#2A8FCE" d="M293.407,105.862V89.528"/>
					</g>
					<g id="g7429_19_">
						<path id="path7431_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M290.389,108.196c0-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.332C289.345,110.528,290.389,109.483,290.389,108.196z"/>
						<path id="path7433_19_" fill="none" stroke="#2A8FCE" d="M288.057,105.862V89.528"/>
					</g>
					<g id="g7435_19_">
						<path id="path7437_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M317.142,108.196c0-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.332S317.142,109.483,317.142,108.196z"/>
						<path id="path7439_19_" fill="none" stroke="#2A8FCE" d="M314.808,105.862V89.528"/>
					</g>
					<g id="g7441_19_">
						<path id="path7443_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M311.791,108.196c0-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.332C310.746,110.528,311.791,109.483,311.791,108.196z"/>
						<path id="path7445_19_" fill="none" stroke="#2A8FCE" d="M309.459,105.862V89.528"/>
					</g>
					<g id="g7447_19_">
						<path id="path7449_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M306.441,108.196c0-1.289-1.046-2.334-2.334-2.334
							c-1.287,0-2.334,1.045-2.334,2.334c0,1.287,1.047,2.332,2.334,2.332C305.396,110.528,306.441,109.483,306.441,108.196z"/>
						<path id="path7451_19_" fill="none" stroke="#2A8FCE" d="M304.107,105.862V89.528"/>
					</g>
					<g id="g7453_19_">
						<path id="path7455_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M303.765,85.293c0,1.287-1.045,2.334-2.333,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C302.721,82.961,303.765,84.006,303.765,85.293z"/>
						<path id="path7457_19_" fill="none" stroke="#2A8FCE" d="M301.432,87.627v16.334"/>
					</g>
					<g id="g7459_19_">
						<path id="path7461_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M298.415,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C297.37,82.961,298.415,84.006,298.415,85.293z"/>
						<path id="path7463_19_" fill="none" stroke="#2A8FCE" d="M296.083,87.627v16.334"/>
					</g>
					<g id="g7465_19_">
						<path id="path7467_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M293.064,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.286,0-2.332-1.047-2.332-2.334s1.046-2.332,2.332-2.332C292.02,82.961,293.064,84.006,293.064,85.293z"/>
						<path id="path7469_19_" fill="none" stroke="#2A8FCE" d="M290.732,87.627v16.334"/>
					</g>
					<g id="g7471_19_">
						<path id="path7473_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M319.816,85.293c0,1.287-1.046,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C318.771,82.961,319.816,84.006,319.816,85.293z"/>
						<path id="path7475_19_" fill="none" stroke="#2A8FCE" d="M317.484,87.627v16.334"/>
					</g>
					<g id="g7477_19_">
						<path id="path7479_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M314.467,85.293c0,1.287-1.045,2.334-2.334,2.334
							c-1.287,0-2.332-1.047-2.332-2.334s1.045-2.332,2.332-2.332C313.422,82.961,314.467,84.006,314.467,85.293z"/>
						<path id="path7481_19_" fill="none" stroke="#2A8FCE" d="M312.133,87.627v16.334"/>
					</g>
					<g id="g7483_19_">
						<path id="path7485_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M309.115,85.293c0,1.287-1.045,2.334-2.332,2.334
							c-1.289,0-2.334-1.047-2.334-2.334s1.045-2.332,2.334-2.332C308.07,82.961,309.115,84.006,309.115,85.293z"/>
						<path id="path7487_19_" fill="none" stroke="#2A8FCE" d="M306.783,87.627v16.334"/>
					</g>
				</g>
			</g>
		</g>
	</g>
	<g>
		<g id="g7059_19_">
			<path id="path7061_19_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,286.47c1.289,0,2.334-1.045,2.334-2.334
				c0-1.286-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.046-2.332,2.332C385.08,285.425,386.125,286.47,387.412,286.47z"/>
			<path id="path7063_19_" fill="none" stroke="#2A8FCE" d="M389.746,284.136h16.334"/>
		</g>
		<g id="g7121_18_">
			<path id="path7123_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,265.173c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,264.128,386.125,265.173,387.412,265.173z"/>
			<path id="path7125_18_" fill="none" stroke="#2A8FCE" d="M389.746,262.841h16.334"/>
		</g>
		<g id="g7127_18_">
			<path id="path7129_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,259.823c1.289,0,2.334-1.046,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,258.777,386.125,259.823,387.412,259.823z"/>
			<path id="path7131_18_" fill="none" stroke="#2A8FCE" d="M389.746,257.491h16.334"/>
		</g>
		<g id="g7133_18_">
			<path id="path7135_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,254.473c1.289,0,2.334-1.046,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,253.427,386.125,254.473,387.412,254.473z"/>
			<path id="path7137_18_" fill="none" stroke="#2A8FCE" d="M389.746,252.141h16.334"/>
		</g>
		<g id="g7139_18_">
			<path id="path7141_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,281.225c1.289,0,2.334-1.046,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,280.179,386.125,281.225,387.412,281.225z"/>
			<path id="path7143_18_" fill="none" stroke="#2A8FCE" d="M389.746,278.893h16.334"/>
		</g>
		<g id="g7145_18_">
			<path id="path7147_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,275.874c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,274.829,386.125,275.874,387.412,275.874z"/>
			<path id="path7149_18_" fill="none" stroke="#2A8FCE" d="M389.746,273.542h16.334"/>
		</g>
		<g id="g7151_18_">
			<path id="path7153_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,270.521c1.289,0,2.334-1.045,2.334-2.332
				s-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.047-2.332,2.334S386.125,270.521,387.412,270.521z"/>
			<path id="path7155_18_" fill="none" stroke="#2A8FCE" d="M389.746,268.189h16.334"/>
		</g>
		<g id="g7157_18_">
			<path id="path7159_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,267.85c-1.286,0-2.331-1.046-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,266.804,411.599,267.85,410.312,267.85z"/>
			<path id="path7161_18_" fill="none" stroke="#2A8FCE" d="M407.98,265.516h-16.334"/>
		</g>
		<g id="g7163_18_">
			<path id="path7165_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,262.497c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,261.452,411.599,262.497,410.312,262.497z"/>
			<path id="path7167_18_" fill="none" stroke="#2A8FCE" d="M407.98,260.165h-16.334"/>
		</g>
		<g id="g7169_18_">
			<path id="path7171_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,257.146c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,256.104,411.599,257.146,410.312,257.146z"/>
			<path id="path7173_18_" fill="none" stroke="#2A8FCE" d="M407.98,254.812h-16.334"/>
		</g>
		<g id="g7175_18_">
			<path id="path7177_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,283.898c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,282.854,411.599,283.898,410.312,283.898z"/>
			<path id="path7179_18_" fill="none" stroke="#2A8FCE" d="M407.98,281.566h-16.334"/>
		</g>
		<g id="g7181_18_">
			<path id="path7183_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,278.55c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,277.505,411.599,278.55,410.312,278.55z"/>
			<path id="path7185_18_" fill="none" stroke="#2A8FCE" d="M407.98,276.216h-16.334"/>
		</g>
		<g id="g7187_18_">
			<path id="path7189_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,273.2c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,272.155,411.599,273.2,410.312,273.2z"/>
			<path id="path7191_18_" fill="none" stroke="#2A8FCE" d="M407.98,270.866h-16.334"/>
		</g>
		<g id="g7195_18_">
			<path id="path7197_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,233.177c1.289,0,2.334-1.045,2.334-2.334
				c0-1.286-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.046-2.332,2.332C385.08,232.132,386.125,233.177,387.412,233.177z"/>
			<path id="path7199_18_" fill="none" stroke="#2A8FCE" d="M389.746,230.843h16.334"/>
		</g>
		<g id="g7201_18_">
			<path id="path7203_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,227.827c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,226.782,386.125,227.827,387.412,227.827z"/>
			<path id="path7205_18_" fill="none" stroke="#2A8FCE" d="M389.746,225.493h16.334"/>
		</g>
		<g id="g7207_18_">
			<path id="path7209_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,222.477c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,221.432,386.125,222.477,387.412,222.477z"/>
			<path id="path7211_18_" fill="none" stroke="#2A8FCE" d="M389.746,220.143h16.334"/>
		</g>
		<g id="g7213_18_">
			<path id="path7215_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,249.229c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,248.184,386.125,249.229,387.412,249.229z"/>
			<path id="path7217_18_" fill="none" stroke="#2A8FCE" d="M389.746,246.896h16.334"/>
		</g>
		<g id="g7219_18_">
			<path id="path7221_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,243.878c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,242.833,386.125,243.878,387.412,243.878z"/>
			<path id="path7223_18_" fill="none" stroke="#2A8FCE" d="M389.746,241.544h16.334"/>
		</g>
		<g id="g7225_18_">
			<path id="path7227_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,238.527c1.289,0,2.334-1.047,2.334-2.334
				c0-1.286-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.046-2.332,2.332C385.08,237.48,386.125,238.527,387.412,238.527z"/>
			<path id="path7229_18_" fill="none" stroke="#2A8FCE" d="M389.746,236.193h16.334"/>
		</g>
		<g id="g7231_18_">
			<path id="path7233_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,235.852c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,234.807,411.599,235.852,410.312,235.852z"/>
			<path id="path7235_18_" fill="none" stroke="#2A8FCE" d="M407.98,233.52h-16.334"/>
		</g>
		<g id="g7237_18_">
			<path id="path7239_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,230.501c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,229.456,411.599,230.501,410.312,230.501z"/>
			<path id="path7241_18_" fill="none" stroke="#2A8FCE" d="M407.98,228.169h-16.334"/>
		</g>
		<g id="g7243_18_">
			<path id="path7245_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,225.15c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.286,1.045-2.332,2.331-2.332c1.289,0,2.335,1.046,2.335,2.332C412.646,224.105,411.599,225.15,410.312,225.15z"/>
			<path id="path7247_18_" fill="none" stroke="#2A8FCE" d="M407.98,222.816h-16.334"/>
		</g>
		<g id="g7249_18_">
			<path id="path7251_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,251.902c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.288,1.045-2.334,2.331-2.334c1.289,0,2.335,1.046,2.335,2.334C412.646,250.857,411.599,251.902,410.312,251.902z"/>
			<path id="path7253_18_" fill="none" stroke="#2A8FCE" d="M407.98,249.57h-16.334"/>
		</g>
		<g id="g7255_18_">
			<path id="path7257_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,246.555c-1.286,0-2.331-1.046-2.331-2.335
				c0-1.286,1.045-2.331,2.331-2.331c1.289,0,2.335,1.045,2.335,2.331C412.646,245.509,411.599,246.555,410.312,246.555z"/>
			<path id="path7259_18_" fill="none" stroke="#2A8FCE" d="M407.98,244.22h-16.334"/>
		</g>
		<g id="g7261_18_">
			<path id="path7263_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,241.202c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,240.157,411.599,241.202,410.312,241.202z"/>
			<path id="path7265_18_" fill="none" stroke="#2A8FCE" d="M407.98,238.87h-16.334"/>
		</g>
		<g id="g7269_18_">
			<path id="path7271_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,201.182c1.289,0,2.334-1.046,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,200.136,386.125,201.182,387.412,201.182z"/>
			<path id="path7273_18_" fill="none" stroke="#2A8FCE" d="M389.746,198.848h16.334"/>
		</g>
		<g id="g7275_18_">
			<path id="path7277_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,195.829c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,194.784,386.125,195.829,387.412,195.829z"/>
			<path id="path7279_18_" fill="none" stroke="#2A8FCE" d="M389.746,193.497h16.334"/>
		</g>
		<g id="g7281_18_">
			<path id="path7283_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,190.479c1.289,0,2.334-1.045,2.334-2.333
				c0-1.285-1.045-2.33-2.334-2.33c-1.287,0-2.332,1.045-2.332,2.33C385.08,189.436,386.125,190.479,387.412,190.479z"/>
			<path id="path7285_18_" fill="none" stroke="#2A8FCE" d="M389.746,188.146h16.334"/>
		</g>
		<g id="g7287_18_">
			<path id="path7289_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,217.23c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,216.188,386.125,217.23,387.412,217.23z"/>
			<path id="path7291_18_" fill="none" stroke="#2A8FCE" d="M389.746,214.896h16.334"/>
		</g>
		<g id="g7293_18_">
			<path id="path7295_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,211.882c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,210.837,386.125,211.882,387.412,211.882z"/>
			<path id="path7297_18_" fill="none" stroke="#2A8FCE" d="M389.746,209.548h16.334"/>
		</g>
		<g id="g7299_18_">
			<path id="path7301_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,206.53c1.289,0,2.334-1.046,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,205.484,386.125,206.53,387.412,206.53z"/>
			<path id="path7303_18_" fill="none" stroke="#2A8FCE" d="M389.746,204.198h16.334"/>
		</g>
		<g id="g7305_18_">
			<path id="path7307_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,203.854c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,202.811,411.599,203.854,410.312,203.854z"/>
			<path id="path7309_18_" fill="none" stroke="#2A8FCE" d="M407.98,201.521h-16.334"/>
		</g>
		<g id="g7311_18_">
			<path id="path7313_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,198.505c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,197.46,411.599,198.505,410.312,198.505z"/>
			<path id="path7315_18_" fill="none" stroke="#2A8FCE" d="M407.98,196.171h-16.334"/>
		</g>
		<g id="g7317_18_">
			<path id="path7319_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,193.155c-1.286,0-2.331-1.048-2.331-2.335
				c0-1.286,1.045-2.331,2.331-2.331c1.289,0,2.335,1.045,2.335,2.331C412.647,192.107,411.599,193.155,410.312,193.155z"/>
			<path id="path7321_18_" fill="none" stroke="#2A8FCE" d="M407.98,190.82h-16.334"/>
		</g>
		<g id="g7323_18_">
			<path id="path7325_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,219.907c-1.286,0-2.331-1.046-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,218.861,411.599,219.907,410.312,219.907z"/>
			<path id="path7327_18_" fill="none" stroke="#2A8FCE" d="M407.98,217.575h-16.334"/>
		</g>
		<g id="g7329_18_">
			<path id="path7331_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,214.557c-1.286,0-2.331-1.046-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,213.511,411.599,214.557,410.312,214.557z"/>
			<path id="path7333_18_" fill="none" stroke="#2A8FCE" d="M407.98,212.225h-16.334"/>
		</g>
		<g id="g7335_18_">
			<path id="path7337_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,209.206c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,208.161,411.599,209.206,410.312,209.206z"/>
			<path id="path7339_18_" fill="none" stroke="#2A8FCE" d="M407.98,206.872h-16.334"/>
		</g>
		<g id="g7343_18_">
			<path id="path7345_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,169.185c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,168.14,386.125,169.185,387.412,169.185z"/>
			<path id="path7347_18_" fill="none" stroke="#2A8FCE" d="M389.746,166.853h16.334"/>
		</g>
		<g id="g7349_18_">
			<path id="path7351_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,163.835c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,162.79,386.125,163.835,387.412,163.835z"/>
			<path id="path7353_18_" fill="none" stroke="#2A8FCE" d="M389.746,161.503h16.334"/>
		</g>
		<g id="g7355_18_">
			<path id="path7357_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,158.483c1.289,0,2.334-1.045,2.334-2.332
				c0-1.287-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.047-2.332,2.334C385.08,157.438,386.125,158.483,387.412,158.483z"/>
			<path id="path7359_18_" fill="none" stroke="#2A8FCE" d="M389.746,156.151h16.334"/>
		</g>
		<g id="g7361_18_">
			<path id="path7363_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,185.237c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,184.192,386.125,185.237,387.412,185.237z"/>
			<path id="path7365_18_" fill="none" stroke="#2A8FCE" d="M389.746,182.903h16.334"/>
		</g>
		<g id="g7367_18_">
			<path id="path7369_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,179.886c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,178.841,386.125,179.886,387.412,179.886z"/>
			<path id="path7371_18_" fill="none" stroke="#2A8FCE" d="M389.746,177.554h16.334"/>
		</g>
		<g id="g7373_18_">
			<path id="path7375_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,174.536c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,173.491,386.125,174.536,387.412,174.536z"/>
			<path id="path7377_18_" fill="none" stroke="#2A8FCE" d="M389.746,172.204h16.334"/>
		</g>
		<g id="g7379_18_">
			<path id="path7381_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,171.86c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,170.815,411.599,171.86,410.312,171.86z"/>
			<path id="path7383_18_" fill="none" stroke="#2A8FCE" d="M407.98,169.526h-16.334"/>
		</g>
		<g id="g7385_18_">
			<path id="path7387_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,166.511c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,165.466,411.599,166.511,410.312,166.511z"/>
			<path id="path7389_18_" fill="none" stroke="#2A8FCE" d="M407.98,164.177h-16.334"/>
		</g>
		<g id="g7391_18_">
			<path id="path7393_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,161.161c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,160.116,411.599,161.161,410.312,161.161z"/>
			<path id="path7395_18_" fill="none" stroke="#2A8FCE" d="M407.98,158.827h-16.334"/>
		</g>
		<g id="g7397_18_">
			<path id="path7399_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,187.911c-1.286,0-2.331-1.043-2.331-2.332
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,186.868,411.599,187.911,410.312,187.911z"/>
			<path id="path7401_18_" fill="none" stroke="#2A8FCE" d="M407.98,185.579h-16.334"/>
		</g>
		<g id="g7403_18_">
			<path id="path7405_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,182.562c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,181.517,411.599,182.562,410.312,182.562z"/>
			<path id="path7407_18_" fill="none" stroke="#2A8FCE" d="M407.98,180.228h-16.334"/>
		</g>
		<g id="g7409_18_">
			<path id="path7411_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,177.212c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,176.167,411.599,177.212,410.312,177.212z"/>
			<path id="path7413_18_" fill="none" stroke="#2A8FCE" d="M407.98,174.878h-16.334"/>
		</g>
		<g id="g7417_18_">
			<path id="path7419_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,137.188c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,136.144,386.125,137.188,387.412,137.188z"/>
			<path id="path7421_18_" fill="none" stroke="#2A8FCE" d="M389.746,134.854h16.334"/>
		</g>
		<g id="g7423_18_">
			<path id="path7425_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,131.837c1.289,0,2.334-1.045,2.334-2.332
				s-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.047-2.332,2.334S386.125,131.837,387.412,131.837z"/>
			<path id="path7427_18_" fill="none" stroke="#2A8FCE" d="M389.746,129.505h16.334"/>
		</g>
		<g id="g7429_18_">
			<path id="path7431_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,126.487c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,125.442,386.125,126.487,387.412,126.487z"/>
			<path id="path7433_18_" fill="none" stroke="#2A8FCE" d="M389.746,124.155h16.334"/>
		</g>
		<g id="g7435_18_">
			<path id="path7437_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,153.241c1.289,0,2.334-1.047,2.334-2.334
				c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C385.08,152.194,386.125,153.241,387.412,153.241z"/>
			<path id="path7439_18_" fill="none" stroke="#2A8FCE" d="M389.746,150.907h16.334"/>
		</g>
		<g id="g7441_18_">
			<path id="path7443_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,147.89c1.289,0,2.334-1.045,2.334-2.332
				c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C385.08,146.845,386.125,147.89,387.412,147.89z"/>
			<path id="path7445_18_" fill="none" stroke="#2A8FCE" d="M389.746,145.558h16.334"/>
		</g>
		<g id="g7447_18_">
			<path id="path7449_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.412,142.54c1.289,0,2.334-1.045,2.334-2.334
				c0-1.287-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.047-2.332,2.334C385.08,141.495,386.125,142.54,387.412,142.54z"/>
			<path id="path7451_18_" fill="none" stroke="#2A8FCE" d="M389.746,140.206h16.334"/>
		</g>
		<g id="g7453_18_">
			<path id="path7455_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,139.864c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,138.819,411.599,139.864,410.312,139.864z"/>
			<path id="path7457_18_" fill="none" stroke="#2A8FCE" d="M407.98,137.53h-16.334"/>
		</g>
		<g id="g7459_18_">
			<path id="path7461_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,134.513c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,133.468,411.599,134.513,410.312,134.513z"/>
			<path id="path7463_18_" fill="none" stroke="#2A8FCE" d="M407.98,132.181h-16.334"/>
		</g>
		<g id="g7465_18_">
			<path id="path7467_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,129.163c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,128.118,411.599,129.163,410.312,129.163z"/>
			<path id="path7469_18_" fill="none" stroke="#2A8FCE" d="M407.98,126.829h-16.334"/>
		</g>
		<g id="g7471_18_">
			<path id="path7473_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,155.915c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,154.87,411.599,155.915,410.312,155.915z"/>
			<path id="path7475_18_" fill="none" stroke="#2A8FCE" d="M407.98,153.583h-16.334"/>
		</g>
		<g id="g7477_18_">
			<path id="path7479_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,150.565c-1.286,0-2.331-1.045-2.331-2.334
				c0-1.287,1.045-2.332,2.331-2.332c1.289,0,2.335,1.045,2.335,2.332C412.646,149.521,411.599,150.565,410.312,150.565z"/>
			<path id="path7481_18_" fill="none" stroke="#2A8FCE" d="M407.98,148.231h-16.334"/>
		</g>
		<g id="g7483_18_">
			<path id="path7485_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M410.312,145.214c-1.286,0-2.331-1.045-2.331-2.332
				c0-1.289,1.045-2.334,2.331-2.334c1.289,0,2.335,1.045,2.335,2.334C412.646,144.169,411.599,145.214,410.312,145.214z"/>
			<path id="path7487_18_" fill="none" stroke="#2A8FCE" d="M407.98,142.882h-16.334"/>
		</g>
		<g id="g6923_11_" transform="translate(19.90030,-35.04058)">
			<g id="g6560_13_">
				<g id="g3088_13_">
					<path id="path3084_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M354.074,89.219c0,1.287,1.045,2.332,2.332,2.332
						c1.289,0,2.334-1.045,2.334-2.332c0-1.287-1.045-2.332-2.334-2.332C355.119,86.887,354.074,87.932,354.074,89.219z"/>
					<path id="path3086_13_" fill="none" stroke="#2A8FCE" d="M356.406,91.551v16.336"/>
				</g>
				<g id="g3092_13_">
					<path id="path3094_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M359.515,89.344c-0.16,1.277,0.746,2.445,2.023,2.605
						c1.277,0.162,2.445-0.746,2.604-2.023c0.16-1.277-0.746-2.445-2.022-2.605C360.844,87.161,359.676,88.067,359.515,89.344z"/>
					<path id="path3096_13_" fill="none" stroke="#2A8FCE" d="M361.541,91.95l-2.037,16.207"/>
				</g>
				<g id="g3098_12_">
					<path id="path3100_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M356.43,112.26c0-1.287-1.043-2.334-2.33-2.336
						c-1.289-0.002-2.336,1.041-2.336,2.33c-0.002,1.287,1.041,2.334,2.328,2.336C355.381,114.592,356.428,113.547,356.43,112.26z"
						/>
					<path id="path3102_12_" fill="none" stroke="#2A8FCE" d="M354.099,109.922l0.023-16.334"/>
				</g>
				<g id="g3104_13_">
					<path id="path3106_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M361.969,114.081c0.404-1.223-0.26-2.543-1.479-2.947
						c-1.226-0.404-2.543,0.26-2.947,1.482c-0.406,1.223,0.258,2.543,1.481,2.947C360.246,115.967,361.566,115.303,361.969,114.081z
						"/>
					<path id="path3108_13_" fill="none" stroke="#2A8FCE" d="M360.488,111.133l5.129-15.508"/>
				</g>
				<g id="g3110_13_">
					<path id="path3112_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M366.906,124.253c1.287-0.002,2.33-1.053,2.325-2.34
						c-0.006-1.289-1.053-2.33-2.342-2.326c-1.287,0.004-2.33,1.053-2.324,2.34C364.57,123.215,365.617,124.256,366.906,124.253z"/>
					<path id="path3114_13_" fill="none" stroke="#2A8FCE" d="M369.232,121.913l16.335-0.049"/>
				</g>
				<g id="g3116_13_">
					<path id="path3118_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M365.525,118.944c1.081-0.699,1.393-2.145,0.692-3.227
						s-2.145-1.393-3.227-0.693s-1.394,2.143-0.693,3.225S364.443,119.643,365.525,118.944z"/>
					<path id="path3120_13_" fill="none" stroke="#2A8FCE" d="M366.219,115.717l13.723-8.859"/>
				</g>
				<g id="g3122_13_">
					<path id="path3124_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M364.908,90.196c-0.398,1.225,0.271,2.541,1.496,2.939
						c1.227,0.398,2.543-0.271,2.938-1.498c0.398-1.225-0.271-2.541-1.496-2.939C366.622,88.3,365.305,88.971,364.908,90.196z"/>
					<path id="path3126_13_" fill="none" stroke="#2A8FCE" d="M366.404,93.135l-5.052,15.533"/>
				</g>
				<g id="g3128_13_">
					<path id="path3130_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M370.139,91.983c-0.58,1.148-0.119,2.553,1.031,3.133
						c1.15,0.58,2.553,0.119,3.133-1.031c0.582-1.15,0.119-2.555-1.029-3.135C372.123,90.372,370.719,90.833,370.139,91.983z"/>
					<path id="path3132_13_" fill="none" stroke="#2A8FCE" d="M371.17,95.118L363.81,109.7"/>
				</g>
				<g id="g3134_13_">
					<path id="path3136_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M374.861,94.61c-0.765,1.039-0.537,2.5,0.502,3.262
						c1.037,0.762,2.498,0.537,3.26-0.502c0.762-1.037,0.537-2.498-0.5-3.26C377.084,93.348,375.623,93.571,374.861,94.61z"/>
					<path id="path3138_13_" fill="none" stroke="#2A8FCE" d="M375.363,97.872l-9.662,13.17"/>
				</g>
				<g id="g3140_13_">
					<path id="path3142_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M379.287,97.866c-0.931,0.893-0.959,2.371-0.066,3.299
						c0.896,0.928,2.371,0.957,3.299,0.064c0.931-0.893,0.959-2.369,0.066-3.299C381.691,97.003,380.215,96.973,379.287,97.866z"/>
					<path id="path3144_13_" fill="none" stroke="#2A8FCE" d="M379.221,101.165l-11.772,11.322"/>
				</g>
				<g id="g3146_13_">
					<path id="path3148_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M389.89,116.811c-1.287,0.064-2.276,1.16-2.215,2.445
						c0.064,1.287,1.158,2.279,2.445,2.217c1.287-0.064,2.279-1.16,2.215-2.447C392.273,117.739,391.178,116.747,389.89,116.811z"/>
					<path id="path3150_13_" fill="none" stroke="#2A8FCE" d="M387.676,119.256l-16.312,0.809"/>
				</g>
				<g id="g3152_13_">
					<path id="path3154_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M388.455,111.381c-1.258,0.279-2.053,1.525-1.775,2.781
						c0.279,1.258,1.525,2.053,2.781,1.775c1.258-0.277,2.053-1.523,1.775-2.781C390.958,111.898,389.713,111.104,388.455,111.381z"
						/>
					<path id="path3156_13_" fill="none" stroke="#2A8FCE" d="M386.68,114.163l-15.949,3.525"/>
				</g>
				<g id="g3158_13_">
					<path id="path3160_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M383.158,101.706c-1.076,0.709-1.371,2.156-0.662,3.232
						c0.709,1.074,2.156,1.371,3.229,0.662c1.076-0.711,1.371-2.158,0.662-3.232C385.68,101.292,384.232,100.995,383.158,101.706z"
						/>
					<path id="path3162_13_" fill="none" stroke="#2A8FCE" d="M382.496,104.938l-13.635,8.996"/>
				</g>
				<g id="g3164_13_">
					<path id="path3166_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M386.205,106.372c-1.191,0.492-1.758,1.857-1.267,3.047
						c0.492,1.191,1.855,1.758,3.048,1.266c1.188-0.492,1.758-1.857,1.266-3.047C388.758,106.446,387.394,105.879,386.205,106.372z"
						/>
					<path id="path3168_13_" fill="none" stroke="#2A8FCE" d="M384.939,109.419l-15.096,6.24"/>
				</g>
				<g id="g3340_13_">
					<path id="path3342_13_" fill="#C2DCF3" stroke="#2A8FCE" d="M390.293,122.258c-1.289-0.012-2.342,1.025-2.354,2.313
						c-0.012,1.289,1.023,2.344,2.313,2.354c1.289,0.012,2.342-1.025,2.354-2.313C392.617,123.323,391.58,122.27,390.293,122.258z"
						/>
					<path id="path3344_13_" fill="none" stroke="#2A8FCE" d="M387.939,124.571l-16.334-0.139"/>
				</g>
			</g>
			<g id="g6281_12_">
				<g id="g3643_12_">
					<path id="path3645_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M367.512,140.561c1.289,0,2.334-1.045,2.334-2.334
						c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C365.18,139.516,366.224,140.561,367.512,140.561z"/>
					<path id="path3647_12_" fill="none" stroke="#2A8FCE" d="M369.846,138.227h16.334"/>
				</g>
				<g id="g3649_12_">
					<path id="path3651_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M367.512,135.21c1.289,0,2.334-1.045,2.334-2.332
						c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C365.18,134.165,366.224,135.21,367.512,135.21z"/>
					<path id="path3653_12_" fill="none" stroke="#2A8FCE" d="M369.846,132.878h16.334"/>
				</g>
				<g id="g3655_12_">
					<path id="path3657_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M367.512,129.858c1.289,0,2.334-1.045,2.334-2.332
						c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C365.18,128.813,366.224,129.858,367.512,129.858z"/>
					<path id="path3659_12_" fill="none" stroke="#2A8FCE" d="M369.846,127.526h16.334"/>
				</g>
				<g id="g3661_12_">
					<path id="path3663_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M367.512,156.612c1.289,0,2.334-1.045,2.334-2.334
						c0-1.287-1.045-2.332-2.334-2.332c-1.287,0-2.332,1.045-2.332,2.332C365.18,155.567,366.224,156.612,367.512,156.612z"/>
					<path id="path3665_12_" fill="none" stroke="#2A8FCE" d="M369.846,154.278h16.334"/>
				</g>
				<g id="g3667_12_">
					<path id="path3669_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M367.512,151.26c1.289,0,2.334-1.045,2.334-2.332
						c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C365.18,150.215,366.224,151.26,367.512,151.26z"/>
					<path id="path3671_12_" fill="none" stroke="#2A8FCE" d="M369.846,148.928h16.334"/>
				</g>
				<g id="g3673_12_">
					<path id="path3675_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M367.512,145.911c1.289,0,2.334-1.045,2.334-2.332
						c0-1.289-1.045-2.334-2.334-2.334c-1.287,0-2.332,1.045-2.332,2.334C365.18,144.866,366.224,145.911,367.512,145.911z"/>
					<path id="path3677_12_" fill="none" stroke="#2A8FCE" d="M369.846,143.579h16.334"/>
				</g>
				<g id="g3679_12_">
					<path id="path3681_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M390.414,143.235c-1.289,0-2.334-1.045-2.334-2.332
						c0-1.289,1.045-2.334,2.334-2.334c1.287,0,2.332,1.045,2.332,2.334C392.746,142.19,391.701,143.235,390.414,143.235z"/>
					<path id="path3683_12_" fill="none" stroke="#2A8FCE" d="M388.08,140.903h-16.334"/>
				</g>
				<g id="g3685_12_">
					<path id="path3687_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M390.414,137.885c-1.289,0-2.334-1.045-2.334-2.334
						c0-1.287,1.045-2.332,2.334-2.332c1.287,0,2.332,1.045,2.332,2.332C392.746,136.84,391.701,137.885,390.414,137.885z"/>
					<path id="path3689_12_" fill="none" stroke="#2A8FCE" d="M388.08,135.551h-16.334"/>
				</g>
				<g id="g3691_12_">
					<path id="path3693_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M390.414,132.534c-1.289,0-2.334-1.045-2.334-2.332
						c0-1.287,1.045-2.332,2.334-2.332c1.287,0,2.332,1.045,2.332,2.332C392.746,131.489,391.701,132.534,390.414,132.534z"/>
					<path id="path3695_12_" fill="none" stroke="#2A8FCE" d="M388.08,130.202h-16.334"/>
				</g>
				<g id="g3697_12_">
					<path id="path3699_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M390.414,159.288c-1.289,0-2.334-1.047-2.334-2.334
						c0-1.287,1.045-2.332,2.334-2.332c1.287,0,2.332,1.045,2.332,2.332C392.746,158.241,391.701,159.288,390.414,159.288z"/>
					<path id="path3701_12_" fill="none" stroke="#2A8FCE" d="M388.08,156.954h-16.334"/>
				</g>
				<g id="g3703_12_">
					<path id="path3705_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M390.414,153.936c-1.289,0-2.334-1.045-2.334-2.332
						c0-1.289,1.045-2.334,2.334-2.334c1.287,0,2.332,1.045,2.332,2.334C392.746,152.891,391.701,153.936,390.414,153.936z"/>
					<path id="path3707_12_" fill="none" stroke="#2A8FCE" d="M388.08,151.604h-16.334"/>
				</g>
				<g id="g3709_12_">
					<path id="path3711_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M390.414,148.586c-1.289,0-2.334-1.045-2.334-2.334
						c0-1.287,1.045-2.332,2.334-2.332c1.287,0,2.332,1.045,2.332,2.332C392.746,147.542,391.701,148.586,390.414,148.586z"/>
					<path id="path3713_12_" fill="none" stroke="#2A8FCE" d="M388.08,146.253h-16.334"/>
				</g>
			</g>
			<g id="g6439_12_">
				<g id="g6441_12_">
					<path id="path6443_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M334.715,112.001c0-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.334C333.67,114.335,334.715,113.29,334.715,112.001z"/>
					<path id="path6445_12_" fill="none" stroke="#2A8FCE" d="M332.383,109.669V93.335"/>
				</g>
				<g id="g6447_12_">
					<path id="path6449_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M329.365,112.001c0-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.334C328.32,114.335,329.365,113.29,329.365,112.001z"/>
					<path id="path6451_12_" fill="none" stroke="#2A8FCE" d="M327.033,109.669V93.335"/>
				</g>
				<g id="g6453_12_">
					<path id="path6455_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M324.014,112.001c0-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.334C322.969,114.335,324.014,113.29,324.014,112.001z"/>
					<path id="path6457_12_" fill="none" stroke="#2A8FCE" d="M321.681,109.669V93.335"/>
				</g>
				<g id="g6459_12_">
					<path id="path6461_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M350.765,112.001c0-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.334S350.765,113.29,350.765,112.001z"/>
					<path id="path6463_12_" fill="none" stroke="#2A8FCE" d="M348.433,109.669V93.335"/>
				</g>
				<g id="g6465_12_">
					<path id="path6467_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M345.418,112.001c0-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.334C344.373,114.335,345.418,113.29,345.418,112.001z"/>
					<path id="path6469_12_" fill="none" stroke="#2A8FCE" d="M343.084,109.669V93.335"/>
				</g>
				<g id="g6471_12_">
					<path id="path6473_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M340.066,112.001c0-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.334C339.021,114.335,340.066,113.29,340.066,112.001z"/>
					<path id="path6475_12_" fill="none" stroke="#2A8FCE" d="M337.734,109.669V93.335"/>
				</g>
				<g id="g6477_12_">
					<path id="path6479_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M337.39,89.102c0,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.332C336.346,86.77,337.39,87.813,337.39,89.102z"/>
					<path id="path6481_12_" fill="none" stroke="#2A8FCE" d="M335.056,91.436v16.334"/>
				</g>
				<g id="g6483_12_">
					<path id="path6485_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M332.041,89.102c0,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.332C330.996,86.77,332.041,87.813,332.041,89.102z"/>
					<path id="path6487_12_" fill="none" stroke="#2A8FCE" d="M329.707,91.436v16.334"/>
				</g>
				<g id="g6489_12_">
					<path id="path6491_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M326.691,89.102c0,1.289-1.048,2.334-2.335,2.334
						c-1.286,0-2.331-1.045-2.331-2.334c0-1.287,1.045-2.332,2.331-2.332C325.643,86.77,326.691,87.813,326.691,89.102z"/>
					<path id="path6493_12_" fill="none" stroke="#2A8FCE" d="M324.357,91.436v16.334"/>
				</g>
				<g id="g6495_12_">
					<path id="path6497_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M353.443,89.102c0,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.332C352.398,86.77,353.443,87.813,353.443,89.102z"/>
					<path id="path6499_12_" fill="none" stroke="#2A8FCE" d="M351.109,91.436v16.334"/>
				</g>
				<g id="g6501_12_">
					<path id="path6503_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M348.092,89.102c0,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.332C347.047,86.77,348.092,87.813,348.092,89.102z"/>
					<path id="path6505_12_" fill="none" stroke="#2A8FCE" d="M345.758,91.436v16.334"/>
				</g>
				<g id="g6507_12_">
					<path id="path6509_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M342.742,89.102c0,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.697,86.77,342.742,87.813,342.742,89.102z"/>
					<path id="path6511_12_" fill="none" stroke="#2A8FCE" d="M340.408,91.436v16.334"/>
				</g>
			</g>
		</g>
		<g id="g6560_12_">
			<g id="g3088_12_">
				<path id="path3084_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M409.196,285.124c-1.287,0-2.332,1.045-2.332,2.332
					c0,1.289,1.045,2.334,2.332,2.334c1.288,0,2.333-1.045,2.333-2.334C411.529,286.169,410.484,285.124,409.196,285.124z"/>
				<path id="path3086_12_" fill="none" stroke="#2A8FCE" d="M406.864,287.456h-16.335"/>
			</g>
			<g id="g3092_12_">
				<path id="path3094_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M409.071,290.564c-1.277-0.159-2.445,0.746-2.605,2.023
					c-0.161,1.277,0.746,2.445,2.023,2.605s2.444-0.746,2.604-2.023S410.349,290.727,409.071,290.564z"/>
				<path id="path3096_12_" fill="none" stroke="#2A8FCE" d="M406.466,292.591l-16.207-2.036"/>
			</g>
			<g id="g3104_12_">
				<path id="path3106_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M384.335,293.02c1.223,0.403,2.543-0.261,2.947-1.48
					c0.403-1.225-0.261-2.543-1.482-2.947c-1.223-0.406-2.543,0.258-2.947,1.482C382.448,291.296,383.112,292.616,384.335,293.02z"
					/>
				<path id="path3108_12_" fill="none" stroke="#2A8FCE" d="M387.282,291.538l15.508,5.129"/>
			</g>
			<g id="g3110_12_">
				<path id="path3112_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M374.164,297.956c0.002,1.287,1.052,2.33,2.339,2.326
					c1.289-0.007,2.33-1.054,2.326-2.343c-0.004-1.287-1.052-2.33-2.34-2.323C375.201,295.62,374.16,296.667,374.164,297.956z"/>
				<path id="path3114_12_" fill="none" stroke="#2A8FCE" d="M376.503,300.282l0.049,16.334"/>
			</g>
			<g id="g3116_12_">
				<path id="path3118_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M379.472,296.575c0.698,1.082,2.145,1.393,3.227,0.692
					c1.082-0.699,1.394-2.145,0.693-3.227c-0.699-1.082-2.144-1.393-3.226-0.693C379.085,294.048,378.773,295.493,379.472,296.575z"
					/>
				<path id="path3120_12_" fill="none" stroke="#2A8FCE" d="M382.698,297.27l8.858,13.723"/>
			</g>
			<g id="g3122_12_">
				<path id="path3124_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M408.22,295.958c-1.226-0.397-2.542,0.271-2.939,1.496
					c-0.397,1.228,0.271,2.543,1.498,2.938c1.225,0.398,2.542-0.271,2.939-1.496C410.116,297.673,409.445,296.354,408.22,295.958z"
					/>
				<path id="path3126_12_" fill="none" stroke="#2A8FCE" d="M405.28,297.454l-15.533-5.052"/>
			</g>
			<g id="g3128_12_">
				<path id="path3130_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M406.433,301.188c-1.148-0.58-2.554-0.119-3.134,1.031
					s-0.118,2.553,1.031,3.133c1.15,0.582,2.555,0.119,3.135-1.028C408.044,303.173,407.583,301.77,406.433,301.188z"/>
				<path id="path3132_12_" fill="none" stroke="#2A8FCE" d="M403.299,302.22l-14.582-7.358"/>
			</g>
			<g id="g3134_12_">
				<path id="path3136_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M403.805,305.911c-1.038-0.765-2.499-0.537-3.262,0.502
					c-0.762,1.037-0.537,2.498,0.502,3.26c1.037,0.763,2.498,0.537,3.261-0.5C405.068,308.134,404.844,306.673,403.805,305.911z"/>
				<path id="path3138_12_" fill="none" stroke="#2A8FCE" d="M400.544,306.413l-13.17-9.662"/>
			</g>
			<g id="g3140_12_">
				<path id="path3142_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M400.55,310.337c-0.893-0.93-2.37-0.959-3.299-0.065
					c-0.928,0.895-0.957,2.371-0.064,3.299c0.894,0.93,2.37,0.959,3.3,0.065C401.413,312.741,401.442,311.266,400.55,310.337z"/>
				<path id="path3144_12_" fill="none" stroke="#2A8FCE" d="M397.251,310.271l-11.321-11.773"/>
			</g>
			<g id="g3146_12_">
				<path id="path3148_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M381.603,320.939c-0.063-1.287-1.158-2.276-2.444-2.215
					c-1.287,0.064-2.279,1.158-2.216,2.445s1.158,2.279,2.445,2.215C380.677,323.323,381.669,322.229,381.603,320.939z"/>
				<path id="path3150_12_" fill="none" stroke="#2A8FCE" d="M379.159,318.727l-0.809-16.313"/>
			</g>
			<g id="g3152_12_">
				<path id="path3154_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M387.034,319.505c-0.279-1.258-1.524-2.053-2.781-1.774
					c-1.258,0.278-2.053,1.524-1.775,2.78c0.277,1.259,1.523,2.054,2.782,1.775C386.516,322.009,387.312,320.764,387.034,319.505z"
					/>
				<path id="path3156_12_" fill="none" stroke="#2A8FCE" d="M384.253,317.729l-3.525-15.948"/>
			</g>
			<g id="g3158_12_">
				<path id="path3160_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M396.71,314.208c-0.709-1.076-2.156-1.371-3.231-0.662
					c-1.074,0.709-1.371,2.156-0.661,3.229c0.71,1.076,2.156,1.371,3.231,0.662S397.421,315.282,396.71,314.208z"/>
				<path id="path3162_12_" fill="none" stroke="#2A8FCE" d="M393.478,313.546l-8.995-13.635"/>
			</g>
			<g id="g3164_12_">
				<path id="path3166_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M392.044,317.255c-0.492-1.19-1.856-1.758-3.047-1.266
					c-1.19,0.491-1.758,1.854-1.266,3.047c0.491,1.188,1.856,1.758,3.047,1.266C391.969,319.809,392.536,318.443,392.044,317.255z"
					/>
				<path id="path3168_12_" fill="none" stroke="#2A8FCE" d="M388.997,315.989l-6.24-15.097"/>
			</g>
			<g id="g3340_12_">
				<path id="path3342_12_" fill="#C2DCF3" stroke="#2A8FCE" d="M376.157,321.343c0.012-1.289-1.024-2.342-2.313-2.354
					c-1.289-0.013-2.343,1.022-2.353,2.312c-0.012,1.289,1.023,2.343,2.312,2.355C375.093,323.667,376.146,322.63,376.157,321.343z"
					/>
				<path id="path3344_12_" fill="none" stroke="#2A8FCE" d="M373.844,318.989l0.14-16.334"/>
			</g>
		</g>
		<g id="g6281_11_">
			<g id="g3643_11_">
				<path id="path3645_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M357.855,298.562c0,1.289,1.045,2.334,2.333,2.334
					c1.287,0,2.333-1.045,2.333-2.334c0-1.287-1.046-2.332-2.333-2.332C358.9,296.23,357.855,297.273,357.855,298.562z"/>
				<path id="path3647_11_" fill="none" stroke="#2A8FCE" d="M360.187,300.896v16.334"/>
			</g>
			<g id="g3649_11_">
				<path id="path3651_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M363.207,298.562c0,1.289,1.045,2.334,2.332,2.334
					c1.289,0,2.334-1.045,2.334-2.334c0-1.287-1.045-2.332-2.334-2.332C364.252,296.229,363.207,297.273,363.207,298.562z"/>
				<path id="path3653_11_" fill="none" stroke="#2A8FCE" d="M365.539,300.896v16.334"/>
			</g>
			<g id="g3655_11_">
				<path id="path3657_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M368.557,298.562c0,1.289,1.046,2.334,2.333,2.334
					c1.288,0,2.333-1.045,2.333-2.334c0-1.287-1.045-2.332-2.333-2.332C369.603,296.23,368.557,297.273,368.557,298.562z"/>
				<path id="path3659_11_" fill="none" stroke="#2A8FCE" d="M370.89,300.896v16.334"/>
			</g>
			<g id="g3661_11_">
				<path id="path3663_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M341.804,298.562c0,1.289,1.045,2.334,2.333,2.334
					s2.333-1.045,2.333-2.334c0-1.287-1.045-2.332-2.333-2.332S341.804,297.273,341.804,298.562z"/>
				<path id="path3665_11_" fill="none" stroke="#2A8FCE" d="M344.137,300.896v16.334"/>
			</g>
			<g id="g3667_11_">
				<path id="path3669_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M347.156,298.562c0,1.289,1.045,2.334,2.332,2.334
					c1.288,0,2.334-1.045,2.334-2.334c0-1.287-1.046-2.332-2.334-2.332C348.201,296.229,347.156,297.273,347.156,298.562z"/>
				<path id="path3671_11_" fill="none" stroke="#2A8FCE" d="M349.488,300.896v16.334"/>
			</g>
			<g id="g3673_11_">
				<path id="path3675_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M352.506,298.562c0,1.289,1.045,2.334,2.332,2.334
					c1.289,0,2.334-1.045,2.334-2.334c0-1.287-1.045-2.332-2.334-2.332C353.551,296.229,352.506,297.273,352.506,298.562z"/>
				<path id="path3677_11_" fill="none" stroke="#2A8FCE" d="M354.838,300.896v16.334"/>
			</g>
			<g id="g3679_11_">
				<path id="path3681_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M355.18,321.464c0-1.289,1.045-2.334,2.333-2.334
					s2.333,1.045,2.333,2.334c0,1.287-1.045,2.332-2.333,2.332S355.18,322.751,355.18,321.464z"/>
				<path id="path3683_11_" fill="none" stroke="#2A8FCE" d="M357.513,319.13v-16.334"/>
			</g>
			<g id="g3685_11_">
				<path id="path3687_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M360.531,321.464c0-1.289,1.045-2.334,2.334-2.334
					c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C361.576,323.796,360.531,322.751,360.531,321.464z"/>
				<path id="path3689_11_" fill="none" stroke="#2A8FCE" d="M362.865,319.13v-16.334"/>
			</g>
			<g id="g3691_11_">
				<path id="path3693_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M365.882,321.464c0-1.289,1.045-2.334,2.333-2.334
					c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C366.927,323.796,365.882,322.751,365.882,321.464z"/>
				<path id="path3695_11_" fill="none" stroke="#2A8FCE" d="M368.215,319.13v-16.334"/>
			</g>
			<g id="g3697_11_">
				<path id="path3699_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M339.129,321.464c0-1.289,1.046-2.334,2.334-2.334
					c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C340.175,323.796,339.129,322.751,339.129,321.464z"/>
				<path id="path3701_11_" fill="none" stroke="#2A8FCE" d="M341.463,319.13v-16.334"/>
			</g>
			<g id="g3703_11_">
				<path id="path3705_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M344.478,321.464c0-1.289,1.046-2.334,2.334-2.334
					c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C345.524,323.796,344.478,322.751,344.478,321.464z"/>
				<path id="path3707_11_" fill="none" stroke="#2A8FCE" d="M346.812,319.13v-16.334"/>
			</g>
			<g id="g3709_11_">
				<path id="path3711_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M349.83,321.464c0-1.289,1.045-2.334,2.334-2.334
					c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C350.875,323.796,349.83,322.751,349.83,321.464z"/>
				<path id="path3713_11_" fill="none" stroke="#2A8FCE" d="M352.164,319.13v-16.334"/>
			</g>
		</g>
	</g>
	<g>
		<g id="g6923_10_" transform="translate(19.90030,-35.04058)">
			<g id="g6560_11_">
				<g id="g3088_11_">
					<path id="path3084_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M63.178,356.387c0-1.287-1.045-2.332-2.332-2.332
						c-1.288,0-2.334,1.045-2.334,2.332c0,1.286,1.046,2.331,2.334,2.331C62.133,358.718,63.178,357.673,63.178,356.387z"/>
					<path id="path3086_11_" fill="none" stroke="#2A8FCE" d="M60.846,354.055v-16.337"/>
				</g>
				<g id="g3092_11_">
					<path id="path3094_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M57.736,356.262c0.16-1.277-0.746-2.445-2.023-2.605
						c-1.276-0.161-2.444,0.746-2.604,2.023c-0.16,1.276,0.746,2.444,2.022,2.604C56.408,358.445,57.576,357.541,57.736,356.262z"/>
					<path id="path3096_11_" fill="none" stroke="#2A8FCE" d="M55.711,353.657l2.037-16.207"/>
				</g>
				<g id="g3098_11_">
					<path id="path3100_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M60.822,333.346c0,1.286,1.043,2.334,2.33,2.336
						c1.289,0.002,2.336-1.041,2.336-2.33c0.002-1.287-1.041-2.334-2.328-2.336C61.871,331.014,60.824,332.059,60.822,333.346z"/>
					<path id="path3102_11_" fill="none" stroke="#2A8FCE" d="M63.152,335.684l-0.023,16.334"/>
				</g>
				<g id="g3104_11_">
					<path id="path3106_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M55.283,331.526c-0.404,1.224,0.26,2.543,1.479,2.947
						c1.226,0.403,2.543-0.261,2.947-1.482c0.406-1.223-0.258-2.543-1.481-2.946C57.006,329.639,55.686,330.303,55.283,331.526z"/>
					<path id="path3108_11_" fill="none" stroke="#2A8FCE" d="M56.764,334.473l-5.129,15.508"/>
				</g>
				<g id="g3110_11_">
					<path id="path3112_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M50.346,321.356c-1.286,0.002-2.329,1.051-2.325,2.338
						c0.006,1.289,1.053,2.33,2.342,2.326c1.287-0.004,2.33-1.054,2.324-2.34C52.682,322.391,51.635,321.352,50.346,321.356z"/>
					<path id="path3114_11_" fill="none" stroke="#2A8FCE" d="M48.02,323.694l-16.334,0.049"/>
				</g>
				<g id="g3116_11_">
					<path id="path3118_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M51.727,326.664c-1.082,0.698-1.394,2.145-0.693,3.227
						s2.145,1.393,3.227,0.693c1.082-0.701,1.394-2.144,0.693-3.226S52.809,325.962,51.727,326.664z"/>
					<path id="path3120_11_" fill="none" stroke="#2A8FCE" d="M51.033,329.889l-13.723,8.858"/>
				</g>
				<g id="g3122_11_">
					<path id="path3124_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M52.344,355.412c0.398-1.226-0.271-2.541-1.495-2.939
						c-1.228-0.398-2.544,0.271-2.939,1.498c-0.398,1.225,0.271,2.541,1.496,2.938C50.63,357.307,51.947,356.634,52.344,355.412z"/>
					<path id="path3126_11_" fill="none" stroke="#2A8FCE" d="M50.848,352.471l5.051-15.533"/>
				</g>
				<g id="g3128_11_">
					<path id="path3130_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M47.113,353.625c0.58-1.148,0.119-2.554-1.031-3.134
						c-1.149-0.579-2.553-0.118-3.133,1.031c-0.582,1.149-0.119,2.555,1.029,3.135C45.129,355.235,46.533,354.774,47.113,353.625z"
						/>
					<path id="path3132_11_" fill="none" stroke="#2A8FCE" d="M46.082,350.489l7.359-14.582"/>
				</g>
				<g id="g3134_11_">
					<path id="path3136_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M42.391,350.998c0.764-1.039,0.536-2.5-0.503-3.263
						c-1.036-0.762-2.497-0.537-3.26,0.502c-0.762,1.037-0.537,2.498,0.5,3.261C40.168,352.257,41.629,352.037,42.391,350.998z"/>
					<path id="path3138_11_" fill="none" stroke="#2A8FCE" d="M41.889,347.735l9.662-13.17"/>
				</g>
				<g id="g3140_11_">
					<path id="path3142_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M37.965,347.741c0.931-0.893,0.959-2.37,0.066-3.299
						c-0.896-0.928-2.371-0.957-3.299-0.063c-0.931,0.893-0.959,2.369-0.066,3.299C35.561,348.604,37.037,348.632,37.965,347.741z"
						/>
					<path id="path3144_11_" fill="none" stroke="#2A8FCE" d="M38.031,344.442l11.772-11.321"/>
				</g>
				<g id="g3146_11_">
					<path id="path3148_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M27.361,328.794c1.287-0.063,2.276-1.16,2.215-2.444
						c-0.064-1.287-1.158-2.279-2.445-2.218c-1.287,0.064-2.278,1.16-2.215,2.447C24.979,327.868,26.074,328.86,27.361,328.794z"/>
					<path id="path3150_11_" fill="none" stroke="#2A8FCE" d="M29.576,326.35l16.312-0.81"/>
				</g>
				<g id="g3152_11_">
					<path id="path3154_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M28.797,334.225c1.258-0.279,2.054-1.525,1.775-2.781
						c-0.279-1.258-1.525-2.053-2.781-1.774c-1.258,0.276-2.053,1.522-1.774,2.78C26.294,333.709,27.539,334.503,28.797,334.225z"/>
					<path id="path3156_11_" fill="none" stroke="#2A8FCE" d="M30.572,331.444l15.949-3.524"/>
				</g>
				<g id="g3158_11_">
					<path id="path3160_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M34.094,343.901c1.076-0.709,1.371-2.155,0.662-3.231
						c-0.709-1.074-2.155-1.371-3.229-0.662c-1.076,0.711-1.371,2.158-0.662,3.231C31.572,344.315,33.02,344.612,34.094,343.901z"/>
					<path id="path3162_11_" fill="none" stroke="#2A8FCE" d="M34.756,340.669l13.636-8.996"/>
				</g>
				<g id="g3164_11_">
					<path id="path3166_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M31.047,339.235c1.191-0.492,1.758-1.856,1.267-3.047
						c-0.492-1.19-1.855-1.758-3.047-1.267c-1.189,0.492-1.759,1.857-1.267,3.047C28.494,339.162,29.858,339.727,31.047,339.235z"/>
					<path id="path3168_11_" fill="none" stroke="#2A8FCE" d="M32.313,336.188l15.096-6.24"/>
				</g>
				<g id="g3340_11_">
					<path id="path3342_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M26.959,323.348c1.289,0.012,2.342-1.025,2.354-2.313
						c0.012-1.287-1.023-2.342-2.313-2.352c-1.289-0.012-2.342,1.023-2.354,2.312C24.635,322.284,25.672,323.336,26.959,323.348z"/>
					<path id="path3344_11_" fill="none" stroke="#2A8FCE" d="M29.313,321.037l16.334,0.139"/>
				</g>
			</g>
			<g id="g6439_11_">
				<g id="g6441_11_">
					<path id="path6443_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M82.537,333.606c0,1.287,1.045,2.332,2.332,2.332
						c1.289,0,2.334-1.045,2.334-2.332c0-1.289-1.045-2.334-2.334-2.334C83.582,331.272,82.537,332.317,82.537,333.606z"/>
					<path id="path6445_11_" fill="none" stroke="#2A8FCE" d="M84.869,335.938v16.334"/>
				</g>
				<g id="g6447_11_">
					<path id="path6449_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M87.887,333.606c0,1.287,1.046,2.332,2.332,2.332
						c1.289,0,2.334-1.045,2.334-2.332c0-1.289-1.045-2.334-2.334-2.334C88.932,331.272,87.887,332.317,87.887,333.606z"/>
					<path id="path6451_11_" fill="none" stroke="#2A8FCE" d="M90.219,335.938v16.334"/>
				</g>
				<g id="g6453_11_">
					<path id="path6455_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M93.238,333.606c0,1.287,1.045,2.332,2.332,2.332
						c1.289,0,2.334-1.045,2.334-2.332c0-1.289-1.045-2.334-2.334-2.334C94.283,331.272,93.238,332.317,93.238,333.606z"/>
					<path id="path6457_11_" fill="none" stroke="#2A8FCE" d="M95.57,335.938v16.334"/>
				</g>
				<g id="g6459_11_">
					<path id="path6461_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M66.486,333.606c0,1.287,1.045,2.332,2.332,2.332
						s2.334-1.045,2.334-2.332c0-1.289-1.047-2.334-2.334-2.334S66.486,332.317,66.486,333.606z"/>
					<path id="path6463_11_" fill="none" stroke="#2A8FCE" d="M68.818,335.938v16.334"/>
				</g>
				<g id="g6465_11_">
					<path id="path6467_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M71.834,333.606c0,1.287,1.045,2.332,2.334,2.332
						c1.287,0,2.332-1.045,2.332-2.332c0-1.289-1.045-2.334-2.332-2.334C72.879,331.272,71.834,332.317,71.834,333.606z"/>
					<path id="path6469_11_" fill="none" stroke="#2A8FCE" d="M74.168,335.938v16.334"/>
				</g>
				<g id="g6471_11_">
					<path id="path6473_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M77.186,333.606c0,1.287,1.045,2.332,2.332,2.332
						c1.289,0,2.334-1.045,2.334-2.332c0-1.289-1.045-2.334-2.334-2.334C78.231,331.272,77.186,332.317,77.186,333.606z"/>
					<path id="path6475_11_" fill="none" stroke="#2A8FCE" d="M79.518,335.938v16.334"/>
				</g>
				<g id="g6477_11_">
					<path id="path6479_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M79.861,356.503c0-1.289,1.045-2.334,2.334-2.334
						c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C80.906,358.836,79.861,357.794,79.861,356.503z"/>
					<path id="path6481_11_" fill="none" stroke="#2A8FCE" d="M82.195,354.169v-16.334"/>
				</g>
				<g id="g6483_11_">
					<path id="path6485_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M85.211,356.503c0-1.289,1.045-2.334,2.334-2.334
						c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C86.256,358.836,85.211,357.794,85.211,356.503z"/>
					<path id="path6487_11_" fill="none" stroke="#2A8FCE" d="M87.545,354.169v-16.334"/>
				</g>
				<g id="g6489_11_">
					<path id="path6491_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M90.561,356.503c0-1.289,1.047-2.334,2.334-2.334
						s2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332S90.561,357.794,90.561,356.503z"/>
					<path id="path6493_11_" fill="none" stroke="#2A8FCE" d="M92.895,354.169v-16.334"/>
				</g>
				<g id="g6495_11_">
					<path id="path6497_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M63.809,356.503c0-1.289,1.045-2.334,2.334-2.334
						c1.286,0,2.332,1.045,2.332,2.334c0,1.287-1.046,2.332-2.332,2.332C64.854,358.836,63.809,357.794,63.809,356.503z"/>
					<path id="path6499_11_" fill="none" stroke="#2A8FCE" d="M66.143,354.169v-16.334"/>
				</g>
				<g id="g6501_11_">
					<path id="path6503_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M69.16,356.503c0-1.289,1.045-2.334,2.334-2.334
						c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C70.205,358.836,69.16,357.794,69.16,356.503z"/>
					<path id="path6505_11_" fill="none" stroke="#2A8FCE" d="M71.494,354.169v-16.334"/>
				</g>
				<g id="g6507_11_">
					<path id="path6509_11_" fill="#C2DCF3" stroke="#2A8FCE" d="M74.51,356.503c0-1.289,1.045-2.334,2.334-2.334
						c1.287,0,2.332,1.045,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C75.555,358.836,74.51,357.794,74.51,356.503z"/>
					<path id="path6511_11_" fill="none" stroke="#2A8FCE" d="M76.844,354.169v-16.334"/>
				</g>
			</g>
		</g>
		<g>
			<g id="g59398_15_" transform="translate(21.16987,-31.23187)">
				<g id="g7045_17_">
					<g id="g7047_18_">
						<path id="path7049_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M113.232,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C114.277,327.46,113.232,328.506,113.232,329.794z"/>
						<path id="path7051_18_" fill="none" stroke="#2A8FCE" d="M115.565,332.126v16.334"/>
					</g>
					<g id="g7053_18_">
						<path id="path7055_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M118.582,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C119.627,327.46,118.582,328.506,118.582,329.794z"/>
						<path id="path7057_18_" fill="none" stroke="#2A8FCE" d="M120.914,332.126v16.334"/>
					</g>
					<g id="g7059_18_">
						<path id="path7061_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M123.932,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.286,0,2.332-1.045,2.332-2.332c0-1.288-1.046-2.334-2.332-2.334C124.977,327.46,123.932,328.506,123.932,329.794z"/>
						<path id="path7063_18_" fill="none" stroke="#2A8FCE" d="M126.266,332.126v16.334"/>
					</g>
					<g id="g7065_18_">
						<path id="path7067_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M97.18,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.286,0,2.331-1.045,2.331-2.332c0-1.288-1.045-2.334-2.331-2.334C98.225,327.46,97.18,328.506,97.18,329.794z"/>
						<path id="path7069_18_" fill="none" stroke="#2A8FCE" d="M99.514,332.126v16.334"/>
					</g>
					<g id="g7071_18_">
						<path id="path7073_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M102.531,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C103.576,327.46,102.531,328.506,102.531,329.794z"/>
						<path id="path7075_18_" fill="none" stroke="#2A8FCE" d="M104.863,332.126v16.334"/>
					</g>
					<g id="g7077_18_">
						<path id="path7079_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M107.881,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C108.926,327.46,107.881,328.506,107.881,329.794z"/>
						<path id="path7081_18_" fill="none" stroke="#2A8FCE" d="M110.215,332.126v16.334"/>
					</g>
					<g id="g7083_18_">
						<path id="path7085_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M110.557,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.288,0,2.334,1.048,2.334,2.334c0,1.287-1.046,2.332-2.334,2.332C111.602,355.028,110.557,353.983,110.557,352.696z"/>
						<path id="path7087_18_" fill="none" stroke="#2A8FCE" d="M112.889,350.362v-16.334"/>
					</g>
					<g id="g7089_18_">
						<path id="path7091_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M115.906,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C116.951,355.028,115.906,353.983,115.906,352.696z"/>
						<path id="path7093_18_" fill="none" stroke="#2A8FCE" d="M118.24,350.362v-16.334"/>
					</g>
					<g id="g7095_18_">
						<path id="path7097_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M121.258,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C122.303,355.028,121.258,353.983,121.258,352.696z"/>
						<path id="path7099_18_" fill="none" stroke="#2A8FCE" d="M123.59,350.362v-16.334"/>
					</g>
					<g id="g7101_18_">
						<path id="path7103_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M94.506,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C95.551,355.028,94.506,353.983,94.506,352.696z"/>
						<path id="path7105_18_" fill="none" stroke="#2A8FCE" d="M96.838,350.362v-16.334"/>
					</g>
					<g id="g7107_18_">
						<path id="path7109_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M99.856,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C100.9,355.028,99.856,353.983,99.856,352.696z"/>
						<path id="path7111_18_" fill="none" stroke="#2A8FCE" d="M102.188,350.362v-16.334"/>
					</g>
					<g id="g7113_17_">
						<path id="path7115_18_" fill="#C2DCF3" stroke="#2A8FCE" d="M105.205,352.696c0-1.286,1.047-2.334,2.334-2.334
							s2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332S105.205,353.983,105.205,352.696z"/>
						<path id="path7117_18_" fill="none" stroke="#2A8FCE" d="M107.539,350.362v-16.334"/>
					</g>
				</g>
				<g id="g7119_16_">
					<g id="g7121_17_">
						<path id="path7123_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M145.229,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C146.273,327.46,145.229,328.506,145.229,329.794z"/>
						<path id="path7125_17_" fill="none" stroke="#2A8FCE" d="M147.561,332.126v16.334"/>
					</g>
					<g id="g7127_17_">
						<path id="path7129_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M150.578,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C151.623,327.46,150.578,328.506,150.578,329.794z"/>
						<path id="path7131_17_" fill="none" stroke="#2A8FCE" d="M152.91,332.126v16.334"/>
					</g>
					<g id="g7133_17_">
						<path id="path7135_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M155.93,329.794c0,1.287,1.045,2.332,2.331,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C156.975,327.46,155.93,328.506,155.93,329.794z"/>
						<path id="path7137_17_" fill="none" stroke="#2A8FCE" d="M158.262,332.126v16.334"/>
					</g>
					<g id="g7139_17_">
						<path id="path7141_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M129.178,329.794c0,1.287,1.046,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C130.223,327.46,129.178,328.506,129.178,329.794z"/>
						<path id="path7143_17_" fill="none" stroke="#2A8FCE" d="M131.51,332.126v16.334"/>
					</g>
					<g id="g7145_17_">
						<path id="path7147_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M134.527,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C135.572,327.46,134.527,328.506,134.527,329.794z"/>
						<path id="path7149_17_" fill="none" stroke="#2A8FCE" d="M136.859,332.126v16.334"/>
					</g>
					<g id="g7151_17_">
						<path id="path7153_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M139.879,329.794c0,1.287,1.045,2.332,2.332,2.332
							s2.334-1.045,2.334-2.332c0-1.288-1.047-2.334-2.334-2.334S139.879,328.506,139.879,329.794z"/>
						<path id="path7155_17_" fill="none" stroke="#2A8FCE" d="M142.211,332.126v16.334"/>
					</g>
					<g id="g7157_17_">
						<path id="path7159_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M142.553,352.696c0-1.286,1.046-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C143.598,355.028,142.553,353.983,142.553,352.696z"/>
						<path id="path7161_17_" fill="none" stroke="#2A8FCE" d="M144.887,350.362v-16.334"/>
					</g>
					<g id="g7163_17_">
						<path id="path7165_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M147.904,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C148.949,355.028,147.904,353.983,147.904,352.696z"/>
						<path id="path7167_17_" fill="none" stroke="#2A8FCE" d="M150.236,350.362v-16.334"/>
					</g>
					<g id="g7169_17_">
						<path id="path7171_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M153.254,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C154.299,355.028,153.254,353.983,153.254,352.696z"/>
						<path id="path7173_17_" fill="none" stroke="#2A8FCE" d="M155.588,350.362v-16.334"/>
					</g>
					<g id="g7175_17_">
						<path id="path7177_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M126.502,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C127.547,355.028,126.502,353.983,126.502,352.696z"/>
						<path id="path7179_17_" fill="none" stroke="#2A8FCE" d="M128.834,350.362v-16.334"/>
					</g>
					<g id="g7181_17_">
						<path id="path7183_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M131.852,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C132.897,355.028,131.852,353.983,131.852,352.696z"/>
						<path id="path7185_17_" fill="none" stroke="#2A8FCE" d="M134.186,350.362v-16.334"/>
					</g>
					<g id="g7187_17_">
						<path id="path7189_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M137.201,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C138.246,355.028,137.201,353.983,137.201,352.696z"/>
						<path id="path7191_17_" fill="none" stroke="#2A8FCE" d="M139.535,350.362v-16.334"/>
					</g>
				</g>
				<g id="g7193_16_">
					<g id="g7195_17_">
						<path id="path7197_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M177.225,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C178.27,327.46,177.225,328.506,177.225,329.794z"/>
						<path id="path7199_17_" fill="none" stroke="#2A8FCE" d="M179.559,332.126v16.334"/>
					</g>
					<g id="g7201_17_">
						<path id="path7203_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M182.574,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C183.619,327.46,182.574,328.506,182.574,329.794z"/>
						<path id="path7205_17_" fill="none" stroke="#2A8FCE" d="M184.908,332.126v16.334"/>
					</g>
					<g id="g7207_17_">
						<path id="path7209_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M187.926,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C188.971,327.46,187.926,328.506,187.926,329.794z"/>
						<path id="path7211_17_" fill="none" stroke="#2A8FCE" d="M190.26,332.126v16.334"/>
					</g>
					<g id="g7213_17_">
						<path id="path7215_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M161.174,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C162.219,327.46,161.174,328.506,161.174,329.794z"/>
						<path id="path7217_17_" fill="none" stroke="#2A8FCE" d="M163.506,332.126v16.334"/>
					</g>
					<g id="g7219_17_">
						<path id="path7221_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M166.523,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C167.568,327.46,166.523,328.506,166.523,329.794z"/>
						<path id="path7223_17_" fill="none" stroke="#2A8FCE" d="M168.857,332.126v16.334"/>
					</g>
					<g id="g7225_17_">
						<path id="path7227_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M171.873,329.794c0,1.287,1.047,2.332,2.334,2.332
							s2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334S171.873,328.506,171.873,329.794z"/>
						<path id="path7229_17_" fill="none" stroke="#2A8FCE" d="M174.207,332.126v16.334"/>
					</g>
					<g id="g7231_17_">
						<path id="path7233_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M174.551,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C175.596,355.028,174.551,353.983,174.551,352.696z"/>
						<path id="path7235_17_" fill="none" stroke="#2A8FCE" d="M176.883,350.362v-16.334"/>
					</g>
					<g id="g7237_17_">
						<path id="path7239_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M179.9,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C180.945,355.028,179.9,353.983,179.9,352.696z"/>
						<path id="path7241_17_" fill="none" stroke="#2A8FCE" d="M182.232,350.362v-16.334"/>
					</g>
					<g id="g7243_17_">
						<path id="path7245_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M185.25,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C186.295,355.028,185.25,353.983,185.25,352.696z"/>
						<path id="path7247_17_" fill="none" stroke="#2A8FCE" d="M187.584,350.362v-16.334"/>
					</g>
					<g id="g7249_17_">
						<path id="path7251_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M158.498,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C159.543,355.028,158.498,353.983,158.498,352.696z"/>
						<path id="path7253_17_" fill="none" stroke="#2A8FCE" d="M160.83,350.362v-16.334"/>
					</g>
					<g id="g7255_17_">
						<path id="path7257_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M163.848,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.286,0,2.332,1.048,2.332,2.334c0,1.287-1.046,2.332-2.332,2.332C164.893,355.028,163.848,353.983,163.848,352.696z"/>
						<path id="path7259_17_" fill="none" stroke="#2A8FCE" d="M166.182,350.362v-16.334"/>
					</g>
					<g id="g7261_17_">
						<path id="path7263_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M169.199,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C170.244,355.028,169.199,353.983,169.199,352.696z"/>
						<path id="path7265_17_" fill="none" stroke="#2A8FCE" d="M171.531,350.362v-16.334"/>
					</g>
				</g>
				<g id="g7267_16_">
					<g id="g7269_17_">
						<path id="path7271_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M209.221,329.794c0,1.287,1.046,2.332,2.335,2.332
							c1.286,0,2.331-1.045,2.331-2.332c0-1.288-1.045-2.334-2.331-2.334C210.266,327.46,209.221,328.506,209.221,329.794z"/>
						<path id="path7273_17_" fill="none" stroke="#2A8FCE" d="M211.555,332.126v16.334"/>
					</g>
					<g id="g7275_17_">
						<path id="path7277_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M214.572,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C215.617,327.46,214.572,328.506,214.572,329.794z"/>
						<path id="path7279_17_" fill="none" stroke="#2A8FCE" d="M216.904,332.126v16.334"/>
					</g>
					<g id="g7281_17_">
						<path id="path7283_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M219.922,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C220.967,327.46,219.922,328.506,219.922,329.794z"/>
						<path id="path7285_17_" fill="none" stroke="#2A8FCE" d="M222.256,332.126v16.334"/>
					</g>
					<g id="g7287_17_">
						<path id="path7289_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M193.17,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C194.215,327.46,193.17,328.506,193.17,329.794z"/>
						<path id="path7291_17_" fill="none" stroke="#2A8FCE" d="M195.504,332.126v16.334"/>
					</g>
					<g id="g7293_17_">
						<path id="path7295_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M198.52,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C199.565,327.46,198.52,328.506,198.52,329.794z"/>
						<path id="path7297_17_" fill="none" stroke="#2A8FCE" d="M200.854,332.126v16.334"/>
					</g>
					<g id="g7299_17_">
						<path id="path7301_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M203.871,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C204.916,327.46,203.871,328.506,203.871,329.794z"/>
						<path id="path7303_17_" fill="none" stroke="#2A8FCE" d="M206.203,332.126v16.334"/>
					</g>
					<g id="g7305_17_">
						<path id="path7307_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M206.547,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C207.592,355.028,206.547,353.983,206.547,352.696z"/>
						<path id="path7309_17_" fill="none" stroke="#2A8FCE" d="M208.879,350.362v-16.334"/>
					</g>
					<g id="g7311_17_">
						<path id="path7313_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M211.897,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C212.941,355.028,211.897,353.983,211.897,352.696z"/>
						<path id="path7315_17_" fill="none" stroke="#2A8FCE" d="M214.231,350.362v-16.334"/>
					</g>
					<g id="g7317_17_">
						<path id="path7319_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M217.246,352.696c0-1.286,1.047-2.334,2.334-2.334
							s2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332S217.246,353.983,217.246,352.696z"/>
						<path id="path7321_17_" fill="none" stroke="#2A8FCE" d="M219.58,350.362v-16.334"/>
					</g>
					<g id="g7323_17_">
						<path id="path7325_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M190.494,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C191.539,355.028,190.494,353.983,190.494,352.696z"/>
						<path id="path7327_17_" fill="none" stroke="#2A8FCE" d="M192.826,350.362v-16.334"/>
					</g>
					<g id="g7329_17_">
						<path id="path7331_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M195.846,352.696c0-1.286,1.046-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C196.891,355.028,195.846,353.983,195.846,352.696z"/>
						<path id="path7333_17_" fill="none" stroke="#2A8FCE" d="M198.178,350.362v-16.334"/>
					</g>
					<g id="g7335_17_">
						<path id="path7337_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M201.195,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C202.24,355.028,201.195,353.983,201.195,352.696z"/>
						<path id="path7339_17_" fill="none" stroke="#2A8FCE" d="M203.529,350.362v-16.334"/>
					</g>
				</g>
				<g id="g7341_16_">
					<g id="g7343_17_">
						<path id="path7345_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M241.219,329.794c0,1.287,1.046,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C242.264,327.46,241.219,328.506,241.219,329.794z"/>
						<path id="path7347_17_" fill="none" stroke="#2A8FCE" d="M243.551,332.126v16.334"/>
					</g>
					<g id="g7349_17_">
						<path id="path7351_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M246.568,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C247.613,327.46,246.568,328.506,246.568,329.794z"/>
						<path id="path7353_17_" fill="none" stroke="#2A8FCE" d="M248.9,332.126v16.334"/>
					</g>
					<g id="g7355_17_">
						<path id="path7357_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M251.92,329.794c0,1.287,1.045,2.332,2.332,2.332
							s2.334-1.045,2.334-2.332c0-1.288-1.047-2.334-2.334-2.334S251.92,328.506,251.92,329.794z"/>
						<path id="path7359_17_" fill="none" stroke="#2A8FCE" d="M254.252,332.126v16.334"/>
					</g>
					<g id="g7361_17_">
						<path id="path7363_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M225.166,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334C226.211,327.46,225.166,328.506,225.166,329.794z"/>
						<path id="path7365_17_" fill="none" stroke="#2A8FCE" d="M227.5,332.126v16.334"/>
					</g>
					<g id="g7367_17_">
						<path id="path7369_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M230.518,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C231.563,327.46,230.518,328.506,230.518,329.794z"/>
						<path id="path7371_17_" fill="none" stroke="#2A8FCE" d="M232.85,332.126v16.334"/>
					</g>
					<g id="g7373_17_">
						<path id="path7375_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M235.867,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C236.912,327.46,235.867,328.506,235.867,329.794z"/>
						<path id="path7377_17_" fill="none" stroke="#2A8FCE" d="M238.199,332.126v16.334"/>
					</g>
					<g id="g7379_17_">
						<path id="path7381_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M238.543,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C239.588,355.028,238.543,353.983,238.543,352.696z"/>
						<path id="path7383_17_" fill="none" stroke="#2A8FCE" d="M240.877,350.362v-16.334"/>
					</g>
					<g id="g7385_17_">
						<path id="path7387_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M243.893,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C244.938,355.028,243.893,353.983,243.893,352.696z"/>
						<path id="path7389_17_" fill="none" stroke="#2A8FCE" d="M246.227,350.362v-16.334"/>
					</g>
					<g id="g7391_17_">
						<path id="path7393_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M249.242,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C250.287,355.028,249.242,353.983,249.242,352.696z"/>
						<path id="path7395_17_" fill="none" stroke="#2A8FCE" d="M251.576,350.362v-16.334"/>
					</g>
					<g id="g7397_17_">
						<path id="path7399_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M222.49,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C223.535,355.028,222.49,353.983,222.49,352.696z"/>
						<path id="path7401_17_" fill="none" stroke="#2A8FCE" d="M224.824,350.362v-16.334"/>
					</g>
					<g id="g7403_17_">
						<path id="path7405_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M227.842,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C228.887,355.028,227.842,353.983,227.842,352.696z"/>
						<path id="path7407_17_" fill="none" stroke="#2A8FCE" d="M230.176,350.362v-16.334"/>
					</g>
					<g id="g7409_17_">
						<path id="path7411_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M233.191,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C234.236,355.028,233.191,353.983,233.191,352.696z"/>
						<path id="path7413_17_" fill="none" stroke="#2A8FCE" d="M235.525,350.362v-16.334"/>
					</g>
				</g>
				<g id="g7415_16_">
					<g id="g7417_17_">
						<path id="path7419_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M273.215,329.794c0,1.287,1.045,2.332,2.333,2.332
							s2.333-1.045,2.333-2.332c0-1.288-1.045-2.334-2.333-2.334S273.215,328.506,273.215,329.794z"/>
						<path id="path7421_17_" fill="none" stroke="#2A8FCE" d="M275.548,332.126v16.334"/>
					</g>
					<g id="g7423_17_">
						<path id="path7425_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M278.564,329.794c0,1.287,1.046,2.332,2.332,2.332
							c1.288,0,2.334-1.045,2.334-2.332c0-1.288-1.046-2.334-2.334-2.334C279.61,327.46,278.564,328.506,278.564,329.794z"/>
						<path id="path7427_17_" fill="none" stroke="#2A8FCE" d="M280.898,332.126v16.334"/>
					</g>
					<g id="g7429_17_">
						<path id="path7431_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M283.915,329.794c0,1.287,1.045,2.332,2.332,2.332
							c1.289,0,2.334-1.045,2.334-2.332c0-1.288-1.045-2.334-2.334-2.334C284.96,327.46,283.915,328.506,283.915,329.794z"/>
						<path id="path7433_17_" fill="none" stroke="#2A8FCE" d="M286.247,332.126v16.334"/>
					</g>
					<g id="g7435_17_">
						<path id="path7437_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M257.162,329.794c0,1.287,1.047,2.332,2.334,2.332
							s2.332-1.045,2.332-2.332c0-1.288-1.045-2.334-2.332-2.334S257.162,328.506,257.162,329.794z"/>
						<path id="path7439_17_" fill="none" stroke="#2A8FCE" d="M259.496,332.126v16.334"/>
					</g>
					<g id="g7441_17_">
						<path id="path7443_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M262.514,329.794c0,1.287,1.045,2.332,2.331,2.332
							c1.289,0,2.335-1.045,2.335-2.332c0-1.288-1.046-2.334-2.335-2.334C263.559,327.46,262.514,328.506,262.514,329.794z"/>
						<path id="path7445_17_" fill="none" stroke="#2A8FCE" d="M264.846,332.126v16.334"/>
					</g>
					<g id="g7447_17_">
						<path id="path7449_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M267.863,329.794c0,1.287,1.045,2.332,2.334,2.332
							c1.287,0,2.333-1.045,2.333-2.332c0-1.288-1.046-2.334-2.333-2.334C268.908,327.46,267.863,328.506,267.863,329.794z"/>
						<path id="path7451_17_" fill="none" stroke="#2A8FCE" d="M270.197,332.126v16.334"/>
					</g>
					<g id="g7453_17_">
						<path id="path7455_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M270.539,352.696c0-1.286,1.045-2.334,2.333-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C271.584,355.028,270.539,353.983,270.539,352.696z"/>
						<path id="path7457_17_" fill="none" stroke="#2A8FCE" d="M272.872,350.362v-16.334"/>
					</g>
					<g id="g7459_17_">
						<path id="path7461_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M275.89,352.696c0-1.286,1.044-2.334,2.332-2.334
							s2.333,1.048,2.333,2.334c0,1.287-1.045,2.332-2.333,2.332S275.89,353.983,275.89,352.696z"/>
						<path id="path7463_17_" fill="none" stroke="#2A8FCE" d="M278.222,350.362v-16.334"/>
					</g>
					<g id="g7465_17_">
						<path id="path7467_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M281.239,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C282.284,355.028,281.239,353.983,281.239,352.696z"/>
						<path id="path7469_17_" fill="none" stroke="#2A8FCE" d="M283.573,350.362v-16.334"/>
					</g>
					<g id="g7471_17_">
						<path id="path7473_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M254.488,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C255.533,355.028,254.488,353.983,254.488,352.696z"/>
						<path id="path7475_17_" fill="none" stroke="#2A8FCE" d="M256.82,350.362v-16.334"/>
					</g>
					<g id="g7477_17_">
						<path id="path7479_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M259.838,352.696c0-1.286,1.045-2.334,2.334-2.334
							c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C260.883,355.028,259.838,353.983,259.838,352.696z"/>
						<path id="path7481_17_" fill="none" stroke="#2A8FCE" d="M262.172,350.362v-16.334"/>
					</g>
					<g id="g7483_17_">
						<path id="path7485_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M265.19,352.696c0-1.286,1.045-2.334,2.332-2.334
							c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C266.234,355.028,265.19,353.983,265.19,352.696z"/>
						<path id="path7487_17_" fill="none" stroke="#2A8FCE" d="M267.522,350.362v-16.334"/>
					</g>
				</g>
			</g>
			<g>
				<g id="g59398_14_" transform="translate(21.16987,-31.23187)">
					<g id="g7045_16_">
						<g id="g7047_17_">
							<path id="path7049_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M304.966,329.792c0,1.289,1.045,2.334,2.332,2.334
								c1.289,0,2.334-1.045,2.334-2.334c0-1.286-1.045-2.332-2.334-2.332C306.011,327.46,304.966,328.506,304.966,329.792z"/>
							<path id="path7051_17_" fill="none" stroke="#2A8FCE" d="M307.298,332.126v16.334"/>
						</g>
						<g id="g7053_17_">
							<path id="path7055_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M310.314,329.792c0,1.289,1.046,2.334,2.332,2.334
								c1.289,0,2.334-1.045,2.334-2.334c0-1.286-1.045-2.332-2.334-2.332C311.36,327.46,310.314,328.506,310.314,329.792z"/>
							<path id="path7057_17_" fill="none" stroke="#2A8FCE" d="M312.648,332.126v16.334"/>
						</g>
						<g id="g7059_17_">
							<path id="path7061_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M315.665,329.792c0,1.289,1.045,2.334,2.334,2.334
								c1.287,0,2.332-1.045,2.332-2.334c0-1.286-1.045-2.332-2.332-2.332C316.71,327.46,315.665,328.506,315.665,329.792z"/>
							<path id="path7063_17_" fill="none" stroke="#2A8FCE" d="M317.999,332.126v16.334"/>
						</g>
						<g id="g7065_17_">
							<path id="path7067_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M288.913,329.792c0,1.289,1.045,2.334,2.334,2.334
								c1.287,0,2.332-1.045,2.332-2.334c0-1.286-1.045-2.332-2.332-2.332C289.958,327.46,288.913,328.506,288.913,329.792z"/>
							<path id="path7069_17_" fill="none" stroke="#2A8FCE" d="M291.247,332.126v16.334"/>
						</g>
						<g id="g7071_17_">
							<path id="path7073_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M294.264,329.792c0,1.289,1.045,2.334,2.332,2.334
								c1.289,0,2.334-1.045,2.334-2.334c0-1.286-1.045-2.332-2.334-2.332C295.309,327.46,294.264,328.506,294.264,329.792z"/>
							<path id="path7075_17_" fill="none" stroke="#2A8FCE" d="M296.596,332.126v16.334"/>
						</g>
						<g id="g7077_17_">
							<path id="path7079_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M299.614,329.792c0,1.289,1.045,2.334,2.334,2.334
								c1.287,0,2.332-1.045,2.332-2.334c0-1.286-1.045-2.332-2.332-2.332C300.659,327.46,299.614,328.506,299.614,329.792z"/>
							<path id="path7081_17_" fill="none" stroke="#2A8FCE" d="M301.948,332.126v16.334"/>
						</g>
						<g id="g7083_17_">
							<path id="path7085_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M302.29,352.696c0-1.286,1.045-2.334,2.332-2.334
								c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C303.335,355.028,302.29,353.983,302.29,352.696z"/>
							<path id="path7087_17_" fill="none" stroke="#2A8FCE" d="M304.622,350.362v-16.334"/>
						</g>
						<g id="g7089_17_">
							<path id="path7091_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M307.639,352.696c0-1.286,1.045-2.334,2.334-2.334
								c1.287,0,2.332,1.048,2.332,2.334c0,1.287-1.045,2.332-2.332,2.332C308.684,355.028,307.639,353.983,307.639,352.696z"/>
							<path id="path7093_17_" fill="none" stroke="#2A8FCE" d="M309.973,350.362v-16.334"/>
						</g>
						<g id="g7095_17_">
							<path id="path7097_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M312.991,352.696c0-1.286,1.045-2.334,2.332-2.334
								c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C314.036,355.028,312.991,353.983,312.991,352.696z"/>
							<path id="path7099_17_" fill="none" stroke="#2A8FCE" d="M315.323,350.362v-16.334"/>
						</g>
						<g id="g7101_17_">
							<path id="path7103_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M286.239,352.696c0-1.286,1.045-2.334,2.332-2.334
								c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C287.284,355.028,286.239,353.983,286.239,352.696z"/>
							<path id="path7105_17_" fill="none" stroke="#2A8FCE" d="M288.571,350.362v-16.334"/>
						</g>
						<g id="g7107_17_">
							<path id="path7109_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M291.589,352.696c0-1.286,1.045-2.334,2.332-2.334
								c1.289,0,2.334,1.048,2.334,2.334c0,1.287-1.045,2.332-2.334,2.332C292.634,355.028,291.589,353.983,291.589,352.696z"/>
							<path id="path7111_17_" fill="none" stroke="#2A8FCE" d="M293.921,350.362v-16.334"/>
						</g>
						<g id="g7113_16_">
							<path id="path7115_17_" fill="#C2DCF3" stroke="#2A8FCE" d="M296.938,352.696c0-1.286,1.048-2.334,2.335-2.334
								c1.286,0,2.331,1.048,2.331,2.334c0,1.287-1.045,2.332-2.331,2.332C297.986,355.028,296.938,353.983,296.938,352.696z"/>
							<path id="path7117_17_" fill="none" stroke="#2A8FCE" d="M299.273,350.362v-16.334"/>
						</g>
					</g>
				</g>
			</g>
		</g>
	</g>
</g>
<g id="I_ka_SM">
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="332.585" y1="341.087" x2="332.585" y2="279.771"/>
			<polygon fill="#010101" points="328.882,338.277 332.585,339.852 336.289,338.277 332.585,347.057 			"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_1_" cx="281.3552" cy="-33.1963" r="18.2191" gradientTransform="matrix(1 0 0 -1 51.229 277.2334)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FDFBE1"/>
				<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
				<stop  offset="0.2662" style="stop-color:#FFFACC"/>
				<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
				<stop  offset="0.5943" style="stop-color:#FEF091"/>
				<stop  offset="0.7706" style="stop-color:#FEEA64"/>
				<stop  offset="0.9506" style="stop-color:#FEE22D"/>
				<stop  offset="1" style="stop-color:#FEE01B"/>
			</radialGradient>
			<path fill="url(#SVGID_1_)" d="M337.667,287.014c-2.226,0-4.157,1.957-5.082,4.777c-0.926-2.82-2.856-4.777-5.083-4.777
				c-3.117,0-5.668,3.825-5.668,8.504v29.823c0,4.679,2.551,8.505,5.668,8.505c2.227,0,4.157-1.959,5.083-4.779
				c0.925,2.82,2.856,4.779,5.082,4.779c3.116,0,5.668-3.826,5.668-8.505v-29.823C343.335,290.839,340.783,287.014,337.667,287.014z
				"/>
		</g>
		<g>
			<path id="I_ka_SM_path1" fill="none" stroke="#010101" d="M337.667,287.014c-2.226,0-4.157,1.957-5.082,4.777
				c-0.926-2.82-2.856-4.777-5.083-4.777c-3.117,0-5.668,3.825-5.668,8.504v29.823c0,4.679,2.551,8.505,5.668,8.505
				c2.227,0,4.157-1.959,5.083-4.779c0.925,2.82,2.856,4.779,5.082,4.779c3.116,0,5.668-3.826,5.668-8.505v-29.823
				C343.335,290.839,340.783,287.014,337.667,287.014z"/>
		</g>
	</g>
	<g>
		<path fill="#010101" d="M334.672,306.381l0.005,0.869l-3.248,0.018v0.03c0.262,0.179,0.502,0.356,0.724,0.525l2.54,2.046
			l0.005,1.079l-2.871-2.423l-3.864,2.647l-0.006-1.028l3.297-2.228l-0.743-0.646l-2.567,0.014l-0.006-0.869L334.672,306.381z"/>
		<path fill="#010101" d="M335.029,313.352l-1.646,0.01l0.009,1.582l-0.42,0.002l-0.009-1.582l-1.66,0.009l-0.002-0.448l1.66-0.009
			l-0.008-1.583l0.42-0.002l0.008,1.583l1.646-0.009L335.029,313.352z"/>
	</g>
</g>
<g>
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="228.526" y1="154.657" x2="228.526" y2="35.839"/>
			<polygon fill="#010101" points="224.823,151.849 228.526,153.422 232.23,151.849 228.526,160.627 			"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_2_" cx="177.2971" cy="214.7354" r="18.2194" gradientTransform="matrix(1 0 0 -1 51.229 281.2334)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FDFBE1"/>
				<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
				<stop  offset="0.2662" style="stop-color:#FFFACC"/>
				<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
				<stop  offset="0.5943" style="stop-color:#FEF091"/>
				<stop  offset="0.7706" style="stop-color:#FEEA64"/>
				<stop  offset="0.9506" style="stop-color:#FEE22D"/>
				<stop  offset="1" style="stop-color:#FEE01B"/>
			</radialGradient>
			<path fill="url(#SVGID_2_)" d="M233.609,43.082c-2.227,0-4.157,1.958-5.083,4.778c-0.925-2.82-2.856-4.778-5.083-4.778
				c-3.117,0-5.668,3.826-5.668,8.504V81.41c0,4.678,2.551,8.504,5.668,8.504c2.226,0,4.158-1.958,5.083-4.778
				c0.925,2.82,2.856,4.778,5.083,4.778c3.116,0,5.668-3.826,5.668-8.504V51.586C239.277,46.908,236.725,43.082,233.609,43.082z"/>
		</g>
		<g>
			<path fill="none" stroke="#010101" d="M233.609,43.082c-2.227,0-4.157,1.958-5.083,4.778c-0.925-2.82-2.856-4.778-5.083-4.778
				c-3.117,0-5.668,3.826-5.668,8.504V81.41c0,4.678,2.551,8.504,5.668,8.504c2.226,0,4.158-1.958,5.083-4.778
				c0.925,2.82,2.856,4.778,5.083,4.778c3.116,0,5.668-3.826,5.668-8.504V51.586C239.277,46.908,236.725,43.082,233.609,43.082z"/>
		</g>
	</g>
	<g>
		<path fill="#010101" d="M224.067,62.822c-0.162-0.309-0.325-0.958-0.33-1.777c-0.01-1.898,1.182-3.325,3.401-3.337
			c2.117-0.012,3.546,1.411,3.557,3.5c0.004,0.829-0.173,1.37-0.292,1.6l-0.711-0.216c0.158-0.32,0.274-0.79,0.271-1.35
			c-0.008-1.579-1.022-2.624-2.792-2.614c-1.658,0.009-2.703,0.964-2.693,2.593c0.002,0.54,0.114,1.079,0.287,1.428L224.067,62.822z
			"/>
		<path fill="#010101" d="M225.04,67.229c-0.42,0.002-0.829,0.024-1.159,0.076l-0.004-0.79l0.609-0.083v-0.029
			c-0.381-0.259-0.724-0.786-0.729-1.476c-0.005-0.979,0.684-1.483,1.383-1.487c1.169-0.006,1.813,1.03,1.813,2.898h0.102
			c0.398-0.002,1.128-0.115,1.112-1.104c-0.002-0.46-0.135-0.93-0.367-1.268l0.59-0.204c0.252,0.399,0.425,0.987,0.428,1.598
			c0.008,1.489-1,1.854-1.969,1.859L225.04,67.229z M226.345,66.362c0.014-0.96-0.161-2.049-1.102-2.043
			c-0.579,0.003-0.837,0.384-0.834,0.823c0.003,0.64,0.405,1.048,0.816,1.186c0.09,0.029,0.188,0.039,0.278,0.038L226.345,66.362z"
			/>
		<path fill="#010101" d="M227.216,68.214l0.379-0.002l0.473,0.48c1.112,1.155,1.703,1.685,2.39,1.681
			c0.463-0.002,0.89-0.222,0.885-0.9c-0.002-0.413-0.214-0.754-0.39-0.965l0.433-0.197c0.262,0.307,0.468,0.761,0.471,1.286
			c0.005,0.973-0.666,1.389-1.317,1.393c-0.841,0.004-1.522-0.602-2.453-1.555l-0.338-0.355h-0.014l0.011,2.037l-0.512,0.003
			L227.216,68.214z"/>
		<path fill="#010101" d="M230.972,73.78l-1.646,0.009l0.008,1.583l-0.42,0.002l-0.008-1.583l-1.66,0.009l-0.002-0.448l1.66-0.009
			l-0.009-1.583l0.42-0.002l0.009,1.583l1.646-0.009L230.972,73.78z"/>
	</g>
</g>
<g id="I_LVA_SM">
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="172.833" y1="187.91" x2="28.88" y2="187.911"/>
			<polygon fill="#010101" points="170.024,191.613 171.597,187.91 170.024,184.206 178.802,187.91 			"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_3_" cx="325.9089" cy="1654.0273" r="18.2194" gradientTransform="matrix(4.371139e-08 1 1 -4.371139e-08 -1594.489 -137.9983)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FDFBE1"/>
				<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
				<stop  offset="0.2662" style="stop-color:#FFFACC"/>
				<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
				<stop  offset="0.5943" style="stop-color:#FEF091"/>
				<stop  offset="0.7706" style="stop-color:#FEEA64"/>
				<stop  offset="0.9506" style="stop-color:#FEE22D"/>
				<stop  offset="1" style="stop-color:#FEE01B"/>
			</radialGradient>
			<path fill="url(#SVGID_3_)" d="M78.176,187.911c2.821-0.926,4.779-2.856,4.779-5.083c0-3.117-3.826-5.668-8.504-5.668
				l-29.824,0.001c-4.678,0-8.504,2.551-8.504,5.668c0,2.227,1.958,4.158,4.779,5.083c-2.821,0.925-4.779,2.855-4.779,5.082
				c0,3.115,3.826,5.668,8.504,5.668l29.824-0.001c4.678,0,8.504-2.552,8.504-5.668C82.955,190.768,80.998,188.836,78.176,187.911z"
				/>
		</g>
		<g>
			<path id="I_LVA_SM_path1" fill="none" stroke="#010101" d="M78.176,187.911c2.821-0.926,4.779-2.856,4.779-5.083
				c0-3.117-3.826-5.668-8.504-5.668l-29.824,0.001c-4.678,0-8.504,2.551-8.504,5.668c0,2.227,1.958,4.158,4.779,5.083
				c-2.821,0.925-4.779,2.855-4.779,5.082c0,3.115,3.826,5.668,8.504,5.668l29.824-0.001c4.678,0,8.504-2.552,8.504-5.668
				C82.955,190.768,80.998,188.836,78.176,187.911z"/>
		</g>
	</g>
	<g>
		<path fill="#010101" d="M55.863,192.371c-0.309,0.162-0.958,0.324-1.777,0.33c-1.897,0.01-3.324-1.184-3.337-3.401
			c-0.012-2.118,1.411-3.546,3.5-3.558c0.829-0.004,1.37,0.174,1.601,0.292l-0.217,0.711c-0.319-0.158-0.79-0.274-1.35-0.272
			c-1.579,0.009-2.624,1.023-2.614,2.792c0.01,1.659,0.964,2.703,2.594,2.693c0.539-0.002,1.078-0.114,1.428-0.286L55.863,192.371z"
			/>
		<path fill="#010101" d="M60.269,191.398c0.002,0.42,0.023,0.828,0.076,1.158l-0.79,0.004l-0.083-0.608l-0.029,0.001
			c-0.259,0.381-0.786,0.723-1.477,0.727c-0.979,0.006-1.482-0.682-1.486-1.381c-0.006-1.17,1.029-1.814,2.897-1.814v-0.102
			c-0.002-0.398-0.114-1.128-1.104-1.113c-0.46,0.003-0.93,0.135-1.269,0.367l-0.204-0.588c0.399-0.252,0.987-0.426,1.599-0.429
			c1.489-0.008,1.854,1,1.858,1.969L60.269,191.398z M59.403,190.094c-0.96-0.015-2.049,0.16-2.043,1.1
			c0.003,0.58,0.384,0.839,0.823,0.836c0.64-0.004,1.048-0.405,1.186-0.815c0.029-0.09,0.039-0.188,0.038-0.278L59.403,190.094z"/>
		<path fill="#010101" d="M61.254,189.223l-0.002-0.379l0.48-0.473c1.155-1.111,1.685-1.703,1.681-2.389
			c-0.002-0.463-0.222-0.889-0.899-0.885c-0.413,0.002-0.755,0.213-0.966,0.389l-0.196-0.432c0.307-0.262,0.761-0.467,1.286-0.471
			c0.973-0.004,1.389,0.666,1.393,1.317c0.004,0.841-0.602,1.522-1.555,2.452l-0.355,0.337v0.015l2.037-0.011l0.003,0.513
			L61.254,189.223z"/>
		<path fill="#010101" d="M66.821,185.467l0.009,1.645l1.583-0.008l0.002,0.42l-1.583,0.008l0.009,1.659l-0.447,0.004l-0.01-1.66
			l-1.583,0.009l-0.002-0.42l1.583-0.009l-0.009-1.646L66.821,185.467z"/>
	</g>
</g>
<g id="I_NSCC_SM">
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="367.887" y1="187.762" x2="429.205" y2="187.762"/>
			<polygon fill="#010101" points="370.696,184.059 369.124,187.762 370.696,191.466 361.919,187.762 			"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_4_" cx="696.5886" cy="1119.2344" r="18.2194" gradientTransform="matrix(0 1 1 0 -720.6873 -508.8259)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FDFBE1"/>
				<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
				<stop  offset="0.2662" style="stop-color:#FFFACC"/>
				<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
				<stop  offset="0.5943" style="stop-color:#FEF091"/>
				<stop  offset="0.7706" style="stop-color:#FEEA64"/>
				<stop  offset="0.9506" style="stop-color:#FEE22D"/>
				<stop  offset="1" style="stop-color:#FEE01B"/>
			</radialGradient>
			<path fill="url(#SVGID_4_)" d="M417.182,187.763c2.822-0.924,4.78-2.855,4.78-5.083c0-3.117-3.826-5.668-8.504-5.668h-29.824
				c-4.678,0-8.504,2.551-8.504,5.668c0,2.228,1.958,4.159,4.78,5.083c-2.822,0.924-4.78,2.857-4.78,5.083
				c0,3.115,3.826,5.668,8.504,5.668h29.824c4.678,0,8.504-2.553,8.504-5.668C421.963,190.62,420.005,188.688,417.182,187.763z"/>
		</g>
		<g>
			<path id="I_NSCC_SM_path1" fill="none" stroke="#010101" d="M417.182,187.763c2.822-0.924,4.78-2.855,4.78-5.083
				c0-3.117-3.826-5.668-8.504-5.668h-29.824c-4.678,0-8.504,2.551-8.504,5.668c0,2.228,1.958,4.159,4.78,5.083
				c-2.822,0.924-4.78,2.857-4.78,5.083c0,3.115,3.826,5.668,8.504,5.668h29.824c4.678,0,8.504-2.553,8.504-5.668
				C421.963,190.62,420.005,188.688,417.182,187.763z"/>
		</g>
	</g>
	<g>
		<path fill="#010101" d="M391.554,192.441l-0.035-6.736l0.959-0.005l2.169,3.396c0.491,0.786,0.896,1.484,1.211,2.184l0.028-0.01
			c-0.084-0.899-0.108-1.72-0.114-2.76l-0.017-2.828l0.82-0.005l0.035,6.736l-0.879,0.005l-2.156-3.406
			c-0.476-0.747-0.928-1.515-1.262-2.242l-0.029,0.01c0.055,0.849,0.068,1.659,0.074,2.779l0.016,2.879L391.554,192.441z"/>
		<path fill="#010101" d="M401.486,191.229c0.002,0.42,0.024,0.83,0.075,1.16l-0.788,0.004l-0.084-0.608h-0.029
			c-0.258,0.381-0.785,0.725-1.476,0.729c-0.979,0.004-1.483-0.685-1.487-1.384c-0.006-1.168,1.03-1.813,2.897-1.813v-0.101
			c-0.002-0.399-0.114-1.129-1.104-1.113c-0.461,0.002-0.931,0.135-1.269,0.367l-0.205-0.59c0.4-0.252,0.988-0.425,1.599-0.428
			c1.489-0.008,1.854,1,1.858,1.969L401.486,191.229z M400.621,189.924c-0.961-0.014-2.049,0.162-2.043,1.102
			c0.002,0.578,0.383,0.836,0.822,0.834c0.641-0.004,1.049-0.403,1.186-0.815c0.029-0.09,0.039-0.188,0.039-0.278L400.621,189.924z"
			/>
		<path fill="#010101" d="M404.449,185.316l0.008,1.646l1.584-0.01l0.002,0.42l-1.584,0.01l0.01,1.66l-0.449,0.002l-0.008-1.66
			l-1.584,0.008l-0.002-0.42l1.584-0.008l-0.01-1.646L404.449,185.316z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="116.545" y1="35.84" x2="116.545" y2="97.156"/>
		<polygon fill="#010101" points="120.248,38.648 116.545,37.075 112.841,38.648 116.545,29.87 		"/>
	</g>
</g>
<g id="I_kr_SM">
	<g>
		
			<radialGradient id="SVGID_5_" cx="206.4119" cy="1635.5986" r="18.2194" gradientTransform="matrix(-1 0 0 1 322.957 -1569.1006)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FDFBE1"/>
			<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
			<stop  offset="0.2662" style="stop-color:#FFFACC"/>
			<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
			<stop  offset="0.5943" style="stop-color:#FEF091"/>
			<stop  offset="0.7706" style="stop-color:#FEEA64"/>
			<stop  offset="0.9506" style="stop-color:#FEE22D"/>
			<stop  offset="1" style="stop-color:#FEE01B"/>
		</radialGradient>
		<path fill="url(#SVGID_5_)" d="M121.628,43.082c-2.228,0-4.158,1.958-5.083,4.78c-0.925-2.822-2.856-4.78-5.083-4.78
			c-3.114,0-5.668,3.826-5.668,8.504V81.41c0,4.678,2.554,8.504,5.668,8.504c2.227,0,4.158-1.958,5.083-4.78
			c0.925,2.822,2.855,4.78,5.083,4.78c3.117,0,5.668-3.826,5.668-8.504V51.586C127.296,46.908,124.745,43.082,121.628,43.082z"/>
	</g>
	<g>
		<path id="I_kr_SM_path1" fill="none" stroke="#010101" d="M121.628,43.082c-2.228,0-4.158,1.958-5.083,4.78
			c-0.925-2.822-2.856-4.78-5.083-4.78c-3.114,0-5.668,3.826-5.668,8.504V81.41c0,4.678,2.554,8.504,5.668,8.504
			c2.227,0,4.158-1.958,5.083-4.78c0.925,2.822,2.855,4.78,5.083,4.78c3.117,0,5.668-3.826,5.668-8.504V51.586
			C127.296,46.908,124.745,43.082,121.628,43.082z"/>
	</g>
</g>
<g>
	<path fill="#010101" d="M118.617,62.45l0.004,0.869l-3.248,0.018v0.03c0.261,0.178,0.501,0.356,0.723,0.525l2.539,2.046
		l0.007,1.079l-2.872-2.423l-3.864,2.648l-0.005-1.029l3.296-2.227l-0.744-0.646l-2.568,0.014l-0.004-0.869L118.617,62.45z"/>
	<path fill="#010101" d="M118.974,69.42l-1.646,0.009l0.008,1.582l-0.42,0.002l-0.008-1.582l-1.66,0.01l-0.002-0.448l1.66-0.01
		l-0.008-1.583l0.42-0.002l0.008,1.583l1.646-0.009L118.974,69.42z"/>
</g>
<g id="I_BK_SM">
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="332.584" y1="35.84" x2="332.584" y2="97.156"/>
			<polygon fill="#010101" points="336.287,38.648 332.584,37.075 328.88,38.648 332.584,29.87 			"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_6_" cx="-9.6272" cy="1635.5986" r="18.2194" gradientTransform="matrix(-1 0 0 1 322.957 -1569.1006)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FDFBE1"/>
				<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
				<stop  offset="0.2662" style="stop-color:#FFFACC"/>
				<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
				<stop  offset="0.5943" style="stop-color:#FEF091"/>
				<stop  offset="0.7706" style="stop-color:#FEEA64"/>
				<stop  offset="0.9506" style="stop-color:#FEE22D"/>
				<stop  offset="1" style="stop-color:#FEE01B"/>
			</radialGradient>
			<path fill="url(#SVGID_6_)" d="M337.667,43.082c-2.228,0-4.158,1.958-5.083,4.78c-0.925-2.822-2.857-4.78-5.083-4.78
				c-3.115,0-5.668,3.826-5.668,8.504V81.41c0,4.678,2.553,8.504,5.668,8.504c2.226,0,4.158-1.958,5.083-4.78
				c0.925,2.822,2.855,4.78,5.083,4.78c3.117,0,5.668-3.826,5.668-8.504V51.586C343.335,46.908,340.784,43.082,337.667,43.082z"/>
		</g>
		<g>
			<path id="I_BK_SM_path1" fill="none" stroke="#010101" d="M337.667,43.082c-2.228,0-4.158,1.958-5.083,4.78
				c-0.925-2.822-2.857-4.78-5.083-4.78c-3.115,0-5.668,3.826-5.668,8.504V81.41c0,4.678,2.553,8.504,5.668,8.504
				c2.226,0,4.158-1.958,5.083-4.78c0.925,2.822,2.855,4.78,5.083,4.78c3.117,0,5.668-3.826,5.668-8.504V51.586
				C343.335,46.908,340.784,43.082,337.667,43.082z"/>
		</g>
	</g>
	<g>
		<path fill="#010101" d="M334.656,62.45l0.004,0.869l-3.248,0.018l0.001,0.03c0.261,0.178,0.501,0.356,0.722,0.525l2.54,2.046
			l0.006,1.079l-2.872-2.423l-3.862,2.648l-0.006-1.029l3.297-2.227l-0.744-0.646l-2.568,0.014l-0.004-0.869L334.656,62.45z"/>
		<path fill="#010101" d="M335.012,69.42l-1.646,0.009l0.008,1.582l-0.42,0.002l-0.008-1.582l-1.66,0.01l-0.002-0.448l1.66-0.01
			l-0.01-1.583l0.421-0.002l0.009,1.583l1.645-0.009L335.012,69.42z"/>
	</g>
</g>
<g>
	<g>
		<g id="g11110" transform="translate(-4.764492,-202.9406)">
			<path id="rect11116" fill="#C2DCF3" stroke="#2A8FCE" stroke-width="5.31" d="M183.583,447.332h99.415
				c5.928,0,10.729,3.198,10.729,7.144v34.62c0,3.943-4.803,7.144-10.729,7.144h-99.415c-5.926,0-10.729-3.199-10.729-7.144v-34.62
				C172.855,450.53,177.658,447.332,183.583,447.332z"/>
		</g>
		<g>
			<path fill="#010101" d="M180.352,260.339c0.39,0.25,0.949,0.438,1.549,0.438c0.89,0,1.409-0.459,1.409-1.147
				c0-0.62-0.36-0.989-1.27-1.33c-1.1-0.399-1.778-0.979-1.778-1.919c0-1.049,0.869-1.829,2.179-1.829c0.68,0,1.188,0.16,1.479,0.33
				l-0.239,0.71c-0.21-0.13-0.66-0.32-1.271-0.32c-0.919,0-1.27,0.551-1.27,1.011c0,0.63,0.409,0.938,1.339,1.299
				c1.14,0.45,1.709,0.989,1.709,1.979c0,1.039-0.759,1.948-2.35,1.948c-0.648,0-1.358-0.2-1.719-0.44L180.352,260.339z"/>
			<path fill="#010101" d="M185.393,254.762c0.438-0.09,1.079-0.148,1.669-0.148c0.93,0,1.539,0.18,1.959,0.56
				c0.33,0.29,0.529,0.75,0.529,1.279c0,0.88-0.569,1.469-1.27,1.709v0.03c0.51,0.18,0.82,0.658,0.99,1.358
				c0.22,0.939,0.379,1.589,0.509,1.849h-0.899c-0.109-0.188-0.26-0.77-0.438-1.608c-0.2-0.931-0.57-1.279-1.359-1.31h-0.819v2.918
				h-0.869L185.393,254.762L185.393,254.762z M186.262,257.82h0.89c0.93,0,1.519-0.51,1.519-1.279c0-0.869-0.629-1.249-1.549-1.249
				c-0.42,0-0.71,0.04-0.859,0.08V257.82z"/>
		</g>
	</g>
	<g>
		<g>
			<g>
				
					<radialGradient id="path21961_2_" cx="485.8308" cy="1474.1016" r="17.8345" gradientTransform="matrix(0 1 1 0 -1246.2869 -178.1267)" gradientUnits="userSpaceOnUse">
					<stop  offset="0" style="stop-color:#D1C5E2"/>
					<stop  offset="0.3949" style="stop-color:#C1D2EC"/>
					<stop  offset="0.5372" style="stop-color:#BACDEA"/>
					<stop  offset="0.6386" style="stop-color:#B0C5E6"/>
					<stop  offset="0.7206" style="stop-color:#A0BBE1"/>
					<stop  offset="0.7909" style="stop-color:#8EADDA"/>
					<stop  offset="0.8531" style="stop-color:#7597CE"/>
					<stop  offset="0.9093" style="stop-color:#5B82C2"/>
					<stop  offset="0.9593" style="stop-color:#4770B6"/>
					<stop  offset="1" style="stop-color:#4165B0"/>
				</radialGradient>
				<path id="path21961_1_" fill="url(#path21961_2_)" stroke="#010101" d="M227.815,325.54c-9.852,0-17.835-7.983-17.835-17.834
					s7.983-17.836,17.835-17.836c9.849,0,17.834,7.985,17.834,17.836S237.665,325.54,227.815,325.54z"/>
				<g>
					<g>
						<g>
							<path fill="none" stroke="#010101" d="M245.649,328.501v-41.59"/>
							<polygon fill="#010101" points="241.946,325.691 245.649,327.266 249.354,325.691 245.649,334.471 							"/>
						</g>
					</g>
				</g>
			</g>
			<g>
				<g>
					<g>
						<path fill="none" stroke="#010101" d="M209.98,328.501v-41.59"/>
						<polygon fill="#010101" points="213.684,289.72 209.98,288.146 206.276,289.72 209.98,280.941 						"/>
					</g>
				</g>
			</g>
		</g>
		<g>
			<path fill="#010101" d="M203.23,277.031v-6.736h0.959l2.148,3.408c0.489,0.789,0.891,1.488,1.199,2.188l0.03-0.01
				c-0.08-0.898-0.102-1.719-0.102-2.759v-2.828h0.819v6.735h-0.879l-2.139-3.418c-0.471-0.75-0.92-1.52-1.25-2.248l-0.029,0.01
				c0.05,0.85,0.06,1.659,0.06,2.777v2.88L203.23,277.031L203.23,277.031z"/>
			<path fill="#010101" d="M213.167,275.872c0,0.42,0.021,0.829,0.07,1.159h-0.79l-0.08-0.609h-0.029
				c-0.261,0.38-0.79,0.721-1.479,0.721c-0.979,0-1.479-0.69-1.479-1.391c0-1.169,1.04-1.809,2.908-1.799v-0.102
				c0-0.398-0.108-1.129-1.099-1.119c-0.46,0-0.931,0.131-1.271,0.36l-0.199-0.59c0.399-0.25,0.988-0.42,1.6-0.42
				c1.489,0,1.849,1.01,1.849,1.979L213.167,275.872L213.167,275.872z M212.308,274.562c-0.96-0.02-2.05,0.15-2.05,1.09
				c0,0.58,0.381,0.84,0.819,0.84c0.64,0,1.05-0.399,1.189-0.811c0.029-0.09,0.04-0.188,0.04-0.279L212.308,274.562L212.308,274.562
				z"/>
			<path fill="#010101" d="M216.162,269.977v1.646h1.583v0.42h-1.583v1.66h-0.448v-1.66h-1.583v-0.42h1.583v-1.646H216.162z"/>
		</g>
		<g>
			<path fill="#010101" d="M242.026,344.469c-0.311,0.16-0.96,0.32-1.779,0.32c-1.897,0-3.317-1.2-3.317-3.419
				c0-2.118,1.43-3.538,3.519-3.538c0.829,0,1.369,0.182,1.599,0.3l-0.22,0.71c-0.319-0.16-0.789-0.279-1.349-0.279
				c-1.579,0-2.629,1.01-2.629,2.778c0,1.659,0.948,2.708,2.577,2.708c0.54,0,1.08-0.109,1.431-0.279L242.026,344.469z"/>
			<path fill="#010101" d="M246.438,343.52c0,0.42,0.021,0.83,0.069,1.16h-0.79l-0.079-0.609h-0.029
				c-0.261,0.38-0.79,0.72-1.479,0.72c-0.979,0-1.479-0.69-1.479-1.39c0-1.17,1.04-1.81,2.908-1.799V341.5
				c0-0.398-0.109-1.129-1.1-1.119c-0.46,0-0.93,0.131-1.27,0.36l-0.2-0.591c0.4-0.25,0.989-0.42,1.6-0.42
				c1.489,0,1.85,1.011,1.85,1.979L246.438,343.52L246.438,343.52z M245.578,342.21c-0.96-0.021-2.049,0.149-2.049,1.09
				c0,0.579,0.38,0.839,0.819,0.839c0.64,0,1.05-0.398,1.188-0.81c0.03-0.091,0.04-0.188,0.04-0.279L245.578,342.21L245.578,342.21z
				"/>
			<path fill="#010101" d="M247.435,341.35v-0.379l0.482-0.47c1.162-1.106,1.694-1.694,1.694-2.381c0-0.463-0.217-0.89-0.896-0.89
				c-0.412,0-0.756,0.209-0.967,0.385l-0.194-0.434c0.308-0.261,0.763-0.464,1.287-0.464c0.975,0,1.388,0.673,1.388,1.324
				c0,0.841-0.609,1.521-1.568,2.444l-0.356,0.336v0.014h2.037v0.512h-2.906V341.35z"/>
			<path fill="#010101" d="M253.021,337.623v1.646h1.583v0.42h-1.583v1.66h-0.448v-1.66h-1.583v-0.42h1.583v-1.646H253.021z"/>
		</g>
	</g>
</g>
<g>
	<g>
		<path fill="#FFFFFF" d="M262.389,167.194c0-21.295,25.054-64.35,55.205-76.842"/>
		<polygon fill="#FFFFFF" points="316.417,94.849 316.453,90.825 313.582,88.006 323.109,88.067 		"/>
	</g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3,3" d="M262.389,167.194c0-21.295,25.054-64.35,55.205-76.842"/>
		<polygon points="316.417,94.849 316.453,90.825 313.582,88.006 323.109,88.067 		"/>
	</g>
</g>
<g id="Ca_i">
	
		<radialGradient id="Ca_i_path1_1_" cx="228.3855" cy="188.1826" r="39.7611" gradientTransform="matrix(1 0 0 -1 0.1401 375.9453)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FDFBE1"/>
		<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
		<stop  offset="0.2662" style="stop-color:#FFFACC"/>
		<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
		<stop  offset="0.5943" style="stop-color:#FEF091"/>
		<stop  offset="0.7706" style="stop-color:#FEEA64"/>
		<stop  offset="0.9506" style="stop-color:#FEE22D"/>
		<stop  offset="1" style="stop-color:#FEE01B"/>
	</radialGradient>
	<ellipse id="Ca_i_path1" fill="url(#Ca_i_path1_1_)" stroke="#010101" cx="228.526" cy="187.763" rx="49.816" ry="26.079"/>
	<g>
		<path d="M214.012,192.064v-14.369h3.295v0.99h-2.054v12.388h2.054v0.99H214.012L214.012,192.064z"/>
		<path d="M227.281,189.67c-0.558,0.288-1.729,0.576-3.205,0.576c-3.421,0-5.978-2.16-5.978-6.158c0-3.816,2.574-6.373,6.338-6.373
			c1.494,0,2.466,0.323,2.881,0.539l-0.396,1.279c-0.575-0.289-1.422-0.505-2.431-0.505c-2.845,0-4.735,1.819-4.735,5.006
			c0,2.989,1.71,4.88,4.646,4.88c0.972,0,1.944-0.199,2.575-0.505L227.281,189.67z"/>
		<path d="M235.2,187.959c0,0.756,0.036,1.494,0.126,2.089h-1.422l-0.126-1.099h-0.054c-0.486,0.685-1.423,1.297-2.665,1.297
			c-1.766,0-2.665-1.242-2.665-2.503c0-2.106,1.873-3.259,5.238-3.241v-0.18c0-0.702-0.197-2.017-1.979-1.998
			c-0.828,0-1.674,0.233-2.287,0.647l-0.36-1.063c0.721-0.45,1.783-0.756,2.882-0.756c2.664,0,3.312,1.818,3.312,3.547V187.959
			L235.2,187.959z M233.669,185.601c-1.729-0.036-3.69,0.271-3.69,1.962c0,1.044,0.684,1.514,1.476,1.514
			c1.152,0,1.892-0.721,2.144-1.459c0.054-0.18,0.071-0.36,0.071-0.504V185.601L233.669,185.601z"/>
		<path d="M240.095,177.696v14.369H236.8v-0.99h2.054v-12.388H236.8v-0.99H240.095z"/>
		<path d="M243.707,188.228c0,0.377-0.265,0.681-0.706,0.681c-0.402,0-0.668-0.304-0.668-0.681c0-0.378,0.277-0.692,0.693-0.692
			C243.43,187.535,243.707,187.837,243.707,188.228z M242.472,196.042v-6.101h1.108v6.101H242.472z"/>
	</g>
</g>
<g>
	<g>
		<path fill="#FFFFFF" d="M267.738,203.28c19.654,29.137,82.211,24.889,105.484-2.677"/>
		<polygon fill="#FFFFFF" points="374.241,205.141 372.427,201.549 368.581,200.359 377.074,196.044 		"/>
	</g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3,3" d="M267.738,203.28c19.654,29.137,82.211,24.889,105.484-2.677"/>
		<polygon points="374.241,205.141 372.427,201.549 368.581,200.359 377.074,196.044 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="#FFFFFF" d="M211.664,162.918c-21.295-15.603-21.979-58.509,3.761-71.034"/>
		<polygon fill="#FFFFFF" points="214.52,96.442 214.313,92.425 211.279,89.782 220.792,89.272 		"/>
	</g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3,3" d="M211.664,162.918c-21.295-15.603-21.979-58.509,3.761-71.034"/>
		<polygon points="214.52,96.442 214.313,92.425 211.279,89.782 220.792,89.272 		"/>
	</g>
</g>
<g id="I_Na_SM">
	<g>
		<g>
			<line fill="none" stroke="#010101" x1="116.545" y1="279.771" x2="116.545" y2="341.087"/>
			<polygon fill="#010101" points="120.249,282.579 116.545,281.007 112.841,282.579 116.545,273.802 			"/>
		</g>
	</g>
	<g>
		<g>
			
				<radialGradient id="SVGID_7_" cx="616.5886" cy="1275.9014" r="18.2194" gradientTransform="matrix(-1 0 0 1 733.1328 -965.4717)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FDFBE1"/>
				<stop  offset="0.1203" style="stop-color:#FEFBDC"/>
				<stop  offset="0.2662" style="stop-color:#FFFACC"/>
				<stop  offset="0.4255" style="stop-color:#FEF6B3"/>
				<stop  offset="0.5943" style="stop-color:#FEF091"/>
				<stop  offset="0.7706" style="stop-color:#FEEA64"/>
				<stop  offset="0.9506" style="stop-color:#FEE22D"/>
				<stop  offset="1" style="stop-color:#FEE01B"/>
			</radialGradient>
			<path fill="url(#SVGID_7_)" d="M121.627,287.014c-2.227,0-4.159,1.957-5.083,4.778c-0.925-2.821-2.856-4.778-5.083-4.778
				c-3.115,0-5.668,3.825-5.668,8.504v29.823c0,4.679,2.553,8.507,5.667,8.505c2.227,0,4.158-1.959,5.083-4.779
				c0.924,2.82,2.856,4.779,5.083,4.779c3.117,0,5.669-3.826,5.669-8.505v-29.823C127.296,290.839,124.745,287.014,121.627,287.014z
				"/>
		</g>
		<g>
			<path id="I_Na_SM_path1" fill="none" stroke="#010101" d="M121.627,287.014c-2.227,0-4.159,1.957-5.083,4.778
				c-0.925-2.821-2.856-4.778-5.083-4.778c-3.115,0-5.668,3.825-5.668,8.504v29.823c0,4.679,2.553,8.507,5.667,8.505
				c2.227,0,4.158-1.959,5.083-4.779c0.924,2.82,2.856,4.779,5.083,4.779c3.117,0,5.669-3.826,5.669-8.505v-29.823
				C127.296,290.839,124.745,287.014,121.627,287.014z"/>
		</g>
	</g>
	<g>
		<path fill="#010101" d="M111.866,303.438l6.736-0.035l0.005,0.959l-3.396,2.168c-0.787,0.492-1.484,0.896-2.182,1.211l0.01,0.029
			c0.899-0.084,1.718-0.109,2.758-0.114l2.828-0.017l0.004,0.819l-6.735,0.036l-0.005-0.879l3.406-2.157
			c0.748-0.474,1.516-0.928,2.242-1.262l-0.01-0.029c-0.849,0.056-1.659,0.067-2.778,0.074l-2.879,0.016L111.866,303.438z"/>
		<path fill="#010101" d="M113.079,313.37c-0.42,0.002-0.829,0.024-1.159,0.075l-0.004-0.789l0.609-0.083v-0.029
			c-0.381-0.259-0.725-0.786-0.729-1.476c-0.005-0.979,0.684-1.483,1.383-1.487c1.169-0.006,1.813,1.03,1.813,2.897h0.102
			c0.398-0.002,1.128-0.114,1.112-1.104c-0.002-0.46-0.135-0.93-0.367-1.268l0.59-0.205c0.252,0.399,0.425,0.988,0.428,1.599
			c0.008,1.489-1,1.854-1.968,1.858L113.079,313.37z M114.383,312.504c0.016-0.96-0.16-2.049-1.101-2.043
			c-0.579,0.003-0.837,0.384-0.834,0.823c0.003,0.64,0.405,1.048,0.816,1.186c0.09,0.029,0.188,0.039,0.278,0.038L114.383,312.504z"
			/>
		<path fill="#010101" d="M118.991,316.331l-1.646,0.01l0.009,1.583l-0.42,0.002l-0.01-1.583l-1.659,0.009l-0.002-0.447l1.659-0.01
			l-0.008-1.582l0.42-0.002l0.008,1.582l1.646-0.01L118.991,316.331z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="228.527" y1="260.016" x2="228.527" y2="213.843"/>
		<polygon fill="#010101" points="224.824,257.206 228.527,258.779 232.231,257.206 228.527,265.984 		"/>
	</g>
</g>
<g>
	<path fill="#010101" d="M113.332,11.189v8.083h-1.056v-8.083H113.332z"/>
	<path fill="#010101" d="M114.884,17.602h0.731v2.732h0.025c0.15-0.219,0.303-0.42,0.445-0.605l1.732-2.127h0.908l-2.053,2.404
		l2.211,3.263h-0.865l-1.858-2.782l-0.546,0.621v2.161h-0.731V17.602z"/>
	<path fill="#010101" d="M119.503,20.469c0-0.479-0.008-0.891-0.033-1.27h0.646l0.034,0.799h0.024
		c0.186-0.547,0.64-0.891,1.136-0.891c0.076,0,0.135,0.008,0.202,0.024v0.689c-0.084-0.009-0.16-0.017-0.261-0.017
		c-0.521,0-0.892,0.396-0.992,0.941c-0.017,0.109-0.024,0.227-0.024,0.354v2.169h-0.74L119.503,20.469z"/>
</g>
<g>
	<path fill="#010101" d="M220.917,11.189v8.083h-1.056v-8.083H220.917z"/>
	<path fill="#010101" d="M226.421,23.092c-0.26,0.135-0.807,0.27-1.496,0.27c-1.598,0-2.792-1.01-2.792-2.875
		c0-1.783,1.202-2.977,2.959-2.977c0.698,0,1.152,0.15,1.346,0.252l-0.186,0.597c-0.269-0.134-0.664-0.235-1.135-0.235
		c-1.329,0-2.211,0.85-2.211,2.338c0,1.395,0.799,2.277,2.169,2.277c0.454,0,0.908-0.092,1.203-0.234L226.421,23.092z"/>
	<path fill="#010101" d="M230.125,22.293c0,0.354,0.018,0.698,0.06,0.976h-0.664l-0.067-0.513h-0.024
		c-0.219,0.319-0.664,0.605-1.244,0.605c-0.824,0-1.244-0.58-1.244-1.169c0-0.983,0.874-1.522,2.446-1.513v-0.085
		c0-0.336-0.093-0.95-0.926-0.941c-0.387,0-0.781,0.109-1.067,0.303l-0.168-0.496c0.336-0.21,0.833-0.353,1.345-0.353
		c1.253,0,1.556,0.849,1.556,1.664L230.125,22.293L230.125,22.293z M229.401,21.191c-0.808-0.016-1.725,0.127-1.725,0.917
		c0,0.487,0.319,0.706,0.689,0.706c0.538,0,0.883-0.336,1-0.682c0.025-0.075,0.034-0.159,0.034-0.234L229.401,21.191L229.401,21.191
		z"/>
	<path fill="#010101" d="M231.323,17.602h0.74v5.053h2.421v0.614h-3.162L231.323,17.602L231.323,17.602z"/>
</g>
<g>
	<path fill="#010101" d="M328.553,11.189v8.083h-1.056v-8.083H328.553z"/>
	<path fill="#010101" d="M330.105,17.686c0.319-0.075,0.832-0.126,1.337-0.126c0.73,0,1.201,0.126,1.548,0.412
		c0.293,0.219,0.479,0.556,0.479,1.001c0,0.555-0.369,1.033-0.959,1.244v0.025c0.539,0.126,1.17,0.571,1.17,1.412
		c0,0.488-0.192,0.857-0.487,1.135c-0.388,0.361-1.025,0.529-1.951,0.529c-0.504,0-0.892-0.033-1.135-0.066L330.105,17.686
		L330.105,17.686z M330.838,20.006h0.664c0.765,0,1.219-0.412,1.219-0.958c0-0.655-0.496-0.925-1.235-0.925
		c-0.336,0-0.529,0.025-0.646,0.051L330.838,20.006L330.838,20.006z M330.838,22.714c0.15,0.024,0.354,0.033,0.613,0.033
		c0.756,0,1.454-0.277,1.454-1.101c0-0.766-0.664-1.094-1.463-1.094h-0.604V22.714z"/>
	<path fill="#010101" d="M334.658,17.602h0.731v2.732h0.024c0.151-0.219,0.303-0.42,0.446-0.605l1.73-2.127h0.908l-2.052,2.404
		l2.211,3.263h-0.865l-1.858-2.782l-0.546,0.621v2.161h-0.731L334.658,17.602L334.658,17.602z"/>
</g>
<g>
	<path fill="#010101" d="M112.244,351.703v8.083h-1.056v-8.083H112.244z"/>
	<path fill="#010101" d="M113.796,363.782v-5.667h0.808l1.808,2.867c0.412,0.664,0.748,1.252,1.009,1.842l0.025-0.01
		c-0.067-0.756-0.084-1.445-0.084-2.32v-2.379h0.688v5.667h-0.739l-1.799-2.876c-0.396-0.631-0.773-1.277-1.052-1.891l-0.024,0.008
		c0.042,0.715,0.051,1.396,0.051,2.338v2.421H113.796z"/>
	<path fill="#010101" d="M122.148,362.807c0,0.354,0.017,0.698,0.059,0.977h-0.664l-0.066-0.514h-0.025
		c-0.218,0.319-0.664,0.605-1.244,0.605c-0.824,0-1.244-0.58-1.244-1.169c0-0.983,0.874-1.522,2.446-1.513v-0.086
		c0-0.336-0.092-0.949-0.925-0.94c-0.387,0-0.782,0.108-1.068,0.304l-0.168-0.496c0.336-0.211,0.833-0.354,1.345-0.354
		c1.254,0,1.557,0.85,1.557,1.664L122.148,362.807L122.148,362.807z M121.425,361.705c-0.807-0.016-1.724,0.127-1.724,0.917
		c0,0.487,0.319,0.706,0.689,0.706c0.538,0,0.883-0.336,1-0.682c0.024-0.076,0.033-0.16,0.033-0.234L121.425,361.705
		L121.425,361.705z"/>
</g>
<g>
	<path fill="#010101" d="M11.325,179.678v8.084h-1.056v-8.084H11.325z"/>
	<path fill="#010101" d="M12.868,186.092h0.74v5.053h2.421v0.613h-3.162L12.868,186.092L12.868,186.092z"/>
	<path fill="#010101" d="M17.481,191.758l-1.858-5.666h0.798l0.884,2.791c0.235,0.766,0.445,1.463,0.604,2.118h0.017
		c0.16-0.655,0.388-1.37,0.647-2.11l0.958-2.799h0.782l-2.026,5.666H17.481z"/>
	<path fill="#010101" d="M21.227,189.977l-0.588,1.781h-0.758l1.927-5.666h0.883l1.934,5.666h-0.782l-0.604-1.781H21.227z
		 M23.085,189.404l-0.562-1.632c-0.118-0.37-0.202-0.706-0.286-1.034H22.21c-0.076,0.328-0.168,0.682-0.276,1.025l-0.556,1.641
		H23.085z"/>
</g>
<g>
	<path fill="#010101" d="M328.689,351.703v8.083h-1.058v-8.083H328.689z"/>
	<path fill="#010101" d="M330.241,358.115h0.73v2.732h0.025c0.149-0.22,0.303-0.421,0.445-0.605l1.731-2.127h0.908l-2.053,2.404
		l2.212,3.262h-0.866L331.519,361l-0.547,0.621v2.161h-0.73L330.241,358.115L330.241,358.115z"/>
	<path fill="#010101" d="M337.778,362.807c0,0.354,0.017,0.698,0.059,0.977h-0.664l-0.066-0.514h-0.025
		c-0.219,0.319-0.664,0.605-1.244,0.605c-0.824,0-1.244-0.58-1.244-1.169c0-0.983,0.874-1.522,2.446-1.513v-0.086
		c0-0.336-0.093-0.949-0.925-0.94c-0.387,0-0.781,0.108-1.068,0.304l-0.168-0.496c0.337-0.211,0.833-0.354,1.346-0.354
		c1.254,0,1.557,0.85,1.557,1.664v1.521H337.778z M337.054,361.705c-0.807-0.016-1.723,0.127-1.723,0.917
		c0,0.487,0.318,0.706,0.689,0.706c0.536,0,0.883-0.336,1-0.682c0.024-0.076,0.032-0.16,0.032-0.234L337.054,361.705
		L337.054,361.705z"/>
</g>
<g>
	<path fill="#010101" d="M435.788,179.721v8.084h-1.056v-8.084H435.788z"/>
	<path fill="#010101" d="M437.34,191.801v-5.666h0.809l1.808,2.866c0.412,0.664,0.748,1.253,1.009,1.841l0.025-0.008
		c-0.067-0.757-0.085-1.445-0.085-2.32v-2.379h0.688v5.666h-0.738l-1.801-2.875c-0.395-0.631-0.772-1.278-1.051-1.893l-0.024,0.009
		c0.043,0.715,0.051,1.396,0.051,2.337v2.422H437.34z"/>
	<path fill="#010101" d="M442.774,190.91c0.327,0.209,0.799,0.369,1.304,0.369c0.748,0,1.186-0.387,1.186-0.967
		c0-0.521-0.303-0.832-1.067-1.119c-0.925-0.336-1.496-0.822-1.496-1.613c0-0.883,0.729-1.539,1.832-1.539
		c0.571,0,1.001,0.135,1.244,0.277l-0.201,0.598c-0.177-0.109-0.556-0.27-1.068-0.27c-0.772,0-1.066,0.463-1.066,0.85
		c0,0.529,0.345,0.791,1.127,1.093c0.958,0.378,1.438,0.833,1.438,1.665c0,0.874-0.639,1.639-1.976,1.639
		c-0.547,0-1.145-0.168-1.446-0.369L442.774,190.91z"/>
	<path fill="#010101" d="M450.959,191.624c-0.26,0.135-0.807,0.269-1.496,0.269c-1.598,0-2.791-1.008-2.791-2.875
		c0-1.782,1.202-2.977,2.959-2.977c0.698,0,1.152,0.152,1.346,0.253l-0.186,0.597c-0.269-0.135-0.664-0.235-1.135-0.235
		c-1.328,0-2.211,0.849-2.211,2.337c0,1.396,0.799,2.278,2.169,2.278c0.454,0,0.908-0.092,1.202-0.235L450.959,191.624z"/>
	<path fill="#010101" d="M455.63,191.624c-0.261,0.135-0.808,0.269-1.496,0.269c-1.598,0-2.792-1.008-2.792-2.875
		c0-1.782,1.203-2.977,2.96-2.977c0.698,0,1.151,0.152,1.346,0.253l-0.186,0.597c-0.269-0.135-0.664-0.235-1.135-0.235
		c-1.329,0-2.212,0.849-2.212,2.337c0,1.396,0.799,2.278,2.17,2.278c0.453,0,0.908-0.092,1.202-0.235L455.63,191.624z"/>
</g>
<g>
	<path d="M216.595,103.255v0.7h-7.005v-0.7H216.595z"/>
</g>
<g>
	<path d="M312.525,98.068v3.292h3.166v0.841h-3.166v3.319h-0.896v-3.319h-3.165v-0.841h3.165v-3.292H312.525z"/>
</g>
<g>
	<path d="M361.103,197.818v3.291h3.165v0.842h-3.165v3.318h-0.896v-3.318h-3.166v-0.842h3.166v-3.291H361.103z"/>
</g>
</svg>
</window>