Location: Vilar, Kueh, Barkai, Leibler, 2002 @ 92a109f266fa / vilar_kueh_barkai_leibler_2002.xul

Author:
Hanne <Hanne@hanne-nielsens-macbook.local>
Date:
2009-12-15 11:34:01+13:00
Desc:
Added images in ai and svg format, removed non pub med references
Permanent Source URI:
https://models.physiomeproject.org/workspace/vilar_kueh_barkai_leibler_2002/rawfile/92a109f266fa26d2604fdd336066d603cc210d97/vilar_kueh_barkai_leibler_2002.xul

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="layout-diagram" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
   style="overflow: auto" onload="setupDocument()"
>
  <script>
<![CDATA[
window.model_entities =
  {
			A1: 

			{	id: "A1",
				y: 'A/A', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			A2: 

			{	id: "A2",
				y: 'A/A', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			A3: 

			{	id: "A3",
				y: 'A/A', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			C: 

			{	id: "C",
				y: 'C/C', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			DA: 

			{	id: "DA",
				y: 'DA/DA', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			DAp: 

			{	id: "DAp",
				y: 'DAp/DAp', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			DR: 

			{	id: "DR",
				y: 'DR/DR', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			DRP: 

			{	id: "DRP",
				y: 'DRP/DRP', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			MA: 

			{	id: "MA",
				y: 'MA/MA', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			MR: 

			{	id: "MR",
				y: 'MR/MR', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			},

			R: 

			{	id: "R",
				y: 'R/R', 
				x: 'environment/time', 
				graph: 'Graph window: to reproduce Fig2a/2b of Vilar et al. 2002, plot R+A. To reproduce Fig3b plot R+C', 
				linestyle: 'none'
			}
   
};

function flushVisibilityInformation()
{
  var i;
  var message = "Displaying flux of ";
  if(pcenv != null)
  {
    for (i in window.model_entities)
    {
      pcenv.selectTrace(window.model_entities[i].graph,
                        window.model_entities[i].x,
                        window.model_entities[i].y,
                        '',
                        window.model_entities[i].linestyle);
      if (window.model_entities[i].linestyle != "none")
        message += i +", ";
    }
    message = message.slice(0, -2);
    if (message != "Displaying flux o")
      pcenv.status(message);
    else
      pcenv.status("No fluxes displayed.");
  }
}

function processSelectEntity(event)
{
  pcenv.status("In processSelectEntity");

  var name = window.svgIdToName[event.currentTarget.id];

  if (window.model_entities[name].linestyle == "none")
    window.model_entities[name].linestyle = "lines";
  else
    window.model_entities[name].linestyle = "none";

  flushVisibilityInformation();
}

function processContext(event)
{
  // if (event.button != 2)
  //   return true;

  var name = window.svgIdToName[event.currentTarget.id];
  
  if (window.model_entities[name].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 window.model_entities[name].context)
  {
    var item = window.model_entities[name].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 setupDocument()
{
  flushVisibilityInformation();

  window.diagram = document.getElementById("sachse");

  window.svgIdToName = {};

  for (var name in window.model_entities)
  {
    var e = window.model_entities[name];

    var svg = document.getElementById(e.id);
    window.svgIdToName[e.id] = name;

    svg.addEventListener("click", processSelectEntity, false);
    svg.addEventListener("contextmenu", processContext, false);
  }
}

]]>
  </script>

<popupset>
  <menupopup id="entityContextMenu" />
</popupset>

<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://web.resource.org/cc/"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   version="1.1"
   id="vilar_2002"
   width="485.334px"
   height="390.667px"
   overflow="visible"
   xml:space="preserve"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata
   id="vilar_2002">
<rdf:RDF><cc:Work
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
   id="vilar_2002" />

<!--<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="485.334px" height="390.667px" viewBox="0 0 485.334 390.667" enable-background="new 0 0 485.334 390.667"
	 xml:space="preserve">-->
<g id="A1">
	
		<radialGradient id="path16609_1_" cx="254.8672" cy="-542.0801" r="16.186" gradientTransform="matrix(0.7706 0 0 0.6358 18.6042 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#A2FF5F"/>
		<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
		<stop  offset="0.5552" style="stop-color:#99FD5F"/>
		<stop  offset="0.66" style="stop-color:#8EFB5E"/>
		<stop  offset="0.7448" style="stop-color:#7DF85E"/>
		<stop  offset="0.8174" style="stop-color:#67F35D"/>
		<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
		<stop  offset="0.9398" style="stop-color:#2BE85B"/>
		<stop  offset="0.9915" style="stop-color:#07E05A"/>
		<stop  offset="1" style="stop-color:#00DF5A"/>
	</radialGradient>
	<path id="path16609_14_" fill="url(#path16609_1_)" stroke="#000000" d="M227.249,82.432c0,5.786-5.484,10.478-12.244,10.478
		c-6.764,0-12.244-4.689-12.244-10.478s5.48-10.476,12.244-10.476C221.765,71.958,227.249,76.645,227.249,82.432z"/>
	<g>
		<path d="M213.794,83.249l-0.7,2.119h-0.899l2.289-6.736h1.049l2.299,6.736h-0.93l-0.719-2.119H213.794z M216.002,82.569
			l-0.669-1.938c-0.14-0.439-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.2,0.81-0.33,1.22l-0.66,1.948H216.002z"/>
	</g>
</g>
<g id="R">
	
		<radialGradient id="path16609_3_" cx="322.0703" cy="-542.0801" r="16.1863" gradientTransform="matrix(0.7706 0 0 0.6358 18.6042 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#A2FF5F"/>
		<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
		<stop  offset="0.5552" style="stop-color:#99FD5F"/>
		<stop  offset="0.66" style="stop-color:#8EFB5E"/>
		<stop  offset="0.7448" style="stop-color:#7DF85E"/>
		<stop  offset="0.8174" style="stop-color:#67F35D"/>
		<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
		<stop  offset="0.9398" style="stop-color:#2BE85B"/>
		<stop  offset="0.9915" style="stop-color:#07E05A"/>
		<stop  offset="1" style="stop-color:#00DF5A"/>
	</radialGradient>
	<path id="path16609_9_" fill="url(#path16609_3_)" stroke="#000000" d="M279.036,82.432c0,5.786-5.485,10.478-12.245,10.478
		c-6.764,0-12.244-4.689-12.244-10.478s5.48-10.476,12.244-10.476C273.551,71.958,279.036,76.645,279.036,82.432z"/>
	<g>
		<path d="M264.86,78.732c0.439-0.09,1.079-0.15,1.669-0.15c0.93,0,1.539,0.18,1.959,0.56c0.33,0.29,0.53,0.75,0.53,1.279
			c0,0.879-0.57,1.469-1.27,1.709v0.03c0.51,0.18,0.82,0.659,0.99,1.359c0.22,0.939,0.379,1.589,0.509,1.849h-0.899
			c-0.11-0.19-0.26-0.77-0.439-1.609c-0.2-0.93-0.57-1.279-1.359-1.31h-0.82v2.918h-0.869V78.732z M265.729,81.791h0.89
			c0.93,0,1.519-0.51,1.519-1.279c0-0.87-0.629-1.249-1.549-1.249c-0.42,0-0.71,0.04-0.86,0.08V81.791z"/>
	</g>
</g>
<g>
	<path d="M241.828,75.16v7.168h6.552v1.83h-6.552v7.229h-1.855v-7.229h-6.552v-1.83h6.552V75.16H241.828z"/>
</g>
<g id="C">
	
		<radialGradient id="path16609_7_" cx="226.5039" cy="-627.5903" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -119.9902 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FFFCDF"/>
		<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
		<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
		<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FFF090"/>
		<stop  offset="0.7706" style="stop-color:#FFEA64"/>
		<stop  offset="0.9506" style="stop-color:#FFE22F"/>
		<stop  offset="1" style="stop-color:#FFE01F"/>
	</radialGradient>
	<path id="path16609_11_" fill="url(#path16609_7_)" stroke="#000000" d="M266.214,28.065c0,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.476C254.876,17.59,266.214,22.278,266.214,28.065z"/>
	<g>
		<path d="M243.456,30.791c-0.31,0.16-0.959,0.32-1.779,0.32c-1.899,0-3.318-1.199-3.318-3.418c0-2.119,1.429-3.538,3.518-3.538
			c0.83,0,1.369,0.18,1.599,0.3l-0.22,0.709c-0.32-0.16-0.79-0.28-1.35-0.28c-1.579,0-2.628,1.009-2.628,2.778
			c0,1.659,0.95,2.708,2.579,2.708c0.54,0,1.08-0.11,1.429-0.28L243.456,30.791z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3,3" x1="81.715" y1="166" x2="100.667" y2="189.583"/>
		<polygon points="86.361,165.87 82.489,166.964 80.587,170.51 77.976,161.348 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="203.333" y1="99.333" x2="130" y2="190.583"/>
		<polygon points="204.461,103.843 202.56,100.297 198.687,99.203 207.073,94.681 		"/>
	</g>
</g>
<g enable-background="new    ">
	<path d="M44.953,330.457v7.168h6.552v1.83h-6.552v7.229h-1.855v-7.229h-6.552v-1.83h6.552v-7.168H44.953z"/>
</g>
<g id="A2">
	
		<radialGradient id="path16609_8_" cx="32.9863" cy="-102.3628" r="16.1858" gradientTransform="matrix(0.7706 0 0 0.6358 18.6042 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#A2FF5F"/>
		<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
		<stop  offset="0.5552" style="stop-color:#99FD5F"/>
		<stop  offset="0.66" style="stop-color:#8EFB5E"/>
		<stop  offset="0.7448" style="stop-color:#7DF85E"/>
		<stop  offset="0.8174" style="stop-color:#67F35D"/>
		<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
		<stop  offset="0.9398" style="stop-color:#2BE85B"/>
		<stop  offset="0.9915" style="stop-color:#07E05A"/>
		<stop  offset="1" style="stop-color:#00DF5A"/>
	</radialGradient>
	<path id="path16609_4_" fill="url(#path16609_8_)" stroke="#000000" d="M56.268,362.004c0,5.786-5.484,10.478-12.244,10.478
		c-6.764,0-12.244-4.689-12.244-10.478s5.48-10.476,12.244-10.476C50.783,351.53,56.268,356.217,56.268,362.004z"/>
	<g>
		<path d="M42.812,362.821l-0.7,2.119h-0.899l2.289-6.736h1.049l2.299,6.736h-0.93l-0.719-2.119H42.812z M45.021,362.141
			l-0.669-1.938c-0.14-0.439-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.2,0.81-0.33,1.22l-0.66,1.948H45.021z"/>
	</g>
</g>
<g id="DA">
	
		<radialGradient id="path16609_13_" cx="102.9395" cy="-178.7261" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -119.9902 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FFFCDF"/>
		<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
		<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
		<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FFF090"/>
		<stop  offset="0.7706" style="stop-color:#FFEA64"/>
		<stop  offset="0.9506" style="stop-color:#FFE22F"/>
		<stop  offset="1" style="stop-color:#FFE01F"/>
	</radialGradient>
	<path id="path16609_2_" fill="url(#path16609_13_)" stroke="#000000" d="M69.339,313.453c0,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.476C58.001,302.978,69.339,307.666,69.339,313.453z"/>
	<g>
		<path d="M38.382,309.742c0.54-0.08,1.169-0.14,1.859-0.14c1.25,0,2.139,0.279,2.729,0.829c0.61,0.55,0.959,1.34,0.959,2.429
			c0,1.1-0.35,1.999-0.969,2.619c-0.64,0.629-1.679,0.969-2.988,0.969c-0.63,0-1.14-0.02-1.589-0.079V309.742z M39.262,315.708
			c0.22,0.04,0.54,0.04,0.88,0.04c1.859,0.01,2.868-1.039,2.868-2.858c0.01-1.609-0.89-2.599-2.729-2.599
			c-0.45,0-0.79,0.04-1.02,0.09V315.708z"/>
		<path d="M46.142,314.269l-0.7,2.119h-0.899l2.289-6.736h1.049l2.299,6.736H49.25l-0.72-2.119H46.142z M48.35,313.589l-0.669-1.938
			c-0.14-0.439-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.2,0.81-0.33,1.22l-0.66,1.948H48.35z"/>
	</g>
</g>
<g>
	
		<radialGradient id="path16609_19_" cx="189.0332" cy="-153.4795" r="16.186" gradientTransform="matrix(0.7706 0 0 0.6358 18.6042 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#A2FF5F"/>
		<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
		<stop  offset="0.5552" style="stop-color:#99FD5F"/>
		<stop  offset="0.66" style="stop-color:#8EFB5E"/>
		<stop  offset="0.7448" style="stop-color:#7DF85E"/>
		<stop  offset="0.8174" style="stop-color:#67F35D"/>
		<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
		<stop  offset="0.9398" style="stop-color:#2BE85B"/>
		<stop  offset="0.9915" style="stop-color:#07E05A"/>
		<stop  offset="1" style="stop-color:#00DF5A"/>
	</radialGradient>
	<path id="path16609_5_" fill="url(#path16609_19_)" stroke="#000000" d="M176.518,329.504c0,5.786-5.484,10.478-12.244,10.478
		c-6.764,0-12.244-4.689-12.244-10.478s5.48-10.476,12.244-10.476C171.033,319.03,176.518,323.717,176.518,329.504z"/>
	<g>
		<path d="M163.062,330.321l-0.7,2.119h-0.899l2.289-6.736h1.049l2.299,6.736h-0.93l-0.719-2.119H163.062z M165.271,329.641
			l-0.669-1.938c-0.14-0.439-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.2,0.81-0.33,1.22l-0.66,1.948H165.271z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="75.624" y1="338.23" x2="137.957" y2="338.23"/>
		<polygon points="135.148,341.934 136.721,338.23 135.148,334.527 143.926,338.23 		"/>
		<polygon points="78.433,334.526 76.86,338.23 78.433,341.934 69.655,338.23 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="99.5" y1="212.583" x2="58" y2="304.583"/>
		<polygon points="101.722,216.667 98.992,213.71 94.969,213.621 101.955,207.142 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="131" y1="212.583" x2="179.83" y2="320.833"/>
		<polygon points="135.531,213.621 131.508,213.71 128.779,216.667 128.545,207.142 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="279.001" y1="99.333" x2="352.335" y2="190.583"/>
		<polygon points="283.647,99.203 279.775,100.297 277.874,103.843 275.262,94.681 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3,3" x1="402.227" y1="166" x2="381.667" y2="191.583"/>
		<polygon points="403.354,170.51 401.452,166.964 397.58,165.87 405.966,161.348 		"/>
	</g>
</g>
<g enable-background="new    ">
	<path d="M296.62,331.457v7.168h6.552v1.83h-6.552v7.229h-1.855v-7.229h-6.552v-1.83h6.552v-7.168H296.62z"/>
</g>
<g id="A3">
	
		<radialGradient id="path16609_20_" cx="359.5723" cy="-100.7896" r="16.1858" gradientTransform="matrix(0.7706 0 0 0.6358 18.6042 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#A2FF5F"/>
		<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
		<stop  offset="0.5552" style="stop-color:#99FD5F"/>
		<stop  offset="0.66" style="stop-color:#8EFB5E"/>
		<stop  offset="0.7448" style="stop-color:#7DF85E"/>
		<stop  offset="0.8174" style="stop-color:#67F35D"/>
		<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
		<stop  offset="0.9398" style="stop-color:#2BE85B"/>
		<stop  offset="0.9915" style="stop-color:#07E05A"/>
		<stop  offset="1" style="stop-color:#00DF5A"/>
	</radialGradient>
	<path id="path16609_17_" fill="url(#path16609_20_)" stroke="#000000" d="M307.935,363.003c0,5.787-5.484,10.479-12.244,10.479
		c-6.764,0-12.244-4.689-12.244-10.479c0-5.787,5.48-10.475,12.244-10.475C302.45,352.529,307.935,357.216,307.935,363.003z"/>
	<g>
		<path d="M294.479,363.821l-0.7,2.119h-0.899l2.289-6.736h1.049l2.299,6.736h-0.93l-0.719-2.119H294.479z M296.688,363.141
			l-0.669-1.938c-0.14-0.439-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.2,0.81-0.33,1.22l-0.66,1.948H296.688z"/>
	</g>
</g>
<g id="DR">
	
		<radialGradient id="path16609_21_" cx="260.8931" cy="-177.1548" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -119.9902 427.0875)" gradientUnits="userSpaceOnUse">
		<stop  offset="0" style="stop-color:#FFFCDF"/>
		<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
		<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
		<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
		<stop  offset="0.5943" style="stop-color:#FFF090"/>
		<stop  offset="0.7706" style="stop-color:#FFEA64"/>
		<stop  offset="0.9506" style="stop-color:#FFE22F"/>
		<stop  offset="1" style="stop-color:#FFE01F"/>
	</radialGradient>
	<path id="path16609_16_" fill="url(#path16609_21_)" stroke="#000000" d="M321.006,314.453c0,5.785-11.338,10.477-25.316,10.477
		c-13.98,0-25.314-4.689-25.314-10.477c0-5.789,11.334-10.477,25.314-10.477C309.668,303.978,321.006,308.666,321.006,314.453z"/>
	<g>
		<path d="M290.049,310.742c0.54-0.08,1.169-0.14,1.859-0.14c1.25,0,2.139,0.279,2.729,0.829c0.61,0.55,0.959,1.34,0.959,2.429
			c0,1.1-0.35,1.999-0.969,2.619c-0.64,0.629-1.679,0.969-2.988,0.969c-0.63,0-1.14-0.02-1.589-0.079V310.742z M290.929,316.708
			c0.22,0.04,0.54,0.04,0.88,0.04c1.859,0.01,2.868-1.039,2.868-2.858c0.01-1.609-0.89-2.599-2.729-2.599
			c-0.45,0-0.79,0.04-1.02,0.09V316.708z"/>
		<path d="M296.719,310.751c0.439-0.09,1.079-0.149,1.669-0.149c0.929,0,1.539,0.18,1.959,0.56c0.33,0.29,0.53,0.75,0.53,1.279
			c0,0.88-0.57,1.469-1.27,1.709v0.03c0.51,0.18,0.82,0.659,0.989,1.359c0.22,0.939,0.38,1.589,0.51,1.849h-0.899
			c-0.11-0.189-0.26-0.77-0.439-1.609c-0.2-0.93-0.57-1.279-1.359-1.309h-0.82v2.918h-0.869V310.751z M297.588,313.81h0.89
			c0.93,0,1.519-0.51,1.519-1.279c0-0.869-0.629-1.249-1.549-1.249c-0.42,0-0.71,0.04-0.86,0.08V313.81z"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="327.291" y1="339.23" x2="389.624" y2="339.23"/>
		<polygon points="386.815,342.934 388.389,339.23 386.815,335.527 395.594,339.23 		"/>
		<polygon points="330.1,335.526 328.527,339.23 330.1,342.934 321.322,339.23 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="351.167" y1="213.583" x2="309.667" y2="305.583"/>
		<polygon points="353.389,217.667 350.659,214.71 346.636,214.621 353.621,208.142 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="382.667" y1="213.583" x2="431.497" y2="321.833"/>
		<polygon points="387.198,214.621 383.175,214.71 380.446,217.667 380.213,208.142 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" x1="240.898" y1="47.917" x2="240.898" y2="71.75"/>
		<polygon points="244.603,50.725 240.898,49.152 237.195,50.725 240.898,41.947 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3,3" x1="296.227" y1="49" x2="275.667" y2="74.583"/>
		<polygon points="297.354,53.51 295.452,49.964 291.58,48.87 299.966,44.348 		"/>
	</g>
</g>
<g>
	<g>
		<line fill="none" stroke="#000000" stroke-dasharray="3,3" x1="186.667" y1="49" x2="207.227" y2="74.583"/>
		<polygon points="191.313,48.87 187.441,49.964 185.54,53.51 182.928,44.348 		"/>
	</g>
</g>
<g id="DAp">
	<g>
		
			<radialGradient id="path16609_22_" cx="191.9058" cy="-126.0366" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -119.9902 427.0875)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFFCDF"/>
			<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
			<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
			<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
			<stop  offset="0.5943" style="stop-color:#FFF090"/>
			<stop  offset="0.7706" style="stop-color:#FFEA64"/>
			<stop  offset="0.9506" style="stop-color:#FFE22F"/>
			<stop  offset="1" style="stop-color:#FFE01F"/>
		</radialGradient>
		<path id="path16609_6_" fill="url(#path16609_22_)" stroke="#000000" d="M211.089,346.953c0,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.476C199.751,336.478,211.089,341.166,211.089,346.953z"/>
		<g>
			<path d="M180.132,343.242c0.54-0.08,1.169-0.14,1.859-0.14c1.25,0,2.139,0.279,2.729,0.829c0.61,0.55,0.959,1.34,0.959,2.429
				c0,1.1-0.35,1.999-0.969,2.619c-0.64,0.629-1.679,0.969-2.988,0.969c-0.63,0-1.14-0.02-1.589-0.079V343.242z M181.012,349.208
				c0.22,0.04,0.54,0.04,0.88,0.04c1.859,0.01,2.868-1.039,2.868-2.858c0.01-1.609-0.89-2.599-2.729-2.599
				c-0.45,0-0.79,0.04-1.02,0.09V349.208z"/>
			<path d="M187.892,347.769l-0.7,2.119h-0.899l2.289-6.736h1.049l2.299,6.736H191l-0.72-2.119H187.892z M190.1,347.089
				l-0.669-1.938c-0.14-0.439-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.2,0.81-0.33,1.22l-0.66,1.948H190.1z"/>
		</g>
	</g>
	<g>
		<rect x="188.333" y="319.667" fill="none" width="24" height="11.334"/>
		<path d="M189.233,320.21c0.648-0.096,1.403-0.168,2.231-0.168c1.499,0,2.566,0.336,3.274,0.995
			c0.732,0.66,1.151,1.607,1.151,2.915c0,1.319-0.419,2.398-1.163,3.142c-0.768,0.756-2.015,1.164-3.586,1.164
			c-0.756,0-1.368-0.024-1.907-0.097V320.21z M190.289,327.371c0.264,0.048,0.647,0.048,1.055,0.048
			c2.231,0.012,3.442-1.247,3.442-3.43c0.012-1.932-1.067-3.119-3.274-3.119c-0.54,0-0.947,0.049-1.223,0.108V327.371z"/>
		<path d="M198.544,325.643l-0.839,2.543h-1.08l2.747-8.084h1.259l2.758,8.084h-1.115l-0.864-2.543H198.544z M201.194,324.828
			l-0.803-2.326c-0.168-0.528-0.288-1.008-0.408-1.476h-0.036c-0.108,0.468-0.24,0.972-0.396,1.463l-0.792,2.339H201.194z"/>
		<path d="M204.508,324.276c0-0.743-0.012-1.343-0.048-1.895h0.947l0.06,0.995h0.024c0.42-0.72,1.116-1.127,2.051-1.127
			c1.416,0,2.471,1.188,2.471,2.95c0,2.087-1.283,3.118-2.638,3.118c-0.78,0-1.439-0.336-1.787-0.911h-0.024v3.154h-1.056V324.276z
			 M205.564,325.824c0,0.144,0.012,0.3,0.048,0.432c0.18,0.731,0.828,1.235,1.571,1.235c1.116,0,1.763-0.912,1.763-2.243
			c0-1.163-0.6-2.159-1.715-2.159c-0.72,0-1.403,0.504-1.607,1.296c-0.024,0.144-0.06,0.3-0.06,0.432V325.824z"/>
	</g>
</g>
<g id="DRP">
	<g>
		<g>
			
				<radialGradient id="path16609_23_" cx="515.6191" cy="-151.9067" r="16.186" gradientTransform="matrix(0.7706 0 0 0.6358 18.6042 427.0875)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#A2FF5F"/>
				<stop  offset="0.4082" style="stop-color:#A0FF5F"/>
				<stop  offset="0.5552" style="stop-color:#99FD5F"/>
				<stop  offset="0.66" style="stop-color:#8EFB5E"/>
				<stop  offset="0.7448" style="stop-color:#7DF85E"/>
				<stop  offset="0.8174" style="stop-color:#67F35D"/>
				<stop  offset="0.8817" style="stop-color:#4BEE5C"/>
				<stop  offset="0.9398" style="stop-color:#2BE85B"/>
				<stop  offset="0.9915" style="stop-color:#07E05A"/>
				<stop  offset="1" style="stop-color:#00DF5A"/>
			</radialGradient>
			<path id="path16609_15_" fill="url(#path16609_23_)" stroke="#000000" d="M428.185,330.503c0,5.787-5.484,10.479-12.244,10.479
				c-6.764,0-12.244-4.689-12.244-10.479c0-5.787,5.48-10.475,12.244-10.475C422.7,320.029,428.185,324.716,428.185,330.503z"/>
			<g>
				<path d="M414.729,331.321l-0.699,2.119h-0.899l2.288-6.736h1.05l2.299,6.736h-0.93l-0.72-2.119H414.729z M416.938,330.641
					l-0.67-1.938c-0.14-0.439-0.239-0.84-0.34-1.229h-0.029c-0.09,0.39-0.2,0.81-0.33,1.22l-0.66,1.948H416.938z"/>
			</g>
		</g>
		<g>
			
				<radialGradient id="path16609_24_" cx="349.8594" cy="-124.4653" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -119.9902 427.0875)" gradientUnits="userSpaceOnUse">
				<stop  offset="0" style="stop-color:#FFFCDF"/>
				<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
				<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
				<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
				<stop  offset="0.5943" style="stop-color:#FFF090"/>
				<stop  offset="0.7706" style="stop-color:#FFEA64"/>
				<stop  offset="0.9506" style="stop-color:#FFE22F"/>
				<stop  offset="1" style="stop-color:#FFE01F"/>
			</radialGradient>
			<path id="path16609_10_" fill="url(#path16609_24_)" stroke="#000000" d="M462.756,347.953c0,5.785-11.338,10.477-25.316,10.477
				c-13.98,0-25.314-4.689-25.314-10.477c0-5.789,11.334-10.477,25.314-10.477C451.418,337.478,462.756,342.166,462.756,347.953z"/>
			<g>
				<path d="M431.799,344.242c0.54-0.08,1.17-0.14,1.859-0.14c1.25,0,2.139,0.279,2.729,0.829c0.609,0.55,0.959,1.34,0.959,2.429
					c0,1.1-0.35,1.999-0.969,2.619c-0.64,0.629-1.68,0.969-2.988,0.969c-0.63,0-1.14-0.02-1.59-0.079V344.242z M432.679,350.208
					c0.22,0.04,0.54,0.04,0.88,0.04c1.859,0.01,2.868-1.039,2.868-2.858c0.011-1.609-0.89-2.599-2.729-2.599
					c-0.45,0-0.79,0.04-1.02,0.09V350.208z"/>
				<path d="M438.469,344.251c0.439-0.09,1.08-0.149,1.67-0.149c0.929,0,1.539,0.18,1.959,0.56c0.329,0.29,0.529,0.75,0.529,1.279
					c0,0.88-0.57,1.469-1.27,1.709v0.03c0.51,0.18,0.82,0.659,0.989,1.359c0.22,0.939,0.38,1.589,0.51,1.849h-0.899
					c-0.109-0.189-0.26-0.77-0.439-1.609c-0.2-0.93-0.57-1.279-1.359-1.309h-0.82v2.918h-0.869V344.251z M439.338,347.31h0.891
					c0.93,0,1.519-0.51,1.519-1.279c0-0.869-0.63-1.249-1.549-1.249c-0.42,0-0.71,0.04-0.86,0.08V347.31z"/>
			</g>
		</g>
	</g>
	<g>
		<rect x="440.334" y="319.333" fill="none" width="24" height="11.334"/>
		<path d="M441.233,319.876c0.647-0.096,1.403-0.168,2.231-0.168c1.498,0,2.566,0.336,3.273,0.995
			c0.732,0.66,1.151,1.607,1.151,2.915c0,1.319-0.419,2.398-1.163,3.142c-0.768,0.756-2.016,1.164-3.586,1.164
			c-0.756,0-1.367-0.024-1.907-0.097V319.876z M442.289,327.037c0.264,0.048,0.647,0.048,1.055,0.048
			c2.231,0.012,3.443-1.247,3.443-3.43c0.012-1.932-1.068-3.119-3.275-3.119c-0.539,0-0.947,0.049-1.223,0.108V327.037z"/>
		<path d="M449.237,319.888c0.528-0.107,1.296-0.18,2.003-0.18c1.115,0,1.847,0.216,2.351,0.672
			c0.396,0.348,0.636,0.899,0.636,1.535c0,1.056-0.684,1.763-1.523,2.051v0.036c0.611,0.216,0.983,0.791,1.188,1.631
			c0.264,1.127,0.455,1.907,0.611,2.219h-1.079c-0.132-0.228-0.312-0.924-0.528-1.931c-0.239-1.115-0.684-1.535-1.631-1.571h-0.982
			v3.502h-1.044V319.888z M450.281,323.558h1.066c1.115,0,1.823-0.611,1.823-1.535c0-1.043-0.755-1.499-1.858-1.499
			c-0.504,0-0.852,0.048-1.031,0.096V323.558z"/>
		<path d="M455.657,323.942c0-0.743-0.013-1.343-0.048-1.895h0.947l0.061,0.995h0.023c0.42-0.72,1.115-1.127,2.051-1.127
			c1.416,0,2.471,1.188,2.471,2.95c0,2.087-1.283,3.118-2.639,3.118c-0.779,0-1.439-0.336-1.787-0.911h-0.023v3.154h-1.056V323.942z
			 M456.713,325.49c0,0.144,0.012,0.3,0.048,0.432c0.18,0.731,0.827,1.235,1.571,1.235c1.115,0,1.763-0.912,1.763-2.243
			c0-1.163-0.6-2.159-1.715-2.159c-0.72,0-1.403,0.504-1.607,1.296c-0.024,0.144-0.06,0.3-0.06,0.432V325.49z"/>
	</g>
</g>
<g id="MA">
	<g>
		
			<radialGradient id="path16609_25_" cx="147.4229" cy="-360.5591" r="16.1858" gradientTransform="matrix(1.5933 0 0 0.6358 -119.9902 427.0875)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFFCDF"/>
			<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
			<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
			<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
			<stop  offset="0.5943" style="stop-color:#FFF090"/>
			<stop  offset="0.7706" style="stop-color:#FFEA64"/>
			<stop  offset="0.9506" style="stop-color:#FFE22F"/>
			<stop  offset="1" style="stop-color:#FFE01F"/>
		</radialGradient>
		<path id="path16609_12_" fill="url(#path16609_25_)" stroke="#000000" d="M140.214,197.843c0,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.476C128.876,187.369,140.214,192.056,140.214,197.843z"/>
		<g>
			<path d="M102.418,197.251c0-0.51-0.02-0.91-0.04-1.31h0.77l0.04,0.78h0.03c0.27-0.46,0.719-0.89,1.529-0.89
				c0.65,0,1.149,0.4,1.359,0.969h0.02c0.15-0.28,0.35-0.479,0.55-0.629c0.29-0.22,0.6-0.34,1.06-0.34
				c0.649,0,1.599,0.42,1.599,2.099v2.849h-0.86v-2.738c0-0.939-0.35-1.489-1.049-1.489c-0.51,0-0.89,0.37-1.049,0.79
				c-0.04,0.13-0.07,0.29-0.07,0.439v2.999h-0.86v-2.898c0-0.779-0.34-1.329-1.009-1.329c-0.54,0-0.95,0.439-1.089,0.879
				c-0.05,0.13-0.07,0.28-0.07,0.43v2.918h-0.86V197.251z"/>
			<path d="M110.788,194.143c0.439-0.09,1.079-0.15,1.669-0.15c0.93,0,1.539,0.18,1.959,0.56c0.33,0.29,0.53,0.75,0.53,1.279
				c0,0.879-0.57,1.469-1.27,1.709v0.03c0.51,0.18,0.82,0.659,0.99,1.359c0.22,0.939,0.379,1.589,0.509,1.849h-0.899
				c-0.11-0.19-0.26-0.77-0.439-1.609c-0.2-0.93-0.57-1.279-1.359-1.31h-0.82v2.918h-0.869V194.143z M111.657,197.201h0.89
				c0.93,0,1.519-0.51,1.519-1.279c0-0.87-0.629-1.249-1.549-1.249c-0.42,0-0.71,0.04-0.86,0.08V197.201z"/>
			<path d="M116.168,200.779v-6.736h0.959l2.148,3.408c0.49,0.79,0.89,1.489,1.2,2.189l0.03-0.01c-0.08-0.899-0.1-1.719-0.1-2.758
				v-2.829h0.82v6.736h-0.879l-2.139-3.418c-0.47-0.75-0.919-1.52-1.249-2.249l-0.03,0.01c0.05,0.85,0.06,1.659,0.06,2.778v2.878
				H116.168z"/>
			<path d="M123.837,198.66l-0.7,2.119h-0.899l2.289-6.736h1.049l2.299,6.736h-0.93l-0.719-2.119H123.837z M126.046,197.98
				l-0.669-1.939c-0.14-0.44-0.24-0.84-0.34-1.229h-0.03c-0.09,0.39-0.2,0.81-0.33,1.219l-0.66,1.949H126.046z"/>
		</g>
	</g>
	<g>
		<rect x="105.667" y="172.667" fill="none" width="17.333" height="9.333"/>
		<path d="M113.39,177.637c-0.06-1.127-0.132-2.495-0.132-3.49h-0.024c-0.288,0.936-0.612,1.955-1.02,3.07l-1.427,3.922h-0.792
			l-1.319-3.85c-0.384-1.151-0.695-2.183-0.923-3.142h-0.024c-0.024,1.007-0.084,2.351-0.156,3.574l-0.216,3.466h-0.995l0.563-8.083
			h1.331l1.379,3.91c0.336,0.996,0.6,1.883,0.815,2.723h0.024c0.216-0.815,0.503-1.703,0.863-2.723l1.439-3.91h1.331l0.504,8.083
			h-1.032L113.39,177.637z"/>
		<path d="M117.533,178.645l-0.839,2.542h-1.08l2.747-8.083h1.259l2.758,8.083h-1.115l-0.864-2.542H117.533z M120.184,177.829
			l-0.803-2.327c-0.168-0.527-0.288-1.007-0.408-1.475h-0.036c-0.108,0.468-0.24,0.972-0.396,1.463l-0.792,2.338H120.184z"/>
	</g>
</g>
<g id="MR">
	<g>
		
			<radialGradient id="path16609_26_" cx="305.376" cy="-358.9868" r="16.186" gradientTransform="matrix(1.5933 0 0 0.6358 -119.9902 427.0875)" gradientUnits="userSpaceOnUse">
			<stop  offset="0" style="stop-color:#FFFCDF"/>
			<stop  offset="0.1203" style="stop-color:#FFFBDA"/>
			<stop  offset="0.2662" style="stop-color:#FFF9CB"/>
			<stop  offset="0.4255" style="stop-color:#FFF6B2"/>
			<stop  offset="0.5943" style="stop-color:#FFF090"/>
			<stop  offset="0.7706" style="stop-color:#FFEA64"/>
			<stop  offset="0.9506" style="stop-color:#FFE22F"/>
			<stop  offset="1" style="stop-color:#FFE01F"/>
		</radialGradient>
		<path id="path16609_18_" fill="url(#path16609_26_)" stroke="#000000" d="M391.881,198.843c0,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.476C380.543,188.369,391.881,193.056,391.881,198.843z"/>
		<g>
			<path d="M354.085,198.25c0-0.51-0.021-0.91-0.04-1.31h0.77l0.04,0.78h0.03c0.27-0.46,0.719-0.89,1.529-0.89
				c0.649,0,1.148,0.4,1.359,0.969h0.02c0.15-0.28,0.35-0.479,0.55-0.629c0.29-0.22,0.6-0.34,1.06-0.34c0.649,0,1.6,0.42,1.6,2.099
				v2.849h-0.86v-2.738c0-0.939-0.35-1.489-1.05-1.489c-0.51,0-0.889,0.37-1.049,0.79c-0.04,0.13-0.07,0.29-0.07,0.439v2.999h-0.859
				v-2.898c0-0.779-0.34-1.329-1.01-1.329c-0.539,0-0.949,0.439-1.089,0.879c-0.05,0.13-0.069,0.28-0.069,0.43v2.918h-0.86V198.25z"
				/>
			<path d="M362.455,195.142c0.439-0.09,1.079-0.15,1.669-0.15c0.93,0,1.539,0.18,1.959,0.56c0.329,0.29,0.53,0.75,0.53,1.279
				c0,0.879-0.57,1.469-1.27,1.709v0.03c0.51,0.18,0.819,0.659,0.989,1.359c0.22,0.939,0.38,1.589,0.509,1.849h-0.898
				c-0.11-0.19-0.26-0.77-0.439-1.609c-0.201-0.93-0.57-1.279-1.359-1.31h-0.82v2.918h-0.869V195.142z M363.324,198.2h0.89
				c0.93,0,1.519-0.51,1.519-1.279c0-0.87-0.629-1.249-1.549-1.249c-0.42,0-0.709,0.04-0.859,0.08V198.2z"/>
			<path d="M367.835,201.778v-6.736h0.96l2.148,3.408c0.489,0.79,0.889,1.489,1.199,2.189l0.029-0.01
				c-0.08-0.899-0.1-1.719-0.1-2.758v-2.829h0.82v6.736h-0.88l-2.14-3.418c-0.469-0.75-0.919-1.52-1.248-2.249l-0.031,0.01
				c0.051,0.85,0.061,1.659,0.061,2.778v2.878H367.835z"/>
			<path d="M375.504,199.659l-0.699,2.119h-0.899l2.288-6.736h1.05l2.299,6.736h-0.93l-0.72-2.119H375.504z M377.713,198.979
				l-0.67-1.939c-0.14-0.44-0.239-0.84-0.34-1.229h-0.029c-0.09,0.39-0.2,0.81-0.33,1.219l-0.66,1.949H377.713z"/>
		</g>
	</g>
	<g>
		<rect x="359.666" y="174.667" fill="none" width="17.334" height="9.333"/>
		<path d="M367.391,179.637c-0.061-1.127-0.133-2.495-0.133-3.49h-0.023c-0.288,0.936-0.611,1.955-1.02,3.07l-1.428,3.922h-0.791
			l-1.319-3.85c-0.384-1.151-0.695-2.183-0.923-3.142h-0.024c-0.024,1.007-0.084,2.351-0.156,3.574l-0.216,3.466h-0.995l0.563-8.083
			h1.331l1.38,3.91c0.336,0.996,0.6,1.883,0.814,2.723h0.025c0.215-0.815,0.503-1.703,0.863-2.723l1.439-3.91h1.33l0.504,8.083
			h-1.031L367.391,179.637z"/>
		<path d="M370.227,175.223c0.527-0.108,1.295-0.18,2.002-0.18c1.115,0,1.848,0.216,2.352,0.672
			c0.396,0.348,0.635,0.899,0.635,1.535c0,1.055-0.684,1.763-1.523,2.051v0.036c0.612,0.216,0.984,0.792,1.188,1.631
			c0.264,1.127,0.456,1.907,0.612,2.219h-1.079c-0.133-0.228-0.313-0.923-0.528-1.931c-0.239-1.115-0.684-1.535-1.631-1.571h-0.983
			v3.502h-1.043V175.223z M371.27,178.894h1.067c1.115,0,1.823-0.612,1.823-1.535c0-1.043-0.756-1.5-1.859-1.5
			c-0.504,0-0.852,0.048-1.031,0.096V178.894z"/>
	</g>
</g>
</svg>
</window>