Location: Leloup, Gonze, Goldbeter, 1999 @ bfaac0e80b23 / leloup_1999_tagged_2.xul

Author:
Mona Zhu <devnull@localhost>
Date:
2011-01-19 17:09:20+13:00
Desc:
Changed import locations
Permanent Source URI:
http://models.cellml.org/workspace/leloup_gonze_goldbeter_1999/rawfile/bfaac0e80b23726ffe05b02f98b3d1d01a2ee3b7/leloup_1999_tagged_2.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()">

<script>
<![CDATA[
window.model_entities =
  {

			
	M: {
		id: "M",
		y: "M/M",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#99cc00",
		linestyle: "none"
	},

	FC: {
		id: "FC",
		y: "FC/FC",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ccff66",
		linestyle: "none"
	},

	FN: {
		id: "FN",
		y: "FN/FN",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ffff00",
		linestyle: "none"
	},


	Ft: {
		id: "Ft",
		y: "FC/Ft",
		x: "environment/time",
		graph: "Graph window: circadian oscillations in drosophila",
		colour: "#ff9900",
		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>
		<line fill="none" stroke="#010101" x1="271.234" y1="275.955" x2="219.652" y2="275.955"/>
		<polygon fill="#010101" points="268.424,279.659 269.996,275.955 268.424,272.252 277.203,275.955 		"/>
	</g>
</g>
<g id="FC" transform="translate(189.8706,479.2627)">
	
		<radialGradient id="FC_path1_1_" cx="-456.4072" cy="174.6572" r="16.186" gradientTransform="matrix(2.4929 0 0 -0.6358 1144.0138 -91.5827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="FC_path1" fill="url(#FC_path1_1_)" stroke="#010101" d="M45.844-202.63c0,5.786-17.738,10.478-39.607,10.478
		c-21.875,0-39.607-4.688-39.607-10.478s17.732-10.477,39.607-10.477C28.104-213.105,45.844-208.417,45.844-202.63z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M-23.562-200.479c-0.229,0.109-0.74,0.28-1.391,0.28c-1.459,0-2.408-0.99-2.408-2.479
			c0-1.488,1.02-2.578,2.6-2.578c0.52,0,0.979,0.13,1.221,0.26l-0.201,0.671c-0.209-0.11-0.539-0.23-1.02-0.23
			c-1.109,0-1.709,0.83-1.709,1.84c0,1.119,0.721,1.81,1.68,1.81c0.5,0,0.828-0.12,1.078-0.229L-23.562-200.479z"/>
		<path fill="#010101" d="M-22.031-205.146l1.051,2.857c0.119,0.319,0.24,0.699,0.318,0.989h0.021c0.09-0.29,0.189-0.66,0.311-1.01
			l0.959-2.838h0.93l-1.32,3.447c-0.629,1.658-1.059,2.509-1.656,3.038c-0.441,0.369-0.861,0.521-1.08,0.561l-0.221-0.74
			c0.221-0.06,0.51-0.199,0.77-0.43c0.24-0.189,0.531-0.529,0.74-0.979c0.041-0.09,0.068-0.148,0.068-0.21
			c0-0.05-0.02-0.119-0.068-0.22l-1.779-4.467L-22.031-205.146L-22.031-205.146z"/>
		<path fill="#010101" d="M-16.58-206.307v1.16h1.258v0.669h-1.258v2.607c0,0.602,0.17,0.939,0.658,0.939
			c0.238,0,0.381-0.02,0.51-0.06l0.041,0.67c-0.17,0.06-0.439,0.12-0.779,0.12c-0.41,0-0.74-0.142-0.949-0.37
			c-0.24-0.271-0.34-0.699-0.34-1.271v-2.639h-0.75v-0.669h0.75v-0.891L-16.58-206.307z"/>
		<path fill="#010101" d="M-12.421-200.199c-1.299,0-2.318-0.96-2.318-2.489c0-1.619,1.068-2.568,2.398-2.568
			c1.391,0,2.328,1.01,2.328,2.479c0,1.799-1.25,2.579-2.396,2.579L-12.421-200.199L-12.421-200.199z M-12.392-200.859
			c0.84,0,1.469-0.789,1.469-1.89c0-0.818-0.408-1.85-1.447-1.85c-1.029,0-1.48,0.96-1.48,1.88c0,1.06,0.602,1.858,1.449,1.858
			L-12.392-200.859L-12.392-200.859z"/>
		<path fill="#010101" d="M-8.9-203.567c0-0.62-0.01-1.12-0.039-1.579h0.789l0.051,0.829h0.02c0.35-0.601,0.93-0.939,1.709-0.939
			c1.18,0,2.059,0.989,2.059,2.459c0,1.738-1.068,2.6-2.199,2.6c-0.646,0-1.197-0.28-1.486-0.761h-0.021v2.628H-8.9V-203.567
			L-8.9-203.567z M-8.021-202.278c0,0.12,0.01,0.25,0.039,0.358c0.15,0.61,0.689,1.029,1.311,1.029c0.93,0,1.471-0.759,1.471-1.868
			c0-0.97-0.5-1.8-1.432-1.8c-0.6,0-1.17,0.42-1.34,1.08c-0.02,0.12-0.049,0.25-0.049,0.358V-202.278L-8.021-202.278z"/>
		<path fill="#010101" d="M-3.21-207.405h0.881v7.096H-3.21V-207.405z"/>
		<path fill="#010101" d="M2.538-201.469c0,0.42,0.021,0.829,0.068,1.159H1.817l-0.08-0.609H1.709
			c-0.262,0.38-0.791,0.721-1.48,0.721c-0.979,0-1.479-0.69-1.479-1.391c0-1.169,1.039-1.809,2.908-1.799v-0.101
			c0-0.399-0.109-1.129-1.1-1.119c-0.459,0-0.93,0.13-1.27,0.359l-0.199-0.59c0.398-0.25,0.988-0.42,1.6-0.42
			c1.488,0,1.848,1.01,1.848,1.979V-201.469L2.538-201.469z M1.678-202.778c-0.959-0.021-2.049,0.149-2.049,1.09
			c0,0.579,0.381,0.839,0.818,0.839c0.641,0,1.051-0.399,1.189-0.81c0.029-0.091,0.041-0.189,0.041-0.279V-202.778L1.678-202.778z"
			/>
		<path fill="#010101" d="M3.829-201.199c0.271,0.159,0.73,0.34,1.17,0.34c0.631,0,0.93-0.311,0.93-0.721
			c0-0.42-0.25-0.648-0.891-0.89c-0.879-0.319-1.287-0.789-1.287-1.369c0-0.778,0.639-1.419,1.668-1.419c0.488,0,0.92,0.13,1.18,0.3
			l-0.209,0.63c-0.189-0.109-0.541-0.279-0.99-0.279c-0.52,0-0.799,0.3-0.799,0.66c0,0.408,0.279,0.59,0.908,0.828
			c0.83,0.311,1.27,0.729,1.27,1.46c0,0.859-0.67,1.46-1.799,1.46c-0.529,0-1.02-0.142-1.359-0.341L3.829-201.199z"/>
		<path fill="#010101" d="M7.909-203.838c0-0.51-0.02-0.909-0.041-1.309h0.771l0.041,0.779h0.029
			c0.27-0.461,0.719-0.891,1.527-0.891c0.65,0,1.15,0.399,1.359,0.97h0.02c0.15-0.279,0.352-0.479,0.553-0.63
			c0.289-0.22,0.6-0.34,1.059-0.34c0.65,0,1.6,0.42,1.6,2.1v2.849h-0.859v-2.738c0-0.938-0.35-1.489-1.049-1.489
			c-0.512,0-0.891,0.37-1.051,0.789c-0.039,0.131-0.068,0.29-0.068,0.44v2.998h-0.861v-2.898c0-0.778-0.34-1.329-1.008-1.329
			c-0.541,0-0.951,0.439-1.09,0.88c-0.051,0.131-0.07,0.279-0.07,0.431v2.918H7.911v-3.529H7.909z"/>
		<path fill="#010101" d="M16.67-206.035c-0.33,0-0.553-0.261-0.553-0.57c0-0.311,0.23-0.561,0.57-0.561s0.561,0.25,0.561,0.561
			s-0.221,0.57-0.568,0.57H16.67z M16.25-200.31v-4.837h0.879v4.837H16.25z"/>
		<path fill="#010101" d="M22.036-200.479c-0.229,0.109-0.738,0.28-1.389,0.28c-1.459,0-2.408-0.99-2.408-2.479
			c0-1.488,1.021-2.578,2.6-2.578c0.52,0,0.979,0.13,1.219,0.26l-0.199,0.671c-0.209-0.11-0.539-0.23-1.02-0.23
			c-1.109,0-1.709,0.83-1.709,1.84c0,1.119,0.719,1.81,1.68,1.81c0.5,0,0.828-0.12,1.078-0.229L22.036-200.479z"/>
		<path fill="#010101" d="M25.209-207.046h3.629v0.729h-2.75v2.238h2.539v0.721h-2.539v3.048h-0.879V-207.046L25.209-207.046z"/>
		<path fill="#010101" d="M30.09-206.946c0.438-0.091,1.078-0.149,1.668-0.149c0.93,0,1.539,0.18,1.959,0.56
			c0.33,0.29,0.531,0.75,0.531,1.279c0,0.88-0.57,1.469-1.271,1.709v0.03c0.51,0.18,0.82,0.659,0.99,1.359
			c0.219,0.938,0.379,1.589,0.508,1.849h-0.896c-0.111-0.189-0.262-0.771-0.439-1.609c-0.201-0.93-0.57-1.278-1.359-1.309h-0.82
			v2.918H30.09V-206.946L30.09-206.946z M30.959-203.888h0.889c0.93,0,1.52-0.51,1.52-1.279c0-0.869-0.629-1.249-1.549-1.249
			c-0.42,0-0.709,0.04-0.859,0.08V-203.888L30.959-203.888z"/>
		<path fill="#010101" d="M41.057-199.32c-0.91-0.239-1.799-0.511-2.58-0.779c-0.148-0.05-0.279-0.1-0.408-0.1
			c-1.609-0.062-2.969-1.239-2.969-3.408c0-2.159,1.309-3.549,3.129-3.549c1.838,0,3.027,1.42,3.027,3.407
			c0,1.729-0.799,2.829-1.918,3.229v0.04c0.668,0.17,1.396,0.33,1.969,0.43L41.057-199.32z M38.178-200.909
			c1.379,0,2.158-1.271,2.158-2.8c0-1.349-0.699-2.737-2.129-2.737c-1.471,0-2.188,1.358-2.188,2.817
			c0,1.431,0.779,2.719,2.148,2.719L38.178-200.909L38.178-200.909z"/>
	</g>
</g>
<path id="path4167"  fill="#010101" d="M-62.793-656.142"/>
<g enable-background="new    ">
	<path fill="#010101" d="M290.471,323.927h3.627v0.729h-2.746v2.239h2.537v0.72h-2.537v3.048h-0.881V323.927z"/>
	<path fill="#010101" d="M295.482,324.937c-0.33,0-0.553-0.26-0.553-0.57c0-0.31,0.23-0.56,0.57-0.56s0.561,0.25,0.561,0.56
		c0,0.312-0.221,0.57-0.568,0.57H295.482z M295.062,330.663v-4.837h0.879v4.837H295.062z"/>
	<path fill="#010101" d="M301.539,329.953c0,1.12-0.229,1.789-0.689,2.22c-0.479,0.43-1.158,0.579-1.77,0.579
		c-0.578,0-1.219-0.14-1.607-0.398l0.219-0.68c0.32,0.21,0.82,0.39,1.42,0.39c0.898,0,1.559-0.47,1.559-1.699v-0.529h-0.02
		c-0.26,0.449-0.789,0.811-1.539,0.811c-1.199,0-2.059-1.021-2.059-2.369c0-1.639,1.068-2.559,2.188-2.559
		c0.84,0,1.291,0.43,1.51,0.828h0.021l0.029-0.719h0.779c-0.029,0.34-0.041,0.729-0.041,1.319V329.953L301.539,329.953z
		 M300.66,327.725c0-0.141-0.01-0.271-0.051-0.391c-0.16-0.52-0.578-0.938-1.229-0.938c-0.84,0-1.439,0.71-1.439,1.839
		c0,0.938,0.49,1.739,1.43,1.739c0.549,0,1.039-0.34,1.219-0.91c0.051-0.141,0.07-0.311,0.07-0.47V327.725L300.66,327.725z"/>
	<path fill="#010101" d="M304.83,330.663v-0.54l0.689-0.669c1.658-1.579,2.42-2.419,2.42-3.397c0-0.66-0.311-1.271-1.279-1.271
		c-0.59,0-1.08,0.3-1.381,0.55L305,324.718c0.439-0.37,1.09-0.66,1.84-0.66c1.391,0,1.979,0.96,1.979,1.889
		c0,1.2-0.869,2.169-2.238,3.488l-0.51,0.479v0.021h2.908v0.729H304.83L304.83,330.663z"/>
	<path fill="#010101" d="M310.611,330.773c-0.34,0-0.58-0.271-0.58-0.63c0-0.36,0.25-0.63,0.6-0.63c0.352,0,0.59,0.26,0.59,0.63
		c0,0.358-0.238,0.63-0.6,0.63H310.611z"/>
	<path fill="#010101" d="M313.721,330.663v-6.735h0.959l2.148,3.407c0.49,0.789,0.891,1.489,1.199,2.188l0.029-0.01
		c-0.078-0.899-0.1-1.72-0.1-2.76v-2.827h0.82v6.735h-0.879l-2.141-3.418c-0.471-0.75-0.92-1.52-1.25-2.249l-0.029,0.01
		c0.051,0.851,0.061,1.659,0.061,2.778v2.879L313.721,330.663L313.721,330.663z"/>
	<path fill="#010101" d="M320.76,328.395c0.021,1.188,0.771,1.679,1.648,1.679c0.631,0,1.02-0.109,1.34-0.239l0.16,0.619
		c-0.311,0.141-0.85,0.311-1.619,0.311c-1.479,0-2.379-0.989-2.379-2.438c0-1.469,0.869-2.618,2.279-2.618
		c1.578,0,1.988,1.39,1.988,2.278c0,0.18-0.01,0.32-0.029,0.42L320.76,328.395z M323.33,327.765c0.01-0.551-0.23-1.43-1.209-1.43
		c-0.9,0-1.279,0.819-1.35,1.43H323.33z"/>
	<path fill="#010101" d="M329.318,329.344c0,0.5,0.012,0.938,0.041,1.318h-0.779l-0.051-0.79h-0.021c-0.219,0.392-0.738,0.9-1.6,0.9
		c-0.76,0-1.668-0.432-1.668-2.119v-2.828h0.879v2.668c0,0.92,0.291,1.549,1.08,1.549c0.59,0,1-0.408,1.158-0.81
		c0.051-0.119,0.08-0.279,0.08-0.449v-2.958h0.881V329.344L329.318,329.344z"/>
	<path fill="#010101" d="M330.789,327.335c0-0.568-0.01-1.06-0.039-1.509h0.771l0.039,0.949h0.029c0.221-0.649,0.76-1.06,1.35-1.06
		c0.09,0,0.158,0.01,0.238,0.029v0.819c-0.1-0.01-0.188-0.021-0.309-0.021c-0.621,0-1.061,0.471-1.18,1.12
		c-0.021,0.13-0.031,0.271-0.031,0.42v2.578h-0.879L330.789,327.335z"/>
	<path fill="#010101" d="M335.959,330.773c-1.299,0-2.318-0.96-2.318-2.489c0-1.619,1.068-2.567,2.398-2.567
		c1.389,0,2.328,1.01,2.328,2.479c0,1.799-1.25,2.579-2.398,2.579L335.959,330.773L335.959,330.773z M335.99,330.113
		c0.84,0,1.469-0.789,1.469-1.889c0-0.819-0.41-1.851-1.449-1.851c-1.029,0-1.479,0.96-1.479,1.881c0,1.059,0.6,1.857,1.449,1.857
		L335.99,330.113L335.99,330.113z"/>
	<path fill="#010101" d="M339.361,329.773c0.27,0.16,0.729,0.34,1.168,0.34c0.631,0,0.93-0.31,0.93-0.72
		c0-0.42-0.25-0.649-0.889-0.891c-0.879-0.318-1.289-0.788-1.289-1.368c0-0.779,0.639-1.419,1.668-1.419c0.49,0,0.92,0.13,1.18,0.3
		l-0.209,0.63c-0.189-0.11-0.541-0.28-0.99-0.28c-0.52,0-0.799,0.3-0.799,0.66c0,0.409,0.279,0.59,0.908,0.829
		c0.83,0.31,1.271,0.729,1.271,1.459c0,0.859-0.67,1.46-1.801,1.46c-0.529,0-1.02-0.142-1.357-0.34L339.361,329.773z"/>
	<path fill="#010101" d="M343.441,327.405c0-0.62-0.012-1.12-0.041-1.579h0.789l0.051,0.829h0.02c0.352-0.6,0.93-0.939,1.709-0.939
		c1.18,0,2.061,0.989,2.061,2.459c0,1.738-1.07,2.6-2.199,2.6c-0.65,0-1.199-0.28-1.49-0.76h-0.02v2.628h-0.879V327.405
		L343.441,327.405z M344.32,328.694c0,0.12,0.01,0.25,0.039,0.359c0.148,0.609,0.689,1.028,1.311,1.028
		c0.93,0,1.469-0.759,1.469-1.868c0-0.97-0.5-1.8-1.43-1.8c-0.6,0-1.168,0.42-1.338,1.08c-0.021,0.12-0.051,0.25-0.051,0.359
		V328.694L344.32,328.694z"/>
	<path fill="#010101" d="M351.109,330.773c-1.299,0-2.318-0.96-2.318-2.489c0-1.619,1.07-2.567,2.398-2.567
		c1.389,0,2.33,1.01,2.33,2.479c0,1.799-1.25,2.579-2.4,2.579L351.109,330.773L351.109,330.773z M351.139,330.113
		c0.84,0,1.471-0.789,1.471-1.889c0-0.819-0.41-1.851-1.449-1.851c-1.029,0-1.48,0.96-1.48,1.881c0,1.059,0.602,1.857,1.449,1.857
		L351.139,330.113L351.139,330.113z"/>
	<path fill="#010101" d="M354.639,327.335c0-0.568-0.01-1.06-0.037-1.509h0.77l0.039,0.949h0.029c0.221-0.649,0.76-1.06,1.35-1.06
		c0.09,0,0.16,0.01,0.24,0.029v0.819c-0.102-0.01-0.189-0.021-0.311-0.021c-0.619,0-1.061,0.471-1.18,1.12
		c-0.02,0.13-0.031,0.271-0.031,0.42v2.578h-0.879L354.639,327.335z"/>
	<path fill="#010101" d="M361.248,329.504c0,0.421,0.021,0.829,0.068,1.159h-0.789l-0.08-0.608h-0.029
		c-0.26,0.38-0.789,0.72-1.479,0.72c-0.979,0-1.479-0.69-1.479-1.391c0-1.169,1.039-1.809,2.908-1.799v-0.101
		c0-0.399-0.109-1.129-1.1-1.119c-0.459,0-0.93,0.13-1.27,0.36l-0.201-0.591c0.4-0.25,0.99-0.42,1.602-0.42
		c1.486,0,1.848,1.011,1.848,1.979V329.504L361.248,329.504z M360.389,328.194c-0.961-0.02-2.049,0.15-2.049,1.09
		c0,0.579,0.379,0.839,0.818,0.839c0.641,0,1.049-0.398,1.189-0.81c0.029-0.09,0.039-0.189,0.039-0.279v-0.84H360.389z"/>
</g>
<path id="path4101"  fill="#C2DCF3" stroke="#2A8FCE" stroke-width="4.6459" d="
	M243.654,115.234c0,42.503-51.01,76.959-113.938,76.959c-62.924,0-113.935-34.456-113.935-76.959l0,0
	c0-42.504,51.011-76.96,113.935-76.96C192.645,38.274,243.654,72.73,243.654,115.234z"/>
<g id="FN">
	<g id="g4103" transform="matrix(1.147869,0.000000,0.000000,1.063231,146.8529,324.9538)">
		
			<radialGradient id="FN_path1_1_" cx="-327.6617" cy="152.2494" r="16.186" gradientTransform="matrix(2.0993 0 0 -0.7187 730.7823 -88.9156)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#ADD252"/>
			<stop  offset="0.4082" style="stop-color:#ACD152"/>
			<stop  offset="0.5552" style="stop-color:#A7D053"/>
			<stop  offset="0.66" style="stop-color:#A0CD52"/>
			<stop  offset="0.7448" style="stop-color:#94C951"/>
			<stop  offset="0.8174" style="stop-color:#85C551"/>
			<stop  offset="0.8817" style="stop-color:#75C151"/>
			<stop  offset="0.9398" style="stop-color:#65BD53"/>
			<stop  offset="0.9915" style="stop-color:#59BA53"/>
			<stop  offset="1" style="stop-color:#57BA53"/>
		</radialGradient>
		<path id="FN_path1" fill="url(#FN_path1_1_)" stroke="#010101" d="M68.223-198.345c0,5.786-11.337,10.478-25.315,10.478
			c-13.98,0-25.314-4.69-25.314-10.478c0-5.787,11.334-10.475,25.314-10.475C56.886-208.819,68.223-204.131,68.223-198.345z"/>
	</g>
	<g enable-background="new    ">
		<path fill="#010101" d="M171.701,113.476c0-0.51-0.01-0.909-0.041-1.31h0.779l0.051,0.789h0.02c0.24-0.448,0.801-0.898,1.6-0.898
			c0.67,0,1.709,0.398,1.709,2.059v2.889h-0.879v-2.787c0-0.78-0.291-1.439-1.119-1.439c-0.57,0-1.02,0.409-1.18,0.899
			c-0.041,0.109-0.061,0.27-0.061,0.409v2.918h-0.879V113.476L171.701,113.476z"/>
		<path fill="#010101" d="M181.297,115.685c0,0.5,0.01,0.938,0.039,1.318h-0.779l-0.049-0.79h-0.021c-0.219,0.392-0.738,0.9-1.6,0.9
			c-0.76,0-1.668-0.431-1.668-2.119v-2.828h0.879v2.668c0,0.92,0.291,1.55,1.08,1.55c0.59,0,1-0.409,1.158-0.811
			c0.051-0.119,0.08-0.279,0.08-0.449v-2.958h0.881V115.685L181.297,115.685z"/>
		<path fill="#010101" d="M186.207,116.834c-0.229,0.11-0.74,0.28-1.389,0.28c-1.461,0-2.41-0.99-2.41-2.479s1.02-2.578,2.6-2.578
			c0.521,0,0.98,0.13,1.221,0.26l-0.199,0.67c-0.211-0.11-0.541-0.229-1.021-0.229c-1.107,0-1.709,0.829-1.709,1.84
			c0,1.119,0.721,1.809,1.68,1.809c0.5,0,0.828-0.12,1.078-0.229L186.207,116.834z"/>
		<path fill="#010101" d="M187.24,109.908h0.879v7.096h-0.879V109.908z"/>
		<path fill="#010101" d="M190.08,114.735c0.02,1.189,0.77,1.679,1.648,1.679c0.631,0,1.02-0.108,1.34-0.238l0.16,0.618
			c-0.312,0.141-0.852,0.311-1.619,0.311c-1.48,0-2.379-0.989-2.379-2.438c0-1.469,0.867-2.618,2.277-2.618
			c1.578,0,1.988,1.39,1.988,2.278c0,0.18-0.01,0.32-0.029,0.42L190.08,114.735z M192.648,114.105c0.01-0.55-0.23-1.429-1.209-1.429
			c-0.9,0-1.279,0.818-1.352,1.429H192.648z"/>
		<path fill="#010101" d="M197.996,115.845c0,0.42,0.02,0.829,0.07,1.158h-0.789l-0.08-0.608h-0.031
			c-0.26,0.38-0.789,0.72-1.479,0.72c-0.979,0-1.479-0.689-1.479-1.39c0-1.169,1.039-1.81,2.908-1.799v-0.102
			c0-0.398-0.109-1.129-1.1-1.119c-0.461,0-0.93,0.13-1.27,0.36l-0.201-0.59c0.4-0.25,0.99-0.42,1.6-0.42
			c1.49,0,1.85,1.01,1.85,1.979V115.845L197.996,115.845z M197.137,114.535c-0.959-0.02-2.049,0.15-2.049,1.09
			c0,0.579,0.379,0.839,0.82,0.839c0.639,0,1.049-0.398,1.188-0.81c0.031-0.09,0.041-0.188,0.041-0.279V114.535L197.137,114.535z"/>
		<path fill="#010101" d="M199.418,113.676c0-0.569-0.01-1.061-0.039-1.51h0.77l0.041,0.949h0.027
			c0.223-0.648,0.762-1.06,1.352-1.06c0.09,0,0.16,0.01,0.238,0.029v0.819c-0.1-0.01-0.188-0.021-0.311-0.021
			c-0.619,0-1.059,0.47-1.178,1.119c-0.021,0.131-0.031,0.271-0.031,0.421v2.577h-0.879L199.418,113.676z"/>
		<path fill="#010101" d="M204.82,110.268h3.627v0.729h-2.748v2.239h2.539v0.72h-2.539v3.048h-0.879V110.268L204.82,110.268z"/>
		<path fill="#010101" d="M209.699,110.367c0.439-0.09,1.08-0.148,1.67-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.57,1.469-1.271,1.709v0.029c0.51,0.181,0.82,0.659,0.99,1.359
			c0.221,0.939,0.379,1.589,0.51,1.849h-0.898c-0.109-0.188-0.262-0.77-0.439-1.608c-0.199-0.93-0.57-1.279-1.359-1.31h-0.818v2.918
			h-0.869v-6.637H209.699z M210.568,113.426h0.891c0.93,0,1.52-0.511,1.52-1.279c0-0.869-0.629-1.249-1.549-1.249
			c-0.42,0-0.711,0.04-0.859,0.08v2.448H210.568z"/>
		<path fill="#010101" d="M220.664,117.993c-0.908-0.239-1.799-0.51-2.578-0.779c-0.148-0.05-0.279-0.1-0.41-0.1
			c-1.607-0.061-2.967-1.239-2.967-3.408c0-2.158,1.311-3.549,3.127-3.549c1.84,0,3.029,1.42,3.029,3.408
			c0,1.729-0.801,2.829-1.92,3.229v0.04c0.67,0.17,1.398,0.33,1.969,0.431L220.664,117.993z M217.787,116.404
			c1.381,0,2.16-1.27,2.16-2.799c0-1.349-0.699-2.738-2.129-2.738c-1.471,0-2.189,1.359-2.189,2.818c0,1.43,0.779,2.719,2.148,2.719
			H217.787L217.787,116.404z"/>
	</g>
</g>
<g enable-background="new    ">
	<path fill="#010101" d="M62.315,12.162h0.879v6.008h2.878v0.729h-3.758L62.315,12.162L62.315,12.162z"/>
	<path fill="#010101" d="M67.435,13.172c-0.33,0-0.551-0.26-0.551-0.569s0.23-0.56,0.57-0.56s0.56,0.25,0.56,0.56
		c0,0.312-0.22,0.569-0.569,0.569H67.435z M67.014,18.898v-4.837h0.88v4.837H67.014z"/>
	<path fill="#010101" d="M73.493,18.189c0,1.12-0.229,1.789-0.689,2.219c-0.479,0.431-1.158,0.58-1.769,0.58
		c-0.58,0-1.219-0.14-1.609-0.399l0.221-0.68c0.319,0.21,0.818,0.391,1.419,0.391c0.899,0,1.56-0.471,1.56-1.699V18.07h-0.02
		c-0.261,0.449-0.79,0.811-1.54,0.811c-1.199,0-2.06-1.021-2.06-2.369c0-1.639,1.069-2.56,2.188-2.56c0.84,0,1.29,0.431,1.509,0.829
		h0.02l0.03-0.719h0.779c-0.03,0.34-0.04,0.729-0.04,1.318L73.493,18.189L73.493,18.189z M72.613,15.961
		c0-0.141-0.01-0.271-0.05-0.391c-0.16-0.52-0.58-0.939-1.229-0.939c-0.839,0-1.438,0.711-1.438,1.84
		c0,0.938,0.488,1.738,1.429,1.738c0.549,0,1.039-0.34,1.219-0.91c0.05-0.14,0.07-0.31,0.07-0.47V15.961z"/>
	<path fill="#010101" d="M74.945,11.803h0.879v3.018h0.02c0.141-0.249,0.36-0.479,0.63-0.619c0.261-0.16,0.57-0.25,0.899-0.25
		c0.65,0,1.689,0.399,1.689,2.068v2.879h-0.88V16.12c0-0.79-0.29-1.438-1.118-1.438c-0.57,0-1.011,0.398-1.181,0.88
		c-0.05,0.12-0.06,0.25-0.06,0.42v2.918h-0.879V11.803z"/>
	<path fill="#010101" d="M81.513,12.901v1.16h1.26v0.669h-1.26v2.607c0,0.602,0.17,0.939,0.66,0.939c0.24,0,0.38-0.02,0.51-0.061
		l0.04,0.67c-0.17,0.061-0.439,0.121-0.779,0.121c-0.41,0-0.74-0.142-0.949-0.371c-0.24-0.27-0.34-0.698-0.34-1.27v-2.639h-0.75
		V14.06h0.75v-0.89L81.513,12.901z"/>
</g>
<g>
	<g>
		<line fill="none" x1="72.3" y1="96.123" x2="72.3" y2="22.957"/>
		<polygon fill="#F6EB16" points="68.596,93.314 72.3,94.887 76.003,93.314 72.3,102.092 		"/>
	</g>
	<g>
		<line fill="none" stroke="#EEE92E" x1="72.3" y1="96.123" x2="72.3" y2="22.957"/>
		<polygon fill="#EEE92E" points="68.596,93.314 72.3,94.887 76.003,93.314 72.3,102.092 		"/>
	</g>
</g>
<line fill="none" stroke="#ED2224" x1="113.109" y1="113.998" x2="165.984" y2="113.998"/>
<path id="path33139_2_" fill="none" stroke="#010101" d="M113.18,111.806l0.062,4.52"/>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="196.105" y1="259.623" x2="196.105" y2="131.373"/>
		<polygon fill="#010101" points="199.811,134.182 196.105,132.609 192.402,134.182 196.105,125.404 		"/>
		<polygon fill="#010101" points="192.402,256.814 196.105,258.387 199.811,256.814 196.105,265.592 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="73.644" y1="298.957" x2="73.644" y2="123.54"/>
		<polygon fill="#010101" points="69.94,296.148 73.644,297.721 77.347,296.148 73.644,304.926 		"/>
	</g>
</g>
<g id="Ft" transform="translate(-109.3141,-31.23255)">
	<g id="g4155" transform="matrix(1.147869,0.000000,0.000000,1.063231,146.8529,324.9538)">
		
			<radialGradient id="Ft_path1_1_" cx="-142.2806" cy="154.476" r="16.1858" gradientTransform="matrix(2.739 0 0 -0.7401 421.166 -54.6379)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#ADD252"/>
			<stop  offset="0.4082" style="stop-color:#ACD152"/>
			<stop  offset="0.5552" style="stop-color:#A7D053"/>
			<stop  offset="0.66" style="stop-color:#A0CD52"/>
			<stop  offset="0.7448" style="stop-color:#94C951"/>
			<stop  offset="0.8174" style="stop-color:#85C551"/>
			<stop  offset="0.8817" style="stop-color:#75C151"/>
			<stop  offset="0.9398" style="stop-color:#65BD53"/>
			<stop  offset="0.9915" style="stop-color:#59BA53"/>
			<stop  offset="1" style="stop-color:#57BA53"/>
		</radialGradient>
		<path id="Ft_path1" fill="url(#Ft_path1_1_)" stroke="#010101" d="M64.483-168.97c0,5.959-14.793,10.789-33.03,10.789
			c-18.241,0-33.027-4.828-33.027-10.789c0-5.959,14.786-10.787,33.027-10.787C49.69-179.755,64.483-174.927,64.483-168.97z"/>
	</g>
	<g enable-background="new    ">
		<path fill="#010101" d="M150.8,147.731v-4.168h-0.669v-0.669h0.669v-0.23c0-0.68,0.159-1.299,0.569-1.688
			c0.33-0.32,0.771-0.45,1.169-0.45c0.32,0,0.58,0.069,0.75,0.14l-0.109,0.68c-0.141-0.06-0.311-0.108-0.57-0.108
			c-0.74,0-0.939,0.659-0.939,1.397v0.262h1.17v0.669h-1.16v4.168H150.8V147.731z"/>
		<path fill="#010101" d="M153.65,144.402c0-0.569-0.01-1.061-0.04-1.509h0.771l0.039,0.948h0.03c0.22-0.648,0.76-1.06,1.35-1.06
			c0.09,0,0.159,0.01,0.239,0.03v0.818c-0.1-0.01-0.189-0.021-0.31-0.021c-0.62,0-1.061,0.47-1.179,1.12
			c-0.021,0.13-0.03,0.27-0.03,0.42v2.578h-0.879L153.65,144.402z"/>
		<path fill="#010101" d="M160.098,146.991h-0.021c-0.26,0.47-0.8,0.85-1.579,0.85c-1.129,0-2.049-0.97-2.049-2.448
			c0-1.81,1.169-2.608,2.188-2.608c0.75,0,1.25,0.37,1.488,0.84h0.021l0.03-0.729h0.839c-0.03,0.398-0.04,0.818-0.04,1.329v5.485
			h-0.879L160.098,146.991L160.098,146.991z M160.098,144.852c0-0.13-0.011-0.261-0.04-0.369c-0.141-0.54-0.601-1-1.259-1
			c-0.91,0-1.459,0.77-1.459,1.858c0,0.971,0.459,1.8,1.429,1.8c0.568,0,1.059-0.351,1.259-0.959c0.04-0.12,0.07-0.29,0.07-0.421
			V144.852z"/>
		<path fill="#010101" d="M165.609,141.734v1.16h1.259v0.669h-1.259v2.607c0,0.602,0.17,0.939,0.66,0.939
			c0.24,0,0.38-0.021,0.51-0.061l0.04,0.671c-0.17,0.06-0.439,0.119-0.78,0.119c-0.409,0-0.739-0.141-0.948-0.369
			c-0.24-0.271-0.341-0.699-0.341-1.271v-2.639h-0.75v-0.669h0.75v-0.891L165.609,141.734z"/>
		<path fill="#010101" d="M167.869,144.402c0-0.569-0.01-1.061-0.04-1.509h0.771l0.04,0.948h0.029c0.221-0.648,0.761-1.06,1.35-1.06
			c0.09,0,0.16,0.01,0.24,0.03v0.818c-0.101-0.01-0.19-0.021-0.311-0.021c-0.62,0-1.059,0.47-1.179,1.12
			c-0.021,0.13-0.03,0.27-0.03,0.42v2.578h-0.879L167.869,144.402z"/>
		<path fill="#010101" d="M174.478,146.571c0,0.42,0.02,0.829,0.07,1.159h-0.79l-0.08-0.609h-0.03c-0.26,0.38-0.79,0.72-1.479,0.72
			c-0.979,0-1.479-0.689-1.479-1.39c0-1.169,1.04-1.809,2.909-1.799v-0.102c0-0.398-0.11-1.129-1.101-1.118
			c-0.459,0-0.929,0.13-1.269,0.359l-0.2-0.59c0.4-0.25,0.99-0.42,1.599-0.42c1.489,0,1.85,1.01,1.85,1.979V146.571z
			 M173.618,145.261c-0.959-0.02-2.049,0.15-2.049,1.091c0,0.579,0.379,0.839,0.819,0.839c0.64,0,1.049-0.399,1.188-0.811
			c0.03-0.09,0.04-0.188,0.04-0.278L173.618,145.261L173.618,145.261z"/>
		<path fill="#010101" d="M175.89,144.202c0-0.51-0.01-0.909-0.04-1.309h0.78l0.05,0.789h0.02c0.24-0.449,0.8-0.899,1.6-0.899
			c0.67,0,1.709,0.399,1.709,2.059v2.89h-0.88v-2.788c0-0.78-0.289-1.439-1.118-1.439c-0.57,0-1.021,0.409-1.181,0.899
			c-0.04,0.11-0.06,0.27-0.06,0.41v2.918h-0.879L175.89,144.202L175.89,144.202z"/>
		<path fill="#010101" d="M181.32,146.841c0.271,0.16,0.729,0.341,1.169,0.341c0.63,0,0.931-0.311,0.931-0.721
			c0-0.42-0.25-0.648-0.891-0.89c-0.879-0.319-1.289-0.789-1.289-1.369c0-0.779,0.641-1.419,1.669-1.419
			c0.49,0,0.919,0.13,1.179,0.3l-0.209,0.63c-0.189-0.109-0.539-0.279-0.989-0.279c-0.521,0-0.799,0.3-0.799,0.659
			c0,0.409,0.279,0.591,0.908,0.829c0.83,0.311,1.271,0.729,1.271,1.459c0,0.86-0.67,1.46-1.799,1.46
			c-0.529,0-1.02-0.141-1.359-0.34L181.32,146.841z"/>
		<path fill="#010101" d="M188.848,147.561c-0.23,0.109-0.74,0.279-1.39,0.279c-1.459,0-2.408-0.989-2.408-2.479
			c0-1.488,1.02-2.578,2.599-2.578c0.52,0,0.979,0.13,1.219,0.26l-0.2,0.67c-0.21-0.109-0.54-0.229-1.02-0.229
			c-1.109,0-1.709,0.83-1.709,1.84c0,1.119,0.719,1.809,1.679,1.809c0.5,0,0.83-0.119,1.08-0.229L188.848,147.561z"/>
		<path fill="#010101" d="M189.89,144.402c0-0.569-0.01-1.061-0.04-1.509h0.77l0.04,0.948h0.03c0.22-0.648,0.76-1.06,1.349-1.06
			c0.09,0,0.16,0.01,0.24,0.03v0.818c-0.1-0.01-0.189-0.021-0.31-0.021c-0.62,0-1.06,0.47-1.18,1.12
			c-0.02,0.13-0.029,0.27-0.029,0.42v2.578h-0.879L189.89,144.402z"/>
		<path fill="#010101" d="M193.609,142.004c-0.33,0-0.55-0.26-0.55-0.569c0-0.311,0.229-0.561,0.57-0.561
			c0.34,0,0.56,0.25,0.56,0.561s-0.22,0.569-0.57,0.569H193.609z M193.19,147.731v-4.837h0.879v4.837H193.19z"/>
		<path fill="#010101" d="M195.529,144.473c0-0.62-0.01-1.12-0.04-1.579h0.79l0.05,0.829h0.021c0.35-0.601,0.929-0.939,1.709-0.939
			c1.179,0,2.059,0.989,2.059,2.459c0,1.738-1.068,2.599-2.199,2.599c-0.648,0-1.198-0.279-1.488-0.76h-0.021v2.628h-0.879
			L195.529,144.473L195.529,144.473z M196.408,145.761c0,0.12,0.011,0.25,0.04,0.359c0.15,0.61,0.69,1.029,1.311,1.029
			c0.929,0,1.469-0.759,1.469-1.868c0-0.97-0.5-1.8-1.429-1.8c-0.601,0-1.169,0.42-1.339,1.08c-0.021,0.12-0.051,0.25-0.051,0.358
			L196.408,145.761L196.408,145.761z"/>
		<path fill="#010101" d="M202.279,141.734v1.16h1.259v0.669h-1.259v2.607c0,0.602,0.17,0.939,0.66,0.939
			c0.24,0,0.38-0.021,0.51-0.061l0.04,0.671c-0.17,0.06-0.439,0.119-0.78,0.119c-0.409,0-0.739-0.141-0.948-0.369
			c-0.24-0.271-0.341-0.699-0.341-1.271v-2.639h-0.75v-0.669h0.75v-0.891L202.279,141.734z"/>
		<path fill="#010101" d="M204.948,142.004c-0.33,0-0.55-0.26-0.55-0.569c0-0.311,0.23-0.561,0.57-0.561s0.56,0.25,0.56,0.561
			s-0.22,0.569-0.57,0.569H204.948z M204.529,147.731v-4.837h0.879v4.837H204.529z"/>
		<path fill="#010101" d="M208.838,147.841c-1.3,0-2.319-0.96-2.319-2.488c0-1.619,1.069-2.568,2.398-2.568
			c1.389,0,2.328,1.01,2.328,2.479c0,1.799-1.25,2.578-2.398,2.578L208.838,147.841L208.838,147.841z M208.867,147.181
			c0.839,0,1.47-0.789,1.47-1.89c0-0.818-0.41-1.85-1.449-1.85c-1.029,0-1.479,0.96-1.479,1.88c0,1.059,0.601,1.858,1.449,1.858
			L208.867,147.181L208.867,147.181z"/>
		<path fill="#010101" d="M212.359,144.202c0-0.51-0.01-0.909-0.04-1.309h0.78l0.05,0.789h0.021c0.239-0.449,0.8-0.899,1.599-0.899
			c0.67,0,1.709,0.399,1.709,2.059v2.89h-0.879v-2.788c0-0.78-0.29-1.439-1.119-1.439c-0.57,0-1.021,0.409-1.18,0.899
			c-0.04,0.11-0.061,0.27-0.061,0.41v2.918h-0.879L212.359,144.202L212.359,144.202z"/>
	</g>
</g>
<g id="M" transform="translate(-12.10012,479.2627)">
	
		<radialGradient id="M_path1_1_" cx="-10.3061" cy="174.6573" r="16.1863" gradientTransform="matrix(1.5933 0 0 -0.6358 102.1662 -91.5827)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#ADD252"/>
		<stop  offset="0.4082" style="stop-color:#ACD152"/>
		<stop  offset="0.5552" style="stop-color:#A7D053"/>
		<stop  offset="0.66" style="stop-color:#A0CD52"/>
		<stop  offset="0.7448" style="stop-color:#94C951"/>
		<stop  offset="0.8174" style="stop-color:#85C551"/>
		<stop  offset="0.8817" style="stop-color:#75C151"/>
		<stop  offset="0.9398" style="stop-color:#65BD53"/>
		<stop  offset="0.9915" style="stop-color:#59BA53"/>
		<stop  offset="1" style="stop-color:#57BA53"/>
	</radialGradient>
	<path id="M_path1" fill="url(#M_path1_1_)" stroke="#010101" d="M111.061-202.63c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.688-25.314-10.478s11.334-10.477,25.314-10.477C99.722-213.105,111.061-208.417,111.061-202.63z"/>
	<g enable-background="new    ">
		<path fill="#010101" d="M67.153-199.615v-4.168h-0.669v-0.67h0.669v-0.229c0-0.68,0.16-1.299,0.57-1.688
			c0.33-0.319,0.77-0.449,1.169-0.449c0.32,0,0.58,0.069,0.75,0.14l-0.11,0.68c-0.14-0.06-0.31-0.108-0.569-0.108
			c-0.74,0-0.939,0.659-0.939,1.397v0.262h1.169v0.669h-1.16v4.168h-0.879V-199.615z"/>
		<path fill="#010101" d="M70.004-202.943c0-0.569-0.011-1.061-0.04-1.51h0.77l0.04,0.949h0.03c0.22-0.648,0.76-1.06,1.349-1.06
			c0.09,0,0.16,0.01,0.24,0.03v0.818c-0.1-0.01-0.19-0.021-0.311-0.021c-0.619,0-1.06,0.47-1.179,1.12
			c-0.02,0.13-0.03,0.27-0.03,0.42v2.578h-0.879L70.004-202.943z"/>
		<path fill="#010101" d="M76.452-200.354h-0.02c-0.26,0.47-0.8,0.85-1.579,0.85c-1.129,0-2.049-0.97-2.049-2.449
			c0-1.809,1.169-2.607,2.188-2.607c0.75,0,1.25,0.37,1.489,0.84h0.021l0.029-0.729h0.839c-0.029,0.398-0.04,0.818-0.04,1.328v5.486
			h-0.879L76.452-200.354L76.452-200.354z M76.452-202.494c0-0.13-0.01-0.26-0.04-0.368c-0.14-0.54-0.6-1-1.259-1
			c-0.91,0-1.459,0.77-1.459,1.858c0,0.971,0.459,1.799,1.429,1.799c0.569,0,1.06-0.35,1.26-0.959c0.04-0.119,0.069-0.29,0.069-0.42
			V-202.494L76.452-202.494z"/>
		<path fill="#010101" d="M80.903-203.144c0-0.51-0.02-0.909-0.04-1.31h0.771l0.04,0.779h0.029c0.271-0.46,0.72-0.89,1.529-0.89
			c0.65,0,1.149,0.398,1.359,0.97h0.02c0.15-0.28,0.351-0.479,0.55-0.63c0.29-0.22,0.601-0.34,1.061-0.34
			c0.648,0,1.599,0.42,1.599,2.099v2.85h-0.859v-2.738c0-0.939-0.351-1.489-1.05-1.489c-0.51,0-0.89,0.37-1.049,0.789
			c-0.04,0.13-0.069,0.29-0.069,0.44v2.998h-0.86v-2.898c0-0.779-0.34-1.329-1.009-1.329c-0.54,0-0.95,0.439-1.089,0.879
			c-0.051,0.131-0.07,0.28-0.07,0.432v2.918h-0.86L80.903-203.144L80.903-203.144z"/>
		<path fill="#010101" d="M89.274-206.252c0.439-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.53,0.75,0.53,1.279c0,0.88-0.57,1.469-1.271,1.709v0.03c0.511,0.18,0.82,0.658,0.99,1.358
			c0.22,0.939,0.379,1.589,0.509,1.85h-0.898c-0.11-0.189-0.26-0.771-0.439-1.609c-0.199-0.93-0.569-1.279-1.358-1.309h-0.82v2.918
			h-0.869L89.274-206.252L89.274-206.252z M90.144-203.193h0.89c0.931,0,1.52-0.511,1.52-1.279c0-0.869-0.629-1.249-1.549-1.249
			c-0.42,0-0.71,0.04-0.86,0.08V-203.193L90.144-203.193z"/>
		<path fill="#010101" d="M94.653-199.615v-6.736h0.959l2.148,3.408c0.49,0.789,0.89,1.488,1.2,2.188l0.029-0.01
			c-0.08-0.899-0.1-1.719-0.1-2.759v-2.828h0.82v6.736h-0.879l-2.14-3.418c-0.47-0.75-0.919-1.521-1.249-2.249l-0.029,0.01
			c0.05,0.85,0.06,1.659,0.06,2.777v2.88L94.653-199.615L94.653-199.615z"/>
		<path fill="#010101" d="M102.323-201.734l-0.7,2.119h-0.898l2.289-6.736h1.049l2.299,6.736h-0.93l-0.719-2.119H102.323
			L102.323-201.734z M104.531-202.414l-0.669-1.938c-0.14-0.439-0.239-0.84-0.34-1.229h-0.03c-0.09,0.391-0.199,0.811-0.33,1.221
			l-0.659,1.947L104.531-202.414L104.531-202.414z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#010101" x1="150.234" y1="275.955" x2="98.652" y2="275.955"/>
		<polygon fill="#010101" points="147.424,279.659 148.996,275.955 147.424,272.252 156.203,275.955 		"/>
	</g>
</g>
</svg>
</window>