Location: Wodarz, Hamer, 2007 @ 08f678e9ea1c / wodarz_2007a.xul

Author:
Catherine Lloyd <c.lloyd@auckland.ac.nz>
Date:
2010-07-13 23:17:54+12:00
Desc:
Fixed broken RDF.
Permanent Source URI:
https://models.cellml.org/workspace/wodarz_hamer_2007/rawfile/08f678e9ea1cbe5ffc05795898e005df7b23802b/wodarz_2007a.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 =
  {

			
	v: {
		id: "v",
		y: "v/v",
		x: "environment/time",
		graph: "Free virus particles (v) against Time",
		colour: "#ff9900",
		linestyle: "none"
	},

	y: {
		id: "y",
		y: "y/y",
		x: "environment/time",
		graph: "Free virus particles (v) against Time",
		colour: "#ff00cc",
		linestyle: "none"
	},

	a: {
		id: "a",
		y: "y/a",
		x: "environment/time",
		graph: "Free virus particles (v) against Time",
		colour: "#cc00ff",
		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="y">
	<ellipse id="y_path7" fill="#8DC63F" stroke="#231F20" cx="158.467" cy="77.075" rx="13.243" ry="7.973"/>
	<ellipse id="y_path6" fill="#8DC63F" stroke="#231F20" cx="166.463" cy="101.89" rx="13.243" ry="7.973"/>
	<ellipse id="y_path5" fill="#8DC63F" stroke="#231F20" cx="196.315" cy="79.999" rx="13.244" ry="7.973"/>
	<ellipse id="y_path4" fill="#8DC63F" stroke="#231F20" cx="203.614" cy="106.535" rx="13.242" ry="7.973"/>
	<ellipse id="y_path3" fill="#8DC63F" stroke="#231F20" cx="132.63" cy="96.583" rx="13.243" ry="7.973"/>
	<ellipse id="y_path2" fill="#8DC63F" stroke="#231F20" cx="147.189" cy="125.502" rx="13.244" ry="7.973"/>
	<ellipse id="y_path1" fill="#8DC63F" stroke="#231F20" cx="183.711" cy="127.1" rx="13.244" ry="7.973"/>
</g>
<g id="v">
	<ellipse id="v_path4" fill="#F15B2B" stroke="#231F20" cx="106.373" cy="210.657" rx="8.49" ry="5.11"/>
	<ellipse id="v_path3" fill="#F15B2B" stroke="#231F20" cx="124.14" cy="217.924" rx="8.489" ry="5.109"/>
	<ellipse id="v_path2" fill="#F15B2B" stroke="#231F20" cx="105.082" cy="225.193" rx="8.49" ry="5.11"/>
	<ellipse id="v_path1" fill="#F15B2B" stroke="#231F20" cx="89.091" cy="216.471" rx="8.489" ry="5.11"/>
</g>
<g>
	<g>
		<path fill="none" stroke="#231F20" d="M124.748,123.771c-38.918,26.939-38.918-93.897,4.7-71.467"/>
		<polygon fill="#231F20" points="125.257,54.313 128.349,51.739 128.645,47.726 134.757,55.034 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#020202" x1="156.89" y1="154.465" x2="135.574" y2="201.294"/>
		<polygon fill="#020202" points="159.096,158.557 156.376,155.591 152.353,155.486 159.361,149.032 		"/>
	</g>
</g>
<g>
	<path d="M173.379,54.511v-3.43l-2.567-4.654h1.201l1.139,2.231c0.299,0.611,0.551,1.104,0.803,1.667h0.025
		c0.215-0.528,0.502-1.056,0.813-1.667l1.164-2.231h1.176l-2.698,4.642v3.442H173.379z"/>
</g>
<g>
	<g>
		<line fill="none" stroke="#020202" x1="284.063" y1="106.336" x2="232.612" y2="106.336"/>
		<polygon fill="#020202" points="281.254,110.039 282.827,106.336 281.254,102.632 290.032,106.336 		"/>
	</g>
</g>
<g>
	<path d="M313.111,109.606c-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.645,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.141,3.25,3.096,3.25c0.646,0,1.295-0.132,1.715-0.336L313.111,109.606z"/>
	<path d="M314.852,107.147c0.024,1.428,0.925,2.016,1.991,2.016c0.756,0,1.225-0.132,1.607-0.3l0.19,0.755
		c-0.372,0.168-1.02,0.372-1.941,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.724-3.118c1.905,0,2.397,1.655,2.397,2.723
		c0,0.216-0.013,0.372-0.036,0.491L314.852,107.147L314.852,107.147z M317.948,106.393c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H317.948z"/>
	<path d="M320.278,101.343h1.055v8.516h-1.055V101.343z"/>
	<path d="M323.11,101.343h1.055v8.516h-1.055V101.343z"/>
	<path d="M328.521,101.895c0.636-0.107,1.392-0.18,2.219-0.18c1.5,0,2.566,0.359,3.273,1.008c0.731,0.659,1.151,1.595,1.151,2.902
		c0,1.319-0.42,2.398-1.163,3.142c-0.768,0.756-2.015,1.164-3.586,1.164c-0.756,0-1.367-0.036-1.896-0.097v-7.939H328.521z
		 M329.565,109.043c0.264,0.036,0.646,0.048,1.056,0.048c2.242,0,3.441-1.247,3.441-3.43c0.013-1.907-1.067-3.119-3.273-3.119
		c-0.54,0-0.948,0.049-1.224,0.108V109.043z"/>
	<path d="M337.113,107.147c0.023,1.428,0.924,2.016,1.99,2.016c0.757,0,1.225-0.132,1.607-0.3l0.191,0.755
		c-0.372,0.168-1.021,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.118,2.723-3.118c1.906,0,2.397,1.655,2.397,2.723
		c0,0.216-0.013,0.372-0.035,0.491L337.113,107.147L337.113,107.147z M340.208,106.393c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H340.208z"/>
	<path d="M346.615,108.467c0,0.504,0.023,0.996,0.084,1.392h-0.947l-0.084-0.731h-0.036c-0.323,0.456-0.947,0.863-1.774,0.863
		c-1.176,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.522,0.432l-0.24-0.707c0.479-0.3,1.188-0.504,1.919-0.504c1.774,0,2.207,1.211,2.207,2.362v2.17H346.615z
		 M345.594,106.896c-1.15-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.336V106.896z"/>
	<path d="M349.543,102.662v1.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.937,0.144c-0.49,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.898v-0.804h0.898v-1.079L349.543,102.662z"/>
	<path d="M352.246,101.343h1.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.025,0.479,2.025,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.055L352.246,101.343L352.246,101.343z"/>
</g>
<g>
	<g>
		<path fill="none" stroke="#231F20" d="M216.857,125.502c23.066,52.301,12.686,91.232-66.294,90.958"/>
		<polygon fill="#231F20" points="153.384,212.768 151.798,216.464 153.358,220.174 144.593,216.439 		"/>
	</g>
</g>
<g>
	<path d="M169.15,233.303l-2.65-8.084h1.141l1.259,3.982c0.336,1.091,0.636,2.074,0.863,3.021h0.023
		c0.229-0.936,0.552-1.955,0.924-3.011l1.367-3.994h1.115l-2.892,8.084L169.15,233.303L169.15,233.303z"/>
	<path d="M175.018,225.867c0,0.359-0.252,0.646-0.672,0.646c-0.385,0-0.637-0.287-0.637-0.646c0-0.36,0.266-0.66,0.66-0.66
		C174.754,225.207,175.018,225.495,175.018,225.867z M173.843,233.303v-5.805h1.056v5.805H173.843z"/>
	<path d="M176.652,229.309c0-0.684-0.013-1.271-0.049-1.811h0.924l0.048,1.15h0.036c0.264-0.778,0.911-1.271,1.619-1.271
		c0.107,0,0.191,0.013,0.288,0.024v0.994c-0.108-0.023-0.217-0.023-0.36-0.023c-0.743,0-1.271,0.552-1.415,1.344
		c-0.022,0.145-0.036,0.324-0.036,0.491v3.095h-1.055V229.309L176.652,229.309z"/>
	<path d="M185.432,231.708c0,0.61,0.013,1.14,0.049,1.595h-0.937l-0.061-0.947h-0.023c-0.265,0.469-0.888,1.08-1.919,1.08
		c-0.912,0-2.003-0.517-2.003-2.543v-3.395h1.055v3.202c0,1.104,0.35,1.858,1.297,1.858c0.707,0,1.198-0.492,1.391-0.972
		c0.061-0.146,0.097-0.336,0.097-0.54v-3.55h1.056L185.432,231.708L185.432,231.708z"/>
	<path d="M187.042,232.234c0.324,0.191,0.876,0.408,1.403,0.408c0.756,0,1.115-0.371,1.115-0.863c0-0.504-0.301-0.769-1.067-1.055
		c-1.056-0.385-1.547-0.949-1.547-1.645c0-0.936,0.768-1.703,2.003-1.703c0.588,0,1.104,0.156,1.415,0.359l-0.252,0.769
		c-0.229-0.146-0.647-0.349-1.188-0.349c-0.623,0-0.959,0.359-0.959,0.792c0,0.479,0.336,0.694,1.092,0.995
		c0.996,0.371,1.522,0.875,1.522,1.738c0,1.031-0.804,1.752-2.158,1.752c-0.636,0-1.224-0.168-1.632-0.408L187.042,232.234z"/>
	<path d="M194.518,225.314c0.504-0.084,1.164-0.155,2.003-0.155c1.032,0,1.787,0.239,2.267,0.672
		c0.434,0.384,0.708,0.972,0.708,1.69c0,0.731-0.216,1.308-0.624,1.728c-0.562,0.588-1.451,0.888-2.47,0.888
		c-0.312,0-0.602-0.013-0.84-0.072v3.238h-1.044V225.314z M195.562,229.213c0.228,0.061,0.516,0.084,0.862,0.084
		c1.261,0,2.027-0.624,2.027-1.715c0-1.079-0.768-1.596-1.907-1.596c-0.456,0-0.804,0.035-0.982,0.084V229.213z"/>
	<path d="M200.675,229.309c0-0.684-0.013-1.271-0.049-1.811h0.924l0.049,1.15h0.035c0.265-0.778,0.911-1.271,1.619-1.271
		c0.108,0,0.192,0.013,0.288,0.024v0.994c-0.107-0.023-0.216-0.023-0.359-0.023c-0.743,0-1.271,0.552-1.415,1.344
		c-0.023,0.145-0.036,0.324-0.036,0.491v3.095h-1.056V229.309L200.675,229.309z"/>
	<path d="M209.732,230.354c0,2.146-1.499,3.082-2.892,3.082c-1.56,0-2.781-1.151-2.781-2.986c0-1.932,1.282-3.07,2.878-3.07
		C208.604,227.378,209.732,228.589,209.732,230.354z M205.138,230.412c0,1.271,0.72,2.23,1.751,2.23
		c1.008,0,1.763-0.947,1.763-2.254c0-0.983-0.491-2.22-1.738-2.22C205.678,228.17,205.138,229.32,205.138,230.412z"/>
	<path d="M216.068,224.787v7.018c0,0.516,0.022,1.104,0.048,1.498h-0.936l-0.049-1.008h-0.035c-0.312,0.648-1.009,1.141-1.955,1.141
		c-1.403,0-2.494-1.188-2.494-2.951c-0.014-1.93,1.199-3.105,2.603-3.105c0.899,0,1.487,0.42,1.751,0.876h0.023v-3.467
		L216.068,224.787L216.068,224.787z M215.024,229.859c0-0.131-0.012-0.312-0.048-0.442c-0.155-0.66-0.731-1.212-1.522-1.212
		c-1.092,0-1.739,0.96-1.739,2.23c0,1.176,0.587,2.146,1.716,2.146c0.708,0,1.354-0.479,1.547-1.259
		c0.036-0.146,0.048-0.288,0.048-0.456L215.024,229.859L215.024,229.859z"/>
	<path d="M222.692,231.708c0,0.61,0.013,1.14,0.049,1.595h-0.936l-0.062-0.947h-0.022c-0.266,0.469-0.889,1.08-1.92,1.08
		c-0.911,0-2.003-0.517-2.003-2.543v-3.395h1.056v3.202c0,1.104,0.349,1.858,1.296,1.858c0.707,0,1.199-0.492,1.391-0.972
		c0.062-0.146,0.098-0.336,0.098-0.54v-3.55h1.055L222.692,231.708L222.692,231.708z"/>
	<path d="M228.584,233.1c-0.275,0.131-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.188-2.89-2.963c0-1.787,1.223-3.095,3.118-3.095
		c0.623,0,1.175,0.156,1.463,0.312l-0.24,0.805c-0.251-0.133-0.646-0.275-1.223-0.275c-1.331,0-2.052,0.995-2.052,2.194
		c0,1.344,0.863,2.171,2.016,2.171c0.6,0,0.995-0.145,1.295-0.275L228.584,233.1z"/>
	<path d="M231.25,226.105v1.393h1.513v0.804h-1.513v3.13c0,0.721,0.204,1.129,0.792,1.129c0.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.888-0.168-1.14-0.442c-0.288-0.324-0.408-0.841-0.408-1.522v-3.166
		h-0.898V227.5h0.898v-1.079L231.25,226.105z"/>
	<path d="M235.125,225.867c0,0.359-0.252,0.646-0.672,0.646c-0.384,0-0.636-0.287-0.636-0.646c0-0.36,0.265-0.66,0.66-0.66
		C234.862,225.207,235.125,225.495,235.125,225.867z M233.951,233.303v-5.805h1.055v5.805H233.951z"/>
	<path d="M242.011,230.354c0,2.146-1.499,3.082-2.892,3.082c-1.56,0-2.782-1.151-2.782-2.986c0-1.932,1.283-3.07,2.878-3.07
		C240.883,227.378,242.011,228.589,242.011,230.354z M237.417,230.412c0,1.271,0.721,2.23,1.751,2.23
		c1.008,0,1.764-0.947,1.764-2.254c0-0.983-0.491-2.22-1.738-2.22C237.958,228.17,237.417,229.32,237.417,230.412z"/>
	<path d="M243.346,229.068c0-0.611-0.014-1.092-0.05-1.57h0.937l0.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.472v3.453h-1.055v-3.346c0-0.936-0.35-1.716-1.344-1.716c-0.685,0-1.225,0.491-1.415,1.079
		c-0.049,0.133-0.072,0.312-0.072,0.492v3.489h-1.055V229.068L243.346,229.068z"/>
</g>
<g>
	<path d="M14.617,87.72c-0.372,0.192-1.151,0.384-2.135,0.384c-2.279,0-3.982-1.439-3.982-4.102c0-2.543,1.715-4.246,4.223-4.246
		c0.994,0,1.644,0.216,1.919,0.36l-0.265,0.852c-0.384-0.192-0.946-0.336-1.619-0.336c-1.895,0-3.153,1.211-3.153,3.334
		c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.295-0.132,1.715-0.336L14.617,87.72z"/>
	<path d="M16.359,85.261c0.023,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.606-0.3l0.191,0.755
		c-0.372,0.168-1.021,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.014,0.372-0.036,0.491L16.359,85.261L16.359,85.261z M19.454,84.506c0.012-0.66-0.275-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H19.454z"/>
	<path d="M21.784,79.457h1.055v8.516h-1.055V79.457z"/>
	<path d="M24.616,79.457h1.055v8.516h-1.055V79.457z"/>
	<path d="M30.027,79.985c0.504-0.084,1.164-0.156,2.003-0.156c1.032,0,1.787,0.24,2.267,0.672c0.434,0.384,0.708,0.972,0.708,1.69
		c0,0.732-0.216,1.308-0.624,1.728c-0.562,0.588-1.45,0.888-2.47,0.888c-0.312,0-0.601-0.013-0.84-0.072v3.238h-1.044V79.985z
		 M31.071,83.882c0.228,0.061,0.516,0.084,0.863,0.084c1.26,0,2.026-0.624,2.026-1.715c0-1.079-0.768-1.596-1.906-1.596
		c-0.456,0-0.805,0.036-0.983,0.084V83.882z"/>
	<path d="M36.183,83.978c0-0.684-0.014-1.271-0.05-1.811h0.925l0.048,1.151h0.036c0.264-0.779,0.911-1.271,1.619-1.271
		c0.107,0,0.19,0.012,0.287,0.024v0.995c-0.107-0.024-0.216-0.024-0.359-0.024c-0.743,0-1.271,0.552-1.415,1.344
		c-0.023,0.145-0.036,0.324-0.036,0.491v3.095h-1.055V83.978z"/>
	<path d="M45.241,85.022c0,2.146-1.499,3.082-2.891,3.082c-1.561,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
		C44.113,82.047,45.241,83.258,45.241,85.022z M40.647,85.082c0,1.271,0.72,2.231,1.751,2.231c1.008,0,1.763-0.948,1.763-2.255
		c0-0.983-0.491-2.219-1.738-2.219C41.187,82.839,40.647,83.991,40.647,85.082z"/>
	<path d="M46.576,79.457h1.055v8.516h-1.055V79.457z"/>
	<path d="M50.583,80.537c0,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
		C50.319,79.876,50.583,80.165,50.583,80.537z M49.408,87.972v-5.805h1.055v5.805H49.408z"/>
	<path d="M52.323,87.972v-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.145,0.815c-0.156-0.071-0.359-0.132-0.672-0.132c-0.898,0-1.127,0.779-1.127,1.68v0.312h1.402
		v0.804h-1.402v5.001L52.323,87.972L52.323,87.972z"/>
	<path d="M56.15,85.261c0.023,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.606-0.3l0.191,0.755
		c-0.372,0.168-1.021,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-3.118,2.723-3.118c1.906,0,2.398,1.655,2.398,2.723
		c0,0.216-0.014,0.372-0.036,0.491L56.15,85.261L56.15,85.261z M59.245,84.506c0.012-0.66-0.275-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H59.245z"/>
	<path d="M61.576,83.978c0-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.022,0.145-0.036,0.324-0.036,0.491v3.095h-1.055V83.978z"/>
	<path d="M69.516,86.581c0,0.504,0.023,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.773-0.827-1.773-1.667c0-1.403,1.247-2.171,3.49-2.159V84.16c0-0.468-0.133-1.344-1.319-1.332
		c-0.552,0-1.115,0.156-1.523,0.432l-0.239-0.707c0.479-0.3,1.188-0.504,1.919-0.504c1.774,0,2.207,1.211,2.207,2.362v2.17H69.516z
		 M68.497,85.01c-1.15-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.336V85.01z"/>
	<path d="M72.446,80.776v1.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.937,0.144c-0.49,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.898V82.17h0.898v-1.079L72.446,80.776z"/>
	<path d="M76.322,80.537c0,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.659-0.66
		C76.058,79.876,76.322,80.165,76.322,80.537z M75.147,87.972v-5.805h1.055v5.805H75.147z"/>
	<path d="M83.208,85.022c0,2.146-1.499,3.082-2.891,3.082c-1.561,0-2.782-1.151-2.782-2.986c0-1.931,1.283-3.07,2.878-3.07
		C82.081,82.047,83.208,83.258,83.208,85.022z M78.615,85.082c0,1.271,0.72,2.231,1.751,2.231c1.008,0,1.763-0.948,1.763-2.255
		c0-0.983-0.49-2.219-1.737-2.219C79.155,82.839,78.615,83.991,78.615,85.082z"/>
	<path d="M84.543,83.739c0-0.612-0.013-1.092-0.049-1.571h0.937l0.061,0.959h0.023c0.287-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.349-1.716-1.345-1.716c-0.684,0-1.224,0.492-1.415,1.08
		c-0.048,0.132-0.071,0.312-0.071,0.491v3.49h-1.056V83.739z"/>
</g>
<g>
	<path d="M84.151,174.73c-0.372,0.19-1.151,0.383-2.135,0.383c-2.279,0-3.982-1.439-3.982-4.103c0-2.543,1.715-4.245,4.222-4.245
		c0.995,0,1.645,0.217,1.919,0.36l-0.264,0.853c-0.384-0.193-0.947-0.336-1.619-0.336c-1.895,0-3.153,1.211-3.153,3.334
		c0,1.989,1.14,3.25,3.095,3.25c0.646,0,1.295-0.134,1.715-0.336L84.151,174.73z"/>
	<path d="M85.893,172.271c0.023,1.428,0.924,2.016,1.99,2.016c0.757,0,1.225-0.133,1.607-0.301l0.191,0.756
		c-0.372,0.168-1.021,0.371-1.942,0.371c-1.787,0-2.854-1.188-2.854-2.938c0-1.752,1.03-3.118,2.723-3.118
		c1.906,0,2.397,1.655,2.397,2.723c0,0.217-0.013,0.373-0.035,0.492H85.893z M88.988,171.516c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.974-1.619,1.703H88.988z"/>
	<path d="M91.318,166.467h1.055v8.516h-1.055V166.467z"/>
	<path d="M94.15,166.467h1.055v8.516H94.15V166.467z"/>
	<path d="M100.605,166.898v8.084h-1.057v-8.084H100.605z"/>
	<path d="M102.513,170.748c0-0.611-0.014-1.092-0.05-1.57h0.937l0.061,0.959h0.023c0.288-0.539,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.455h-1.055v-3.346c0-0.936-0.349-1.717-1.344-1.717c-0.685,0-1.225,0.492-1.415,1.08
		c-0.049,0.133-0.072,0.312-0.072,0.492v3.49h-1.055V170.748z"/>
	<path d="M109.281,174.982v-5.002h-0.804v-0.804h0.804V168.9c0-0.814,0.192-1.56,0.672-2.025c0.396-0.385,0.923-0.541,1.415-0.541
		c0.384,0,0.695,0.084,0.899,0.168l-0.145,0.816c-0.156-0.072-0.359-0.133-0.672-0.133c-0.899,0-1.127,0.778-1.127,1.68v0.312h1.402
		v0.804h-1.402v5.002H109.281z"/>
	<path d="M113.109,172.271c0.023,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.133,1.606-0.301l0.191,0.756
		c-0.372,0.168-1.021,0.371-1.942,0.371c-1.787,0-2.854-1.188-2.854-2.938c0-1.752,1.03-3.118,2.723-3.118
		c1.906,0,2.398,1.655,2.398,2.723c0,0.217-0.013,0.373-0.036,0.492H113.109z M116.204,171.516c0.012-0.66-0.275-1.703-1.463-1.703
		c-1.08,0-1.535,0.974-1.619,1.703H116.204z"/>
	<path d="M122.671,174.777c-0.275,0.133-0.888,0.336-1.668,0.336c-1.751,0-2.89-1.188-2.89-2.961c0-1.787,1.223-3.096,3.118-3.096
		c0.623,0,1.175,0.155,1.463,0.312l-0.239,0.803c-0.252-0.131-0.647-0.274-1.224-0.274c-1.331,0-2.051,0.996-2.051,2.194
		c0,1.345,0.862,2.17,2.015,2.17c0.6,0,0.995-0.143,1.295-0.274L122.671,174.777z"/>
	<path d="M125.335,167.785v1.393h1.513v0.803h-1.513v3.131c0,0.72,0.204,1.128,0.792,1.128c0.288,0,0.456-0.023,0.611-0.072
		l0.048,0.806c-0.203,0.069-0.527,0.143-0.936,0.143c-0.491,0-0.888-0.168-1.14-0.443c-0.288-0.324-0.407-0.84-0.407-1.523v-3.166
		h-0.899v-0.803h0.899v-1.08L125.335,167.785z"/>
	<path d="M129.212,167.547c0,0.359-0.252,0.646-0.672,0.646c-0.384,0-0.636-0.287-0.636-0.646c0-0.361,0.265-0.66,0.66-0.66
		C128.949,166.887,129.212,167.174,129.212,167.547z M128.038,174.982v-5.806h1.055v5.806H128.038z"/>
	<path d="M136.098,172.031c0,2.146-1.499,3.082-2.892,3.082c-1.56,0-2.782-1.15-2.782-2.986c0-1.93,1.283-3.07,2.879-3.07
		C134.97,169.057,136.098,170.268,136.098,172.031z M131.504,172.092c0,1.271,0.721,2.23,1.751,2.23
		c1.009,0,1.764-0.947,1.764-2.254c0-0.984-0.491-2.219-1.738-2.219C132.044,169.85,131.504,171,131.504,172.092z"/>
	<path d="M137.433,170.748c0-0.611-0.014-1.092-0.05-1.57h0.937l0.061,0.959h0.023c0.288-0.539,0.96-1.08,1.919-1.08
		c0.804,0,2.051,0.48,2.051,2.471v3.455h-1.055v-3.346c0-0.936-0.348-1.717-1.344-1.717c-0.685,0-1.225,0.492-1.415,1.08
		c-0.048,0.133-0.072,0.312-0.072,0.492v3.49h-1.055V170.748L137.433,170.748z"/>
</g>
<g id="a">
	<rect id="a_path1" x="246.212" y="81.403" fill="#F9F7F7" stroke="#231F20" width="29.708" height="19.237"/>
	<g>
		<path d="M263.29,92.526c0,0.504,0.025,0.996,0.084,1.392h-0.946l-0.085-0.731h-0.034c-0.324,0.456-0.947,0.863-1.775,0.863
			c-1.176,0-1.775-0.827-1.775-1.667c0-1.403,1.248-2.171,3.49-2.159v-0.119c0-0.468-0.131-1.344-1.317-1.332
			c-0.554,0-1.115,0.156-1.523,0.432l-0.24-0.707c0.48-0.3,1.188-0.504,1.918-0.504c1.775,0,2.207,1.211,2.207,2.362v2.17H263.29z
			 M262.27,90.956c-1.15-0.024-2.457,0.18-2.457,1.307c0,0.695,0.455,1.008,0.981,1.008c0.769,0,1.261-0.479,1.429-0.972
			c0.034-0.12,0.047-0.24,0.047-0.336V90.956z"/>
	</g>
</g>
<g>
	<path d="M123.549,11.199v8.084h-1.056v-8.084H123.549z"/>
	<path d="M125.458,15.049c0-0.612-0.013-1.092-0.049-1.571h0.937l0.061,0.959h0.023c0.287-0.539,0.96-1.079,1.919-1.079
		c0.804,0,2.051,0.479,2.051,2.471v3.454h-1.056v-3.346c0-0.936-0.349-1.716-1.344-1.716c-0.684,0-1.224,0.492-1.415,1.08
		c-0.048,0.132-0.071,0.312-0.071,0.491v3.49h-1.056V15.049z"/>
	<path d="M132.225,19.283v-5.001h-0.805v-0.804h0.805v-0.276c0-0.815,0.191-1.559,0.672-2.026c0.396-0.384,0.923-0.54,1.415-0.54
		c0.384,0,0.694,0.084,0.898,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.401
		v0.804h-1.401v5.001L132.225,19.283L132.225,19.283z"/>
	<path d="M136.053,16.572c0.023,1.428,0.924,2.016,1.99,2.016c0.756,0,1.225-0.132,1.607-0.3l0.19,0.755
		c-0.371,0.168-1.02,0.372-1.941,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.724-3.118c1.905,0,2.397,1.655,2.397,2.723
		c0,0.216-0.012,0.372-0.036,0.491L136.053,16.572L136.053,16.572z M139.148,15.817c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H139.148z"/>
	<path d="M145.616,19.079c-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.117-3.095
		c0.623,0,1.176,0.156,1.464,0.312l-0.239,0.804c-0.252-0.132-0.648-0.275-1.225-0.275c-1.33,0-2.051,0.995-2.051,2.194
		c0,1.344,0.863,2.171,2.016,2.171c0.6,0,0.994-0.144,1.295-0.275L145.616,19.079z"/>
	<path d="M148.281,12.086v1.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.937,0.144c-0.49,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.898V13.48h0.898v-1.079L148.281,12.086z"/>
	<path d="M151.497,16.572c0.024,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.607-0.3l0.19,0.755
		c-0.372,0.168-1.02,0.372-1.942,0.372c-1.786,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.491L151.497,16.572L151.497,16.572z M154.591,15.817c0.013-0.66-0.275-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H154.591z"/>
	<path d="M161.922,10.767v7.017c0,0.516,0.023,1.104,0.049,1.499h-0.937l-0.048-1.008h-0.036c-0.312,0.648-1.008,1.14-1.955,1.14
		c-1.403,0-2.494-1.188-2.494-2.95c-0.013-1.931,1.199-3.106,2.604-3.106c0.898,0,1.486,0.42,1.751,0.876h0.022v-3.467
		L161.922,10.767L161.922,10.767z M160.878,15.84c0-0.132-0.012-0.312-0.048-0.443c-0.155-0.66-0.73-1.212-1.521-1.212
		c-1.093,0-1.739,0.96-1.739,2.231c0,1.175,0.587,2.146,1.715,2.146c0.708,0,1.355-0.479,1.547-1.259
		c0.036-0.145,0.048-0.288,0.048-0.456L160.878,15.84L160.878,15.84z"/>
	<path d="M167.313,11.199v3.383h3.91v-3.383h1.055v8.084h-1.055v-3.79h-3.91v3.79h-1.057v-8.084H167.313z"/>
	<path d="M175.136,11.199v8.084h-1.057v-8.084H175.136z"/>
	<path d="M178.736,19.283l-2.65-8.084h1.141l1.259,3.982c0.336,1.091,0.636,2.074,0.863,3.022h0.023
		c0.229-0.936,0.552-1.955,0.924-3.011l1.367-3.994h1.115l-2.891,8.084L178.736,19.283L178.736,19.283z"/>
	<path d="M185.9,15.661v0.768h-2.963v-0.768H185.9z"/>
	<path d="M186.993,18.215c0.324,0.191,0.876,0.408,1.403,0.408c0.756,0,1.115-0.372,1.115-0.864c0-0.504-0.301-0.768-1.067-1.055
		c-1.056-0.384-1.547-0.948-1.547-1.644c0-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.229-0.145-0.647-0.349-1.188-0.349c-0.623,0-0.959,0.36-0.959,0.792c0,0.479,0.336,0.695,1.091,0.995
		c0.996,0.372,1.523,0.876,1.523,1.739c0,1.031-0.804,1.751-2.158,1.751c-0.636,0-1.224-0.168-1.632-0.407L186.993,18.215z"/>
	<path d="M191.889,15.373c0-0.743-0.024-1.343-0.05-1.895h0.937l0.061,0.995h0.023c0.42-0.707,1.115-1.115,2.062-1.115
		c1.415,0,2.472,1.188,2.472,2.938c0,2.087-1.283,3.118-2.651,3.118c-0.768,0-1.438-0.336-1.786-0.911h-0.023v3.154h-1.043
		L191.889,15.373L191.889,15.373z M192.932,16.92c0,0.155,0.012,0.3,0.048,0.432c0.191,0.731,0.828,1.235,1.583,1.235
		c1.115,0,1.764-0.912,1.764-2.243c0-1.151-0.612-2.146-1.728-2.146c-0.721,0-1.403,0.504-1.596,1.295
		c-0.036,0.132-0.071,0.288-0.071,0.42V16.92z"/>
	<path d="M199.304,16.572c0.023,1.428,0.924,2.016,1.99,2.016c0.756,0,1.225-0.132,1.607-0.3l0.19,0.755
		c-0.371,0.168-1.02,0.372-1.941,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.031-3.118,2.724-3.118c1.905,0,2.397,1.655,2.397,2.723
		c0,0.216-0.013,0.372-0.036,0.491L199.304,16.572L199.304,16.572z M202.399,15.817c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H202.399z"/>
	<path d="M208.867,19.079c-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.117-3.095
		c0.623,0,1.176,0.156,1.464,0.312l-0.24,0.804c-0.251-0.132-0.647-0.275-1.224-0.275c-1.33,0-2.051,0.995-2.051,2.194
		c0,1.344,0.863,2.171,2.016,2.171c0.6,0,0.994-0.144,1.295-0.275L208.867,19.079z"/>
	<path d="M211.28,11.847c0,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.659-0.66
		C211.016,11.187,211.28,11.475,211.28,11.847z M210.105,19.283v-5.805h1.055v5.805H210.105z"/>
	<path d="M213.02,19.283v-5.001h-0.805v-0.804h0.805v-0.324c0-1.522,0.898-2.519,2.529-2.519c0.54,0,1.177,0.168,1.477,0.384
		l-0.3,0.804c-0.265-0.18-0.708-0.336-1.225-0.336c-1.114,0-1.438,0.779-1.438,1.703v0.288h3.37v5.805h-1.057v-5.001h-2.313v5.001
		H213.02z"/>
	<path d="M223.327,19.079c-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.622,0,1.175,0.156,1.463,0.312l-0.239,0.804c-0.252-0.132-0.648-0.275-1.224-0.275c-1.331,0-2.052,0.995-2.052,2.194
		c0,1.344,0.863,2.171,2.016,2.171c0.6,0,0.995-0.144,1.295-0.275L223.327,19.079z"/>
	<path d="M149.425,33.431c-0.371,0.192-1.15,0.384-2.135,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.385-0.192-0.947-0.336-1.619-0.336c-1.896,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.716-0.336L149.425,33.431z"/>
	<path d="M150.748,25.719c0.636-0.107,1.393-0.18,2.219-0.18c1.5,0,2.567,0.359,3.274,1.008c0.731,0.659,1.151,1.595,1.151,2.902
		c0,1.319-0.42,2.398-1.163,3.142c-0.769,0.756-2.016,1.164-3.586,1.164c-0.756,0-1.367-0.036-1.896-0.097L150.748,25.719
		L150.748,25.719z M151.792,32.868c0.265,0.036,0.647,0.048,1.057,0.048c2.241,0,3.44-1.247,3.44-3.43
		c0.013-1.907-1.066-3.119-3.272-3.119c-0.54,0-0.948,0.049-1.225,0.108V32.868z"/>
	<path d="M161.629,33.683v-2.135h-3.622v-0.684l3.479-4.979h1.139v4.846h1.092v0.815h-1.092v2.135L161.629,33.683L161.629,33.683z
		 M161.629,30.733V28.13c0-0.408,0.013-0.815,0.036-1.224h-0.036c-0.238,0.456-0.432,0.792-0.646,1.151l-1.907,2.65v0.024h2.554
		V30.733z"/>
	<path d="M167.942,27.302v2.818h2.71v0.72h-2.71v2.843h-0.769V30.84h-2.711v-0.72h2.711v-2.818H167.942z"/>
	<path d="M175.634,26.487h-2.458v-0.888h5.984v0.888h-2.471v7.196h-1.057L175.634,26.487L175.634,26.487z"/>
	<path d="M188.245,33.431c-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.223-4.246
		c0.995,0,1.644,0.216,1.919,0.36l-0.265,0.852c-0.384-0.192-0.946-0.336-1.619-0.336c-1.895,0-3.153,1.211-3.153,3.334
		c0,1.991,1.14,3.25,3.095,3.25c0.647,0,1.295-0.132,1.715-0.336L188.245,33.431z"/>
	<path d="M189.987,30.972c0.024,1.428,0.924,2.016,1.991,2.016c0.756,0,1.224-0.132,1.606-0.3l0.191,0.755
		c-0.372,0.168-1.021,0.372-1.942,0.372c-1.787,0-2.854-1.188-2.854-2.938s1.03-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.491L189.987,30.972L189.987,30.972z M193.082,30.217c0.012-0.66-0.275-1.703-1.463-1.703
		c-1.08,0-1.535,0.972-1.619,1.703H193.082z"/>
	<path d="M195.412,25.167h1.055v8.516h-1.055V25.167z"/>
	<path d="M198.244,25.167h1.055v8.516h-1.055V25.167z"/>
	<path d="M200.931,32.616c0.323,0.191,0.876,0.408,1.402,0.408c0.756,0,1.115-0.372,1.115-0.864c0-0.504-0.3-0.768-1.067-1.055
		c-1.056-0.384-1.547-0.948-1.547-1.644c0-0.936,0.769-1.703,2.003-1.703c0.588,0,1.104,0.156,1.415,0.36l-0.252,0.768
		c-0.228-0.145-0.646-0.349-1.188-0.349c-0.623,0-0.959,0.36-0.959,0.792c0,0.479,0.336,0.695,1.091,0.995
		c0.996,0.372,1.522,0.876,1.522,1.739c0,1.031-0.804,1.751-2.158,1.751c-0.636,0-1.224-0.168-1.631-0.407L200.931,32.616z"/>
</g>
<g>
	<path d="M83.48,239.188h4.354v0.875h-3.298v2.688h3.046v0.863h-3.046v3.657H83.48V239.188z"/>
	<path d="M88.989,243.277c0-0.685-0.013-1.271-0.049-1.812h0.924l0.048,1.15h0.036c0.264-0.779,0.911-1.271,1.619-1.271
		c0.107,0,0.191,0.013,0.288,0.025v0.994c-0.108-0.023-0.216-0.023-0.36-0.023c-0.743,0-1.271,0.552-1.415,1.345
		c-0.022,0.143-0.036,0.323-0.036,0.489v3.097h-1.055V243.277z"/>
	<path d="M93.379,244.561c0.024,1.429,0.925,2.017,1.991,2.017c0.756,0,1.224-0.134,1.607-0.302l0.19,0.757
		c-0.372,0.168-1.02,0.37-1.941,0.37c-1.787,0-2.854-1.188-2.854-2.938c0-1.752,1.031-3.119,2.724-3.119
		c1.905,0,2.397,1.656,2.397,2.723c0,0.218-0.012,0.373-0.036,0.492H93.379z M96.474,243.805c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.974-1.619,1.703H96.474z"/>
	<path d="M99.391,244.561c0.023,1.429,0.924,2.017,1.99,2.017c0.757,0,1.225-0.134,1.607-0.302l0.191,0.757
		c-0.372,0.168-1.021,0.37-1.942,0.37c-1.787,0-2.854-1.188-2.854-2.938c0-1.752,1.031-3.119,2.724-3.119
		c1.906,0,2.397,1.656,2.397,2.723c0,0.218-0.012,0.373-0.035,0.492H99.391z M102.486,243.805c0.012-0.66-0.276-1.703-1.463-1.703
		c-1.08,0-1.535,0.974-1.619,1.703H102.486z"/>
	<path d="M108.739,247.271l-2.65-8.084h1.141l1.259,3.981c0.336,1.09,0.636,2.074,0.863,3.021h0.023
		c0.229-0.936,0.552-1.955,0.924-3.01l1.367-3.994h1.115l-2.891,8.084h-1.151V247.271z"/>
	<path d="M114.607,239.836c0,0.359-0.252,0.646-0.672,0.646c-0.385,0-0.637-0.287-0.637-0.646c0-0.361,0.266-0.66,0.66-0.66
		C114.343,239.176,114.607,239.463,114.607,239.836z M113.432,247.271v-5.806h1.055v5.806H113.432z"/>
	<path d="M116.241,243.277c0-0.685-0.013-1.271-0.049-1.812h0.924l0.048,1.15h0.036c0.264-0.779,0.911-1.271,1.619-1.271
		c0.107,0,0.192,0.013,0.288,0.025v0.994c-0.108-0.023-0.216-0.023-0.36-0.023c-0.743,0-1.271,0.552-1.415,1.345
		c-0.022,0.143-0.036,0.323-0.036,0.489v3.097h-1.055V243.277z"/>
	<path d="M125.021,245.676c0,0.611,0.013,1.139,0.049,1.596h-0.937l-0.061-0.946h-0.023c-0.265,0.467-0.888,1.077-1.919,1.077
		c-0.911,0-2.003-0.516-2.003-2.543v-3.393h1.056v3.201c0,1.104,0.349,1.859,1.296,1.859c0.707,0,1.199-0.492,1.391-0.971
		c0.062-0.146,0.097-0.337,0.097-0.541v-3.55h1.056L125.021,245.676L125.021,245.676z"/>
	<path d="M126.631,246.203c0.324,0.191,0.876,0.408,1.403,0.408c0.756,0,1.115-0.371,1.115-0.863c0-0.504-0.3-0.768-1.067-1.055
		c-1.056-0.385-1.547-0.949-1.547-1.646c0-0.937,0.769-1.703,2.003-1.703c0.588,0,1.104,0.156,1.415,0.361l-0.252,0.769
		c-0.228-0.146-0.646-0.351-1.188-0.351c-0.623,0-0.959,0.36-0.959,0.793c0,0.479,0.336,0.694,1.091,0.994
		c0.996,0.373,1.522,0.877,1.522,1.739c0,1.031-0.804,1.75-2.158,1.75c-0.636,0-1.224-0.168-1.632-0.405L126.631,246.203z"/>
</g>
<g>
	<path d="M105.937,263.827l-2.65-8.084h1.139l1.26,3.981c0.336,1.092,0.636,2.074,0.863,3.022h0.024
		c0.228-0.937,0.552-1.955,0.923-3.011l1.367-3.994h1.116l-2.892,8.084L105.937,263.827L105.937,263.827z"/>
</g>
</svg>
</window>