Location: Brown, Choe, Shanahan, Czeisler, 1997 @ 30f5dc28f399 / brown_1997.xul

Author:
AnandR <a.rampadarath@auckland.ac.nz>
Date:
2019-03-08 15:42:44+13:00
Desc:
Added annotations with semgen.
Permanent Source URI:
https://models.physiomeproject.org/workspace/57f/rawfile/30f5dc28f39925364536d1c11bbb3e7c56467cc4/brown_1997.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 =
  {

			
	H1: {
		id: "H1",
		y: "H1/H1",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (min)",
		colour: "#ff99cc",
		linestyle: "none"
	},

	H2: {
		id: "H2",
		y: "H2/H2",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (min)",
		colour: "#99ffcc",
		linestyle: "none"
	},

	A: {
		id: "A",
		y: "A/A",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (min)",
		colour: "#cc33ff",
		linestyle: "none"
	},


	beta_I: {
		id: "beta_I",
		y: "model_parameters/beta_I",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (min)",
		colour: "#ffcccc",
		linestyle: "none"
	},


	beta_C: {
		id: "beta_C",
		y: "model_parameters/beta_C",
		x: "environment/time",
		graph: "Traces: Clickable Elements against Time (min)",
		colour: "#ffffcc",
		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="beta_C">
	<ellipse id="beta_C_path1" fill="#F9E1D4" stroke="#E4A86F" cx="195.845" cy="473" rx="9.155" ry="13.721"/>
</g>
<circle fill="#BABAE2" stroke="#7354A3" stroke-width="4" cx="180.7" cy="47.085" r="29.135"/>
<g id="H1">
	<circle id="H1_path1" fill="#DFA6CF" stroke="#AE5DA4" stroke-width="4" cx="180.7" cy="199.715" r="70.5"/>
	<g>
		<path d="M175.665,254.583v3.382h3.91v-3.382h1.056v8.083h-1.056v-3.79h-3.91v3.79h-1.056v-8.083H175.665z"/>
		<path d="M184.364,255.854h-0.024l-1.355,0.732l-0.204-0.804l1.703-0.912h0.9v7.796h-1.02V255.854z"/>
	</g>
</g>
<g id="A">
	<circle id="A_path1" fill="#BABAE2" stroke="#7354A3" stroke-width="4" cx="180.7" cy="199.715" r="44.468"/>
	<g>
		<path d="M179.247,200.694l-0.839,2.542h-1.08l2.758-8.083h1.248l2.758,8.083h-1.115l-0.863-2.542H179.247z M181.909,199.879
			l-0.804-2.327c-0.18-0.527-0.3-1.007-0.419-1.475h-0.024c-0.12,0.468-0.24,0.972-0.408,1.463l-0.792,2.339H181.909z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#020012" x1="180.7" y1="271.333" x2="180.7" y2="319.333"/>
		<polygon fill="#020012" points="176.997,316.524 180.7,318.098 184.404,316.524 180.7,325.303 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#020012" x1="180.699" y1="449" x2="180.699" y2="497"/>
		<polygon fill="#020012" points="176.996,494.191 180.699,495.764 184.403,494.191 180.699,502.969 		"/>
	</g>
</g>
<g id="H2">
	<circle id="H2_path1" fill="#C4E6E9" stroke="#05AA83" stroke-width="4" cx="180.7" cy="389.248" r="59"/>
	<g>
		<path d="M175.665,384.688v3.382h3.91v-3.382h1.056v8.083h-1.056v-3.79h-3.91v3.79h-1.056v-8.083H175.665z"/>
		<path d="M182.073,392.771v-0.647l0.828-0.804c1.991-1.896,2.902-2.902,2.902-4.077c0-0.792-0.372-1.523-1.535-1.523
			c-0.708,0-1.295,0.359-1.655,0.659l-0.336-0.743c0.528-0.444,1.307-0.792,2.195-0.792c1.679,0,2.387,1.151,2.387,2.267
			c0,1.439-1.043,2.604-2.687,4.186l-0.612,0.576v0.023h3.49v0.876H182.073z"/>
	</g>
</g>
<g>
	<line fill="none" stroke="#000006" x1="180.7" y1="77.221" x2="180.7" y2="130.215"/>
	<line fill="none" stroke="#000006" x1="180.7" y1="129.177" x2="202.008" y2="144.927"/>
	<line fill="none" stroke="#000006" x1="180.699" y1="130.215" x2="159.392" y2="145.965"/>
</g>
<g>
	<path d="M18.446,42.062c0.467,0.3,1.139,0.528,1.859,0.528c1.067,0,1.691-0.563,1.691-1.379c0-0.743-0.432-1.187-1.523-1.595
		c-1.319-0.48-2.135-1.175-2.135-2.303c0-1.259,1.043-2.195,2.614-2.195c0.815,0,1.427,0.192,1.775,0.396l-0.288,0.852
		c-0.252-0.156-0.792-0.384-1.523-0.384c-1.103,0-1.523,0.66-1.523,1.211c0,0.755,0.492,1.127,1.607,1.559
		c1.367,0.528,2.051,1.188,2.051,2.375c0,1.247-0.912,2.338-2.819,2.338c-0.779,0-1.631-0.24-2.062-0.528L18.446,42.062z"/>
	<path d="M29.315,41.738c0,0.612,0.012,1.14,0.048,1.595h-0.936l-0.06-0.947h-0.024c-0.264,0.467-0.887,1.079-1.919,1.079
		c-0.911,0-2.003-0.516-2.003-2.542v-3.394h1.056v3.202c0,1.104,0.348,1.859,1.295,1.859c0.708,0,1.199-0.492,1.391-0.971
		c0.06-0.144,0.096-0.336,0.096-0.54v-3.55h1.056V41.738z"/>
	<path d="M31.07,39.423c0-0.744-0.024-1.343-0.048-1.895h0.936l0.06,0.995h0.024c0.419-0.708,1.115-1.115,2.062-1.115
		c1.416,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.65,3.118c-0.768,0-1.439-0.336-1.787-0.912h-0.024v3.154H31.07V39.423z
		 M32.113,40.97c0,0.156,0.012,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.151-0.611-2.147-1.727-2.147c-0.72,0-1.403,0.504-1.595,1.295c-0.036,0.132-0.072,0.288-0.072,0.42V40.97z"/>
	<path d="M37.897,39.339c0-0.684-0.012-1.271-0.048-1.811h0.923l0.048,1.151h0.036c0.264-0.78,0.912-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.744,0-1.271,0.552-1.416,1.343
		c-0.024,0.144-0.036,0.324-0.036,0.492v3.094h-1.056V39.339z"/>
	<path d="M45.839,41.942c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.116,0.156-1.523,0.432l-0.24-0.708c0.479-0.3,1.187-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V41.942z
		 M44.82,40.371c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.456,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V40.371z"/>
	<path d="M51.684,43.129c-0.276,0.132-0.887,0.336-1.667,0.336c-1.751,0-2.891-1.187-2.891-2.962c0-1.787,1.224-3.094,3.119-3.094
		c0.624,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.252-0.132-0.647-0.276-1.223-0.276c-1.332,0-2.051,0.996-2.051,2.195
		c0,1.343,0.864,2.171,2.015,2.171c0.6,0,0.996-0.144,1.295-0.276L51.684,43.129z"/>
	<path d="M52.922,34.818h1.056v3.634h0.024c0.168-0.3,0.432-0.576,0.755-0.755c0.312-0.18,0.684-0.288,1.08-0.288
		c0.779,0,2.027,0.48,2.027,2.471v3.454h-1.056v-3.334c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.211,0.48-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.056V34.818z"/>
	<path d="M60.757,35.897c0,0.36-0.252,0.648-0.671,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.264-0.66,0.66-0.66
		C60.493,35.237,60.757,35.525,60.757,35.897z M59.582,43.333v-5.805h1.056v5.805H59.582z"/>
	<path d="M66.467,41.942c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.116,0.156-1.523,0.432l-0.24-0.708c0.479-0.3,1.187-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V41.942z
		 M65.448,40.371c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.456,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V40.371z"/>
	<path d="M68.029,42.266c0.324,0.192,0.875,0.408,1.403,0.408c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.3-0.768-1.067-1.056
		c-1.055-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.003-1.703c0.587,0,1.103,0.156,1.415,0.36L71.1,38.536
		c-0.228-0.144-0.647-0.348-1.187-0.348c-0.624,0-0.959,0.36-0.959,0.792c0,0.479,0.335,0.695,1.091,0.996
		c0.995,0.372,1.523,0.875,1.523,1.739c0,1.031-0.803,1.751-2.159,1.751c-0.636,0-1.223-0.168-1.631-0.408L68.029,42.266z"/>
	<path d="M72.925,39.099c0-0.611-0.024-1.091-0.048-1.571h0.923l0.048,0.947h0.036c0.324-0.552,0.864-1.067,1.835-1.067
		c0.78,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.419-0.576,0.66-0.756c0.348-0.264,0.72-0.408,1.271-0.408
		c0.779,0,1.919,0.504,1.919,2.519v3.406h-1.032v-3.274c0-1.127-0.419-1.787-1.259-1.787c-0.611,0-1.067,0.443-1.26,0.947
		c-0.047,0.156-0.083,0.336-0.083,0.528v3.586h-1.032v-3.478c0-0.923-0.408-1.583-1.211-1.583c-0.648,0-1.14,0.527-1.308,1.055
		c-0.06,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V39.099z"/>
	<path d="M84.109,35.897c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C83.845,35.237,84.109,35.525,84.109,35.897z M82.934,43.333v-5.805h1.055v5.805H82.934z"/>
	<path d="M89.879,43.129c-0.276,0.132-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.187-2.89-2.962c0-1.787,1.223-3.094,3.118-3.094
		c0.623,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.251-0.132-0.647-0.276-1.223-0.276c-1.331,0-2.051,0.996-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.995-0.144,1.295-0.276L89.879,43.129z"/>
	<path d="M93.697,43.333V35.25h1.151l2.579,4.09c0.588,0.947,1.067,1.799,1.439,2.626l0.035-0.012
		c-0.096-1.079-0.119-2.062-0.119-3.322V35.25h0.983v8.083H98.71l-2.566-4.102c-0.563-0.9-1.104-1.823-1.499-2.699l-0.036,0.012
		c0.06,1.019,0.071,1.991,0.071,3.334v3.454H93.697z"/>
	<path d="M106.414,41.738c0,0.612,0.013,1.14,0.049,1.595h-0.936l-0.061-0.947h-0.023c-0.265,0.467-0.888,1.079-1.919,1.079
		c-0.912,0-2.003-0.516-2.003-2.542v-3.394h1.055v3.202c0,1.104,0.349,1.859,1.296,1.859c0.707,0,1.199-0.492,1.391-0.971
		c0.061-0.144,0.097-0.336,0.097-0.54v-3.55h1.055V41.738z"/>
	<path d="M112.307,43.129c-0.276,0.132-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.187-2.89-2.962c0-1.787,1.223-3.094,3.118-3.094
		c0.623,0,1.175,0.156,1.463,0.312l-0.24,0.803c-0.251-0.132-0.647-0.276-1.223-0.276c-1.331,0-2.051,0.996-2.051,2.195
		c0,1.343,0.863,2.171,2.015,2.171c0.6,0,0.995-0.144,1.295-0.276L112.307,43.129z"/>
	<path d="M113.545,34.818h1.055v8.515h-1.055V34.818z"/>
	<path d="M116.964,40.623c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.187-2.854-2.938c0-1.751,1.031-3.118,2.723-3.118
		c1.906,0,2.398,1.655,2.398,2.723c0,0.216-0.012,0.372-0.036,0.492H116.964z M120.059,39.867c0.012-0.659-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.971-1.619,1.703H120.059z"/>
	<path d="M123.564,35.897c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C123.3,35.237,123.564,35.525,123.564,35.897z M122.389,43.333v-5.805h1.055v5.805H122.389z"/>
</g>
<g>
	<path d="M18.578,198.249c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672c0.432,0.384,0.708,0.971,0.708,1.691
		c0,0.731-0.216,1.307-0.624,1.727c-0.563,0.587-1.451,0.887-2.471,0.887c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.043V198.249z
		 M19.622,202.147c0.228,0.06,0.516,0.084,0.863,0.084c1.259,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.907-1.595
		c-0.456,0-0.804,0.036-0.983,0.084V202.147z"/>
	<path d="M25.909,198.801c0,0.36-0.252,0.648-0.671,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.264-0.66,0.66-0.66
		C25.646,198.141,25.909,198.429,25.909,198.801z M24.734,206.237v-5.805h1.056v5.805H24.734z"/>
	<path d="M27.542,202.003c0-0.611-0.012-1.091-0.048-1.571h0.936l0.06,0.959h0.024c0.288-0.54,0.959-1.08,1.919-1.08
		c0.803,0,2.051,0.48,2.051,2.471v3.454h-1.056v-3.346c0-0.936-0.348-1.715-1.343-1.715c-0.684,0-1.223,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.056V202.003z"/>
	<path d="M34.79,203.526c0.024,1.427,0.923,2.015,1.991,2.015c0.755,0,1.223-0.132,1.607-0.3l0.192,0.756
		c-0.372,0.168-1.019,0.372-1.943,0.372c-1.787,0-2.854-1.187-2.854-2.938c0-1.751,1.032-3.118,2.723-3.118
		c1.907,0,2.399,1.655,2.399,2.723c0,0.216-0.012,0.372-0.036,0.492H34.79z M37.884,202.771c0.012-0.659-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.971-1.619,1.703H37.884z"/>
	<path d="M44.292,204.846c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.551,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.479-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V204.846z
		 M43.272,203.274c-1.151-0.024-2.459,0.18-2.459,1.307c0,0.696,0.456,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V203.274z"/>
	<path d="M45.998,197.722h1.056v8.515h-1.056V197.722z"/>
	<path d="M57.574,205.877c-0.468,0.18-1.403,0.444-2.495,0.444c-1.223,0-2.231-0.312-3.022-1.067
		c-0.696-0.672-1.127-1.751-1.127-3.01c0-2.411,1.667-4.174,4.378-4.174c0.935,0,1.679,0.204,2.026,0.372l-0.264,0.852
		c-0.432-0.204-0.971-0.348-1.787-0.348c-1.967,0-3.25,1.223-3.25,3.25c0,2.051,1.223,3.262,3.118,3.262
		c0.684,0,1.151-0.096,1.392-0.216v-2.411h-1.631v-0.839h2.663V205.877z"/>
	<path d="M59.126,197.722h1.055v8.515h-1.055V197.722z"/>
	<path d="M66.035,204.846c0,0.503,0.024,0.995,0.084,1.391h-0.947l-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.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V204.846z
		 M65.016,203.274c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V203.274z"/>
	<path d="M67.742,202.003c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V202.003z"/>
	<path d="M79.402,197.722v7.016c0,0.516,0.023,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036c-0.312,0.647-1.008,1.139-1.955,1.139
		c-1.403,0-2.494-1.187-2.494-2.95c-0.013-1.931,1.199-3.106,2.603-3.106c0.899,0,1.487,0.42,1.751,0.875h0.023v-3.466H79.402z
		 M78.358,202.795c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.738,0.959-1.738,2.231
		c0,1.175,0.588,2.146,1.715,2.146c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V202.795z"/>
</g>
<g>
	<path d="M18.578,387.783c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672c0.432,0.384,0.708,0.971,0.708,1.691
		c0,0.73-0.216,1.307-0.624,1.727c-0.563,0.588-1.451,0.887-2.471,0.887c-0.312,0-0.6-0.012-0.839-0.071v3.238h-1.043V387.783z
		 M19.622,391.681c0.228,0.06,0.516,0.084,0.863,0.084c1.259,0,2.027-0.624,2.027-1.715c0-1.079-0.768-1.595-1.907-1.595
		c-0.456,0-0.804,0.035-0.983,0.084V391.681z"/>
	<path d="M24.866,387.256h1.056v8.515h-1.056V387.256z"/>
	<path d="M31.775,394.379c0,0.504,0.024,0.996,0.084,1.392h-0.947l-0.084-0.731h-0.036c-0.324,0.455-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.469-0.132-1.344-1.319-1.332
		c-0.552,0-1.116,0.156-1.523,0.432l-0.24-0.707c0.479-0.3,1.187-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V394.379z
		 M30.756,392.809c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.695,0.456,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.239,0.048-0.336V392.809z"/>
	<path d="M33.338,394.703c0.324,0.191,0.875,0.408,1.403,0.408c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.3-0.768-1.067-1.057
		c-1.055-0.383-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.003-1.703c0.587,0,1.104,0.156,1.415,0.359l-0.252,0.768
		c-0.228-0.144-0.647-0.348-1.187-0.348c-0.624,0-0.959,0.36-0.959,0.792c0,0.479,0.335,0.695,1.091,0.995
		c0.996,0.372,1.523,0.876,1.523,1.739c0,1.031-0.803,1.751-2.159,1.751c-0.636,0-1.223-0.168-1.631-0.408L33.338,394.703z"/>
	<path d="M38.234,391.537c0-0.611-0.024-1.092-0.048-1.571h0.923l0.048,0.947h0.036c0.324-0.552,0.864-1.067,1.835-1.067
		c0.78,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.419-0.576,0.66-0.756c0.348-0.264,0.719-0.408,1.271-0.408
		c0.78,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.259-1.787c-0.612,0-1.067,0.443-1.259,0.947
		c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.031v-3.478c0-0.924-0.408-1.584-1.211-1.584c-0.648,0-1.14,0.527-1.308,1.056
		c-0.06,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V391.537z"/>
	<path d="M52.319,394.379c0,0.504,0.024,0.996,0.084,1.392h-0.947l-0.084-0.731h-0.036c-0.324,0.455-0.947,0.863-1.775,0.863
		c-1.175,0-1.775-0.828-1.775-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.469-0.132-1.344-1.319-1.332
		c-0.552,0-1.116,0.156-1.523,0.432l-0.24-0.707c0.479-0.3,1.187-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V394.379z
		 M51.3,392.809c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.695,0.456,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.239,0.048-0.336V392.809z"/>
</g>
<g>
	<path d="M240.112,285.215v8.083h-1.056v-8.083H240.112z"/>
	<path d="M242.021,289.064c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V289.064z"/>
	<path d="M248.788,293.298v-5.001h-0.804v-0.803h0.804v-0.276c0-0.815,0.192-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
		c0.384,0,0.695,0.084,0.899,0.168l-0.144,0.816c-0.156-0.072-0.36-0.132-0.672-0.132c-0.899,0-1.127,0.78-1.127,1.679v0.312h1.402
		v0.803h-1.402v5.001H248.788z"/>
	<path d="M257.041,291.703c0,0.612,0.013,1.14,0.049,1.595h-0.936l-0.061-0.947h-0.023c-0.265,0.467-0.888,1.079-1.919,1.079
		c-0.912,0-2.003-0.516-2.003-2.542v-3.394h1.055v3.202c0,1.104,0.349,1.859,1.296,1.859c0.707,0,1.199-0.492,1.391-0.971
		c0.061-0.144,0.097-0.336,0.097-0.54v-3.55h1.055V291.703z"/>
	<path d="M258.652,292.231c0.324,0.192,0.876,0.408,1.403,0.408c0.756,0,1.115-0.372,1.115-0.863c0-0.504-0.3-0.768-1.067-1.056
		c-1.056-0.384-1.547-0.947-1.547-1.643c0-0.936,0.768-1.703,2.003-1.703c0.588,0,1.104,0.156,1.415,0.36l-0.252,0.768
		c-0.228-0.144-0.647-0.348-1.188-0.348c-0.623,0-0.959,0.36-0.959,0.792c0,0.479,0.336,0.695,1.091,0.996
		c0.996,0.372,1.523,0.875,1.523,1.739c0,1.031-0.804,1.751-2.158,1.751c-0.636,0-1.224-0.168-1.632-0.408L258.652,292.231z"/>
	<path d="M264.724,285.862c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C264.46,285.203,264.724,285.491,264.724,285.862z M263.549,293.298v-5.805h1.055v5.805H263.549z"/>
	<path d="M271.609,290.348c0,2.146-1.499,3.082-2.891,3.082c-1.56,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
		C270.481,287.374,271.609,288.585,271.609,290.348z M267.016,290.408c0,1.271,0.72,2.231,1.751,2.231
		c1.008,0,1.763-0.947,1.763-2.255c0-0.983-0.491-2.219-1.738-2.219C267.556,288.165,267.016,289.316,267.016,290.408z"/>
	<path d="M272.944,289.064c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V289.064z"/>
	<path d="M282.256,293.298v-5.001h-0.804v-0.803h0.804v-0.276c0-0.815,0.192-1.559,0.672-2.027c0.396-0.384,0.923-0.54,1.415-0.54
		c0.384,0,0.695,0.084,0.899,0.168l-0.144,0.816c-0.156-0.072-0.36-0.132-0.672-0.132c-0.899,0-1.127,0.78-1.127,1.679v0.312h1.402
		v0.803H283.3v5.001H282.256z"/>
	<path d="M285.652,289.305c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.78,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.996c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.343
		c-0.023,0.144-0.036,0.324-0.036,0.492v3.094h-1.055V289.305z"/>
	<path d="M294.709,290.348c0,2.146-1.499,3.082-2.891,3.082c-1.56,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
		C293.581,287.374,294.709,288.585,294.709,290.348z M290.115,290.408c0,1.271,0.72,2.231,1.751,2.231
		c1.008,0,1.763-0.947,1.763-2.255c0-0.983-0.491-2.219-1.738-2.219C290.655,288.165,290.115,289.316,290.115,290.408z"/>
	<path d="M296.044,289.064c0-0.611-0.024-1.091-0.049-1.571h0.924l0.048,0.947h0.036c0.324-0.552,0.863-1.067,1.835-1.067
		c0.779,0,1.379,0.48,1.631,1.164h0.024c0.18-0.336,0.42-0.576,0.659-0.756c0.349-0.264,0.72-0.408,1.271-0.408
		c0.779,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.26-1.787c-0.611,0-1.067,0.443-1.259,0.947
		c-0.048,0.156-0.084,0.336-0.084,0.528v3.586h-1.031v-3.478c0-0.923-0.408-1.583-1.212-1.583c-0.647,0-1.139,0.527-1.307,1.055
		c-0.061,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V289.064z"/>
	<path d="M233.11,300.502v1.392h1.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.803c-0.203,0.072-0.527,0.144-0.936,0.144c-0.491,0-0.887-0.168-1.139-0.444c-0.288-0.324-0.408-0.839-0.408-1.523v-3.167
		h-0.899v-0.803h0.899v-1.08L233.11,300.502z"/>
	<path d="M235.812,299.183h1.055v3.634h0.024c0.168-0.3,0.432-0.576,0.756-0.755c0.312-0.18,0.684-0.288,1.079-0.288
		c0.779,0,2.026,0.48,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.211,0.48-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V299.183z"/>
	<path d="M243.059,304.988c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.012,0.372-0.036,0.492H243.059z M246.153,304.232c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H246.153z"/>
	<path d="M251.027,303.789c0-0.744-0.024-1.343-0.049-1.895h0.936l0.061,0.995h0.023c0.42-0.708,1.115-1.115,2.063-1.115
		c1.415,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.786-0.912h-0.024v3.154h-1.043V303.789z
		 M252.07,305.335c0,0.156,0.012,0.3,0.048,0.432c0.192,0.732,0.828,1.235,1.583,1.235c1.115,0,1.764-0.911,1.764-2.243
		c0-1.151-0.612-2.146-1.728-2.146c-0.72,0-1.403,0.503-1.595,1.295c-0.036,0.132-0.072,0.288-0.072,0.42V305.335z"/>
	<path d="M259.03,300.262c0,0.36-0.252,0.648-0.672,0.648c-0.384,0-0.636-0.288-0.636-0.648s0.265-0.66,0.66-0.66
		C258.767,299.603,259.03,299.891,259.03,300.262z M257.855,307.698v-5.805h1.055v5.805H257.855z"/>
	<path d="M260.663,303.464c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V303.464z"/>
	<path d="M267.91,304.988c0.024,1.427,0.924,2.015,1.991,2.015c0.756,0,1.224-0.132,1.607-0.3l0.191,0.756
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.012,0.372-0.036,0.492H267.91z M271.005,304.232c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.971-1.619,1.703
		H271.005z"/>
	<path d="M277.412,306.307c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V306.307z
		 M276.393,304.736c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V304.736z"/>
	<path d="M279.119,299.183h1.055v8.515h-1.055V299.183z"/>
	<path d="M289.46,306.847c0,1.343-0.275,2.147-0.827,2.663c-0.576,0.516-1.392,0.696-2.123,0.696c-0.696,0-1.464-0.168-1.931-0.48
		l0.264-0.815c0.384,0.252,0.983,0.468,1.703,0.468c1.079,0,1.871-0.564,1.871-2.039v-0.636h-0.024
		c-0.312,0.54-0.947,0.972-1.847,0.972c-1.439,0-2.471-1.223-2.471-2.831c0-1.967,1.283-3.07,2.626-3.07
		c1.008,0,1.548,0.516,1.812,0.996h0.023l0.036-0.875h0.936c-0.036,0.408-0.048,0.887-0.048,1.583V306.847z M288.404,304.184
		c0-0.18-0.012-0.336-0.06-0.468c-0.192-0.624-0.695-1.127-1.476-1.127c-1.007,0-1.727,0.852-1.727,2.195
		c0,1.14,0.587,2.087,1.715,2.087c0.659,0,1.247-0.408,1.463-1.079c0.061-0.18,0.084-0.384,0.084-0.564V304.184z"/>
	<path d="M291.203,299.183h1.055v8.515h-1.055V299.183z"/>
	<path d="M298.111,306.307c0,0.503,0.024,0.995,0.084,1.391h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.828-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.12c0-0.468-0.132-1.343-1.319-1.331
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.708c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.363V306.307z
		 M297.092,304.736c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.48,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V304.736z"/>
	<path d="M299.818,303.464c0-0.611-0.013-1.091-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.54,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.224,0.492-1.415,1.079
		c-0.048,0.132-0.072,0.312-0.072,0.492v3.49h-1.055V303.464z"/>
	<path d="M311.479,299.183v7.016c0,0.516,0.023,1.103,0.048,1.499h-0.936l-0.048-1.007h-0.036c-0.312,0.647-1.008,1.139-1.955,1.139
		c-1.403,0-2.494-1.188-2.494-2.95c-0.013-1.931,1.199-3.106,2.603-3.106c0.899,0,1.487,0.42,1.751,0.875h0.023v-3.466H311.479z
		 M310.436,304.256c0-0.132-0.012-0.312-0.048-0.444c-0.155-0.66-0.731-1.211-1.523-1.211c-1.091,0-1.738,0.959-1.738,2.231
		c0,1.175,0.588,2.146,1.715,2.146c0.708,0,1.355-0.479,1.547-1.259c0.036-0.144,0.048-0.288,0.048-0.456V304.256z"/>
</g>
<g>
	<path d="M237.719,469.28c-0.372,0.192-1.151,0.384-2.136,0.384c-2.278,0-3.981-1.439-3.981-4.102c0-2.543,1.715-4.246,4.222-4.246
		c0.995,0,1.644,0.216,1.919,0.36l-0.264,0.852c-0.384-0.192-0.947-0.336-1.619-0.336c-1.895,0-3.154,1.211-3.154,3.334
		c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.295-0.132,1.715-0.336L237.719,469.28z"/>
	<path d="M239.006,461.017h1.055v8.516h-1.055V461.017z"/>
	<path d="M242.425,466.821c0.024,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.607-0.3l0.191,0.755
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.013,0.372-0.036,0.491H242.425z M245.52,466.066c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.972-1.619,1.703
		H245.52z"/>
	<path d="M251.927,468.141c0,0.504,0.024,0.996,0.084,1.392h-0.947l-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.827-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.468-0.132-1.344-1.319-1.332
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.707c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.362V468.141z
		 M250.908,466.57c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.479,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V466.57z"/>
	<path d="M253.634,465.538c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.779,0.911-1.271,1.619-1.271
		c0.108,0,0.191,0.012,0.288,0.024v0.995c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.344
		c-0.023,0.144-0.036,0.324-0.036,0.491v3.095h-1.055V465.538z"/>
	<path d="M261.576,468.141c0,0.504,0.024,0.996,0.084,1.392h-0.947l-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.827-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.468-0.132-1.344-1.319-1.332
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.707c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.362V468.141z
		 M260.556,466.57c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.479,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V466.57z"/>
	<path d="M263.282,465.299c0-0.612-0.013-1.092-0.049-1.571h0.936l0.061,0.959h0.023c0.288-0.539,0.96-1.079,1.919-1.079
		c0.804,0,2.051,0.479,2.051,2.471v3.454h-1.055v-3.346c0-0.936-0.348-1.716-1.344-1.716c-0.684,0-1.224,0.492-1.415,1.08
		c-0.048,0.132-0.072,0.312-0.072,0.491v3.49h-1.055V465.299z"/>
	<path d="M274.08,469.328c-0.276,0.132-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.188-2.89-2.962c0-1.787,1.223-3.095,3.118-3.095
		c0.623,0,1.175,0.156,1.463,0.312l-0.24,0.804c-0.251-0.132-0.647-0.275-1.223-0.275c-1.331,0-2.051,0.995-2.051,2.194
		c0,1.344,0.863,2.171,2.015,2.171c0.6,0,0.995-0.144,1.295-0.275L274.08,469.328z"/>
	<path d="M275.833,466.821c0.024,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.607-0.3l0.191,0.755
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.012,0.372-0.036,0.491H275.833z M278.927,466.066c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.972-1.619,1.703
		H278.927z"/>
	<path d="M283.909,469.532v-5.001h-0.804v-0.804h0.804v-0.276c0-0.815,0.192-1.559,0.672-2.026c0.396-0.384,0.923-0.54,1.415-0.54
		c0.384,0,0.695,0.084,0.899,0.168l-0.144,0.815c-0.156-0.071-0.36-0.132-0.672-0.132c-0.899,0-1.127,0.779-1.127,1.68v0.312h1.402
		v0.804h-1.402v5.001H283.909z"/>
	<path d="M287.305,465.538c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.779,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.995c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.344
		c-0.023,0.144-0.036,0.324-0.036,0.491v3.095h-1.055V465.538z"/>
	<path d="M296.363,466.582c0,2.146-1.499,3.082-2.891,3.082c-1.56,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
		C295.235,463.607,296.363,464.818,296.363,466.582z M291.769,466.642c0,1.271,0.72,2.231,1.751,2.231
		c1.008,0,1.763-0.948,1.763-2.255c0-0.983-0.491-2.219-1.738-2.219C292.309,464.399,291.769,465.551,291.769,466.642z"/>
	<path d="M297.698,465.299c0-0.612-0.024-1.092-0.049-1.571h0.924l0.048,0.947h0.036c0.324-0.552,0.863-1.067,1.835-1.067
		c0.779,0,1.379,0.479,1.631,1.163h0.024c0.18-0.336,0.42-0.575,0.659-0.755c0.348-0.265,0.72-0.408,1.271-0.408
		c0.779,0,1.919,0.504,1.919,2.519v3.406h-1.031v-3.274c0-1.127-0.42-1.787-1.26-1.787c-0.611,0-1.067,0.444-1.259,0.948
		c-0.048,0.155-0.084,0.335-0.084,0.527v3.586h-1.031v-3.479c0-0.923-0.408-1.583-1.212-1.583c-0.647,0-1.139,0.528-1.307,1.056
		c-0.061,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V465.299z"/>
	<path d="M311.52,462.336v1.392h1.512v0.804h-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.804c-0.203,0.071-0.527,0.144-0.936,0.144c-0.491,0-0.887-0.168-1.139-0.443c-0.288-0.324-0.408-0.84-0.408-1.523v-3.166
		h-0.899v-0.804h0.899v-1.079L311.52,462.336z"/>
	<path d="M314.221,461.017h1.055v3.635h0.024c0.168-0.301,0.432-0.576,0.756-0.756c0.312-0.18,0.684-0.288,1.079-0.288
		c0.779,0,2.026,0.479,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.348-1.715-1.344-1.715c-0.684,0-1.211,0.479-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V461.017z"/>
	<path d="M321.468,466.821c0.024,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.607-0.3l0.191,0.755
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.013,0.372-0.036,0.491H321.468z M324.563,466.066c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.972-1.619,1.703
		H324.563z"/>
	<path d="M329.437,465.622c0-0.743-0.024-1.343-0.049-1.895h0.936l0.061,0.995h0.023c0.42-0.707,1.115-1.115,2.063-1.115
		c1.415,0,2.471,1.188,2.471,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.786-0.911h-0.024v3.154h-1.043V465.622z
		 M330.48,467.17c0,0.155,0.012,0.3,0.048,0.432c0.192,0.731,0.828,1.235,1.583,1.235c1.115,0,1.764-0.912,1.764-2.243
		c0-1.151-0.612-2.146-1.728-2.146c-0.72,0-1.403,0.504-1.595,1.295c-0.036,0.132-0.072,0.288-0.072,0.42V467.17z"/>
	<path d="M336.265,461.017h1.055v8.516h-1.055V461.017z"/>
	<path d="M343.174,468.141c0,0.504,0.025,0.996,0.084,1.392h-0.947l-0.084-0.731h-0.036c-0.324,0.456-0.947,0.863-1.775,0.863
		c-1.175,0-1.774-0.827-1.774-1.667c0-1.403,1.247-2.171,3.49-2.159v-0.119c0-0.468-0.132-1.344-1.319-1.332
		c-0.552,0-1.115,0.156-1.523,0.432l-0.24-0.707c0.48-0.3,1.188-0.504,1.919-0.504c1.775,0,2.207,1.211,2.207,2.362V468.141z
		 M342.155,466.57c-1.151-0.024-2.458,0.18-2.458,1.307c0,0.696,0.455,1.008,0.983,1.008c0.768,0,1.259-0.479,1.427-0.972
		c0.036-0.12,0.048-0.24,0.048-0.336V466.57z"/>
	<path d="M344.736,468.465c0.324,0.191,0.875,0.408,1.402,0.408c0.756,0,1.115-0.372,1.115-0.864c0-0.504-0.299-0.768-1.066-1.055
		c-1.057-0.384-1.547-0.948-1.547-1.644c0-0.936,0.768-1.703,2.002-1.703c0.588,0,1.104,0.156,1.416,0.36l-0.252,0.768
		c-0.229-0.145-0.648-0.349-1.188-0.349c-0.623,0-0.959,0.36-0.959,0.792c0,0.479,0.336,0.695,1.09,0.995
		c0.996,0.372,1.523,0.876,1.523,1.739c0,1.031-0.803,1.751-2.158,1.751c-0.635,0-1.223-0.168-1.631-0.407L344.736,468.465z"/>
	<path d="M349.633,465.299c0-0.612-0.025-1.092-0.049-1.571h0.924l0.047,0.947h0.037c0.324-0.552,0.863-1.067,1.834-1.067
		c0.779,0,1.379,0.479,1.631,1.163h0.025c0.18-0.336,0.42-0.575,0.658-0.755c0.35-0.265,0.721-0.408,1.271-0.408
		c0.779,0,1.92,0.504,1.92,2.519v3.406H356.9v-3.274c0-1.127-0.42-1.787-1.26-1.787c-0.611,0-1.068,0.444-1.26,0.948
		c-0.047,0.155-0.084,0.335-0.084,0.527v3.586h-1.031v-3.479c0-0.923-0.408-1.583-1.211-1.583c-0.648,0-1.139,0.528-1.307,1.056
		c-0.061,0.144-0.084,0.336-0.084,0.516v3.49h-1.031V465.299z"/>
	<path d="M363.719,468.141c0,0.504,0.023,0.996,0.084,1.392h-0.947l-0.084-0.731h-0.037c-0.322,0.456-0.947,0.863-1.775,0.863
		c-1.174,0-1.773-0.827-1.773-1.667c0-1.403,1.246-2.171,3.49-2.159v-0.119c0-0.468-0.133-1.344-1.32-1.332
		c-0.551,0-1.115,0.156-1.523,0.432l-0.24-0.707c0.48-0.3,1.188-0.504,1.92-0.504c1.775,0,2.207,1.211,2.207,2.362V468.141z
		 M362.699,466.57c-1.152-0.024-2.459,0.18-2.459,1.307c0,0.696,0.455,1.008,0.984,1.008c0.768,0,1.258-0.479,1.426-0.972
		c0.037-0.12,0.049-0.24,0.049-0.336V466.57z"/>
	<path d="M271.058,475.417h1.043v3.646h0.024c0.371-0.647,1.043-1.056,1.979-1.056c1.451,0,2.459,1.199,2.459,2.95
		c0,2.075-1.319,3.106-2.615,3.106c-0.839,0-1.511-0.323-1.955-1.079h-0.023l-0.06,0.947h-0.9c0.024-0.396,0.049-0.983,0.049-1.499
		V475.417z M272.101,481.605c0,0.133,0.012,0.265,0.048,0.384c0.192,0.732,0.815,1.235,1.583,1.235c1.115,0,1.764-0.899,1.764-2.23
		c0-1.163-0.6-2.159-1.739-2.159c-0.708,0-1.38,0.504-1.596,1.296c-0.035,0.132-0.06,0.275-0.06,0.443V481.605z"/>
	<path d="M278.186,478.128l1.259,3.43c0.144,0.384,0.288,0.84,0.384,1.188h0.024c0.107-0.348,0.228-0.791,0.371-1.211l1.151-3.406
		h1.116l-1.584,4.138c-0.755,1.991-1.271,2.998-1.99,3.634c-0.528,0.444-1.031,0.624-1.296,0.672l-0.264-0.876
		c0.264-0.084,0.611-0.252,0.924-0.516c0.288-0.228,0.636-0.636,0.888-1.175c0.048-0.108,0.084-0.192,0.084-0.252
		c0-0.061-0.024-0.145-0.084-0.276l-2.135-5.349H278.186z"/>
	<path d="M287.268,476.736v1.392h1.512v0.804h-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.804c-0.203,0.071-0.527,0.144-0.936,0.144c-0.491,0-0.887-0.168-1.139-0.443c-0.288-0.324-0.408-0.84-0.408-1.523v-3.166
		h-0.899v-0.804h0.899v-1.079L287.268,476.736z"/>
	<path d="M289.97,475.417h1.055v3.635h0.024c0.168-0.301,0.432-0.576,0.756-0.756c0.312-0.18,0.684-0.288,1.079-0.288
		c0.779,0,2.026,0.479,2.026,2.471v3.454h-1.055v-3.334c0-0.936-0.349-1.715-1.344-1.715c-0.684,0-1.211,0.479-1.415,1.043
		c-0.06,0.156-0.072,0.312-0.072,0.504v3.502h-1.055V475.417z"/>
	<path d="M297.216,481.222c0.024,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.607-0.3l0.191,0.755
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.013,0.372-0.036,0.491H297.216z M300.311,480.467c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.972-1.619,1.703
		H300.311z"/>
	<path d="M305.185,475.417h1.055v8.516h-1.055V475.417z"/>
	<path d="M309.192,476.497c0,0.359-0.252,0.647-0.672,0.647c-0.384,0-0.636-0.288-0.636-0.647c0-0.36,0.265-0.66,0.66-0.66
		C308.928,475.837,309.192,476.125,309.192,476.497z M308.017,483.933v-5.805h1.055v5.805H308.017z"/>
	<path d="M311.233,478.128l1.14,3.25c0.191,0.54,0.348,1.02,0.468,1.499h0.036c0.132-0.479,0.3-0.959,0.491-1.499l1.128-3.25h1.103
		l-2.278,5.805h-1.008l-2.206-5.805H311.233z"/>
	<path d="M317.064,481.222c0.024,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.607-0.3l0.191,0.755
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.013,0.372-0.036,0.491H317.064z M320.159,480.467c0.012-0.66-0.276-1.703-1.463-1.703c-1.08,0-1.535,0.972-1.619,1.703
		H320.159z"/>
	<path d="M322.489,479.938c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.151h0.036c0.264-0.779,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.012,0.288,0.024v0.995c-0.108-0.024-0.216-0.024-0.36-0.024c-0.743,0-1.271,0.552-1.415,1.344
		c-0.023,0.144-0.036,0.324-0.036,0.491v3.095h-1.055V479.938z"/>
</g>
<g>
	<path d="M192.148,474.135v0.804c0,0.672,0.024,1.679,0.144,2.171h-0.983c-0.144-0.384-0.18-1.199-0.18-2.039v-5.518
		c0-1.654,0.444-2.386,0.899-2.83c0.396-0.384,0.936-0.636,1.703-0.636c1.199,0,2.111,0.84,2.111,2.087
		c0,0.924-0.528,1.607-1.08,1.871v0.06c0.912,0.181,1.775,0.948,1.775,2.279c0,1.607-1.224,2.482-2.495,2.482
		c-0.816,0-1.416-0.264-1.871-0.731H192.148z M192.148,473.091c0.264,0.444,0.863,0.96,1.691,0.96c0.959,0,1.643-0.708,1.643-1.655
		c0-1.163-0.804-1.751-1.871-1.787c-0.108,0-0.216,0-0.324,0v-0.72c0.072,0,0.144,0,0.204-0.012
		c0.912-0.072,1.367-0.779,1.367-1.535c0-0.863-0.516-1.415-1.223-1.415c-0.972,0-1.487,0.84-1.487,2.507V473.091z"/>
	<path d="M200.813,478.584c-0.217,0.111-0.671,0.224-1.244,0.224c-1.328,0-2.32-0.839-2.32-2.391c0-1.481,1-2.474,2.46-2.474
		c0.58,0,0.958,0.126,1.118,0.21l-0.154,0.496c-0.224-0.112-0.552-0.196-0.943-0.196c-1.104,0-1.838,0.706-1.838,1.943
		c0,1.16,0.664,1.894,1.803,1.894c0.377,0,0.754-0.077,0.999-0.195L200.813,478.584z"/>
</g>
<g id="beta_I">
	<ellipse id="beta_I_path1" fill="#F9E1D4" stroke="#E4A86F" cx="195.845" cy="296.977" rx="9.155" ry="13.722"/>
	<g>
		<path d="M193.341,297.9v0.804c0,0.672,0.024,1.679,0.144,2.171h-0.984c-0.144-0.384-0.18-1.199-0.18-2.039v-5.518
			c0-1.654,0.444-2.386,0.899-2.83c0.396-0.384,0.936-0.636,1.703-0.636c1.199,0,2.111,0.84,2.111,2.087
			c0,0.924-0.528,1.607-1.08,1.871v0.06c0.912,0.181,1.775,0.948,1.775,2.279c0,1.607-1.224,2.482-2.495,2.482
			c-0.816,0-1.416-0.264-1.871-0.731H193.341z M193.341,296.856c0.264,0.444,0.863,0.96,1.691,0.96c0.959,0,1.643-0.708,1.643-1.655
			c0-1.163-0.804-1.751-1.871-1.787c-0.108,0-0.216,0-0.324,0v-0.72c0.072,0,0.144,0,0.204-0.012
			c0.911-0.072,1.367-0.779,1.367-1.535c0-0.863-0.516-1.415-1.224-1.415c-0.971,0-1.487,0.84-1.487,2.507V296.856z"/>
		<path d="M199.33,297.786v4.71h-0.615v-4.71H199.33z"/>
	</g>
</g>
</svg>
</window>