Location: Wodarz, Jansen, 2003 @ fe0fdb25a981 / wodarz_jansen_2003.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2010-07-12 14:43:10+12:00
Desc:
Added session file and xul
Permanent Source URI:
https://staging.physiomeproject.org/workspace/wodarz_jansen_2003/rawfile/fe0fdb25a9818978dc46485ee6db2878e7b75113/wodarz_jansen_2003.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 =
  {

			
	T: {
		id: "T",
		y: "T/T",
		x: "environment/time",
		graph: "Traces: Clickable elements against time (days)",
		colour: "#ff9900",
		linestyle: "none"
	},

	A: {
		id: "A",
		y: "A/A",
		x: "environment/time",
		graph: "Traces: Clickable elements against time (days)",
		colour: "#ff00cc",
		linestyle: "none"
	},

	C: {
		id: "C",
		y: "C/C",
		x: "environment/time",
		graph: "Traces: Clickable elements against time (days)",
		colour: "#cc00ff",
		linestyle: "none"
	},


	A_star: {
		id: "A_star",
		y: "A_star/A_star",
		x: "environment/time",
		graph: "Traces: Clickable elements against time (days)",
		colour: "#3300ff",
		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 id="T">
	<g>
		<g>
			<ellipse id="T_path5" fill="#CDE1F0" stroke="#231F20" cx="193.528" cy="134.099" rx="30.249" ry="18.211"/>
			<g>
				<path d="M192.993,130.425h-2.459v-0.887h5.985v0.887h-2.472v7.196h-1.055V130.425L192.993,130.425z"/>
			</g>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="189.275,105.4 193.15,109.252 197.025,105.377 			"/>
			<line fill="none" stroke="#000000" x1="193.15" y1="109.252" x2="193.173" y2="115.71"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="152.507,137.918 156.359,134.043 152.484,130.168 			"/>
			<line fill="none" stroke="#000000" x1="156.359" y1="134.043" x2="162.816" y2="134.02"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="197.025,162.77 193.15,158.918 189.275,162.793 			"/>
			<line fill="none" stroke="#000000" x1="193.15" y1="158.918" x2="193.126" y2="152.46"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="234.126,130.168 230.275,134.043 234.15,137.918 			"/>
			<line fill="none" stroke="#000000" x1="230.275" y1="134.043" x2="223.817" y2="134.068"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="163.106,115.647 168.57,115.63 168.57,110.15 			"/>
			<line fill="none" stroke="#000000" x1="168.57" y1="115.63" x2="173.154" y2="120.18"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="170.587,158.92 170.57,153.457 165.089,153.457 			"/>
			<line fill="none" stroke="#000000" x1="170.57" y1="153.457" x2="175.12" y2="148.874"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="219.38,110.833 219.396,116.297 224.876,116.297 			"/>
			<line fill="none" stroke="#000000" x1="219.396" y1="116.297" x2="214.847" y2="120.88"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="225.861,151.107 220.396,151.124 220.396,156.604 			"/>
			<line fill="none" stroke="#000000" x1="220.396" y1="151.124" x2="215.813" y2="146.574"/>
		</g>
	</g>
	<g>
		<g>
			<ellipse id="T_path4" fill="#CDE1F0" stroke="#231F20" cx="166.195" cy="115.099" rx="30.248" ry="18.211"/>
			<g>
				<path d="M165.66,111.424h-2.459v-0.887h5.985v0.887h-2.472v7.196h-1.055V111.424L165.66,111.424z"/>
			</g>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="161.942,86.4 165.817,90.251 169.692,86.376 			"/>
			<line fill="none" stroke="#000000" x1="165.817" y1="90.251" x2="165.841" y2="96.709"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="135.773,96.646 141.237,96.63 141.237,91.149 			"/>
			<line fill="none" stroke="#000000" x1="141.237" y1="96.63" x2="145.82" y2="101.179"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="192.046,91.833 192.064,97.296 197.544,97.296 			"/>
			<line fill="none" stroke="#000000" x1="192.064" y1="97.296" x2="187.514" y2="101.879"/>
		</g>
	</g>
	<g>
		<g>
			<ellipse id="T_path3" fill="#CDE1F0" stroke="#231F20" cx="149.861" cy="149.099" rx="30.248" ry="18.211"/>
			<g>
				<path d="M149.326,145.424h-2.459v-0.887h5.985v0.887h-2.472v7.196h-1.055V145.424L149.326,145.424z"/>
			</g>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="108.839,152.918 112.691,149.043 108.816,145.168 			"/>
			<line fill="none" stroke="#000000" x1="112.691" y1="149.043" x2="119.15" y2="149.02"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="153.358,177.77 149.483,173.918 145.608,177.793 			"/>
			<line fill="none" stroke="#000000" x1="149.483" y1="173.918" x2="149.458" y2="167.46"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="119.439,130.647 124.903,130.63 124.903,125.15 			"/>
			<line fill="none" stroke="#000000" x1="124.903" y1="130.63" x2="129.486" y2="135.18"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="126.919,173.92 126.904,168.457 121.423,168.457 			"/>
			<line fill="none" stroke="#000000" x1="126.904" y1="168.457" x2="131.453" y2="163.874"/>
		</g>
	</g>
	<g>
		<g>
			<ellipse id="T_path2" fill="#CDE1F0" stroke="#231F20" cx="125.528" cy="95.432" rx="30.249" ry="18.211"/>
			<g>
				<path d="M124.993,91.757h-2.459V90.87h5.985v0.887h-2.472v7.196h-1.055V91.757z"/>
			</g>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="121.275,66.733 125.15,70.584 129.025,66.709 			"/>
			<line fill="none" stroke="#000000" x1="125.15" y1="70.584" x2="125.173" y2="77.042"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="84.507,99.251 88.359,95.376 84.484,91.501 			"/>
			<line fill="none" stroke="#000000" x1="88.359" y1="95.376" x2="94.816" y2="95.353"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="129.025,124.103 125.15,120.251 121.275,124.126 			"/>
			<line fill="none" stroke="#000000" x1="125.15" y1="120.251" x2="125.126" y2="113.793"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="95.106,76.979 100.57,76.963 100.57,71.482 			"/>
			<line fill="none" stroke="#000000" x1="100.57" y1="76.963" x2="105.154" y2="81.512"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="102.587,120.253 102.57,114.789 97.089,114.789 			"/>
			<line fill="none" stroke="#000000" x1="102.57" y1="114.789" x2="107.12" y2="110.206"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="151.38,72.166 151.396,77.629 156.876,77.629 			"/>
			<line fill="none" stroke="#000000" x1="151.396" y1="77.629" x2="146.847" y2="82.212"/>
		</g>
	</g>
	<g>
		<g>
			<ellipse id="T_path1" fill="#CDE1F0" stroke="#231F20" cx="206.862" cy="101.432" rx="30.249" ry="18.211"/>
			<g>
				<path d="M206.327,97.757h-2.459V96.87h5.985v0.887h-2.472v7.196h-1.055V97.757L206.327,97.757z"/>
			</g>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="202.609,72.733 206.484,76.585 210.359,72.71 			"/>
			<line fill="none" stroke="#000000" x1="206.484" y1="76.585" x2="206.507" y2="83.043"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="247.46,97.501 243.609,101.376 247.484,105.251 			"/>
			<line fill="none" stroke="#000000" x1="243.609" y1="101.376" x2="237.151" y2="101.401"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="176.44,82.98 181.904,82.963 181.904,77.483 			"/>
			<line fill="none" stroke="#000000" x1="181.904" y1="82.963" x2="186.488" y2="87.513"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="232.714,78.166 232.73,83.63 238.21,83.63 			"/>
			<line fill="none" stroke="#000000" x1="232.73" y1="83.63" x2="228.181" y2="88.213"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="239.195,118.44 233.73,118.457 233.73,123.937 			"/>
			<line fill="none" stroke="#000000" x1="233.73" y1="118.457" x2="229.147" y2="113.907"/>
		</g>
	</g>
</g>
<g>
	<g>
		<g>
			<ellipse id="T_path6" fill="#CDE1F0" stroke="#231F20" cx="394.691" cy="199.125" rx="30.249" ry="18.211"/>
			<g>
				<path d="M394.156,195.451h-2.459v-0.887h5.983v0.887h-2.471v7.196h-1.055L394.156,195.451L394.156,195.451z"/>
			</g>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="390.437,170.427 394.312,174.278 398.187,170.403 			"/>
			<line fill="none" stroke="#000000" x1="394.312" y1="174.278" x2="394.336" y2="180.736"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="353.669,202.944 357.521,199.069 353.646,195.194 			"/>
			<line fill="none" stroke="#000000" x1="357.521" y1="199.069" x2="363.98" y2="199.046"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="398.187,227.796 394.312,223.944 390.437,227.819 			"/>
			<line fill="none" stroke="#000000" x1="394.312" y1="223.944" x2="394.29" y2="217.486"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="435.291,195.194 431.439,199.069 435.314,202.944 			"/>
			<line fill="none" stroke="#000000" x1="431.439" y1="199.069" x2="424.98" y2="199.094"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="364.268,180.673 369.733,180.656 369.733,175.176 			"/>
			<line fill="none" stroke="#000000" x1="369.733" y1="180.656" x2="374.316" y2="185.206"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="371.75,223.946 371.734,218.482 366.253,218.482 			"/>
			<line fill="none" stroke="#000000" x1="371.734" y1="218.482" x2="376.283" y2="213.899"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="420.543,175.859 420.558,181.323 426.041,181.323 			"/>
			<line fill="none" stroke="#000000" x1="420.558" y1="181.323" x2="416.01" y2="185.906"/>
		</g>
		<g>
			<polyline fill="none" stroke="#000000" points="427.024,216.133 421.559,216.149 421.559,221.63 			"/>
			<line fill="none" stroke="#000000" x1="421.559" y1="216.149" x2="416.975" y2="211.601"/>
		</g>
	</g>
	<g>
		<ellipse id="A_path5" fill="#9F7CBA" stroke="#231F20" cx="394.48" cy="253.487" rx="30.247" ry="18.211"/>
		<g>
			<path d="M393.027,254.467l-0.84,2.542h-1.08l2.747-8.083h1.259l2.759,8.083h-1.115l-0.862-2.542H393.027z M395.677,253.651
				l-0.792-2.327c-0.18-0.527-0.3-1.007-0.419-1.475h-0.024c-0.119,0.48-0.251,0.972-0.407,1.463l-0.792,2.338L395.677,253.651
				L395.677,253.651z"/>
		</g>
	</g>
</g>
<g id="A_star">
	<g>
		<ellipse id="A_star_path1" fill="#9F7CBA" stroke="#231F20" cx="588.635" cy="343.938" rx="30.249" ry="18.211"/>
		<g>
			<g>
				<polyline fill="none" stroke="#000000" points="584.383,315.241 588.258,319.093 592.133,315.218 				"/>
				<line fill="none" stroke="#000000" x1="588.258" y1="319.093" x2="588.282" y2="325.55"/>
			</g>
			<g>
				<polyline fill="none" stroke="#000000" points="547.616,347.759 551.467,343.884 547.592,340.009 				"/>
				<line fill="none" stroke="#000000" x1="551.467" y1="343.884" x2="557.924" y2="343.86"/>
			</g>
			<g>
				<polyline fill="none" stroke="#000000" points="592.133,372.61 588.258,368.759 584.383,372.634 				"/>
				<line fill="none" stroke="#000000" x1="588.258" y1="368.759" x2="588.235" y2="362.3"/>
			</g>
			<g>
				<polyline fill="none" stroke="#000000" points="629.236,340.009 625.384,343.884 629.259,347.759 				"/>
				<line fill="none" stroke="#000000" x1="625.384" y1="343.884" x2="618.925" y2="343.907"/>
			</g>
			<g>
				<polyline fill="none" stroke="#000000" points="558.214,325.487 563.677,325.47 563.677,319.989 				"/>
				<line fill="none" stroke="#000000" x1="563.677" y1="325.47" x2="568.261" y2="330.021"/>
			</g>
			<g>
				<polyline fill="none" stroke="#000000" points="565.696,368.761 565.677,363.296 560.198,363.296 				"/>
				<line fill="none" stroke="#000000" x1="565.677" y1="363.296" x2="570.228" y2="358.714"/>
			</g>
			<g>
				<polyline fill="none" stroke="#000000" points="614.489,320.673 614.504,326.138 619.986,326.138 				"/>
				<line fill="none" stroke="#000000" x1="614.504" y1="326.138" x2="609.956" y2="330.72"/>
			</g>
			<g>
				<polyline fill="none" stroke="#000000" points="620.969,360.946 615.505,360.964 615.505,366.444 				"/>
				<line fill="none" stroke="#000000" x1="615.505" y1="360.964" x2="610.921" y2="356.415"/>
			</g>
		</g>
	</g>
	<g>
		<path d="M584.482,344.903l-0.84,2.543h-1.078l2.745-8.084h1.261l2.758,8.084h-1.115l-0.863-2.543H584.482L584.482,344.903z
			 M587.132,344.089l-0.791-2.326c-0.18-0.527-0.3-1.008-0.42-1.476h-0.022c-0.12,0.479-0.252,0.972-0.408,1.463l-0.791,2.339
			H587.132z"/>
		<path d="M593.552,339.64l-1.14,1.5v0.022l1.812-0.239v0.814l-1.812-0.215v0.023l1.151,1.439l-0.756,0.432l-0.721-1.68h-0.023
			l-0.778,1.691l-0.685-0.433l1.14-1.463v-0.024l-1.774,0.229v-0.815l1.763,0.228v-0.022l-1.127-1.463l0.731-0.42l0.743,1.666h0.023
			l0.731-1.679L593.552,339.64z"/>
	</g>
</g>
<g id="C">
	<g>
		<ellipse id="C_path4" fill="#69C677" stroke="#231F20" cx="430.603" cy="434.861" rx="30.248" ry="18.211"/>
		<g>
			<path d="M427.703,438.12c-0.384,0.19-1.151,0.396-2.135,0.396c-2.279,0-3.994-1.45-3.994-4.102c0-2.53,1.715-4.246,4.222-4.246
				c1.008,0,1.645,0.216,1.919,0.36l-0.252,0.852c-0.396-0.192-0.959-0.336-1.631-0.336c-1.895,0-3.154,1.211-3.154,3.334
				c0,1.979,1.141,3.25,3.106,3.25c0.636,0,1.283-0.132,1.703-0.336L427.703,438.12z"/>
			<path d="M430.884,431.188h-2.458V430.3h5.984v0.888h-2.471v7.196h-1.057L430.884,431.188L430.884,431.188z"/>
			<path d="M435.312,430.3h1.045v7.208h3.453v0.876h-4.497L435.312,430.3L435.312,430.3z"/>
		</g>
	</g>
	<g>
		<ellipse id="C_path3" fill="#69C677" stroke="#231F20" cx="376.271" cy="442.861" rx="30.247" ry="18.211"/>
		<g>
			<path d="M373.371,446.121c-0.385,0.191-1.152,0.396-2.135,0.396c-2.279,0-3.994-1.45-3.994-4.102c0-2.53,1.715-4.246,4.221-4.246
				c1.008,0,1.646,0.216,1.92,0.36l-0.252,0.852c-0.396-0.191-0.959-0.336-1.631-0.336c-1.895,0-3.154,1.211-3.154,3.334
				c0,1.979,1.14,3.25,3.105,3.25c0.637,0,1.283-0.132,1.703-0.336L373.371,446.121z"/>
			<path d="M376.552,439.188h-2.459V438.3h5.984v0.888h-2.471v7.196h-1.056L376.552,439.188L376.552,439.188z"/>
			<path d="M380.98,438.301h1.045v7.208h3.453v0.876h-4.498V438.301L380.98,438.301z"/>
		</g>
	</g>
	<g>
		<ellipse id="C_path2" fill="#69C677" stroke="#231F20" cx="433.605" cy="463.527" rx="30.247" ry="18.211"/>
		<g>
			<path d="M430.704,466.787c-0.384,0.19-1.151,0.396-2.135,0.396c-2.279,0-3.994-1.45-3.994-4.102c0-2.53,1.715-4.246,4.222-4.246
				c1.008,0,1.645,0.216,1.919,0.36l-0.252,0.852c-0.396-0.191-0.959-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
				c0,1.979,1.141,3.25,3.106,3.25c0.636,0,1.283-0.132,1.703-0.336L430.704,466.787z"/>
			<path d="M433.885,459.854h-2.458v-0.888h5.984v0.888h-2.471v7.196h-1.057L433.885,459.854L433.885,459.854z"/>
			<path d="M438.314,458.967h1.044v7.208h3.454v0.876h-4.498V458.967L438.314,458.967z"/>
		</g>
	</g>
	<g>
		<ellipse id="C_path1" fill="#69C677" stroke="#231F20" cx="388.271" cy="470.861" rx="30.247" ry="18.211"/>
		<g>
			<path d="M385.37,474.12c-0.384,0.19-1.151,0.396-2.135,0.396c-2.279,0-3.994-1.45-3.994-4.102c0-2.53,1.715-4.246,4.222-4.246
				c1.008,0,1.645,0.216,1.919,0.36l-0.252,0.852c-0.396-0.192-0.959-0.336-1.631-0.336c-1.896,0-3.154,1.211-3.154,3.334
				c0,1.979,1.141,3.25,3.106,3.25c0.636,0,1.283-0.132,1.703-0.336L385.37,474.12z"/>
			<path d="M388.551,467.188h-2.458V466.3h5.984v0.888h-2.471v7.196h-1.057L388.551,467.188L388.551,467.188z"/>
			<path d="M392.98,466.3h1.044v7.208h3.454v0.876h-4.498V466.3L392.98,466.3z"/>
		</g>
	</g>
</g>
<g id="A">
	<g>
		<ellipse id="A_path4" fill="#9F7CBA" stroke="#231F20" cx="197.317" cy="295.393" rx="30.248" ry="18.211"/>
		<g>
			<path d="M195.863,296.372l-0.839,2.542h-1.08l2.747-8.083h1.259l2.758,8.083h-1.115l-0.862-2.542H195.863z M198.514,295.556
				l-0.792-2.327c-0.181-0.527-0.301-1.007-0.419-1.475h-0.024c-0.12,0.48-0.251,0.972-0.408,1.463l-0.792,2.339H198.514
				L198.514,295.556z"/>
		</g>
	</g>
	<g>
		<ellipse id="A_path3" fill="#9F7CBA" stroke="#231F20" cx="183.984" cy="324.726" rx="30.248" ry="18.211"/>
		<g>
			<path d="M182.53,325.705l-0.839,2.542h-1.08l2.747-8.083h1.259l2.758,8.083h-1.115l-0.862-2.542H182.53z M185.18,324.89
				l-0.792-2.326c-0.181-0.527-0.301-1.008-0.42-1.477h-0.023c-0.12,0.479-0.251,0.973-0.408,1.464l-0.792,2.339H185.18z"/>
		</g>
	</g>
	<g>
		<ellipse id="A_path2" fill="#9F7CBA" stroke="#231F20" cx="149.767" cy="302.725" rx="30.248" ry="18.211"/>
		<g>
			<path d="M148.313,303.703l-0.839,2.543h-1.08l2.747-8.083h1.259l2.758,8.083h-1.115l-0.862-2.543H148.313z M150.963,302.888
				l-0.792-2.326c-0.18-0.527-0.3-1.008-0.419-1.476h-0.023c-0.12,0.479-0.251,0.972-0.408,1.463l-0.792,2.339H150.963z"/>
		</g>
	</g>
	<g>
		<ellipse id="A_path1" fill="#9F7CBA" stroke="#231F20" cx="134.65" cy="327.394" rx="30.248" ry="18.211"/>
		<g>
			<path d="M133.196,328.371l-0.839,2.543h-1.08l2.747-8.084h1.259l2.758,8.084h-1.115l-0.862-2.543H133.196z M135.847,327.556
				l-0.792-2.326c-0.181-0.527-0.301-1.008-0.42-1.476h-0.023c-0.12,0.479-0.251,0.972-0.408,1.463l-0.792,2.339H135.847z"/>
		</g>
	</g>
</g>
<g>
	<path d="M67.875,27.368c-0.275,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.119-3.083
		c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.646-0.275-1.223-0.275c-1.332,0-2.052,0.983-2.052,2.194
		c0,1.343,0.864,2.171,2.016,2.171c0.6,0,0.996-0.156,1.295-0.288L67.875,27.368z"/>
	<path d="M69.629,24.874c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.023,0.384-0.036,0.492L69.629,24.874L69.629,24.874z M72.724,24.118c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H72.724z"/>
	<path d="M75.053,19.069h1.056v8.515h-1.056V19.069z"/>
	<path d="M77.885,19.069h1.057v8.515h-1.057V19.069z"/>
	<path d="M44.147,38.074c0-0.744-0.024-1.343-0.048-1.895h0.946l0.049,0.995h0.023c0.432-0.708,1.115-1.127,2.063-1.127
		c1.402,0,2.459,1.187,2.459,2.95c0,2.087-1.271,3.118-2.64,3.118c-0.768,0-1.438-0.336-1.787-0.912H45.19v3.154h-1.043V38.074z
		 M45.191,39.621c0,0.156,0.023,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235c1.115,0,1.763-0.911,1.763-2.243
		c0-1.163-0.61-2.159-1.727-2.159c-0.72,0-1.392,0.516-1.595,1.307c-0.036,0.132-0.072,0.288-0.072,0.432V39.621z"/>
	<path d="M50.975,37.99c0-0.684-0.013-1.271-0.049-1.811h0.924l0.036,1.139h0.048c0.264-0.779,0.898-1.271,1.606-1.271
		c0.12,0,0.204,0.012,0.3,0.036v0.996c-0.107-0.024-0.216-0.036-0.359-0.036c-0.744,0-1.271,0.564-1.416,1.355
		c-0.024,0.144-0.048,0.312-0.048,0.492v3.094h-1.043L50.975,37.99L50.975,37.99z"/>
	<path d="M60.032,39.034c0,2.146-1.487,3.082-2.89,3.082c-1.571,0-2.783-1.151-2.783-2.986c0-1.943,1.271-3.082,2.878-3.082
		C58.905,36.047,60.032,37.258,60.032,39.034z M55.426,39.093c0,1.271,0.732,2.231,1.764,2.231c1.007,0,1.763-0.947,1.763-2.255
		c0-0.983-0.492-2.23-1.739-2.23S55.426,37.99,55.426,39.093z"/>
	<path d="M66.38,33.469v7.016c0,0.516,0.013,1.103,0.049,1.499H65.48l-0.048-1.007h-0.024c-0.324,0.647-1.032,1.139-1.979,1.139
		c-1.403,0-2.483-1.187-2.483-2.95c-0.012-1.931,1.188-3.118,2.603-3.118c0.889,0,1.487,0.419,1.751,0.887h0.024v-3.466H66.38z
		 M65.325,38.542c0-0.132-0.012-0.312-0.048-0.444c-0.156-0.672-0.731-1.224-1.523-1.224c-1.091,0-1.738,0.959-1.738,2.243
		c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.354-0.468,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V38.542z"/>
	<path d="M72.992,40.401c0,0.6,0.012,1.127,0.048,1.583h-0.936l-0.061-0.947H72.02c-0.276,0.467-0.888,1.079-1.919,1.079
		c-0.911,0-2.003-0.503-2.003-2.542V36.18h1.056v3.214c0,1.103,0.336,1.847,1.295,1.847c0.708,0,1.199-0.492,1.391-0.959
		c0.061-0.156,0.097-0.348,0.097-0.54V36.18h1.056V40.401z"/>
	<path d="M78.884,41.768c-0.275,0.144-0.887,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.119-3.083
		c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.646-0.276-1.223-0.276c-1.332,0-2.051,0.984-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.996-0.156,1.295-0.288L78.884,41.768z"/>
	<path d="M81.55,34.788v1.391h1.512v0.803H81.55v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072l0.048,0.792
		c-0.204,0.084-0.527,0.156-0.936,0.156c-0.492,0-0.889-0.168-1.141-0.456c-0.3-0.312-0.407-0.828-0.407-1.511v-3.167h-0.899v-0.803
		h0.899v-1.067L81.55,34.788z"/>
	<path d="M85.426,34.548c0.013,0.36-0.252,0.648-0.671,0.648c-0.372,0-0.636-0.288-0.636-0.648c0-0.372,0.276-0.66,0.66-0.66
		C85.174,33.888,85.426,34.176,85.426,34.548z M84.25,41.984v-5.805h1.057v5.805H84.25z"/>
	<path d="M92.311,39.034c0,2.146-1.487,3.082-2.891,3.082c-1.57,0-2.782-1.151-2.782-2.986c0-1.943,1.271-3.082,2.878-3.082
		C91.184,36.047,92.311,37.258,92.311,39.034z M87.706,39.093c0,1.271,0.732,2.231,1.764,2.231c1.007,0,1.763-0.947,1.763-2.255
		c0-0.983-0.492-2.23-1.739-2.23S87.706,37.99,87.706,39.093z"/>
	<path d="M93.646,37.75c0-0.6-0.013-1.091-0.048-1.571h0.936l0.061,0.959h0.023c0.288-0.552,0.959-1.091,1.919-1.091
		c0.803,0,2.051,0.479,2.051,2.47v3.466h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V37.75z"/>
</g>
<g>
	<path d="M271.708,27.368c-0.275,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.119-3.083
		c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.646-0.275-1.223-0.275c-1.332,0-2.051,0.983-2.051,2.194
		c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.996-0.156,1.295-0.288L271.708,27.368z"/>
	<path d="M273.463,24.874c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.023,0.384-0.036,0.492L273.463,24.874L273.463,24.874z M276.557,24.118c0.012-0.671-0.276-1.715-1.464-1.715
		c-1.066,0-1.534,0.983-1.618,1.715H276.557z"/>
	<path d="M278.887,19.069h1.056v8.515h-1.056V19.069z"/>
	<path d="M281.719,19.069h1.057v8.515h-1.057V19.069z"/>
	<path d="M266.5,33.469v7.016c0,0.516,0.013,1.103,0.048,1.499h-0.946l-0.048-1.007h-0.024c-0.324,0.647-1.032,1.139-1.979,1.139
		c-1.402,0-2.482-1.187-2.482-2.95c-0.012-1.931,1.188-3.118,2.603-3.118c0.889,0,1.487,0.419,1.751,0.887h0.024v-3.466H266.5z
		 M265.445,38.542c0-0.132-0.012-0.312-0.048-0.444c-0.156-0.672-0.731-1.224-1.523-1.224c-1.091,0-1.739,0.959-1.739,2.243
		c0,1.175,0.576,2.146,1.716,2.146c0.708,0,1.354-0.468,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V38.542L265.445,38.542z"/>
	<path d="M268.843,39.273c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.187-2.854-2.938c0-1.751,1.032-3.13,2.724-3.13
		c1.895,0,2.398,1.667,2.398,2.734c0,0.216-0.023,0.384-0.036,0.492L268.843,39.273L268.843,39.273z M271.937,38.518
		c0.012-0.671-0.276-1.715-1.463-1.715c-1.067,0-1.535,0.983-1.619,1.715H271.937z"/>
	<path d="M278.344,40.593c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.489-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.511,0.432l-0.24-0.695c0.479-0.312,1.175-0.516,1.907-0.516c1.774,0,2.207,1.211,2.207,2.375v2.17H278.344z
		 M277.325,39.021c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.456,1.008,0.996,1.008c0.755,0,1.235-0.48,1.403-0.972
		c0.036-0.108,0.06-0.229,0.06-0.336L277.325,39.021L277.325,39.021z"/>
	<path d="M281.274,34.788v1.391h1.511v0.803h-1.511v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.61-0.072
		l0.049,0.792c-0.204,0.084-0.528,0.156-0.937,0.156c-0.492,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.899v-0.803h0.899v-1.067L281.274,34.788z"/>
	<path d="M283.975,33.469h1.056v3.622h0.024c0.168-0.3,0.432-0.564,0.755-0.744c0.312-0.18,0.684-0.3,1.08-0.3
		c0.778,0,2.026,0.479,2.026,2.482v3.454h-1.056V38.65c0-0.936-0.348-1.727-1.343-1.727c-0.685,0-1.224,0.479-1.415,1.055
		c-0.061,0.144-0.072,0.3-0.072,0.504v3.502h-1.056V33.469z"/>
</g>
<g>
	<path d="M39.908,182.37c-0.276,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.119-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.647-0.275-1.223-0.275c-1.332,0-2.052,0.983-2.052,2.194
		c0,1.343,0.864,2.171,2.016,2.171c0.6,0,0.996-0.156,1.295-0.288L39.908,182.37z"/>
	<path d="M41.663,179.875c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.932,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.492L41.663,179.875L41.663,179.875z M44.757,179.119c0.013-0.671-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H44.757z"/>
	<path d="M47.086,174.07h1.057v8.515h-1.057V174.07z"/>
	<path d="M49.918,174.07h1.057v8.515h-1.057V174.07z"/>
	<path d="M55.294,174.07h1.057v8.515h-1.057V174.07z"/>
	<path d="M58.51,176.781l1.271,3.43c0.132,0.384,0.276,0.839,0.372,1.187h0.023c0.108-0.348,0.229-0.792,0.372-1.211l1.151-3.406
		h1.115l-1.583,4.138c-0.756,1.991-1.271,3.01-1.991,3.634c-0.516,0.456-1.031,0.636-1.295,0.684l-0.264-0.887
		c0.264-0.084,0.611-0.252,0.924-0.516c0.288-0.228,0.646-0.635,0.887-1.175c0.048-0.108,0.084-0.192,0.084-0.251
		c0-0.06-0.023-0.144-0.072-0.276l-2.146-5.349h1.151V176.781z"/>
	<path d="M63.562,181.506c0.312,0.204,0.863,0.42,1.392,0.42c0.769,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.068
		c-1.043-0.372-1.535-0.947-1.535-1.643c0-0.935,0.756-1.703,2.004-1.703c0.587,0,1.103,0.167,1.427,0.359l-0.265,0.768
		c-0.228-0.144-0.646-0.335-1.187-0.335c-0.624,0-0.972,0.36-0.972,0.792c0,0.479,0.348,0.695,1.104,0.983
		c1.007,0.384,1.523,0.888,1.523,1.751c0,1.02-0.792,1.751-2.171,1.751c-0.636,0-1.224-0.168-1.632-0.408L63.562,181.506z"/>
	<path d="M69.633,175.149c0.013,0.36-0.252,0.648-0.671,0.648c-0.372,0-0.636-0.288-0.636-0.648c0-0.372,0.276-0.66,0.66-0.66
		C69.381,174.49,69.633,174.778,69.633,175.149z M68.458,182.585v-5.805h1.057v5.805H68.458z"/>
	<path d="M71.122,181.506c0.312,0.204,0.864,0.42,1.393,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.301-0.78-1.079-1.068
		c-1.043-0.372-1.535-0.947-1.535-1.643c0-0.935,0.755-1.703,2.003-1.703c0.587,0,1.104,0.167,1.427,0.359l-0.264,0.768
		c-0.229-0.144-0.647-0.335-1.188-0.335c-0.624,0-0.972,0.36-0.972,0.792c0,0.479,0.348,0.695,1.104,0.983
		c1.007,0.384,1.522,0.888,1.522,1.751c0,1.02-0.792,1.751-2.171,1.751c-0.635,0-1.223-0.168-1.631-0.408L71.122,181.506z"/>
	<path d="M38.962,188.47h1.043v3.646h0.024c0.372-0.648,1.043-1.067,1.979-1.067c1.439,0,2.458,1.199,2.447,2.962
		c0,2.075-1.308,3.106-2.603,3.106c-0.84,0-1.512-0.324-1.943-1.091h-0.036l-0.048,0.959h-0.912
		c0.024-0.396,0.048-0.983,0.048-1.499L38.962,188.47L38.962,188.47z M40.006,194.659c0,0.132,0.024,0.264,0.049,0.384
		c0.203,0.731,0.814,1.235,1.583,1.235c1.104,0,1.763-0.899,1.763-2.231c0-1.163-0.601-2.159-1.728-2.159
		c-0.72,0-1.391,0.492-1.606,1.295c-0.024,0.12-0.061,0.264-0.061,0.432V194.659z"/>
	<path d="M46.09,191.181l1.271,3.43c0.132,0.384,0.276,0.839,0.372,1.187h0.023c0.108-0.348,0.229-0.792,0.372-1.211l1.151-3.406
		h1.115l-1.583,4.138c-0.756,1.991-1.271,3.01-1.991,3.634c-0.516,0.456-1.031,0.636-1.295,0.684l-0.264-0.887
		c0.264-0.084,0.611-0.252,0.924-0.516c0.288-0.228,0.646-0.636,0.887-1.176c0.048-0.108,0.084-0.192,0.084-0.251
		c0-0.06-0.024-0.144-0.072-0.276l-2.146-5.349L46.09,191.181L46.09,191.181z"/>
	<path d="M59.587,196.722c-0.384,0.192-1.15,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.102c0-2.531,1.715-4.246,4.223-4.246
		c1.007,0,1.643,0.216,1.919,0.36l-0.252,0.851c-0.396-0.191-0.959-0.335-1.632-0.335c-1.895,0-3.153,1.211-3.153,3.334
		c0,1.979,1.139,3.25,3.105,3.25c0.636,0,1.283-0.132,1.703-0.336L59.587,196.722z"/>
	<path d="M62.769,189.79H60.31v-0.888h5.984v0.888h-2.471v7.196h-1.055V189.79z"/>
	<path d="M67.198,188.902h1.043v7.208h3.454v0.875h-4.498L67.198,188.902L67.198,188.902z"/>
</g>
<g>
	<path d="M517.445,216.874l-0.84,2.542h-1.079l2.745-8.083h1.261l2.759,8.083h-1.115l-0.864-2.542H517.445z M520.094,216.058
		l-0.791-2.327c-0.181-0.527-0.3-1.007-0.42-1.475h-0.023c-0.12,0.48-0.252,0.972-0.407,1.463l-0.792,2.338L520.094,216.058
		L520.094,216.058z"/>
	<path d="M523.481,211.429c0.504-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.268,0.672
		c0.443,0.384,0.707,0.971,0.707,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.551,0.587-1.451,0.888-2.47,0.888
		c-0.313,0-0.602-0.012-0.84-0.072v3.238h-1.045L523.481,211.429L523.481,211.429z M524.525,215.327
		c0.228,0.06,0.516,0.084,0.862,0.084c1.261,0,2.027-0.612,2.027-1.727c0-1.067-0.756-1.583-1.907-1.583
		c-0.456,0-0.804,0.036-0.982,0.084V215.327z"/>
	<path d="M535.513,219.153c-0.384,0.192-1.15,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.102c0-2.531,1.715-4.246,4.223-4.246
		c1.008,0,1.644,0.216,1.919,0.36l-0.253,0.852c-0.396-0.192-0.959-0.336-1.631-0.336c-1.895,0-3.153,1.211-3.153,3.334
		c0,1.979,1.14,3.25,3.105,3.25c0.636,0,1.283-0.132,1.703-0.336L535.513,219.153z"/>
	<path d="M536.644,218.337c0.312,0.204,0.863,0.42,1.393,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.068
		c-1.044-0.372-1.535-0.947-1.535-1.643c0-0.935,0.756-1.703,2.003-1.703c0.588,0,1.104,0.167,1.428,0.359l-0.265,0.768
		c-0.228-0.144-0.646-0.335-1.188-0.335c-0.623,0-0.972,0.36-0.972,0.792c0,0.479,0.349,0.695,1.104,0.983
		c1.008,0.384,1.523,0.888,1.523,1.751c0,1.02-0.791,1.751-2.172,1.751c-0.636,0-1.223-0.168-1.631-0.408L536.644,218.337z"/>
	<path d="M545.356,212.22v1.392h1.512v0.803h-1.512v3.13c0,0.72,0.203,1.127,0.792,1.127c0.287,0,0.455-0.024,0.61-0.072
		l0.048,0.792c-0.203,0.084-0.526,0.156-0.936,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.301-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.899v-0.803h0.899v-1.067L545.356,212.22z"/>
	<path d="M552.134,218.025c0,0.503,0.024,0.995,0.097,1.391h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.513,0.432l-0.239-0.695c0.479-0.312,1.176-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L552.134,218.025L552.134,218.025z M551.115,216.454c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.234-0.48,1.402-0.972c0.036-0.108,0.061-0.228,0.061-0.336V216.454z"/>
	<path d="M554.884,216.274h0.024c0.144-0.204,0.348-0.456,0.516-0.66l1.703-2.003h1.271l-2.242,2.387l2.555,3.418h-1.283
		l-2.003-2.782l-0.54,0.6v2.183h-1.043v-8.515h1.043L554.884,216.274L554.884,216.274z"/>
	<path d="M560.055,216.706c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.023,0.384-0.036,0.492L560.055,216.706L560.055,216.706z M563.151,215.95c0.012-0.671-0.276-1.715-1.464-1.715
		c-1.066,0-1.534,0.983-1.618,1.715H563.151z"/>
	<path d="M572.881,217.833c0,0.6,0.013,1.127,0.049,1.583h-0.936l-0.062-0.947h-0.022c-0.276,0.468-0.888,1.079-1.919,1.079
		c-0.912,0-2.003-0.503-2.003-2.542v-3.394h1.055v3.214c0,1.104,0.336,1.847,1.296,1.847c0.707,0,1.199-0.492,1.392-0.959
		c0.061-0.156,0.097-0.348,0.097-0.54v-3.562h1.055L572.881,217.833L572.881,217.833z"/>
	<path d="M574.636,215.507c0-0.744-0.023-1.343-0.049-1.895h0.948l0.048,0.995h0.023c0.432-0.708,1.114-1.127,2.062-1.127
		c1.403,0,2.458,1.187,2.458,2.95c0,2.087-1.271,3.118-2.639,3.118c-0.769,0-1.438-0.336-1.786-0.912h-0.024v3.154h-1.043
		L574.636,215.507L574.636,215.507z M575.679,217.054c0,0.156,0.024,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235
		c1.115,0,1.765-0.911,1.765-2.243c0-1.163-0.612-2.159-1.729-2.159c-0.72,0-1.392,0.516-1.595,1.307
		c-0.036,0.132-0.072,0.288-0.072,0.432V217.054L575.679,217.054z"/>
	<path d="M588.086,218.025c0,0.503,0.024,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.035c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
		c-0.539,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.176-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L588.086,218.025L588.086,218.025z M587.067,216.454c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.994,1.008
		c0.757,0,1.235-0.48,1.403-0.972c0.036-0.108,0.061-0.228,0.061-0.336V216.454z"/>
	<path d="M589.792,215.183c0-0.6-0.013-1.091-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.96-1.091,1.919-1.091
		c0.805,0,2.052,0.479,2.052,2.47v3.466h-1.056v-3.346c0-0.936-0.349-1.715-1.344-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V215.183z"/>
	<path d="M597.675,212.22v1.392h1.513v0.803h-1.513v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.792c-0.203,0.084-0.527,0.156-0.936,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.898v-0.803h0.898v-1.067L597.675,212.22z"/>
	<path d="M601.551,211.98c0.013,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.636-0.288-0.636-0.648c0-0.372,0.276-0.66,0.66-0.66
		C601.299,211.321,601.551,211.609,601.551,211.98z M600.376,219.417v-5.805h1.055v5.805H600.376z"/>
	<path d="M608.137,218.577c0,1.331-0.264,2.146-0.828,2.65c-0.562,0.528-1.379,0.696-2.109,0.696c-0.696,0-1.464-0.168-1.932-0.48
		l0.265-0.804c0.384,0.24,0.982,0.456,1.703,0.456c1.078,0,1.871-0.563,1.871-2.027v-0.648h-0.024
		c-0.324,0.54-0.947,0.972-1.847,0.972c-1.439,0-2.472-1.223-2.472-2.831c0-1.967,1.283-3.082,2.614-3.082
		c1.008,0,1.561,0.527,1.811,1.007h0.024l0.048-0.875h0.924c-0.023,0.419-0.048,0.887-0.048,1.595V218.577L608.137,218.577z
		 M607.094,215.902c0-0.18-0.012-0.336-0.06-0.479c-0.192-0.612-0.708-1.116-1.477-1.116c-1.007,0-1.727,0.852-1.727,2.195
		c0,1.14,0.575,2.087,1.715,2.087c0.647,0,1.235-0.408,1.463-1.079c0.062-0.18,0.084-0.384,0.084-0.563L607.094,215.902
		L607.094,215.902z"/>
	<path d="M610.478,216.706c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.023,0.384-0.036,0.492L610.478,216.706L610.478,216.706z M613.574,215.95c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H613.574z"/>
	<path d="M615.905,215.183c0-0.6-0.014-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.552,0.96-1.091,1.919-1.091
		c0.804,0,2.051,0.479,2.051,2.47v3.466h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V215.183z"/>
	<path d="M625.215,219.417v-5.001H624.4v-0.803h0.814v-0.276c0-0.815,0.18-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
		c0.372,0,0.695,0.084,0.899,0.168l-0.145,0.816c-0.155-0.072-0.372-0.132-0.672-0.132c-0.898,0-1.127,0.792-1.127,1.679v0.312
		h1.402v0.803h-1.402v5.001H625.215z"/>
	<path d="M628.612,215.423c0-0.684-0.014-1.271-0.05-1.811h0.925l0.036,1.139h0.048c0.264-0.779,0.898-1.271,1.606-1.271
		c0.12,0,0.204,0.012,0.3,0.036v0.996c-0.107-0.024-0.216-0.036-0.359-0.036c-0.743,0-1.271,0.564-1.415,1.355
		c-0.023,0.144-0.048,0.312-0.048,0.492v3.094h-1.043V215.423z"/>
	<path d="M637.669,216.466c0,2.146-1.487,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.986c0-1.943,1.271-3.082,2.878-3.082
		C636.542,213.48,637.669,214.691,637.669,216.466z M633.064,216.526c0,1.271,0.73,2.231,1.763,2.231
		c1.008,0,1.763-0.947,1.763-2.255c0-0.983-0.491-2.23-1.738-2.23C633.603,214.271,633.064,215.423,633.064,216.526z"/>
	<path d="M639.004,215.183c0-0.6-0.013-1.091-0.049-1.571h0.924l0.048,0.936h0.036c0.324-0.552,0.863-1.067,1.823-1.067
		c0.791,0,1.391,0.479,1.643,1.163h0.024c0.18-0.324,0.407-0.576,0.646-0.755c0.349-0.264,0.731-0.408,1.283-0.408
		c0.769,0,1.907,0.503,1.907,2.519v3.418h-1.031v-3.286c0-1.115-0.408-1.787-1.26-1.787c-0.6,0-1.067,0.444-1.247,0.959
		c-0.048,0.145-0.084,0.336-0.084,0.528v3.586h-1.031v-3.478c0-0.923-0.408-1.595-1.212-1.595c-0.659,0-1.139,0.528-1.307,1.056
		c-0.062,0.156-0.084,0.335-0.084,0.516v3.502h-1.031L639.004,215.183L639.004,215.183z"/>
	<path d="M534.665,226.38c0.012,0.36-0.252,0.648-0.672,0.648c-0.371,0-0.636-0.288-0.636-0.648c0-0.372,0.275-0.66,0.659-0.66
		C534.413,225.721,534.665,226.009,534.665,226.38z M533.49,233.816v-5.805h1.055v5.805H533.49z"/>
	<path d="M536.297,229.583c0-0.6-0.013-1.091-0.049-1.571h0.936l0.062,0.959h0.022c0.288-0.552,0.96-1.091,1.919-1.091
		c0.805,0,2.052,0.479,2.052,2.47v3.466h-1.056v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V229.583z"/>
	<path d="M543.065,233.816v-5.001h-0.815v-0.803h0.815v-0.276c0-0.815,0.18-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
		c0.372,0,0.694,0.084,0.898,0.168l-0.144,0.816c-0.156-0.072-0.372-0.132-0.672-0.132c-0.899,0-1.127,0.792-1.127,1.679v0.312
		h1.401v0.803h-1.401v5.001H543.065z"/>
	<path d="M546.891,231.106c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.734
		c0,0.216-0.023,0.384-0.036,0.492L546.891,231.106L546.891,231.106z M549.987,230.35c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H549.987z"/>
	<path d="M556.456,233.601c-0.276,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.89-1.199-2.89-2.974c0-1.787,1.223-3.083,3.117-3.083
		c0.623,0,1.176,0.156,1.463,0.3l-0.238,0.815c-0.252-0.144-0.648-0.276-1.225-0.276c-1.331,0-2.051,0.984-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.296-0.288L556.456,233.601z"/>
	<path d="M559.12,226.621v1.391h1.512v0.803h-1.512v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.792c-0.203,0.084-0.527,0.156-0.937,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.898v-0.803h0.898v-1.067L559.12,226.621z"/>
	<path d="M562.336,231.106c0.024,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L562.336,231.106L562.336,231.106z M565.43,230.35c0.013-0.671-0.275-1.715-1.463-1.715
		c-1.066,0-1.535,0.983-1.619,1.715H565.43z"/>
	<path d="M572.774,225.301v7.016c0,0.516,0.012,1.103,0.048,1.499h-0.947l-0.048-1.007h-0.024c-0.322,0.647-1.031,1.139-1.979,1.139
		c-1.403,0-2.482-1.188-2.482-2.95c-0.013-1.931,1.188-3.118,2.604-3.118c0.888,0,1.486,0.419,1.751,0.887h0.022v-3.466H572.774z
		 M571.718,230.375c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.672-0.73-1.224-1.521-1.224c-1.093,0-1.739,0.959-1.739,2.243
		c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456L571.718,230.375
		L571.718,230.375z"/>
	<path d="M578.343,226.621v1.391h1.513v0.803h-1.513v3.13c0,0.72,0.204,1.127,0.792,1.127c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.792c-0.203,0.084-0.527,0.156-0.936,0.156c-0.491,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.898v-0.803h0.898v-1.067L578.343,226.621z"/>
	<path d="M585.123,232.425c0,0.503,0.023,0.995,0.096,1.391h-0.959l-0.084-0.731h-0.036c-0.322,0.456-0.946,0.863-1.774,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.479-0.132-1.343-1.319-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.175-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L585.123,232.425L585.123,232.425z M584.103,230.854c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.757,0,1.235-0.48,1.403-0.972c0.036-0.108,0.061-0.229,0.061-0.336V230.854z"/>
	<path d="M586.829,229.823c0-0.684-0.013-1.271-0.049-1.812h0.924l0.036,1.139h0.048c0.264-0.779,0.898-1.271,1.606-1.271
		c0.12,0,0.204,0.012,0.301,0.036v0.996c-0.108-0.024-0.217-0.036-0.36-0.036c-0.743,0-1.271,0.564-1.415,1.355
		c-0.023,0.144-0.048,0.312-0.048,0.492v3.094h-1.043V229.823z"/>
	<path d="M595.61,232.977c0,1.331-0.266,2.146-0.828,2.65c-0.563,0.528-1.379,0.696-2.11,0.696c-0.696,0-1.464-0.168-1.932-0.48
		l0.265-0.804c0.384,0.24,0.983,0.456,1.703,0.456c1.079,0,1.87-0.564,1.87-2.027v-0.648h-0.023
		c-0.323,0.54-0.946,0.972-1.847,0.972c-1.439,0-2.471-1.224-2.471-2.831c0-1.967,1.282-3.082,2.613-3.082
		c1.009,0,1.561,0.527,1.812,1.007h0.023l0.049-0.875h0.924c-0.024,0.419-0.048,0.887-0.048,1.595V232.977z M594.566,230.302
		c0-0.18-0.013-0.336-0.061-0.479c-0.191-0.612-0.708-1.116-1.476-1.116c-1.007,0-1.728,0.852-1.728,2.195
		c0,1.14,0.575,2.087,1.715,2.087c0.647,0,1.235-0.408,1.464-1.079c0.061-0.18,0.084-0.384,0.084-0.564L594.566,230.302
		L594.566,230.302z"/>
	<path d="M597.952,231.106c0.023,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.009,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L597.952,231.106L597.952,231.106z M601.046,230.35c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H601.046z"/>
	<path d="M604.646,226.621v1.391h1.513v0.803h-1.513v3.13c0,0.72,0.204,1.127,0.793,1.127c0.287,0,0.455-0.024,0.61-0.072
		l0.048,0.792c-0.203,0.084-0.526,0.156-0.936,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.301-0.312-0.408-0.828-0.408-1.511v-3.167
		h-0.899v-0.803h0.899v-1.067L604.646,226.621z"/>
	<path d="M614.03,233.601c-0.276,0.144-0.889,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.118-3.083
		c0.623,0,1.175,0.156,1.463,0.3l-0.238,0.815c-0.253-0.144-0.648-0.276-1.225-0.276c-1.331,0-2.051,0.984-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.288L614.03,233.601z"/>
	<path d="M615.784,231.106c0.023,1.427,0.936,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.009,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.492L615.784,231.106L615.784,231.106z M618.878,230.35c0.012-0.671-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H618.878z"/>
	<path d="M621.208,225.301h1.055v8.515h-1.055V225.301z"/>
	<path d="M624.041,225.301h1.055v8.515h-1.055V225.301z"/>
	<path d="M626.728,232.737c0.312,0.204,0.862,0.42,1.392,0.42c0.768,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.067
		c-1.044-0.372-1.535-0.948-1.535-1.644c0-0.935,0.756-1.703,2.003-1.703c0.589,0,1.104,0.167,1.428,0.359l-0.265,0.768
		c-0.228-0.144-0.646-0.335-1.188-0.335c-0.623,0-0.971,0.36-0.971,0.792c0,0.479,0.348,0.695,1.103,0.983
		c1.008,0.384,1.523,0.888,1.523,1.751c0,1.02-0.791,1.751-2.172,1.751c-0.636,0-1.223-0.168-1.631-0.408L626.728,232.737z"/>
</g>
<g>
	<path d="M667.337,327.7c-0.277,0.144-0.889,0.348-1.668,0.348c-1.752,0-2.891-1.199-2.891-2.974c0-1.787,1.223-3.083,3.118-3.083
		c0.623,0,1.175,0.154,1.464,0.3l-0.24,0.815c-0.252-0.145-0.648-0.275-1.224-0.275c-1.331,0-2.051,0.982-2.051,2.193
		c0,1.345,0.863,2.172,2.015,2.172c0.6,0,0.995-0.155,1.295-0.288L667.337,327.7z"/>
	<path d="M669.089,325.205c0.025,1.428,0.937,2.016,1.992,2.016c0.756,0,1.211-0.133,1.606-0.301l0.181,0.756
		c-0.373,0.168-1.008,0.372-1.933,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.031-3.131,2.723-3.131c1.896,0,2.398,1.668,2.398,2.734
		c0,0.217-0.025,0.385-0.037,0.491H669.089L669.089,325.205z M672.184,324.449c0.013-0.671-0.276-1.716-1.463-1.716
		c-1.067,0-1.534,0.984-1.619,1.716H672.184z"/>
	<path d="M674.514,319.399h1.056v8.517h-1.056V319.399z"/>
	<path d="M677.346,319.399h1.056v8.517h-1.056V319.399z"/>
	<path d="M682.721,319.399h1.056v8.517h-1.056V319.399z"/>
	<path d="M690.807,324.966c0,2.146-1.487,3.082-2.891,3.082c-1.572,0-2.783-1.15-2.783-2.986c0-1.941,1.271-3.082,2.879-3.082
		C689.678,321.979,690.807,323.19,690.807,324.966z M686.203,325.024c0,1.271,0.729,2.23,1.762,2.23
		c1.008,0,1.764-0.947,1.764-2.254c0-0.984-0.491-2.23-1.737-2.23C686.742,322.771,686.203,323.922,686.203,325.024z"/>
	<path d="M691.998,326.836c0.312,0.205,0.863,0.42,1.393,0.42c0.769,0,1.127-0.383,1.127-0.862c0-0.504-0.301-0.779-1.08-1.067
		c-1.043-0.372-1.534-0.947-1.534-1.644c0-0.936,0.756-1.703,2.004-1.703c0.588,0,1.104,0.168,1.426,0.359l-0.264,0.768
		c-0.228-0.144-0.646-0.334-1.188-0.334c-0.623,0-0.971,0.358-0.971,0.791c0,0.479,0.348,0.694,1.104,0.982
		c1.009,0.385,1.523,0.889,1.523,1.751c0,1.021-0.791,1.751-2.172,1.751c-0.635,0-1.223-0.168-1.631-0.406L691.998,326.836z"/>
	<path d="M696.75,326.836c0.312,0.205,0.863,0.42,1.393,0.42c0.769,0,1.127-0.383,1.127-0.862c0-0.504-0.301-0.779-1.079-1.067
		c-1.044-0.372-1.535-0.947-1.535-1.644c0-0.936,0.756-1.703,2.004-1.703c0.588,0,1.104,0.168,1.426,0.359l-0.264,0.768
		c-0.228-0.144-0.646-0.334-1.188-0.334c-0.623,0-0.971,0.358-0.971,0.791c0,0.479,0.348,0.694,1.104,0.982
		c1.009,0.385,1.523,0.889,1.523,1.751c0,1.021-0.791,1.751-2.172,1.751c-0.635,0-1.223-0.168-1.631-0.406L696.75,326.836z"/>
</g>
<g>
	<path d="M566.526,439.201c-0.276,0.145-0.889,0.348-1.668,0.348c-1.751,0-2.891-1.199-2.891-2.975c0-1.787,1.224-3.082,3.118-3.082
		c0.623,0,1.175,0.156,1.463,0.3l-0.239,0.815c-0.252-0.145-0.647-0.275-1.224-0.275c-1.331,0-2.051,0.983-2.051,2.194
		c0,1.343,0.862,2.171,2.015,2.171c0.601,0,0.995-0.156,1.295-0.287L566.526,439.201z"/>
	<path d="M567.763,435.424c0-0.684-0.013-1.271-0.049-1.812h0.924l0.036,1.14h0.048c0.265-0.779,0.899-1.271,1.607-1.271
		c0.12,0,0.204,0.012,0.3,0.034v0.996c-0.108-0.022-0.216-0.036-0.36-0.036c-0.742,0-1.271,0.563-1.414,1.355
		c-0.023,0.144-0.049,0.312-0.049,0.491v3.095h-1.043V435.424z"/>
	<path d="M576.821,436.467c0,2.146-1.487,3.082-2.892,3.082c-1.57,0-2.781-1.15-2.781-2.985c0-1.943,1.271-3.082,2.878-3.082
		C575.693,433.48,576.821,434.691,576.821,436.467z M572.215,436.526c0,1.271,0.731,2.23,1.764,2.23
		c1.008,0,1.763-0.947,1.763-2.256c0-0.982-0.491-2.23-1.738-2.23C572.754,434.271,572.215,435.424,572.215,436.526z"/>
	<path d="M578.01,438.338c0.312,0.203,0.863,0.42,1.393,0.42c0.768,0,1.127-0.385,1.127-0.863c0-0.504-0.3-0.779-1.079-1.067
		c-1.044-0.371-1.535-0.947-1.535-1.644c0-0.936,0.756-1.702,2.003-1.702c0.588,0,1.104,0.168,1.427,0.358l-0.264,0.769
		c-0.228-0.145-0.646-0.336-1.188-0.336c-0.623,0-0.972,0.359-0.972,0.792c0,0.479,0.349,0.694,1.104,0.982
		c1.008,0.384,1.522,0.888,1.522,1.751c0,1.021-0.791,1.751-2.171,1.751c-0.636,0-1.223-0.168-1.631-0.408L578.01,438.338z"/>
	<path d="M582.762,438.338c0.312,0.203,0.863,0.42,1.393,0.42c0.768,0,1.127-0.385,1.127-0.863c0-0.504-0.3-0.779-1.079-1.067
		c-1.044-0.371-1.535-0.947-1.535-1.644c0-0.936,0.756-1.702,2.003-1.702c0.588,0,1.104,0.168,1.427,0.358l-0.264,0.769
		c-0.228-0.145-0.646-0.336-1.188-0.336c-0.623,0-0.972,0.359-0.972,0.792c0,0.479,0.349,0.694,1.104,0.982
		c1.008,0.384,1.522,0.888,1.522,1.751c0,1.021-0.791,1.751-2.171,1.751c-0.636,0-1.223-0.168-1.631-0.408L582.762,438.338z"/>
	<path d="M590.106,435.783v0.778h-2.964v-0.778H590.106z"/>
	<path d="M591.344,435.508c0-0.744-0.023-1.344-0.049-1.896h0.948l0.048,0.995h0.023c0.432-0.707,1.114-1.127,2.062-1.127
		c1.403,0,2.458,1.188,2.458,2.949c0,2.087-1.271,3.118-2.639,3.118c-0.769,0-1.438-0.336-1.786-0.912h-0.024v3.154h-1.043
		L591.344,435.508L591.344,435.508z M592.386,437.055c0,0.155,0.024,0.299,0.048,0.433c0.192,0.73,0.828,1.233,1.583,1.233
		c1.115,0,1.765-0.91,1.765-2.242c0-1.162-0.612-2.157-1.729-2.157c-0.72,0-1.392,0.516-1.595,1.307
		c-0.036,0.132-0.072,0.288-0.072,0.432V437.055L592.386,437.055z"/>
	<path d="M598.171,435.424c0-0.684-0.013-1.271-0.049-1.812h0.924l0.036,1.14h0.048c0.264-0.779,0.899-1.271,1.607-1.271
		c0.12,0,0.203,0.012,0.3,0.034v0.996c-0.108-0.022-0.216-0.036-0.36-0.036c-0.743,0-1.271,0.563-1.415,1.355
		c-0.022,0.144-0.048,0.312-0.048,0.491v3.095h-1.043V435.424z"/>
	<path d="M602.562,436.707c0.024,1.427,0.937,2.014,1.991,2.014c0.756,0,1.211-0.131,1.607-0.299l0.18,0.756
		c-0.372,0.168-1.008,0.371-1.931,0.371c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.724-3.13c1.895,0,2.397,1.667,2.397,2.733
		c0,0.216-0.023,0.384-0.036,0.492H602.562L602.562,436.707z M605.658,435.951c0.012-0.672-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.981-1.619,1.715H605.658z"/>
	<path d="M607.843,438.338c0.312,0.203,0.863,0.42,1.393,0.42c0.768,0,1.127-0.385,1.127-0.863c0-0.504-0.3-0.779-1.079-1.067
		c-1.044-0.371-1.535-0.947-1.535-1.644c0-0.936,0.756-1.702,2.003-1.702c0.588,0,1.104,0.168,1.427,0.358l-0.264,0.769
		c-0.228-0.145-0.646-0.336-1.188-0.336c-0.623,0-0.972,0.359-0.972,0.792c0,0.479,0.349,0.694,1.104,0.982
		c1.008,0.384,1.522,0.888,1.522,1.751c0,1.021-0.791,1.751-2.171,1.751c-0.636,0-1.223-0.168-1.631-0.408L607.843,438.338z"/>
	<path d="M613.327,436.707c0.023,1.427,0.936,2.014,1.991,2.014c0.756,0,1.211-0.131,1.606-0.299l0.181,0.756
		c-0.372,0.168-1.009,0.371-1.932,0.371c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.733
		c0,0.216-0.024,0.384-0.036,0.492H613.327L613.327,436.707z M616.421,435.951c0.012-0.672-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.981-1.619,1.715H616.421z"/>
	<path d="M618.751,435.184c0-0.6-0.013-1.092-0.049-1.57h0.936l0.062,0.96h0.022c0.288-0.554,0.96-1.093,1.919-1.093
		c0.805,0,2.052,0.479,2.052,2.472v3.466h-1.056v-3.347c0-0.937-0.349-1.715-1.344-1.715c-0.695,0-1.235,0.491-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V435.184z"/>
	<path d="M626.634,432.221v1.393h1.513v0.804h-1.513v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.791c-0.203,0.084-0.527,0.156-0.936,0.156c-0.491,0-0.888-0.168-1.14-0.455c-0.3-0.312-0.408-0.828-0.408-1.512v-3.166
		h-0.898v-0.804h0.898v-1.067L626.634,432.221z"/>
	<path d="M633.413,438.025c0,0.504,0.024,0.996,0.096,1.392h-0.959l-0.084-0.731h-0.036c-0.323,0.455-0.946,0.863-1.774,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.118c0-0.48-0.132-1.345-1.319-1.345
		c-0.54,0-1.104,0.168-1.512,0.433l-0.239-0.695c0.479-0.313,1.175-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L633.413,438.025L633.413,438.025z M632.392,436.455c-1.15-0.024-2.458,0.18-2.458,1.307c0,0.685,0.455,1.008,0.995,1.008
		c0.756,0,1.235-0.479,1.403-0.972c0.036-0.107,0.06-0.228,0.06-0.336V436.455z"/>
	<path d="M636.342,432.221v1.393h1.512v0.804h-1.512v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.791c-0.203,0.084-0.527,0.156-0.936,0.156c-0.491,0-0.888-0.168-1.14-0.455c-0.3-0.312-0.408-0.828-0.408-1.512v-3.166
		h-0.898v-0.804h0.898v-1.067L636.342,432.221z"/>
	<path d="M640.218,431.98c0.013,0.359-0.252,0.647-0.672,0.647c-0.371,0-0.636-0.288-0.636-0.647c0-0.371,0.275-0.659,0.66-0.659
		C639.966,431.321,640.218,431.609,640.218,431.98z M639.043,439.417v-5.805h1.055v5.805H639.043z"/>
	<path d="M647.103,436.467c0,2.146-1.486,3.082-2.891,3.082c-1.571,0-2.782-1.15-2.782-2.985c0-1.943,1.271-3.082,2.878-3.082
		C645.975,433.48,647.103,434.691,647.103,436.467z M642.499,436.526c0,1.271,0.731,2.23,1.763,2.23
		c1.008,0,1.764-0.947,1.764-2.256c0-0.982-0.491-2.23-1.738-2.23C643.038,434.271,642.499,435.424,642.499,436.526z"/>
	<path d="M648.439,435.184c0-0.6-0.014-1.092-0.05-1.57h0.937l0.061,0.96h0.023c0.288-0.554,0.96-1.093,1.919-1.093
		c0.804,0,2.051,0.479,2.051,2.472v3.466h-1.055v-3.347c0-0.937-0.35-1.715-1.344-1.715c-0.695,0-1.235,0.491-1.415,1.079
		c-0.049,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V435.184z"/>
	<path d="M662.896,436.467c0,2.146-1.487,3.082-2.892,3.082c-1.571,0-2.782-1.15-2.782-2.985c0-1.943,1.271-3.082,2.878-3.082
		C661.767,433.48,662.896,434.691,662.896,436.467z M658.291,436.526c0,1.271,0.731,2.23,1.763,2.23
		c1.009,0,1.764-0.947,1.764-2.256c0-0.982-0.491-2.23-1.738-2.23C658.83,434.271,658.291,435.424,658.291,436.526z"/>
	<path d="M664.338,439.417v-5.001h-0.814v-0.804h0.814v-0.276c0-0.813,0.18-1.559,0.672-2.026c0.396-0.384,0.923-0.54,1.415-0.54
		c0.372,0,0.695,0.084,0.899,0.168l-0.145,0.816c-0.155-0.072-0.372-0.133-0.672-0.133c-0.898,0-1.127,0.792-1.127,1.68v0.312h1.402
		v0.804h-1.402v5.001L664.338,439.417L664.338,439.417z"/>
	<path d="M580.235,452.426c0,0.504,0.023,0.995,0.096,1.392h-0.959l-0.084-0.73h-0.036c-0.324,0.455-0.947,0.863-1.775,0.863
		c-1.175,0-1.773-0.828-1.773-1.668c0-1.402,1.247-2.17,3.49-2.158v-0.12c0-0.479-0.133-1.343-1.319-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.694c0.479-0.313,1.175-0.517,1.906-0.517c1.774,0,2.207,1.211,2.207,2.374
		L580.235,452.426L580.235,452.426z M579.215,450.854c-1.15-0.023-2.458,0.181-2.458,1.309c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.235-0.479,1.403-0.973c0.036-0.107,0.06-0.229,0.06-0.336V450.854z"/>
	<path d="M581.942,449.583c0-0.6-0.014-1.091-0.05-1.571h0.937l0.061,0.96h0.023c0.288-0.552,0.96-1.091,1.919-1.091
		c0.804,0,2.051,0.479,2.051,2.47v3.467h-1.055v-3.347c0-0.936-0.348-1.715-1.344-1.715c-0.695,0-1.235,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V449.583z"/>
	<path d="M589.824,446.621v1.391h1.512v0.805h-1.512v3.13c0,0.721,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.61-0.071
		l0.049,0.791c-0.203,0.084-0.527,0.156-0.937,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.827-0.408-1.511v-3.167
		h-0.899v-0.805h0.899v-1.065L589.824,446.621z"/>
	<path d="M593.701,446.381c0.012,0.359-0.252,0.648-0.672,0.648c-0.371,0-0.637-0.289-0.637-0.648c0-0.371,0.276-0.66,0.66-0.66
		C593.449,445.721,593.701,446.01,593.701,446.381z M592.526,453.816v-5.806h1.055v5.806H592.526z"/>
	<path d="M600.287,452.978c0,1.331-0.264,2.146-0.828,2.65c-0.562,0.528-1.379,0.696-2.11,0.696c-0.695,0-1.464-0.168-1.931-0.48
		l0.264-0.804c0.385,0.24,0.983,0.456,1.703,0.456c1.079,0,1.871-0.564,1.871-2.027v-0.646h-0.023
		c-0.324,0.54-0.947,0.972-1.848,0.972c-1.438,0-2.471-1.224-2.471-2.83c0-1.967,1.283-3.082,2.614-3.082
		c1.008,0,1.56,0.527,1.811,1.007h0.024l0.048-0.876h0.924c-0.024,0.42-0.048,0.889-0.048,1.597V452.978L600.287,452.978z
		 M599.243,450.303c0-0.18-0.013-0.336-0.061-0.479c-0.191-0.612-0.708-1.116-1.476-1.116c-1.007,0-1.727,0.852-1.727,2.195
		c0,1.14,0.574,2.087,1.715,2.087c0.646,0,1.234-0.407,1.463-1.079c0.061-0.18,0.084-0.384,0.084-0.564L599.243,450.303
		L599.243,450.303z"/>
	<path d="M602.628,451.106c0.024,1.427,0.937,2.015,1.991,2.015c0.756,0,1.211-0.132,1.606-0.3l0.181,0.756
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.939c0-1.75,1.031-3.129,2.723-3.129
		c1.896,0,2.398,1.666,2.398,2.734c0,0.215-0.024,0.383-0.036,0.491H602.628L602.628,451.106z M605.722,450.351
		c0.013-0.671-0.275-1.715-1.463-1.715c-1.066,0-1.535,0.983-1.619,1.715H605.722z"/>
	<path d="M608.052,449.583c0-0.6-0.013-1.091-0.049-1.571h0.936l0.062,0.96h0.022c0.288-0.552,0.961-1.091,1.92-1.091
		c0.804,0,2.051,0.479,2.051,2.47v3.467h-1.055v-3.347c0-0.936-0.349-1.715-1.345-1.715c-0.694,0-1.234,0.492-1.415,1.079
		c-0.048,0.132-0.071,0.312-0.071,0.491v3.49h-1.056V449.583z"/>
	<path d="M618.528,446.621v1.391h1.512v0.805h-1.512v3.13c0,0.721,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.61-0.071
		l0.048,0.791c-0.202,0.084-0.526,0.156-0.936,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.3-0.312-0.408-0.827-0.408-1.511v-3.167
		h-0.899v-0.805h0.899v-1.065L618.528,446.621z"/>
	<path d="M626.41,450.867c0,2.146-1.487,3.082-2.892,3.082c-1.57,0-2.781-1.152-2.781-2.986c0-1.943,1.271-3.082,2.878-3.082
		C625.282,447.881,626.41,449.092,626.41,450.867z M621.803,450.926c0,1.271,0.731,2.231,1.764,2.231
		c1.008,0,1.763-0.947,1.763-2.255c0-0.983-0.491-2.23-1.738-2.23C622.343,448.672,621.803,449.823,621.803,450.926z"/>
	<path d="M635.972,453.553c-0.384,0.192-1.15,0.396-2.135,0.396c-2.279,0-3.994-1.451-3.994-4.103c0-2.53,1.715-4.246,4.223-4.246
		c1.008,0,1.644,0.217,1.919,0.359l-0.252,0.853c-0.396-0.191-0.959-0.337-1.632-0.337c-1.895,0-3.153,1.213-3.153,3.334
		c0,1.979,1.14,3.251,3.105,3.251c0.637,0,1.283-0.132,1.703-0.336L635.972,453.553z"/>
	<path d="M639.155,446.621h-2.458v-0.888h5.983v0.888h-2.471v7.195h-1.056L639.155,446.621L639.155,446.621z"/>
	<path d="M643.583,445.733h1.044v7.208h3.454v0.875h-4.498V445.733z"/>
	<path d="M649.068,452.737c0.312,0.204,0.862,0.42,1.392,0.42c0.769,0,1.127-0.384,1.127-0.863c0-0.504-0.3-0.78-1.079-1.067
		c-1.044-0.371-1.535-0.946-1.535-1.644c0-0.935,0.757-1.702,2.004-1.702c0.588,0,1.104,0.167,1.427,0.359l-0.265,0.768
		c-0.228-0.145-0.646-0.336-1.188-0.336c-0.623,0-0.971,0.359-0.971,0.791c0,0.48,0.348,0.695,1.103,0.984
		c1.008,0.383,1.523,0.887,1.523,1.75c0,1.02-0.791,1.752-2.171,1.752c-0.637,0-1.224-0.168-1.632-0.408L649.068,452.737z"/>
</g>
<g>
	<path d="M504.209,490.704c-0.276,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.89-1.199-2.89-2.975c0-1.787,1.223-3.082,3.117-3.082
		c0.623,0,1.176,0.156,1.464,0.3l-0.24,0.815c-0.251-0.145-0.647-0.275-1.223-0.275c-1.331,0-2.052,0.983-2.052,2.194
		c0,1.344,0.863,2.171,2.016,2.171c0.6,0,0.995-0.156,1.295-0.288L504.209,490.704z"/>
	<path d="M505.962,488.209c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.181,0.755
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.786,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.733
		c0,0.216-0.024,0.384-0.036,0.491H505.962L505.962,488.209z M509.056,487.454c0.013-0.672-0.275-1.716-1.463-1.716
		c-1.066,0-1.535,0.983-1.619,1.716H509.056z"/>
	<path d="M511.386,482.404h1.056v8.516h-1.056V482.404L511.386,482.404z"/>
	<path d="M514.219,482.404h1.056v8.516h-1.056V482.404z"/>
	<path d="M499,496.805v7.018c0,0.516,0.012,1.104,0.048,1.499H498.1l-0.048-1.009h-0.023c-0.323,0.648-1.031,1.141-1.979,1.141
		c-1.402,0-2.481-1.188-2.481-2.95c-0.014-1.931,1.188-3.118,2.603-3.118c0.888,0,1.487,0.42,1.751,0.889h0.023v-3.468L499,496.805
		L499,496.805z M497.945,501.878c0-0.132-0.013-0.312-0.048-0.443c-0.155-0.672-0.731-1.224-1.523-1.224
		c-1.091,0-1.738,0.96-1.738,2.243c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.355-0.468,1.548-1.259
		c0.035-0.145,0.048-0.288,0.048-0.456L497.945,501.878L497.945,501.878z"/>
	<path d="M501.342,502.609c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.607-0.3l0.18,0.755
		c-0.372,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.491H501.342L501.342,502.609z M504.437,501.854c0.012-0.672-0.276-1.716-1.464-1.716
		c-1.066,0-1.534,0.984-1.618,1.716H504.437z"/>
	<path d="M510.844,503.929c0,0.504,0.024,0.996,0.097,1.393h-0.959l-0.085-0.731h-0.035c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.827-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.479-0.132-1.344-1.318-1.344
		c-0.54,0-1.104,0.168-1.513,0.432l-0.238-0.694c0.479-0.312,1.175-0.517,1.905-0.517c1.775,0,2.207,1.211,2.207,2.374
		L510.844,503.929L510.844,503.929z M509.825,502.358c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008
		c0.756,0,1.234-0.479,1.402-0.972c0.036-0.107,0.061-0.229,0.061-0.336V502.358z"/>
	<path d="M513.774,498.124v1.392h1.512v0.805h-1.512v3.13c0,0.72,0.203,1.128,0.792,1.128c0.287,0,0.455-0.024,0.61-0.072
		l0.048,0.791c-0.203,0.084-0.526,0.156-0.936,0.156c-0.491,0-0.887-0.168-1.139-0.456c-0.301-0.312-0.408-0.827-0.408-1.511v-3.166
		h-0.899v-0.805h0.899v-1.066L513.774,498.124z"/>
	<path d="M516.474,496.805h1.056v3.622h0.023c0.168-0.3,0.433-0.562,0.756-0.743c0.312-0.18,0.685-0.3,1.079-0.3
		c0.779,0,2.026,0.479,2.026,2.482v3.454h-1.055v-3.334c0-0.937-0.35-1.729-1.345-1.729c-0.684,0-1.224,0.48-1.415,1.057
		c-0.06,0.144-0.071,0.3-0.071,0.504v3.502h-1.056L516.474,496.805L516.474,496.805z"/>
</g>
<g>
	<path d="M366.708,520.203c-0.276,0.144-0.888,0.348-1.668,0.348c-1.751,0-2.89-1.199-2.89-2.975c0-1.787,1.223-3.082,3.117-3.082
		c0.623,0,1.176,0.156,1.464,0.3l-0.24,0.815c-0.251-0.145-0.647-0.275-1.224-0.275c-1.33,0-2.051,0.983-2.051,2.194
		c0,1.344,0.863,2.171,2.016,2.171c0.6,0,0.994-0.156,1.295-0.288L366.708,520.203z"/>
	<path d="M368.46,517.708c0.024,1.428,0.937,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.181,0.755
		c-0.372,0.168-1.008,0.372-1.932,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.13,2.723-3.13c1.896,0,2.398,1.667,2.398,2.733
		c0,0.216-0.024,0.384-0.036,0.491H368.46L368.46,517.708z M371.554,516.953c0.013-0.672-0.275-1.716-1.463-1.716
		c-1.066,0-1.535,0.983-1.619,1.716H371.554z"/>
	<path d="M373.885,511.903h1.056v8.516h-1.056V511.903z"/>
	<path d="M376.717,511.903h1.056v8.516h-1.056V511.903z"/>
	<path d="M350.725,530.825c0-0.685-0.013-1.271-0.049-1.812h0.924l0.036,1.141h0.048c0.265-0.78,0.899-1.271,1.607-1.271
		c0.12,0,0.204,0.013,0.3,0.036v0.995c-0.107-0.024-0.216-0.036-0.359-0.036c-0.743,0-1.271,0.563-1.415,1.355
		c-0.023,0.144-0.049,0.312-0.049,0.49v3.096h-1.043V530.825z"/>
	<path d="M355.117,532.108c0.023,1.428,0.936,2.016,1.991,2.016c0.756,0,1.211-0.132,1.606-0.3l0.18,0.755
		c-0.371,0.168-1.008,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.13,2.723-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.024,0.384-0.036,0.491H355.117L355.117,532.108z M358.211,531.354c0.012-0.672-0.276-1.716-1.463-1.716
		c-1.067,0-1.535,0.984-1.619,1.716H358.211z"/>
	<path d="M360.542,530.586c0-0.6-0.013-1.092-0.049-1.571h0.924l0.048,0.937h0.036c0.324-0.552,0.863-1.067,1.823-1.067
		c0.791,0,1.391,0.479,1.643,1.163h0.024c0.18-0.324,0.407-0.575,0.646-0.756c0.349-0.264,0.731-0.407,1.283-0.407
		c0.769,0,1.907,0.504,1.907,2.52v3.418h-1.031v-3.286c0-1.115-0.408-1.787-1.26-1.787c-0.601,0-1.067,0.443-1.247,0.96
		c-0.048,0.144-0.084,0.335-0.084,0.527v3.586h-1.031v-3.479c0-0.923-0.408-1.595-1.212-1.595c-0.659,0-1.139,0.527-1.307,1.056
		c-0.062,0.155-0.084,0.336-0.084,0.517v3.502h-1.031L360.542,530.586L360.542,530.586z"/>
	<path d="M375.802,531.869c0,2.146-1.486,3.082-2.891,3.082c-1.571,0-2.782-1.151-2.782-2.986c0-1.941,1.271-3.082,2.878-3.082
		C374.674,528.883,375.802,530.094,375.802,531.869z M371.197,531.929c0,1.271,0.73,2.231,1.763,2.231
		c1.008,0,1.763-0.948,1.763-2.255c0-0.983-0.49-2.231-1.737-2.231C371.736,529.674,371.197,530.825,371.197,531.929z"/>
	<path d="M377.46,529.015l1.14,3.263c0.191,0.527,0.349,1.008,0.469,1.486h0.035c0.133-0.479,0.301-0.959,0.491-1.486l1.128-3.263
		h1.104l-2.278,5.806h-1.008l-2.206-5.806H377.46z"/>
	<path d="M386.853,533.428c0,0.504,0.024,0.996,0.097,1.393h-0.959l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.773-0.827-1.773-1.667c0-1.403,1.247-2.171,3.489-2.159v-0.119c0-0.479-0.132-1.344-1.318-1.344
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.694c0.479-0.312,1.175-0.517,1.906-0.517c1.774,0,2.207,1.211,2.207,2.374v2.17H386.853
		z M385.834,531.857c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.684,0.455,1.008,0.995,1.008c0.756,0,1.235-0.479,1.403-0.972
		c0.035-0.107,0.06-0.229,0.06-0.336V531.857z"/>
	<path d="M388.56,526.304h1.056v8.517h-1.056V526.304z"/>
</g>
<g>
	<path d="M57.708,405.203c-0.275,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.198-2.891-2.975c0-1.787,1.224-3.082,3.119-3.082
		c0.624,0,1.175,0.155,1.463,0.3l-0.24,0.814c-0.252-0.144-0.646-0.274-1.223-0.274c-1.332,0-2.052,0.983-2.052,2.194
		c0,1.344,0.864,2.171,2.016,2.171c0.6,0,0.996-0.156,1.295-0.288L57.708,405.203z"/>
	<path d="M59.462,402.708c0.024,1.428,0.936,2.016,1.991,2.016c0.755,0,1.211-0.132,1.607-0.3l0.18,0.755
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.666,2.398,2.733
		c0,0.216-0.023,0.384-0.036,0.491H59.462L59.462,402.708z M62.556,401.953c0.012-0.672-0.276-1.716-1.464-1.716
		c-1.066,0-1.534,0.984-1.618,1.716H62.556z"/>
	<path d="M64.886,396.903h1.056v8.516h-1.056V396.903z"/>
	<path d="M67.718,396.903h1.057v8.516h-1.057V396.903z"/>
	<path d="M33.98,415.909c0-0.743-0.024-1.344-0.048-1.895h0.946l0.048,0.994h0.024c0.432-0.707,1.115-1.127,2.063-1.127
		c1.402,0,2.459,1.188,2.459,2.95c0,2.087-1.271,3.118-2.64,3.118c-0.768,0-1.438-0.336-1.787-0.911h-0.023v3.154H33.98V415.909z
		 M35.023,417.457c0,0.155,0.023,0.3,0.048,0.433c0.192,0.73,0.828,1.234,1.583,1.234c1.115,0,1.763-0.912,1.763-2.243
		c0-1.163-0.61-2.159-1.727-2.159c-0.72,0-1.392,0.518-1.595,1.309c-0.036,0.132-0.072,0.287-0.072,0.432V417.457z"/>
	<path d="M40.808,415.825c0-0.684-0.013-1.271-0.049-1.811h0.924l0.036,1.139h0.048c0.264-0.779,0.898-1.271,1.606-1.271
		c0.12,0,0.204,0.013,0.3,0.036v0.995c-0.107-0.024-0.216-0.036-0.359-0.036c-0.744,0-1.271,0.562-1.416,1.355
		c-0.024,0.144-0.048,0.312-0.048,0.49v3.096h-1.043L40.808,415.825L40.808,415.825z"/>
	<path d="M49.864,416.869c0,2.146-1.487,3.082-2.89,3.082c-1.571,0-2.783-1.151-2.783-2.986c0-1.942,1.271-3.082,2.878-3.082
		C48.737,413.883,49.864,415.094,49.864,416.869z M45.259,416.929c0,1.271,0.732,2.231,1.764,2.231c1.007,0,1.763-0.948,1.763-2.255
		c0-0.983-0.492-2.231-1.739-2.231S45.259,415.825,45.259,416.929z"/>
	<path d="M56.212,411.304v7.018c0,0.516,0.013,1.104,0.048,1.498h-0.946l-0.048-1.008h-0.024c-0.324,0.648-1.032,1.141-1.979,1.141
		c-1.403,0-2.483-1.188-2.483-2.95c-0.012-1.931,1.188-3.118,2.603-3.118c0.889,0,1.487,0.42,1.751,0.889h0.024v-3.467h1.055
		V411.304z M55.157,416.377c0-0.132-0.012-0.312-0.048-0.442c-0.156-0.672-0.731-1.225-1.523-1.225c-1.091,0-1.738,0.96-1.738,2.243
		c0,1.175,0.575,2.146,1.715,2.146c0.708,0,1.354-0.468,1.547-1.259c0.036-0.146,0.048-0.288,0.048-0.456V416.377z"/>
	<path d="M62.825,418.235c0,0.601,0.012,1.127,0.048,1.584h-0.936l-0.061-0.947h-0.023c-0.276,0.468-0.888,1.079-1.919,1.079
		c-0.911,0-2.003-0.504-2.003-2.543v-3.394h1.056v3.213c0,1.104,0.336,1.849,1.295,1.849c0.708,0,1.199-0.492,1.391-0.96
		c0.061-0.156,0.097-0.348,0.097-0.54v-3.562h1.056V418.235z"/>
	<path d="M68.717,419.604c-0.275,0.144-0.887,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.975c0-1.787,1.224-3.082,3.119-3.082
		c0.624,0,1.175,0.155,1.463,0.299l-0.24,0.815c-0.252-0.144-0.646-0.274-1.223-0.274c-1.332,0-2.051,0.982-2.051,2.193
		c0,1.344,0.863,2.172,2.015,2.172c0.6,0,0.996-0.156,1.295-0.289L68.717,419.604z"/>
	<path d="M71.383,412.623v1.392h1.512v0.805h-1.512v3.13c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.611-0.072
		l0.048,0.791c-0.204,0.084-0.527,0.156-0.936,0.156c-0.492,0-0.889-0.168-1.141-0.456c-0.3-0.312-0.407-0.827-0.407-1.511v-3.166
		h-0.899v-0.805h0.899v-1.066L71.383,412.623z"/>
	<path d="M75.258,412.384c0.013,0.359-0.252,0.647-0.671,0.647c-0.372,0-0.636-0.288-0.636-0.647c0-0.371,0.276-0.66,0.66-0.66
		C75.006,411.724,75.258,412.013,75.258,412.384z M74.083,419.819v-5.805h1.057v5.805H74.083z"/>
	<path d="M82.144,416.869c0,2.146-1.487,3.082-2.891,3.082c-1.57,0-2.782-1.151-2.782-2.986c0-1.942,1.271-3.082,2.878-3.082
		C81.017,413.883,82.144,415.094,82.144,416.869z M77.538,416.929c0,1.271,0.732,2.231,1.763,2.231c1.008,0,1.764-0.948,1.764-2.255
		c0-0.983-0.492-2.231-1.739-2.231S77.538,415.825,77.538,416.929z"/>
	<path d="M83.479,415.586c0-0.601-0.013-1.092-0.048-1.571h0.936l0.06,0.959h0.024c0.288-0.552,0.959-1.091,1.919-1.091
		c0.803,0,2.051,0.479,2.051,2.472v3.465h-1.056v-3.346c0-0.936-0.348-1.716-1.343-1.716c-0.695,0-1.235,0.492-1.415,1.08
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.056V415.586z"/>
</g>
<g>
	<path d="M274.581,287.703c-0.275,0.144-0.888,0.348-1.667,0.348c-1.751,0-2.891-1.199-2.891-2.974c0-1.787,1.224-3.083,3.119-3.083
		c0.624,0,1.175,0.156,1.463,0.3l-0.24,0.815c-0.252-0.144-0.647-0.275-1.223-0.275c-1.332,0-2.052,0.983-2.052,2.194
		c0,1.343,0.864,2.171,2.016,2.171c0.6,0,0.996-0.156,1.295-0.288L274.581,287.703z"/>
	<path d="M276.335,285.208c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.723-3.13c1.896,0,2.399,1.667,2.399,2.734
		c0,0.216-0.024,0.384-0.036,0.492L276.335,285.208L276.335,285.208z M279.429,284.453c0.012-0.671-0.276-1.715-1.464-1.715
		c-1.066,0-1.534,0.983-1.618,1.715H279.429z"/>
	<path d="M281.759,279.404h1.057v8.515h-1.057V279.404z"/>
	<path d="M284.591,279.404h1.057v8.515h-1.057V279.404z"/>
	<path d="M269.372,293.804v7.018c0,0.516,0.012,1.103,0.048,1.498h-0.946l-0.049-1.008h-0.023c-0.324,0.647-1.032,1.141-1.979,1.141
		c-1.402,0-2.482-1.188-2.482-2.951c-0.012-1.932,1.188-3.118,2.603-3.118c0.889,0,1.487,0.419,1.751,0.888h0.024v-3.467H269.372z
		 M268.317,298.877c0-0.132-0.012-0.312-0.048-0.444c-0.156-0.672-0.731-1.224-1.523-1.224c-1.091,0-1.739,0.959-1.739,2.244
		c0,1.175,0.576,2.146,1.716,2.146c0.708,0,1.354-0.469,1.547-1.26c0.036-0.145,0.048-0.287,0.048-0.455V298.877L268.317,298.877z"
		/>
	<path d="M271.715,299.608c0.024,1.427,0.936,2.015,1.991,2.015c0.755,0,1.211-0.132,1.607-0.3l0.18,0.756
		c-0.372,0.168-1.007,0.372-1.931,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.032-3.13,2.724-3.13c1.895,0,2.398,1.667,2.398,2.734
		c0,0.216-0.023,0.383-0.036,0.491H271.715L271.715,299.608z M274.809,298.853c0.012-0.67-0.276-1.715-1.463-1.715
		c-1.067,0-1.535,0.983-1.619,1.715H274.809z"/>
	<path d="M281.216,300.928c0,0.505,0.024,0.995,0.097,1.392h-0.959l-0.084-0.73h-0.036c-0.324,0.455-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.668c0-1.403,1.247-2.17,3.489-2.158v-0.12c0-0.479-0.132-1.343-1.318-1.343
		c-0.54,0-1.104,0.168-1.512,0.432l-0.239-0.695c0.479-0.312,1.175-0.516,1.906-0.516c1.775,0,2.207,1.211,2.207,2.375
		L281.216,300.928L281.216,300.928z M280.197,299.356c-1.151-0.024-2.458,0.18-2.458,1.308c0,0.685,0.456,1.008,0.996,1.008
		c0.755,0,1.234-0.479,1.403-0.973c0.035-0.107,0.06-0.228,0.06-0.336L280.197,299.356L280.197,299.356z"/>
	<path d="M284.146,295.123v1.392h1.511v0.803h-1.511v3.13c0,0.721,0.204,1.128,0.792,1.128c0.288,0,0.456-0.024,0.61-0.071
		l0.049,0.791c-0.204,0.084-0.528,0.156-0.937,0.156c-0.492,0-0.888-0.168-1.14-0.456c-0.3-0.312-0.408-0.827-0.408-1.512v-3.166
		h-0.899v-0.803h0.899v-1.067L284.146,295.123z"/>
	<path d="M286.847,293.804h1.056v3.622h0.023c0.168-0.3,0.433-0.563,0.756-0.743c0.312-0.181,0.684-0.301,1.079-0.301
		c0.779,0,2.027,0.479,2.027,2.482v3.453h-1.056v-3.332c0-0.937-0.349-1.728-1.343-1.728c-0.685,0-1.224,0.479-1.415,1.056
		c-0.061,0.144-0.072,0.3-0.072,0.504v3.5h-1.056V293.804z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="80.185" y1="82.251" x2="10.185" y2="31.584"/>
		<polygon points="75.738,83.604 79.183,81.527 80.082,77.604 85.02,85.751 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="27.892" y1="246.728" x2="120.185" y2="179.251"/>
		<polygon points="27.974,242.081 28.89,245.999 32.346,248.061 23.073,250.251 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="318.184" y1="29.585" x2="248.185" y2="80.252"/>
		<polygon points="318.082,34.231 317.183,30.31 313.738,28.231 323.021,26.085 		"/>
	</g>
</g>
<g>
	<path fill="none" stroke="#000000" d="M167.564,184.918c0,29.485,26.672,40.323,56.409,40.323"/>
	<path fill="none" stroke="#000000" d="M167.476,265.626c0-29.485,26.672-40.323,56.408-40.323"/>
	<g>
		<g>
			<line fill="none" stroke="#000000" x1="223.973" y1="225.241" x2="345.148" y2="225.241"/>
			<polygon points="342.339,228.944 343.912,225.241 342.339,221.537 351.117,225.241 			"/>
		</g>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#231F20" d="M449.184,225.918c56.745-1,100.786,29,124.501,79"/>
		<polygon fill="#231F20" points="569.135,303.967 573.157,303.801 575.83,300.793 576.244,310.312 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#231F20" d="M576.103,379.756c-24.492,43.689-60.214,67.953-97.826,70.41"/>
		<polygon fill="#231F20" points="480.838,446.289 479.51,450.086 481.321,453.68 472.321,450.557 		"/>
	</g>
</g>
<g>
	<g>
		<path fill="none" stroke="#000000" stroke-dasharray="3,1" d="M333.2,456.666c-168.216-2.253-260.963-41.465-259.6-224.282"/>
		<polygon points="77.282,235.22 73.59,233.62 69.875,235.165 73.644,226.415 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="406.428" y1="569.496" x2="406.428" y2="498.807"/>
		<polygon points="402.725,566.688 406.428,568.26 410.133,566.688 406.428,575.465 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="502.274" y1="536.25" x2="450.566" y2="488.049"/>
		<polygon points="497.695,537.045 501.37,535.408 502.746,531.625 506.639,540.32 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="313.402" y1="312.162" x2="242.712" y2="312.162"/>
		<polygon points="310.593,315.865 312.166,312.162 310.593,308.457 319.371,312.162 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="144.22" y1="359.36" x2="84.146" y2="395.965"/>
		<polygon points="143.749,363.983 143.166,360.004 139.894,357.66 149.318,356.256 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="406.428" y1="569.496" x2="406.428" y2="498.807"/>
		<polygon points="402.725,566.688 406.428,568.26 410.133,566.688 406.428,575.465 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="716.891" y1="339.66" x2="646.203" y2="339.66"/>
		<polygon points="714.083,343.362 715.656,339.66 714.083,335.957 722.861,339.66 		"/>
	</g>
</g>
</svg>

</window>