Location: Bertram, Satin, Pedersen, Luciani, Sherman, 2007 @ 12bcb55ff2f1 / bertram_2007.xul

Author:
Catherine Lloyd <c.lloyd@auckland.ac.nz>
Date:
2010-05-27 23:03:12+12:00
Desc:
Removed redundant image. Removed xml:base="" from model and removed path to Hanne's hard drive from the session file.
Permanent Source URI:
https://models.cellml.org/workspace/bertram_satin_pedersen_luciani_sherman_2007/rawfile/12bcb55ff2f1bfc13a857889db363905b2c234f2/bertram_2007.xul

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="layout-diagram" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" style="overflow: auto" onload="setupDocument()">
<hbox>
	<scale id="zoom_scale" value="10" min="7" max="14" flex="4"/>
	<label value="Zoom" control="zoom_scale" flex="1"/>
	<button id="reset_button" label="Reset View" flex="1"/>
	<spacer flex="34"/>
</hbox>
<script>
<![CDATA[
window.model_entities =
  {

			
	Vm: {
		id: "Vm",
		y: "membrane/Vm",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#ff9900",
		linestyle: "none"
	},

	JGPDH: {
		id: "JGPDH",
		y: "JGPDH/JGPDH",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#cc00ff",
		linestyle: "none"
	},


	atp: {
		id: "atp",
		y: "atp/atp",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#3300ff",
		linestyle: "none"
	},


	NADHm: {
		id: "NADHm",
		y: "NADHm/NADHm",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		linestyle: "none"
	},


	delta_psi: {
		id: "delta_psi",
		y: "delta_psi/delta_psi",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		linestyle: "none"
	},


	FBP: {
		id: "FBP",
		y: "FBP/FBP",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		linestyle: "none"
	},


	F6P: {
		id: "F6P",
		y: "F6P/F6P",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		linestyle: "none"
	},


	n: {
		id: "n",
		y: "n/n",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		linestyle: "none"
	},

	adp: {
		id: "adp",
		y: "adp/adp",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#ff00cc",
		linestyle: "none"
	},


	Caer: {
		id: "Caer",
		y: "Caer/Caer",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		linestyle: "none"
	},


	ADPm: {
		id: "ADPm",
		y: "ADPm/ADPm",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		linestyle: "none"
	},


	Cam: {
		id: "Cam",
		y: "Cam/Cam",
		x: "environment/time",
		graph: "Traces of Electrical, Glycolytic and Mitochondrial Elements aganst Time (ms)",
		colour: "#66ff66",
		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="701px" height="481px" viewBox="0 0 701 481" enable-background="new 0 0 701 481" xml:space="preserve">
<ellipse fill="#B9FF9F" stroke="#7EEF1B" stroke-width="10" cx="362.409" cy="383.946" rx="114.272" ry="73.513"/>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="535.947" y1="167.985" x2="444.639" y2="313.6"/>
		<polygon points="442.993,309.253 445.295,312.553 449.269,313.188 441.468,318.657 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="444.639" y1="98.555" x2="244.999" y2="98.555"/>
		<polygon points="441.83,102.258 443.402,98.555 441.83,94.851 450.607,98.555 		"/>
	</g>
</g>
<g id="atp">
	
		<radialGradient id="atp_path1_1_" cx="294.8096" cy="-668.9336" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -109.31 513.2817)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="atp_path1" fill="url(#atp_path1_1_)" stroke="#000000" d="M385.725,87.973c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C374.387,77.498,385.725,82.186,385.725,87.973z"/>
	<g>
		<path d="M353.244,88.953l-0.84,2.542h-1.078l2.758-8.083h1.248l2.758,8.083h-1.115l-0.863-2.542H353.244z M355.906,88.137
			l-0.803-2.327c-0.18-0.527-0.299-1.007-0.42-1.475h-0.023c-0.121,0.468-0.24,0.972-0.408,1.463l-0.791,2.338H355.906z"/>
		<path d="M359.893,84.299h-2.459v-0.887h5.984v0.887h-2.471v7.196h-1.055V84.299z"/>
		<path d="M364.32,83.507c0.504-0.084,1.164-0.156,2.004-0.156c1.031,0,1.787,0.24,2.266,0.672c0.434,0.384,0.709,0.971,0.709,1.691
			c0,0.731-0.217,1.307-0.625,1.727c-0.562,0.587-1.451,0.888-2.469,0.888c-0.312,0-0.602-0.012-0.84-0.072v3.238h-1.045V83.507z
			 M365.365,87.405c0.227,0.06,0.516,0.084,0.863,0.084c1.26,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.908-1.595
			c-0.455,0-0.803,0.036-0.982,0.084V87.405z"/>
	</g>
</g>
<path fill="none" stroke="#000000" d="M471.283,271.3c7.504-10.722,50.625-57.796,77.136-26.819"/>
<g id="JGPDH">
	
		<radialGradient id="JGPDH_path1_1_" cx="420.541" cy="-433.2954" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -109.31 513.2817)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#C1D965"/>
		<stop  offset="0.4082" style="stop-color:#C1D965"/>
		<stop  offset="0.5552" style="stop-color:#BCD766"/>
		<stop  offset="0.66" style="stop-color:#B8D665"/>
		<stop  offset="0.7448" style="stop-color:#B0D365"/>
		<stop  offset="0.8174" style="stop-color:#A8D065"/>
		<stop  offset="0.8817" style="stop-color:#9CCC66"/>
		<stop  offset="0.9398" style="stop-color:#91C964"/>
		<stop  offset="0.9915" style="stop-color:#88C662"/>
		<stop  offset="1" style="stop-color:#86C563"/>
	</radialGradient>
	<path id="JGPDH_path1" fill="url(#JGPDH_path1_1_)" stroke="#000000" d="M586.052,237.792c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C574.714,227.317,586.052,232.004,586.052,237.792z"/>
	<g>
		<path d="M552.837,240.955c-0.468,0.18-1.403,0.444-2.495,0.444c-1.223,0-2.23-0.312-3.021-1.067
			c-0.696-0.672-1.128-1.751-1.128-3.01c0-2.411,1.667-4.174,4.378-4.174c0.936,0,1.679,0.204,2.026,0.372l-0.264,0.852
			c-0.432-0.204-0.972-0.348-1.787-0.348c-1.967,0-3.25,1.223-3.25,3.25c0,2.051,1.224,3.262,3.118,3.262
			c0.684,0,1.151-0.096,1.392-0.216v-2.411h-1.631v-0.839h2.662V240.955z"/>
		<path d="M554.424,233.327c0.504-0.084,1.164-0.156,2.003-0.156c1.032,0,1.787,0.24,2.268,0.672
			c0.432,0.384,0.707,0.971,0.707,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.47,0.888
			c-0.312,0-0.601-0.012-0.84-0.072v3.238h-1.044V233.327z M555.468,237.225c0.228,0.06,0.516,0.084,0.863,0.084
			c1.26,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.456,0-0.804,0.036-0.983,0.084V237.225z"/>
		<path d="M560.808,233.351c0.636-0.108,1.392-0.18,2.219-0.18c1.5,0,2.567,0.36,3.274,1.007c0.731,0.66,1.151,1.595,1.151,2.902
			c0,1.319-0.42,2.399-1.163,3.143c-0.768,0.755-2.015,1.163-3.586,1.163c-0.756,0-1.367-0.036-1.896-0.096V233.351z M561.852,240.5
			c0.264,0.036,0.647,0.048,1.056,0.048c2.242,0,3.441-1.247,3.441-3.43c0.013-1.907-1.067-3.118-3.273-3.118
			c-0.54,0-0.948,0.048-1.224,0.108V240.5z"/>
		<path d="M569.844,233.231v3.382h3.91v-3.382h1.055v8.083h-1.055v-3.79h-3.91v3.79h-1.056v-8.083H569.844z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="191.407" y1="167.985" x2="282.716" y2="313.6"/>
		<polygon points="278.086,313.188 282.059,312.553 284.362,309.252 285.887,318.657 		"/>
	</g>
</g>
<path fill="none" stroke="#000000" d="M224.823,221.458c6.815,11.172,32.659,69.546-6.348,81.418"/>
<g id="ADPm">
	
		<radialGradient id="ADPm_path1_2_" cx="205.1006" cy="-330.7568" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -109.31 513.2817)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="ADPm_path1" fill="url(#ADPm_path1_2_)" stroke="#000000" d="M242.791,302.985c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C231.453,292.511,242.791,297.198,242.791,302.985z"/>
	<g>
		<path d="M208.834,303.965l-0.839,2.542h-1.08l2.758-8.083h1.248l2.758,8.083h-1.115l-0.864-2.542H208.834z M211.497,303.149
			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.338H211.497z"/>
		<path d="M214.871,298.544c0.636-0.108,1.391-0.18,2.219-0.18c1.499,0,2.566,0.36,3.274,1.007c0.732,0.66,1.151,1.595,1.151,2.902
			c0,1.319-0.419,2.399-1.163,3.143c-0.768,0.755-2.015,1.163-3.586,1.163c-0.756,0-1.367-0.036-1.895-0.096V298.544z
			 M215.914,305.692c0.264,0.036,0.647,0.048,1.055,0.048c2.243,0,3.442-1.247,3.442-3.43c0.012-1.907-1.067-3.118-3.274-3.118
			c-0.54,0-0.947,0.048-1.223,0.108V305.692z"/>
		<path d="M222.863,298.52c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.216,1.307-0.624,1.727c-0.564,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.043V298.52z M223.906,302.418c0.228,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.027-0.624,2.027-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.456,0-0.804,0.036-0.983,0.084V302.418z"/>
	</g>
</g>
<path fill="none" stroke="#000000" d="M258.242,227.138c6.693,11.246,46.223,61.374,74.947,32.437"/>
<path fill="none" stroke="#000000" d="M229.859,182.026c6.693,11.246,46.223,61.374,74.947,32.437"/>
<g>
	
		<radialGradient id="path16609_1_" cx="285.1973" cy="-400.4219" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -109.31 513.2817)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path16609_3_" fill="url(#path16609_1_)" stroke="#000000" d="M370.409,258.692c0,5.786-11.338,10.478-25.316,10.478
		c-13.98,0-25.314-4.689-25.314-10.478s11.334-10.476,25.314-10.476C359.071,248.218,370.409,252.905,370.409,258.692z"/>
	<g>
		<path d="M336.453,259.672l-0.84,2.542h-1.08l2.759-8.083h1.247l2.759,8.083h-1.115l-0.864-2.542H336.453z M339.115,258.856
			l-0.804-2.327c-0.18-0.527-0.3-1.007-0.419-1.475h-0.025c-0.119,0.468-0.239,0.972-0.407,1.463l-0.792,2.338H339.115z"/>
		<path d="M342.489,254.251c0.636-0.108,1.392-0.18,2.219-0.18c1.499,0,2.566,0.36,3.274,1.007c0.731,0.66,1.15,1.595,1.15,2.902
			c0,1.319-0.419,2.399-1.162,3.143c-0.768,0.755-2.016,1.163-3.586,1.163c-0.756,0-1.367-0.036-1.896-0.096V254.251z
			 M343.533,261.399c0.264,0.036,0.646,0.048,1.055,0.048c2.242,0,3.442-1.247,3.442-3.43c0.012-1.907-1.067-3.118-3.274-3.118
			c-0.539,0-0.947,0.048-1.223,0.108V261.399z"/>
		<path d="M350.481,254.227c0.503-0.084,1.163-0.156,2.003-0.156c1.031,0,1.787,0.24,2.267,0.672
			c0.432,0.384,0.708,0.971,0.708,1.691c0,0.731-0.217,1.307-0.624,1.727c-0.563,0.587-1.451,0.888-2.471,0.888
			c-0.312,0-0.6-0.012-0.839-0.072v3.238h-1.044V254.227z M351.525,258.125c0.227,0.06,0.516,0.084,0.863,0.084
			c1.259,0,2.026-0.624,2.026-1.715c0-1.08-0.768-1.595-1.907-1.595c-0.455,0-0.803,0.036-0.982,0.084V258.125z"/>
	</g>
</g>
<g id="Cam">
	
		<radialGradient id="Cam_path1_2_" cx="615.125" cy="-1081.4033" r="30.1875" gradientTransform="matrix(0.3664 0 0 0.3664 84.8181 605.4301)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="Cam_path1" fill="url(#Cam_path1_2_)" stroke="#000000" stroke-width="0.9921" d="M321.26,209.205
		c0,6.107-4.951,11.06-11.059,11.06c-6.111,0-11.062-4.953-11.062-11.06c0-6.107,4.951-11.062,11.062-11.062
		C316.309,198.143,321.26,203.098,321.26,209.205z"/>
	<g>
		<path fill="#000100" d="M306.875,213.489c-0.338,0.174-1.046,0.349-1.939,0.349c-2.07,0-3.617-1.308-3.617-3.727
			c0-2.31,1.558-3.856,3.835-3.856c0.904,0,1.493,0.196,1.743,0.327l-0.24,0.773c-0.349-0.175-0.86-0.306-1.471-0.306
			c-1.721,0-2.865,1.101-2.865,3.029c0,1.809,1.035,2.952,2.811,2.952c0.588,0,1.176-0.12,1.558-0.305L306.875,213.489z"/>
		<path fill="#000100" d="M311.684,212.454c0,0.457,0.022,0.904,0.077,1.264h-0.861l-0.087-0.665h-0.033
			c-0.283,0.414-0.86,0.785-1.612,0.785c-1.067,0-1.612-0.752-1.612-1.515c0-1.274,1.133-1.972,3.17-1.961v-0.109
			c0-0.436-0.12-1.23-1.198-1.22c-0.501,0-1.014,0.142-1.384,0.392l-0.218-0.643c0.436-0.272,1.078-0.457,1.743-0.457
			c1.623,0,2.015,1.1,2.015,2.157V212.454z M310.747,211.026c-1.046-0.021-2.233,0.164-2.233,1.188c0,0.632,0.414,0.916,0.894,0.916
			c0.697,0,1.144-0.437,1.296-0.883c0.033-0.099,0.043-0.207,0.043-0.305V211.026z"/>
		<path fill="#000100" d="M312.713,210.087v-0.343l0.438-0.425c1.054-1.004,1.537-1.537,1.537-2.158c0-0.42-0.197-0.807-0.813-0.807
			c-0.375,0-0.686,0.19-0.876,0.35l-0.178-0.395c0.279-0.234,0.692-0.418,1.168-0.418c0.882,0,1.257,0.609,1.257,1.199
			c0,0.762-0.553,1.377-1.422,2.215l-0.324,0.305v0.014h1.848v0.463H312.713z"/>
		<path fill="#000100" d="M317.781,206.71v1.492h1.436v0.381h-1.436v1.504h-0.406v-1.504h-1.434v-0.381h1.434v-1.492H317.781z"/>
	</g>
</g>
<line fill="none" stroke="#000000" stroke-width="3" x1="289.652" y1="412.43" x2="335.094" y2="412.43"/>
<g>
	<path d="M321.104,365.103c-0.091-1.692-0.199-3.744-0.199-5.239h-0.035c-0.433,1.404-0.918,2.935-1.531,4.609l-2.143,5.888h-1.188
		l-1.98-5.779c-0.577-1.729-1.045-3.277-1.387-4.718h-0.036c-0.036,1.513-0.126,3.529-0.234,5.366l-0.324,5.203h-1.494l0.846-12.136
		h1.999l2.07,5.87c0.504,1.494,0.9,2.826,1.225,4.087h0.036c0.324-1.225,0.757-2.557,1.296-4.087l2.161-5.87h1.999l0.756,12.136
		h-1.549L321.104,365.103z"/>
	<path d="M327.273,359.27c0,0.54-0.378,0.972-1.008,0.972c-0.576,0-0.955-0.432-0.955-0.972s0.396-0.99,0.99-0.99
		C326.877,358.28,327.273,358.711,327.273,359.27z M325.51,370.433v-8.715h1.584v8.715H325.51z"/>
	<path d="M331.63,359.63v2.088h2.269v1.207h-2.269v4.699c0,1.08,0.306,1.692,1.188,1.692c0.432,0,0.684-0.036,0.918-0.108
		l0.072,1.207c-0.307,0.107-0.793,0.216-1.404,0.216c-0.738,0-1.332-0.252-1.711-0.666c-0.432-0.486-0.612-1.261-0.612-2.287v-4.753
		h-1.351v-1.207h1.351v-1.62L331.63,359.63z"/>
	<path d="M343.457,366.003c0,3.224-2.25,4.628-4.339,4.628c-2.341,0-4.177-1.729-4.177-4.483c0-2.899,1.926-4.609,4.32-4.609
		C341.766,361.539,343.457,363.357,343.457,366.003z M336.562,366.094c0,1.908,1.081,3.349,2.629,3.349
		c1.513,0,2.646-1.423,2.646-3.385c0-1.477-0.737-3.331-2.61-3.331C337.371,362.727,336.562,364.456,336.562,366.094z"/>
	<path d="M351.665,370.127c-0.414,0.197-1.333,0.504-2.503,0.504c-2.629,0-4.34-1.782-4.34-4.447c0-2.683,1.838-4.646,4.682-4.646
		c0.937,0,1.766,0.234,2.197,0.468l-0.36,1.207c-0.378-0.198-0.972-0.415-1.837-0.415c-1.998,0-3.078,1.495-3.078,3.296
		c0,2.017,1.296,3.259,3.024,3.259c0.9,0,1.495-0.217,1.944-0.414L351.665,370.127z"/>
	<path d="M353.518,357.649h1.584v5.456h0.036c0.252-0.45,0.647-0.864,1.134-1.135c0.469-0.27,1.027-0.432,1.621-0.432
		c1.17,0,3.043,0.72,3.043,3.709v5.186h-1.585v-5.006c0-1.404-0.522-2.574-2.017-2.574c-1.025,0-1.818,0.72-2.125,1.566
		c-0.09,0.234-0.107,0.468-0.107,0.756v5.258h-1.584V357.649z"/>
	<path d="M371.393,366.003c0,3.224-2.25,4.628-4.339,4.628c-2.341,0-4.177-1.729-4.177-4.483c0-2.899,1.926-4.609,4.32-4.609
		C369.701,361.539,371.393,363.357,371.393,366.003z M364.497,366.094c0,1.908,1.081,3.349,2.629,3.349
		c1.513,0,2.646-1.423,2.646-3.385c0-1.477-0.737-3.331-2.61-3.331C365.307,362.727,364.497,364.456,364.497,366.094z"/>
	<path d="M373.389,364.078c0-0.919-0.018-1.639-0.072-2.359h1.405l0.09,1.44h0.036c0.432-0.81,1.44-1.62,2.881-1.62
		c1.206,0,3.078,0.72,3.078,3.709v5.186h-1.584v-5.023c0-1.404-0.521-2.575-2.017-2.575c-1.026,0-1.837,0.738-2.124,1.621
		c-0.072,0.198-0.108,0.468-0.108,0.738v5.239h-1.585V364.078z"/>
	<path d="M390.887,357.649v10.533c0,0.774,0.037,1.657,0.072,2.251h-1.404l-0.072-1.513h-0.054
		c-0.468,0.973-1.513,1.711-2.935,1.711c-2.107,0-3.746-1.782-3.746-4.43c-0.018-2.898,1.801-4.663,3.908-4.663
		c1.35,0,2.232,0.63,2.629,1.314h0.035v-5.204H390.887z M389.32,365.265c0-0.197-0.018-0.468-0.072-0.666
		c-0.233-0.99-1.098-1.818-2.286-1.818c-1.639,0-2.61,1.44-2.61,3.349c0,1.765,0.882,3.224,2.574,3.224
		c1.062,0,2.035-0.721,2.322-1.891c0.055-0.216,0.072-0.433,0.072-0.685V365.265z"/>
	<path d="M393.531,364.437c0-1.026-0.019-1.908-0.072-2.719h1.387l0.071,1.729h0.054c0.396-1.17,1.369-1.908,2.432-1.908
		c0.162,0,0.287,0.018,0.432,0.036v1.494c-0.162-0.036-0.324-0.036-0.54-0.036c-1.116,0-1.909,0.828-2.124,2.017
		c-0.037,0.216-0.055,0.486-0.055,0.738v4.646h-1.584V364.437z"/>
	<path d="M401.254,359.27c0,0.54-0.379,0.972-1.009,0.972c-0.576,0-0.954-0.432-0.954-0.972s0.396-0.99,0.99-0.99
		C400.857,358.28,401.254,358.711,401.254,359.27z M399.488,370.433v-8.715h1.585v8.715H399.488z"/>
	<path d="M409.822,368.344c0,0.757,0.036,1.495,0.127,2.089h-1.424l-0.125-1.099h-0.055c-0.486,0.685-1.422,1.297-2.664,1.297
		c-1.766,0-2.665-1.242-2.665-2.503c0-2.106,1.872-3.259,5.239-3.241v-0.18c0-0.702-0.197-2.017-1.98-1.999
		c-0.828,0-1.674,0.234-2.287,0.648l-0.359-1.062c0.72-0.45,1.782-0.756,2.881-0.756c2.664,0,3.312,1.818,3.312,3.547V368.344z
		 M408.292,365.986c-1.729-0.036-3.69,0.27-3.69,1.963c0,1.044,0.684,1.512,1.476,1.512c1.152,0,1.891-0.72,2.144-1.458
		c0.053-0.18,0.071-0.36,0.071-0.504V365.986z"/>
	<path d="M412.377,357.649h1.584v12.784h-1.584V357.649z"/>
</g>
<g id="delta_psi">
	<line id="delta_psi_path1" fill="none" stroke="#000000" stroke-width="3" x1="422" y1="412.43" x2="435.166" y2="412.43"/>
	<g>
		<path d="M426.431,393.36c-0.294-0.224-1.079-0.574-1.849-0.574c-0.771,0-1.149,0.294-1.149,0.63c0,0.378,0.364,0.644,1.009,1.134
			l1.148,0.911c1.121,0.869,1.793,1.849,1.793,3.194c0,2.101-1.457,3.46-3.291,3.46c-1.752,0-3.293-1.233-3.293-3.418
			c0-1.723,1.191-2.886,2.564-3.53v-0.07l-0.309-0.252c-0.322-0.266-0.869-0.756-0.869-1.401c0-0.742,0.771-1.583,2.367-1.583
			c0.981,0,1.85,0.351,2.242,0.672L426.431,393.36z M424.092,395.742c-1.065,0.56-2.046,1.471-2.046,2.956
			c0,1.583,1.051,2.493,2.115,2.493c1.079,0,1.989-0.91,1.989-2.451c0-0.953-0.435-1.737-1.303-2.409L424.092,395.742z"/>
		<path d="M431.245,395.671c-0.729,0.462-1.583,1.373-1.583,2.83c0,1.359,0.729,2.479,2.199,2.704V397.1
			c0-1.457,0.812-2.059,1.736-2.045c1.331,0.014,2.76,1.275,2.76,3.348c0,2.326-1.652,3.53-3.361,3.698v2.633h-1.135v-2.633
			c-1.682-0.126-3.418-1.163-3.418-3.572c0-1.961,1.387-3.152,2.325-3.544L431.245,395.671z M432.996,401.219
			c1.33-0.182,2.186-1.219,2.186-2.802c0-1.373-0.812-2.465-1.598-2.465c-0.35,0-0.588,0.308-0.588,0.953V401.219z"/>
	</g>
</g>
<ellipse fill="#C1DAF2" stroke="#3BC6F4" stroke-width="10" cx="571.075" cy="93.6" rx="114.272" ry="73.513"/>
<g>
	<path d="M545.213,82.043c-0.702,0.27-2.106,0.666-3.745,0.666c-1.837,0-3.349-0.468-4.537-1.603
		c-1.044-1.008-1.692-2.629-1.692-4.52c0-3.619,2.502-6.266,6.572-6.266c1.404,0,2.52,0.307,3.043,0.559l-0.396,1.278
		c-0.648-0.307-1.459-0.522-2.684-0.522c-2.952,0-4.879,1.837-4.879,4.88c0,3.078,1.836,4.897,4.682,4.897
		c1.025,0,1.729-0.145,2.088-0.324V77.47h-2.448v-1.261h3.997V82.043z"/>
	<path d="M547.532,69.799h1.585v12.784h-1.585V69.799z"/>
	<path d="M552.356,73.869l1.891,5.149c0.216,0.576,0.433,1.261,0.576,1.783h0.036c0.162-0.522,0.342-1.188,0.559-1.819l1.729-5.113
		h1.674l-2.377,6.212c-1.135,2.989-1.908,4.502-2.988,5.456c-0.793,0.666-1.549,0.936-1.945,1.008l-0.396-1.314
		c0.396-0.126,0.918-0.378,1.386-0.773c0.433-0.343,0.955-0.955,1.333-1.765c0.071-0.162,0.126-0.288,0.126-0.379
		c0-0.09-0.036-0.216-0.126-0.414l-3.205-8.03H552.356z"/>
	<path d="M566.29,82.278c-0.414,0.197-1.333,0.504-2.503,0.504c-2.629,0-4.34-1.782-4.34-4.447c0-2.683,1.837-4.646,4.682-4.646
		c0.937,0,1.765,0.234,2.197,0.468l-0.36,1.207c-0.378-0.198-0.972-0.415-1.837-0.415c-1.998,0-3.078,1.495-3.078,3.296
		c0,2.017,1.296,3.259,3.024,3.259c0.9,0,1.495-0.217,1.944-0.414L566.29,82.278z"/>
	<path d="M575.92,78.154c0,3.224-2.25,4.628-4.339,4.628c-2.341,0-4.177-1.729-4.177-4.483c0-2.899,1.926-4.609,4.32-4.609
		C574.229,73.689,575.92,75.507,575.92,78.154z M569.024,78.245c0,1.908,1.08,3.349,2.629,3.349c1.513,0,2.646-1.423,2.646-3.385
		c0-1.477-0.738-3.331-2.61-3.331C569.834,74.877,569.024,76.606,569.024,78.245z"/>
	<path d="M577.916,69.799h1.584v12.784h-1.584V69.799z"/>
	<path d="M582.74,73.869l1.891,5.149c0.216,0.576,0.432,1.261,0.576,1.783h0.036c0.161-0.522,0.342-1.188,0.558-1.819l1.729-5.113
		h1.675l-2.377,6.212c-1.134,2.989-1.908,4.502-2.989,5.456c-0.791,0.666-1.548,0.936-1.943,1.008l-0.396-1.314
		c0.396-0.126,0.918-0.378,1.387-0.773c0.432-0.343,0.953-0.955,1.332-1.765c0.072-0.162,0.126-0.288,0.126-0.379
		c0-0.09-0.036-0.216-0.126-0.414l-3.205-8.03H582.74z"/>
	<path d="M592.551,71.781v2.088h2.268v1.207h-2.268v4.699c0,1.08,0.306,1.692,1.188,1.692c0.432,0,0.685-0.036,0.918-0.108
		l0.072,1.207c-0.306,0.107-0.792,0.216-1.404,0.216c-0.738,0-1.332-0.252-1.711-0.666c-0.432-0.486-0.611-1.261-0.611-2.287v-4.753
		h-1.351v-1.207h1.351v-1.62L592.551,71.781z"/>
	<path d="M598.364,71.42c0,0.54-0.378,0.972-1.009,0.972c-0.576,0-0.954-0.432-0.954-0.972s0.396-0.99,0.99-0.99
		C597.968,70.43,598.364,70.862,598.364,71.42z M596.6,82.583v-8.715h1.584v8.715H596.6z"/>
	<path d="M607.023,82.278c-0.414,0.197-1.332,0.504-2.503,0.504c-2.629,0-4.339-1.782-4.339-4.447c0-2.683,1.836-4.646,4.682-4.646
		c0.936,0,1.764,0.234,2.196,0.468l-0.36,1.207c-0.378-0.198-0.973-0.415-1.836-0.415c-1.999,0-3.08,1.495-3.08,3.296
		c0,2.017,1.297,3.259,3.025,3.259c0.9,0,1.494-0.217,1.945-0.414L607.023,82.278z"/>
</g>
<ellipse fill="#EBC5EF" stroke="#D73DF2" stroke-width="10" cx="128.795" cy="98.555" rx="114.272" ry="73.513"/>
<path fill="none" stroke="#000000" d="M198.507,178.515c6.815,11.172,32.658,69.546-6.348,81.418"/>
<g>
	<path d="M65.538,82.449h-4.699v4.375h5.257v1.314h-6.842V76.002h6.572v1.314h-4.987v3.835h4.699V82.449z"/>
	<path d="M68.074,75.354h1.584v12.784h-1.584V75.354z"/>
	<path d="M73.204,84.069c0.036,2.143,1.386,3.025,2.989,3.025c1.134,0,1.836-0.198,2.413-0.45l0.288,1.134
		c-0.558,0.252-1.53,0.559-2.917,0.559c-2.683,0-4.286-1.782-4.286-4.411s1.548-4.682,4.087-4.682c2.863,0,3.601,2.484,3.601,4.087
		c0,0.324-0.018,0.559-0.054,0.738H73.204z M77.849,82.935c0.018-0.99-0.414-2.558-2.196-2.558c-1.621,0-2.305,1.459-2.431,2.558
		H77.849z"/>
	<path d="M87.551,87.833c-0.414,0.197-1.333,0.504-2.503,0.504c-2.629,0-4.339-1.782-4.339-4.447c0-2.683,1.837-4.646,4.682-4.646
		c0.936,0,1.765,0.234,2.196,0.468l-0.36,1.207c-0.378-0.198-0.972-0.415-1.836-0.415c-1.999,0-3.079,1.495-3.079,3.296
		c0,2.017,1.296,3.259,3.025,3.259c0.9,0,1.495-0.217,1.945-0.414L87.551,87.833z"/>
	<path d="M91.546,77.335v2.088h2.269v1.207h-2.269v4.699c0,1.08,0.306,1.692,1.188,1.692c0.432,0,0.685-0.036,0.918-0.108
		l0.072,1.207c-0.306,0.107-0.792,0.216-1.405,0.216c-0.738,0-1.333-0.252-1.71-0.666c-0.432-0.486-0.612-1.261-0.612-2.287V80.63
		h-1.35v-1.207h1.35v-1.62L91.546,77.335z"/>
	<path d="M95.595,82.142c0-1.026-0.018-1.908-0.072-2.719h1.387l0.072,1.729h0.054c0.396-1.17,1.368-1.908,2.431-1.908
		c0.162,0,0.288,0.018,0.432,0.036v1.494c-0.162-0.036-0.324-0.036-0.54-0.036c-1.117,0-1.909,0.828-2.125,2.017
		c-0.036,0.216-0.054,0.486-0.054,0.738v4.646h-1.584V82.142z"/>
	<path d="M103.317,76.975c0,0.54-0.378,0.972-1.008,0.972c-0.576,0-0.955-0.432-0.955-0.972s0.396-0.99,0.99-0.99
		C102.921,75.985,103.317,76.417,103.317,76.975z M101.553,88.138v-8.715h1.584v8.715H101.553z"/>
	<path d="M111.977,87.833c-0.414,0.197-1.333,0.504-2.503,0.504c-2.629,0-4.339-1.782-4.339-4.447c0-2.683,1.836-4.646,4.682-4.646
		c0.936,0,1.764,0.234,2.197,0.468l-0.36,1.207c-0.378-0.198-0.972-0.415-1.836-0.415c-1.999,0-3.079,1.495-3.079,3.296
		c0,2.017,1.296,3.259,3.025,3.259c0.9,0,1.495-0.217,1.945-0.414L111.977,87.833z"/>
	<path d="M119.95,86.049c0,0.757,0.036,1.495,0.126,2.089h-1.422l-0.126-1.099h-0.054c-0.486,0.685-1.422,1.297-2.665,1.297
		c-1.765,0-2.665-1.242-2.665-2.503c0-2.106,1.873-3.259,5.239-3.241v-0.18c0-0.702-0.198-2.017-1.98-1.999
		c-0.828,0-1.674,0.234-2.287,0.648L113.756,80c0.72-0.45,1.783-0.756,2.881-0.756c2.665,0,3.313,1.818,3.313,3.547V86.049z
		 M118.42,83.691c-1.729-0.036-3.691,0.27-3.691,1.963c0,1.044,0.684,1.512,1.476,1.512c1.152,0,1.891-0.72,2.143-1.458
		c0.054-0.18,0.072-0.36,0.072-0.504V83.691z"/>
	<path d="M122.504,75.354h1.584v12.784h-1.584V75.354z"/>
	<path d="M129.236,88.84l5.005-13.054h1.243l-5.042,13.054H129.236z"/>
	<path d="M149.074,87.76c-0.558,0.288-1.729,0.576-3.205,0.576c-3.421,0-5.978-2.161-5.978-6.158c0-3.817,2.575-6.374,6.338-6.374
		c1.494,0,2.466,0.324,2.881,0.54l-0.396,1.278c-0.576-0.287-1.422-0.504-2.431-0.504c-2.845,0-4.735,1.818-4.735,5.006
		c0,2.988,1.71,4.879,4.646,4.879c0.972,0,1.944-0.197,2.575-0.504L149.074,87.76z"/>
	<path d="M156.993,86.049c0,0.757,0.036,1.495,0.126,2.089h-1.422l-0.126-1.099h-0.054c-0.486,0.685-1.422,1.297-2.665,1.297
		c-1.765,0-2.665-1.242-2.665-2.503c0-2.106,1.873-3.259,5.239-3.241v-0.18c0-0.702-0.198-2.017-1.98-1.999
		c-0.828,0-1.674,0.234-2.287,0.648L150.799,80c0.72-0.45,1.783-0.756,2.881-0.756c2.665,0,3.313,1.818,3.313,3.547V86.049z
		 M155.463,83.691c-1.729-0.036-3.691,0.27-3.691,1.963c0,1.044,0.684,1.512,1.476,1.512c1.152,0,1.891-0.72,2.143-1.458
		c0.054-0.18,0.072-0.36,0.072-0.504V83.691z"/>
	<path d="M159.548,75.354h1.584v12.784h-1.584V75.354z"/>
	<path d="M170.007,87.833c-0.414,0.197-1.333,0.504-2.503,0.504c-2.629,0-4.339-1.782-4.339-4.447c0-2.683,1.837-4.646,4.682-4.646
		c0.936,0,1.765,0.234,2.196,0.468l-0.36,1.207c-0.378-0.198-0.972-0.415-1.836-0.415c-1.999,0-3.079,1.495-3.079,3.296
		c0,2.017,1.296,3.259,3.025,3.259c0.9,0,1.495-0.217,1.945-0.414L170.007,87.833z"/>
	<path d="M173.624,76.975c0,0.54-0.378,0.972-1.008,0.972c-0.576,0-0.955-0.432-0.955-0.972s0.396-0.99,0.99-0.99
		C173.228,75.985,173.624,76.417,173.624,76.975z M171.859,88.138v-8.715h1.584v8.715H171.859z"/>
	<path d="M183.363,85.744c0,0.918,0.018,1.71,0.072,2.395h-1.404l-0.09-1.423h-0.036c-0.396,0.702-1.332,1.621-2.881,1.621
		c-1.368,0-3.007-0.774-3.007-3.817v-5.096h1.584v4.808c0,1.656,0.522,2.791,1.945,2.791c1.062,0,1.8-0.738,2.088-1.459
		c0.09-0.216,0.144-0.504,0.144-0.81v-5.33h1.584V85.744z"/>
	<path d="M185.989,81.783c0-0.919-0.036-1.639-0.072-2.359h1.387l0.072,1.423h0.054c0.486-0.828,1.296-1.603,2.755-1.603
		c1.17,0,2.07,0.72,2.449,1.746h0.036c0.271-0.504,0.63-0.864,0.991-1.134c0.522-0.396,1.08-0.612,1.908-0.612
		c1.17,0,2.881,0.756,2.881,3.781v5.113H196.9v-4.915c0-1.693-0.63-2.684-1.891-2.684c-0.918,0-1.603,0.667-1.891,1.423
		c-0.072,0.234-0.126,0.504-0.126,0.792v5.384h-1.548v-5.222c0-1.387-0.612-2.377-1.818-2.377c-0.973,0-1.71,0.793-1.963,1.585
		c-0.09,0.216-0.126,0.504-0.126,0.774v5.239h-1.548V81.783z"/>
</g>
<g>
	
		<radialGradient id="path11134_2_" cx="277.3887" cy="-951.1387" r="30.188" gradientTransform="matrix(0.3664 0 0 0.3664 84.8181 605.4301)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FCFAE0"/>
		<stop  offset="0.1203" style="stop-color:#FDFADB"/>
		<stop  offset="0.2662" style="stop-color:#FFF8CB"/>
		<stop  offset="0.4255" style="stop-color:#FDF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FDEF90"/>
		<stop  offset="0.7706" style="stop-color:#FFE963"/>
		<stop  offset="0.9506" style="stop-color:#FFE22C"/>
		<stop  offset="1" style="stop-color:#FFDF18"/>
	</radialGradient>
	<path id="path11134_1_" fill="url(#path11134_2_)" stroke="#000000" stroke-width="0.9921" d="M197.514,256.934
		c0,6.107-4.951,11.06-11.059,11.06c-6.111,0-11.062-4.953-11.062-11.06c0-6.107,4.951-11.062,11.062-11.062
		C192.562,245.872,197.514,250.827,197.514,256.934z"/>
	<g>
		<path fill="#000100" d="M183.129,261.218c-0.338,0.174-1.046,0.349-1.939,0.349c-2.07,0-3.617-1.308-3.617-3.727
			c0-2.31,1.558-3.856,3.835-3.856c0.904,0,1.493,0.196,1.743,0.327l-0.24,0.773c-0.349-0.175-0.86-0.306-1.471-0.306
			c-1.721,0-2.865,1.101-2.865,3.029c0,1.809,1.035,2.952,2.811,2.952c0.588,0,1.176-0.12,1.558-0.305L183.129,261.218z"/>
		<path fill="#000100" d="M187.938,260.183c0,0.457,0.022,0.904,0.077,1.264h-0.861l-0.087-0.665h-0.033
			c-0.283,0.414-0.86,0.785-1.612,0.785c-1.067,0-1.612-0.752-1.612-1.515c0-1.274,1.133-1.972,3.17-1.961v-0.109
			c0-0.436-0.12-1.23-1.198-1.22c-0.501,0-1.014,0.142-1.384,0.392l-0.218-0.643c0.436-0.272,1.078-0.457,1.743-0.457
			c1.623,0,2.015,1.1,2.015,2.157V260.183z M187,258.755c-1.046-0.021-2.233,0.164-2.233,1.188c0,0.632,0.414,0.916,0.894,0.916
			c0.697,0,1.144-0.437,1.296-0.883c0.033-0.099,0.043-0.207,0.043-0.305V258.755z"/>
		<path fill="#000100" d="M188.967,257.816v-0.343l0.438-0.425c1.054-1.004,1.536-1.537,1.536-2.158c0-0.42-0.197-0.807-0.812-0.807
			c-0.375,0-0.686,0.19-0.876,0.35l-0.178-0.395c0.279-0.234,0.692-0.418,1.168-0.418c0.882,0,1.257,0.609,1.257,1.199
			c0,0.762-0.552,1.377-1.422,2.215l-0.324,0.305v0.014h1.847v0.463H188.967z"/>
		<path fill="#000100" d="M194.036,254.439v1.492h1.435v0.381h-1.435v1.504h-0.406v-1.504h-1.435v-0.381h1.435v-1.492H194.036z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="309.2" y1="309.123" x2="217.891" y2="163.509"/>
		<polygon points="222.521,163.921 218.548,164.556 216.245,167.856 214.72,158.452 		"/>
	</g>
</g>
<g id="Vm">
	<line id="Vm_path1" fill="none" stroke="#000000" stroke-width="3" x1="60" y1="130.003" x2="71" y2="130.003"/>
	<g>
		<path d="M64.33,119.683l-3.096-9.441h1.331l1.471,4.65c0.392,1.274,0.742,2.423,1.008,3.53h0.028
			c0.266-1.093,0.645-2.283,1.079-3.516l1.597-4.665h1.303l-3.376,9.441H64.33z"/>
	</g>
</g>
<g id="n">
	<line id="n_path1" fill="none" stroke="#000000" stroke-width="3" x1="79" y1="130.003" x2="90" y2="130.003"/>
	<g id="XMLID_1_">
		<path d="M82.236,114.738c0-0.714-0.014-1.274-0.056-1.835h1.093l0.07,1.121h0.028c0.336-0.63,1.121-1.261,2.241-1.261
			c0.938,0,2.395,0.561,2.395,2.886v4.034h-1.232v-3.908c0-1.092-0.406-2.003-1.569-2.003c-0.798,0-1.429,0.574-1.653,1.261
			c-0.056,0.154-0.084,0.364-0.084,0.574v4.076h-1.233V114.738z"/>
	</g>
</g>
<g>
	<path d="M106.82,119.389c-0.434,0.224-1.345,0.448-2.493,0.448c-2.662,0-4.65-1.681-4.65-4.791c0-2.969,2.003-4.958,4.931-4.958
		c1.163,0,1.919,0.252,2.241,0.42l-0.308,0.994c-0.448-0.224-1.107-0.392-1.891-0.392c-2.213,0-3.684,1.415-3.684,3.894
		c0,2.325,1.331,3.796,3.614,3.796c0.757,0,1.513-0.154,2.003-0.393L106.82,119.389z"/>
	<path d="M112.979,118.058c0,0.588,0.028,1.163,0.098,1.625h-1.107l-0.098-0.854h-0.042c-0.378,0.532-1.107,1.009-2.073,1.009
		c-1.373,0-2.073-0.967-2.073-1.947c0-1.639,1.457-2.535,4.076-2.521v-0.14c0-0.546-0.154-1.569-1.541-1.555
		c-0.644,0-1.302,0.182-1.779,0.504l-0.28-0.827c0.561-0.35,1.387-0.588,2.241-0.588c2.073,0,2.578,1.415,2.578,2.76V118.058z
		 M111.789,116.223c-1.345-0.028-2.872,0.21-2.872,1.527c0,0.812,0.532,1.177,1.148,1.177c0.896,0,1.471-0.561,1.667-1.135
		c0.042-0.14,0.056-0.28,0.056-0.392V116.223z"/>
	<path d="M119.797,119.445c-0.322,0.154-1.037,0.393-1.947,0.393c-2.045,0-3.376-1.387-3.376-3.46c0-2.087,1.429-3.614,3.642-3.614
		c0.729,0,1.373,0.182,1.709,0.364l-0.28,0.938c-0.294-0.154-0.756-0.322-1.429-0.322c-1.555,0-2.396,1.163-2.396,2.563
		c0,1.569,1.009,2.536,2.354,2.536c0.7,0,1.163-0.168,1.513-0.322L119.797,119.445z"/>
</g>
<g id="CaER">
	<line id="CaER_path1" fill="none" stroke="#000000" stroke-width="3" x1="133.795" y1="130.003" x2="160" y2="130.003"/>
	<g>
		<path d="M139.049,119.389c-0.434,0.224-1.345,0.448-2.493,0.448c-2.662,0-4.65-1.681-4.65-4.791c0-2.969,2.003-4.958,4.931-4.958
			c1.163,0,1.919,0.252,2.241,0.42l-0.308,0.994c-0.448-0.224-1.107-0.392-1.891-0.392c-2.213,0-3.684,1.415-3.684,3.894
			c0,2.325,1.331,3.796,3.614,3.796c0.756,0,1.513-0.154,2.003-0.393L139.049,119.389z"/>
		<path d="M145.208,118.058c0,0.588,0.028,1.163,0.098,1.625h-1.107l-0.098-0.854h-0.042c-0.378,0.532-1.107,1.009-2.073,1.009
			c-1.373,0-2.073-0.967-2.073-1.947c0-1.639,1.457-2.535,4.076-2.521v-0.14c0-0.546-0.154-1.569-1.541-1.555
			c-0.645,0-1.303,0.182-1.779,0.504l-0.28-0.827c0.561-0.35,1.387-0.588,2.241-0.588c2.073,0,2.578,1.415,2.578,2.76V118.058z
			 M144.017,116.223c-1.345-0.028-2.871,0.21-2.871,1.527c0,0.812,0.532,1.177,1.148,1.177c0.896,0,1.471-0.561,1.667-1.135
			c0.042-0.14,0.056-0.28,0.056-0.392V116.223z"/>
		<path d="M152.11,115.257h-3.656v3.404h4.09v1.022h-5.323v-9.441h5.113v1.022h-3.88v2.983h3.656V115.257z"/>
		<path d="M154.123,110.368c0.617-0.112,1.513-0.196,2.339-0.196c1.303,0,2.157,0.252,2.731,0.771
			c0.462,0.42,0.743,1.064,0.743,1.807c0,1.232-0.785,2.059-1.765,2.395v0.042c0.714,0.252,1.148,0.925,1.373,1.905
			c0.308,1.316,0.532,2.227,0.729,2.591h-1.261c-0.154-0.28-0.364-1.079-0.616-2.255c-0.28-1.303-0.798-1.793-1.905-1.835h-1.148
			v4.09h-1.219V110.368z M155.342,114.668h1.247c1.303,0,2.129-0.714,2.129-1.793c0-1.219-0.883-1.751-2.171-1.751
			c-0.588,0-0.995,0.042-1.205,0.098V114.668z"/>
	</g>
</g>
<g>
	<path d="M171.452,116.713l-0.98,2.97h-1.261l3.222-9.441h1.457l3.222,9.441h-1.303l-1.008-2.97H171.452z M174.562,115.761
		l-0.938-2.718c-0.21-0.616-0.35-1.177-0.49-1.723h-0.028c-0.14,0.546-0.28,1.134-0.476,1.708l-0.924,2.732H174.562z"/>
	<path d="M178.493,110.382c0.743-0.126,1.625-0.21,2.591-0.21c1.751,0,2.998,0.42,3.824,1.177c0.854,0.771,1.345,1.863,1.345,3.39
		c0,1.541-0.49,2.802-1.359,3.67c-0.896,0.883-2.353,1.359-4.188,1.359c-0.882,0-1.597-0.042-2.213-0.112V110.382z M179.711,118.73
		c0.308,0.042,0.756,0.056,1.233,0.056c2.619,0,4.02-1.457,4.02-4.006c0.014-2.227-1.247-3.642-3.824-3.642
		c-0.63,0-1.106,0.056-1.429,0.126V118.73z"/>
	<path d="M187.816,110.354c0.588-0.098,1.359-0.182,2.339-0.182c1.205,0,2.087,0.28,2.647,0.785
		c0.504,0.448,0.827,1.134,0.827,1.975c0,0.854-0.252,1.527-0.729,2.017c-0.658,0.686-1.695,1.036-2.886,1.036
		c-0.364,0-0.7-0.014-0.98-0.084v3.782h-1.219V110.354z M189.035,114.907c0.266,0.07,0.603,0.098,1.009,0.098
		c1.471,0,2.367-0.728,2.367-2.003c0-1.261-0.896-1.863-2.228-1.863c-0.532,0-0.938,0.042-1.148,0.098V114.907z"/>
	<path d="M199.705,119.445c-0.322,0.154-1.036,0.393-1.947,0.393c-2.045,0-3.376-1.387-3.376-3.46c0-2.087,1.429-3.614,3.642-3.614
		c0.729,0,1.373,0.182,1.709,0.364l-0.28,0.938c-0.294-0.154-0.756-0.322-1.429-0.322c-1.555,0-2.396,1.163-2.396,2.563
		c0,1.569,1.009,2.536,2.354,2.536c0.7,0,1.163-0.168,1.513-0.322L199.705,119.445z"/>
</g>
<g id="NADHm">
	<line id="NADHm_path1" fill="none" stroke="#000000" stroke-width="3" x1="289.652" y1="412.43" x2="338.094" y2="412.43"/>
	<g>
		<path d="M290.914,401.961v-9.441h1.345l3.012,4.776c0.687,1.106,1.247,2.101,1.681,3.068l0.042-0.014
			c-0.112-1.261-0.14-2.409-0.14-3.88v-3.95h1.148v9.441h-1.232l-2.998-4.791c-0.659-1.051-1.289-2.129-1.751-3.152l-0.042,0.014
			c0.07,1.19,0.084,2.325,0.084,3.894v4.034H290.914z"/>
		<path d="M301.652,398.992l-0.98,2.97h-1.261l3.222-9.441h1.457l3.222,9.441h-1.303l-1.009-2.97H301.652z M304.762,398.04
			l-0.938-2.718c-0.21-0.616-0.35-1.177-0.49-1.723h-0.028c-0.14,0.546-0.28,1.134-0.476,1.708l-0.924,2.732H304.762z"/>
		<path d="M308.693,392.661c0.743-0.126,1.625-0.21,2.591-0.21c1.751,0,2.999,0.42,3.825,1.177c0.854,0.771,1.344,1.863,1.344,3.39
			c0,1.541-0.49,2.802-1.358,3.67c-0.896,0.883-2.353,1.359-4.188,1.359c-0.882,0-1.597-0.042-2.213-0.112V392.661z
			 M309.912,401.009c0.308,0.042,0.756,0.056,1.233,0.056c2.619,0,4.02-1.457,4.02-4.006c0.015-2.227-1.247-3.642-3.824-3.642
			c-0.63,0-1.106,0.056-1.429,0.126V401.009z"/>
		<path d="M319.236,392.521v3.95h4.566v-3.95h1.232v9.441h-1.232v-4.426h-4.566v4.426h-1.232v-9.441H319.236z"/>
		<path d="M327.243,397.017c0-0.714-0.028-1.274-0.056-1.835h1.078l0.057,1.107h0.041c0.379-0.645,1.01-1.247,2.144-1.247
			c0.911,0,1.61,0.561,1.905,1.359h0.027c0.211-0.392,0.49-0.672,0.771-0.882c0.406-0.308,0.84-0.477,1.484-0.477
			c0.91,0,2.241,0.588,2.241,2.942v3.978h-1.204v-3.824c0-1.316-0.49-2.087-1.471-2.087c-0.715,0-1.248,0.518-1.472,1.106
			c-0.056,0.182-0.098,0.392-0.098,0.616v4.188h-1.205v-4.062c0-1.079-0.476-1.849-1.415-1.849c-0.756,0-1.33,0.616-1.526,1.232
			c-0.069,0.168-0.099,0.393-0.099,0.603v4.076h-1.204V397.017z"/>
	</g>
</g>
<g id="Cam_1_">
	<line id="Cam_path1_1_" fill="none" stroke="#000000" stroke-width="3" x1="344.818" y1="412.43" x2="369.793" y2="412.43"/>
	<g>
		<path d="M351.73,401.667c-0.434,0.224-1.345,0.448-2.493,0.448c-2.661,0-4.65-1.681-4.65-4.791c0-2.969,2.003-4.958,4.931-4.958
			c1.162,0,1.919,0.252,2.241,0.42l-0.308,0.994c-0.449-0.224-1.107-0.392-1.892-0.392c-2.214,0-3.685,1.415-3.685,3.894
			c0,2.325,1.331,3.796,3.614,3.796c0.757,0,1.513-0.154,2.003-0.393L351.73,401.667z"/>
		<path d="M357.89,400.336c0,0.588,0.028,1.163,0.099,1.625h-1.107l-0.098-0.854h-0.042c-0.378,0.532-1.106,1.009-2.073,1.009
			c-1.373,0-2.073-0.967-2.073-1.947c0-1.639,1.457-2.535,4.076-2.521v-0.14c0-0.546-0.153-1.569-1.541-1.555
			c-0.644,0-1.302,0.182-1.778,0.504l-0.281-0.827c0.561-0.35,1.388-0.588,2.242-0.588c2.072,0,2.577,1.415,2.577,2.76V400.336z
			 M356.699,398.501c-1.345-0.028-2.871,0.21-2.871,1.527c0,0.812,0.531,1.177,1.148,1.177c0.896,0,1.471-0.561,1.666-1.135
			c0.043-0.14,0.057-0.28,0.057-0.392V398.501z"/>
		<path d="M359.875,397.017c0-0.714-0.027-1.274-0.057-1.835h1.079l0.056,1.107h0.043c0.378-0.645,1.008-1.247,2.143-1.247
			c0.91,0,1.611,0.561,1.905,1.359h0.028c0.21-0.392,0.49-0.672,0.77-0.882c0.406-0.308,0.841-0.477,1.485-0.477
			c0.911,0,2.241,0.588,2.241,2.942v3.978h-1.205v-3.824c0-1.316-0.49-2.087-1.471-2.087c-0.714,0-1.246,0.518-1.471,1.106
			c-0.056,0.182-0.098,0.392-0.098,0.616v4.188h-1.205v-4.062c0-1.079-0.477-1.849-1.414-1.849c-0.757,0-1.331,0.616-1.527,1.232
			c-0.07,0.168-0.098,0.393-0.098,0.603v4.076h-1.205V397.017z"/>
	</g>
</g>
<g id="ADPm_1_">
	<line id="ADPm_path1_1_" fill="none" stroke="#000000" stroke-width="3" x1="377" y1="412.333" x2="410" y2="412.333"/>
	<g>
		<path d="M377.695,398.992l-0.98,2.97h-1.261l3.222-9.441h1.457l3.222,9.441h-1.303l-1.009-2.97H377.695z M380.805,398.04
			l-0.938-2.718c-0.211-0.616-0.351-1.177-0.49-1.723h-0.029c-0.14,0.546-0.279,1.134-0.476,1.708l-0.925,2.732H380.805z"/>
		<path d="M384.736,392.661c0.742-0.126,1.625-0.21,2.592-0.21c1.75,0,2.998,0.42,3.824,1.177c0.854,0.771,1.344,1.863,1.344,3.39
			c0,1.541-0.49,2.802-1.358,3.67c-0.896,0.883-2.353,1.359-4.188,1.359c-0.882,0-1.597-0.042-2.213-0.112V392.661z
			 M385.955,401.009c0.309,0.042,0.756,0.056,1.232,0.056c2.619,0,4.021-1.457,4.021-4.006c0.015-2.227-1.247-3.642-3.824-3.642
			c-0.63,0-1.106,0.056-1.429,0.126V401.009z"/>
		<path d="M394.061,392.632c0.588-0.098,1.358-0.182,2.339-0.182c1.204,0,2.087,0.28,2.647,0.785
			c0.504,0.448,0.826,1.134,0.826,1.975c0,0.854-0.252,1.527-0.729,2.017c-0.658,0.686-1.694,1.036-2.885,1.036
			c-0.365,0-0.701-0.014-0.98-0.084v3.782h-1.219V392.632z M395.279,397.185c0.266,0.07,0.602,0.098,1.008,0.098
			c1.471,0,2.367-0.728,2.367-2.003c0-1.261-0.896-1.863-2.227-1.863c-0.533,0-0.939,0.042-1.148,0.098V397.185z"/>
		<path d="M401.242,397.017c0-0.714-0.027-1.274-0.057-1.835h1.079l0.056,1.107h0.043c0.378-0.645,1.008-1.247,2.143-1.247
			c0.91,0,1.611,0.561,1.905,1.359h0.028c0.21-0.392,0.49-0.672,0.77-0.882c0.406-0.308,0.841-0.477,1.485-0.477
			c0.911,0,2.241,0.588,2.241,2.942v3.978h-1.205v-3.824c0-1.316-0.49-2.087-1.471-2.087c-0.714,0-1.246,0.518-1.471,1.106
			c-0.056,0.182-0.098,0.392-0.098,0.616v4.188h-1.205v-4.062c0-1.079-0.477-1.849-1.414-1.849c-0.757,0-1.331,0.616-1.527,1.232
			c-0.07,0.168-0.098,0.393-0.098,0.603v4.076h-1.205V397.017z"/>
	</g>
</g>
<g id="F6P">
	<line id="F6P_path1" fill="none" stroke="#000000" stroke-width="3" x1="548.419" y1="124.683" x2="571.075" y2="124.683"/>
	<g>
		<path d="M551.063,106.133h5.085v1.022h-3.853v3.138h3.558v1.008h-3.558v4.272h-1.232V106.133z"/>
		<path d="M562.658,107.338c-0.252-0.014-0.574,0.014-0.925,0.07c-1.947,0.308-2.956,1.709-3.166,3.222h0.028
			c0.434-0.588,1.205-1.064,2.213-1.064c1.611,0,2.746,1.177,2.746,2.941c0,1.681-1.135,3.222-3.04,3.222
			c-1.933,0-3.208-1.513-3.208-3.88c0-1.793,0.631-3.208,1.541-4.104c0.756-0.743,1.766-1.205,2.914-1.345
			c0.363-0.056,0.672-0.07,0.896-0.07V107.338z M562.308,112.591c0-1.303-0.743-2.087-1.877-2.087c-0.743,0-1.442,0.448-1.779,1.121
			c-0.069,0.14-0.126,0.308-0.126,0.532c0.014,1.499,0.715,2.62,2.018,2.62C561.594,114.776,562.308,113.894,562.308,112.591z"/>
		<path d="M565.077,106.245c0.589-0.098,1.358-0.182,2.339-0.182c1.205,0,2.088,0.28,2.648,0.785
			c0.504,0.448,0.826,1.134,0.826,1.975c0,0.854-0.252,1.527-0.729,2.017c-0.658,0.686-1.695,1.036-2.886,1.036
			c-0.364,0-0.7-0.014-0.98-0.084v3.782h-1.219V106.245z M566.296,110.798c0.267,0.07,0.603,0.098,1.009,0.098
			c1.471,0,2.367-0.728,2.367-2.003c0-1.261-0.896-1.863-2.228-1.863c-0.532,0-0.938,0.042-1.148,0.098V110.798z"/>
	</g>
</g>
<g id="FBP">
	<line id="FBP_path1" fill="none" stroke="#000000" stroke-width="3" x1="576" y1="124.683" x2="596" y2="124.683"/>
	<g>
		<path d="M576.124,106.133h5.085v1.022h-3.853v3.138h3.558v1.008h-3.558v4.272h-1.232V106.133z"/>
		<path d="M582.956,106.273c0.532-0.126,1.387-0.21,2.228-0.21c1.219,0,2.003,0.21,2.577,0.687c0.49,0.364,0.799,0.924,0.799,1.667
			c0,0.924-0.616,1.723-1.598,2.073v0.042c0.896,0.21,1.947,0.953,1.947,2.354c0,0.812-0.322,1.443-0.812,1.891
			c-0.645,0.602-1.709,0.882-3.249,0.882c-0.841,0-1.485-0.056-1.892-0.112V106.273z M584.175,110.139h1.106
			c1.274,0,2.031-0.686,2.031-1.597c0-1.093-0.826-1.541-2.059-1.541c-0.561,0-0.883,0.042-1.079,0.084V110.139z M584.175,114.65
			c0.252,0.042,0.588,0.056,1.022,0.056c1.261,0,2.424-0.462,2.424-1.835c0-1.274-1.107-1.821-2.438-1.821h-1.009V114.65z"/>
		<path d="M590.544,106.245c0.589-0.098,1.358-0.182,2.34-0.182c1.204,0,2.087,0.28,2.647,0.785
			c0.504,0.448,0.826,1.134,0.826,1.975c0,0.854-0.252,1.527-0.729,2.017c-0.658,0.686-1.695,1.036-2.886,1.036
			c-0.364,0-0.7-0.014-0.98-0.084v3.782h-1.219V106.245z M591.763,110.798c0.267,0.07,0.603,0.098,1.009,0.098
			c1.471,0,2.367-0.728,2.367-2.003c0-1.261-0.896-1.863-2.228-1.863c-0.532,0-0.938,0.042-1.148,0.098V110.798z"/>
	</g>
</g>
</svg>

</window>