view svg/ski_and_bike.svg @ 22:d880d0827d4c default tip

add race course maps for easy and full course
author Thad Schulz <tschulz@sebeka.k12.mn.us>
date Thu, 25 Oct 2018 09:27:21 -0500
parents fd3d8ada71ad
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg height="700" onload="init(evt)" width="700" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">	<script type="text/ecmascript"><![CDATA[
		var SVGDoc; var SVGRoot;
		function init(evt) {
			SVGDoc = evt.getTarget().getOwnerDocument();
			SVGRoot = SVGDoc.getDocumentElement();
		}]]>
	</script>	<script type="text/ecmascript"><![CDATA[
	var svgns = "http://www.w3.org/2000/svg";
	var tracking;
	var x_offset = 0; var y_offset = 0; // how far off the mouse was from a group's coordinates
	var global_mouse_x; var global_mouse_y; // for seeing if the mouse moved
	
	function toggle_item_opacity(id,op1,op2) {
		if (SVGDoc.getElementById(id) != null) {
			var item = SVGDoc.getElementById(id);
			var new_op = (parseFloat(item.getAttributeNS(null, 'opacity')) == op1) ? op2 : op1;
			item.setAttributeNS(null, 'opacity',new_op.toString());
		}
	}
	function showSaver(op) {
		if (SVGDoc.getElementById('Saver') != null) {
			var theSaver = SVGDoc.getElementById('Saver');
			theSaver.setAttributeNS(null, 'opacity',op);
		}
	}
	function trackGroup(evt,id,onoff){
		tracking = onoff;
		if (onoff) {
			findGroupClickOffset(evt,id);
			showSaver(1);
		}
	}
	function findGroupClickOffset(evt,name_of_group) {
		var theClickedThing = SVGDoc.getElementById(name_of_group);
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		var group_coords = findGroupCoordinates(name_of_group);
		x_offset = mouse_x - group_coords.x; // global variable
		y_offset = mouse_y - group_coords.y; // global variable
	}
	function findGroupCoordinates(name_of_group) {
		var theGroup = SVGDoc.getElementById(name_of_group);
		var old_transform = theGroup.getAttributeNS(null, 'transform'); 
		var regex = /([0-9e.-]+),([0-9e.-]+)/;
		var numbers = regex.exec(old_transform);
		var group_x = eval(numbers[1]) + parseFloat(theGroup.getAttributeNS(null, 'x'));
		var group_y = eval(numbers[2]) + parseFloat(theGroup.getAttributeNS(null, 'y'));
		return { x: group_x, y: group_y };
	}
	function moveGroup(evt,name_of_group) {
		if (tracking) {
			var theGroup = SVGDoc.getElementById(name_of_group);
			// Find out where the mouse is, and use x and y offset values
			var scale = SVGRoot.getCurrentScale();
			var pan = SVGRoot.getCurrentTranslate();
			var new_x = evt.getClientX()/scale + (( 0.0 - pan.x ) / scale) - x_offset;
			var new_y = evt.getClientY()/scale + (( 0.0 - pan.y ) / scale) - y_offset;
			// Calculate new translation based on difference between mouse position and origin
			var new_x_transform = new_x - parseFloat(theGroup.getAttributeNS(null, 'x'));
			var new_y_transform = new_y - parseFloat(theGroup.getAttributeNS(null, 'y'));
			// Plug new translation values into old transform attribute
			var old_transform = theGroup.getAttributeNS(null, 'transform');
			var regex = /([0-9e.-]+),([0-9e.-]+)/;
			var new_transform = old_transform.replace(regex,new_x_transform+','+new_y_transform);
			theGroup.setAttributeNS(null, 'transform',new_transform);
		}
	}
	var original_stroke_color = new Object;
	var original_stroke_width = new Object;
	function highlight(name_of_thing,onoff) {
		var highlight_color = '#0000FF';
		var highlight_width = '1';
		var theThing = SVGDoc.getElementById(name_of_thing);
		if (onoff) {
			original_stroke_color[name_of_thing] = theThing.getAttributeNS(null, 'stroke');
			original_stroke_width[name_of_thing] = theThing.getAttributeNS(null, 'stroke-width');
			theThing.setAttributeNS(null, 'stroke',highlight_color);
			theThing.setAttributeNS(null, 'stroke-width',highlight_width);
		} else {
			theThing.setAttributeNS(null, 'stroke',original_stroke_color[name_of_thing]);
			theThing.setAttributeNS(null, 'stroke-width',original_stroke_width[name_of_thing]);
		}
	}
	]]>
	</script>	<script type="text/ecmascript"><![CDATA[
	function toggle_track_opacity(id,track_op,label_op) {
		toggle_item_opacity(id+' track',track_op,1);
		toggle_item_opacity(id+' label',label_op,1);
	}
	function toggle_track_opacity_from_legend(id,legend_id,track_op,label_op) {
		toggle_item_opacity(id+' track',track_op,1);
		toggle_item_opacity(id+' label',label_op,1);
		toggle_item_opacity(legend_id,label_op,1);
	}
	function trackLabelMouseDown(evt,id) {
		tracking = 1;
		showSaver(1);
		findGroupClickOffset(evt,id+' label');
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
	}
	function trackLabelMouseUp(evt,id) {
		tracking = 0;
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
			toggle_track_opacity(id,0,0.25);
		}
	}
	]]>
	</script>
	<g id="blacks_grove_gpx (t1) track" opacity="0.9">
		<line fill="none" id="t1 p1" stroke="#7A7A7A" stroke-width="2" x1="531.0953" x2="531.4465" y1="477.1751" y2="477.1327"/>
		<line fill="none" id="t1 p2" stroke="#7A7A7A" stroke-width="2" x1="531.4465" x2="532.5295" y1="477.1327" y2="477.9817"/>
		<line fill="none" id="t1 p3" stroke="#7A7A7A" stroke-width="2" x1="532.5295" x2="534.4613" y1="477.9817" y2="480.7832"/>
		<line fill="none" id="t1 p4" stroke="#7A7A7A" stroke-width="2" x1="534.4613" x2="535.0760" y1="480.7832" y2="482.6934"/>
		<line fill="none" id="t1 p5" stroke="#7A7A7A" stroke-width="2" x1="535.0760" x2="535.6614" y1="482.6934" y2="485.4101"/>
		<line fill="none" id="t1 p6" stroke="#7A7A7A" stroke-width="2" x1="535.6614" x2="539.0275" y1="485.4101" y2="489.7398"/>
		<line fill="none" id="t1 p7" stroke="#7A7A7A" stroke-width="2" x1="539.0275" x2="548.4233" y1="489.7398" y2="493.3904"/>
		<line fill="none" id="t1 p8" stroke="#7A7A7A" stroke-width="2" x1="548.4233" x2="550.3258" y1="493.3904" y2="495.7675"/>
		<line fill="none" id="t1 p9" stroke="#7A7A7A" stroke-width="2" x1="550.3258" x2="550.8820" y1="495.7675" y2="497.2107"/>
		<line fill="none" id="t1 p10" stroke="#7A7A7A" stroke-width="2" x1="550.8820" x2="553.0480" y1="497.2107" y2="499.3332"/>
		<line fill="none" id="t1 p11" stroke="#7A7A7A" stroke-width="2" x1="553.0480" x2="554.2480" y1="499.3332" y2="499.9699"/>
		<line fill="none" id="t1 p12" stroke="#7A7A7A" stroke-width="2" x1="554.2480" x2="558.5215" y1="499.9699" y2="497.8475"/>
		<line fill="none" id="t1 p13" stroke="#7A7A7A" stroke-width="2" x1="558.5215" x2="561.4778" y1="497.8475" y2="498.5266"/>
		<line fill="none" id="t1 p14" stroke="#7A7A7A" stroke-width="2" x1="561.4778" x2="562.0632" y1="498.5266" y2="503.0262"/>
		<line fill="none" id="t1 p15" stroke="#7A7A7A" stroke-width="2" x1="562.0632" x2="562.2681" y1="503.0262" y2="504.6392"/>
		<line fill="none" id="t1 p16" stroke="#7A7A7A" stroke-width="2" x1="562.2681" x2="562.9121" y1="504.6392" y2="513.4684"/>
		<line fill="none" id="t1 p17" stroke="#7A7A7A" stroke-width="2" x1="562.9121" x2="562.4730" y1="513.4684" y2="520.4724"/>
		<line fill="none" id="t1 p18" stroke="#7A7A7A" stroke-width="2" x1="562.4730" x2="563.0291" y1="520.4724" y2="521.8308"/>
		<line fill="none" id="t1 p19" stroke="#7A7A7A" stroke-width="2" x1="563.0291" x2="562.8535" y1="521.8308" y2="528.9621"/>
		<line fill="none" id="t1 p20" stroke="#7A7A7A" stroke-width="2" x1="562.8535" x2="565.1951" y1="528.9621" y2="532.1457"/>
		<line fill="none" id="t1 p21" stroke="#7A7A7A" stroke-width="2" x1="565.1951" x2="566.7465" y1="532.1457" y2="534.8624"/>
		<line fill="none" id="t1 p22" stroke="#7A7A7A" stroke-width="2" x1="566.7465" x2="568.5319" y1="534.8624" y2="537.6215"/>
		<line fill="none" id="t1 p23" stroke="#7A7A7A" stroke-width="2" x1="568.5319" x2="567.2733" y1="537.6215" y2="544.7953"/>
		<line fill="none" id="t1 p24" stroke="#7A7A7A" stroke-width="2" x1="567.2733" x2="568.3271" y1="544.7953" y2="552.6482"/>
		<line fill="none" id="t1 p25" stroke="#7A7A7A" stroke-width="2" x1="568.3271" x2="570.2589" y1="552.6482" y2="557.4449"/>
		<line fill="none" id="t1 p26" stroke="#7A7A7A" stroke-width="2" x1="570.2589" x2="571.8395" y1="557.4449" y2="560.8832"/>
		<line fill="none" id="t1 p27" stroke="#7A7A7A" stroke-width="2" x1="571.8395" x2="573.2152" y1="560.8832" y2="564.6611"/>
		<line fill="none" id="t1 p28" stroke="#7A7A7A" stroke-width="2" x1="573.2152" x2="573.8299" y1="564.6611" y2="572.4291"/>
		<line fill="none" id="t1 p29" stroke="#7A7A7A" stroke-width="2" x1="573.8299" x2="573.8299" y1="572.4291" y2="574.4667"/>
		<line fill="none" id="t1 p30" stroke="#7A7A7A" stroke-width="2" x1="573.8299" x2="576.2886" y1="574.4667" y2="582.4045"/>
		<line fill="none" id="t1 p31" stroke="#7A7A7A" stroke-width="2" x1="576.2886" x2="580.2693" y1="582.4045" y2="585.7579"/>
		<line fill="none" id="t1 p32" stroke="#7A7A7A" stroke-width="2" x1="580.2693" x2="579.2741" y1="585.7579" y2="590.2574"/>
		<line fill="none" id="t1 p33" stroke="#7A7A7A" stroke-width="2" x1="579.2741" x2="577.3423" y1="590.2574" y2="592.6770"/>
		<line fill="none" id="t1 p34" stroke="#7A7A7A" stroke-width="2" x1="577.3423" x2="573.2445" y1="592.6770" y2="596.8794"/>
		<line fill="none" id="t1 p35" stroke="#7A7A7A" stroke-width="2" x1="573.2445" x2="573.5372" y1="596.8794" y2="601.2515"/>
		<line fill="none" id="t1 p36" stroke="#7A7A7A" stroke-width="2" x1="573.5372" x2="573.9470" y1="601.2515" y2="604.0956"/>
		<line fill="none" id="t1 p37" stroke="#7A7A7A" stroke-width="2" x1="573.9470" x2="574.3275" y1="604.0956" y2="612.3730"/>
		<line fill="none" id="t1 p38" stroke="#7A7A7A" stroke-width="2" x1="574.3275" x2="572.0444" y1="612.3730" y2="613.2644"/>
		<line fill="none" id="t1 p39" stroke="#7A7A7A" stroke-width="2" x1="572.0444" x2="571.2248" y1="613.2644" y2="612.0759"/>
		<line fill="none" id="t1 p40" stroke="#7A7A7A" stroke-width="2" x1="571.2248" x2="566.6001" y1="612.0759" y2="604.8596"/>
		<line fill="none" id="t1 p41" stroke="#7A7A7A" stroke-width="2" x1="566.6001" x2="562.8242" y1="604.8596" y2="601.2091"/>
		<line fill="none" id="t1 p42" stroke="#7A7A7A" stroke-width="2" x1="562.8242" x2="556.2677" y1="601.2091" y2="597.0916"/>
		<line fill="none" id="t1 p43" stroke="#7A7A7A" stroke-width="2" x1="556.2677" x2="555.1262" y1="597.0916" y2="592.9741"/>
		<line fill="none" id="t1 p44" stroke="#7A7A7A" stroke-width="2" x1="555.1262" x2="555.7408" y1="592.9741" y2="585.7155"/>
		<line fill="none" id="t1 p45" stroke="#7A7A7A" stroke-width="2" x1="555.7408" x2="552.5211" y1="585.7155" y2="582.1498"/>
		<line fill="none" id="t1 p46" stroke="#7A7A7A" stroke-width="2" x1="552.5211" x2="549.8868" y1="582.1498" y2="578.3719"/>
		<line fill="none" id="t1 p47" stroke="#7A7A7A" stroke-width="2" x1="549.8868" x2="551.5845" y1="578.3719" y2="573.6177"/>
		<line fill="none" id="t1 p48" stroke="#7A7A7A" stroke-width="2" x1="551.5845" x2="552.5211" y1="573.6177" y2="572.5565"/>
		<line fill="none" id="t1 p49" stroke="#7A7A7A" stroke-width="2" x1="552.5211" x2="556.0043" y1="572.5565" y2="565.3827"/>
		<line fill="none" id="t1 p50" stroke="#7A7A7A" stroke-width="2" x1="556.0043" x2="557.2629" y1="565.3827" y2="558.7608"/>
		<line fill="none" id="t1 p51" stroke="#7A7A7A" stroke-width="2" x1="557.2629" x2="557.7312" y1="558.7608" y2="556.3412"/>
		<line fill="none" id="t1 p52" stroke="#7A7A7A" stroke-width="2" x1="557.7312" x2="554.7749" y1="556.3412" y2="555.3649"/>
		<line fill="none" id="t1 p53" stroke="#7A7A7A" stroke-width="2" x1="554.7749" x2="547.3110" y1="555.3649" y2="553.4972"/>
		<line fill="none" id="t1 p54" stroke="#7A7A7A" stroke-width="2" x1="547.3110" x2="546.5207" y1="553.4972" y2="550.1013"/>
		<line fill="none" id="t1 p55" stroke="#7A7A7A" stroke-width="2" x1="546.5207" x2="546.4622" y1="550.1013" y2="548.1487"/>
		<line fill="none" id="t1 p56" stroke="#7A7A7A" stroke-width="2" x1="546.4622" x2="546.5500" y1="548.1487" y2="548.1063"/>
		<line fill="none" id="t1 p57" stroke="#7A7A7A" stroke-width="2" x1="546.5500" x2="549.0379" y1="548.1063" y2="549.6344"/>
		<line fill="none" id="t1 p58" stroke="#7A7A7A" stroke-width="2" x1="549.0379" x2="549.4185" y1="549.6344" y2="550.8654"/>
		<line fill="none" id="t1 p59" stroke="#7A7A7A" stroke-width="2" x1="549.4185" x2="550.3258" y1="550.8654" y2="552.8605"/>
		<line fill="none" id="t1 p60" stroke="#7A7A7A" stroke-width="2" x1="550.3258" x2="551.9942" y1="552.8605" y2="552.9454"/>
		<line fill="none" id="t1 p61" stroke="#7A7A7A" stroke-width="2" x1="551.9942" x2="551.9650" y1="552.9454" y2="552.9029"/>
		<line fill="none" id="t1 p62" stroke="#7A7A7A" stroke-width="2" x1="551.9650" x2="554.8335" y1="552.9029" y2="549.6344"/>
		<line fill="none" id="t1 p63" stroke="#7A7A7A" stroke-width="2" x1="554.8335" x2="554.8335" y1="549.6344" y2="549.2948"/>
		<line fill="none" id="t1 p64" stroke="#7A7A7A" stroke-width="2" x1="554.8335" x2="552.2869" y1="549.2948" y2="548.3609"/>
		<line fill="none" id="t1 p65" stroke="#7A7A7A" stroke-width="2" x1="552.2869" x2="550.7942" y1="548.3609" y2="548.0638"/>
		<line fill="none" id="t1 p66" stroke="#7A7A7A" stroke-width="2" x1="550.7942" x2="549.0087" y1="548.0638" y2="546.4508"/>
		<line fill="none" id="t1 p67" stroke="#7A7A7A" stroke-width="2" x1="549.0087" x2="548.1891" y1="546.4508" y2="545.9414"/>
		<line fill="none" id="t1 p68" stroke="#7A7A7A" stroke-width="2" x1="548.1891" x2="547.5159" y1="545.9414" y2="544.0737"/>
		<line fill="none" id="t1 p69" stroke="#7A7A7A" stroke-width="2" x1="547.5159" x2="547.6622" y1="544.0737" y2="543.3945"/>
		<line fill="none" id="t1 p70" stroke="#7A7A7A" stroke-width="2" x1="547.6622" x2="548.0720" y1="543.3945" y2="543.7341"/>
		<line fill="none" id="t1 p71" stroke="#7A7A7A" stroke-width="2" x1="548.0720" x2="548.3647" y1="543.7341" y2="544.7953"/>
		<line fill="none" id="t1 p72" stroke="#7A7A7A" stroke-width="2" x1="548.3647" x2="549.5648" y1="544.7953" y2="544.2010"/>
		<line fill="none" id="t1 p73" stroke="#7A7A7A" stroke-width="2" x1="549.5648" x2="550.1209" y1="544.2010" y2="543.2672"/>
		<line fill="none" id="t1 p74" stroke="#7A7A7A" stroke-width="2" x1="550.1209" x2="549.3014" y1="543.2672" y2="538.9799"/>
		<line fill="none" id="t1 p75" stroke="#7A7A7A" stroke-width="2" x1="549.3014" x2="548.1598" y1="538.9799" y2="540.6354"/>
		<line fill="none" id="t1 p76" stroke="#7A7A7A" stroke-width="2" x1="548.1598" x2="548.1306" y1="540.6354" y2="542.0361"/>
		<line fill="none" id="t1 p77" stroke="#7A7A7A" stroke-width="2" x1="548.1306" x2="545.8182" y1="542.0361" y2="541.2721"/>
		<line fill="none" id="t1 p78" stroke="#7A7A7A" stroke-width="2" x1="545.8182" x2="541.7204" y1="541.2721" y2="539.5741"/>
		<line fill="none" id="t1 p79" stroke="#7A7A7A" stroke-width="2" x1="541.7204" x2="540.2276" y1="539.5741" y2="537.3244"/>
		<line fill="none" id="t1 p80" stroke="#7A7A7A" stroke-width="2" x1="540.2276" x2="541.0179" y1="537.3244" y2="533.6314"/>
		<line fill="none" id="t1 p81" stroke="#7A7A7A" stroke-width="2" x1="541.0179" x2="541.3399" y1="533.6314" y2="531.9759"/>
		<line fill="none" id="t1 p82" stroke="#7A7A7A" stroke-width="2" x1="541.3399" x2="541.3106" y1="531.9759" y2="525.8209"/>
		<line fill="none" id="t1 p83" stroke="#7A7A7A" stroke-width="2" x1="541.3106" x2="541.0764" y1="525.8209" y2="523.6136"/>
		<line fill="none" id="t1 p84" stroke="#7A7A7A" stroke-width="2" x1="541.0764" x2="538.7055" y1="523.6136" y2="523.0618"/>
		<line fill="none" id="t1 p85" stroke="#7A7A7A" stroke-width="2" x1="538.7055" x2="538.5299" y1="523.0618" y2="523.5711"/>
		<line fill="none" id="t1 p86" stroke="#7A7A7A" stroke-width="2" x1="538.5299" x2="540.0812" y1="523.5711" y2="529.0045"/>
		<line fill="none" id="t1 p87" stroke="#7A7A7A" stroke-width="2" x1="540.0812" x2="539.7300" y1="529.0045" y2="529.7686"/>
		<line fill="none" id="t1 p88" stroke="#7A7A7A" stroke-width="2" x1="539.7300" x2="538.2079" y1="529.7686" y2="528.1980"/>
		<line fill="none" id="t1 p89" stroke="#7A7A7A" stroke-width="2" x1="538.2079" x2="537.3298" y1="528.1980" y2="526.1180"/>
		<line fill="none" id="t1 p90" stroke="#7A7A7A" stroke-width="2" x1="537.3298" x2="536.3346" y1="526.1180" y2="523.1467"/>
		<line fill="none" id="t1 p91" stroke="#7A7A7A" stroke-width="2" x1="536.3346" x2="535.6614" y1="523.1467" y2="520.2602"/>
		<line fill="none" id="t1 p92" stroke="#7A7A7A" stroke-width="2" x1="535.6614" x2="534.6955" y1="520.2602" y2="519.3263"/>
		<line fill="none" id="t1 p93" stroke="#7A7A7A" stroke-width="2" x1="534.6955" x2="533.9052" y1="519.3263" y2="517.2463"/>
		<line fill="none" id="t1 p94" stroke="#7A7A7A" stroke-width="2" x1="533.9052" x2="534.3443" y1="517.2463" y2="515.8455"/>
		<line fill="none" id="t1 p95" stroke="#7A7A7A" stroke-width="2" x1="534.3443" x2="534.4321" y1="515.8455" y2="515.4211"/>
		<line fill="none" id="t1 p96" stroke="#7A7A7A" stroke-width="2" x1="534.4321" x2="533.7881" y1="515.4211" y2="511.0064"/>
		<line fill="none" id="t1 p97" stroke="#7A7A7A" stroke-width="2" x1="533.7881" x2="532.0612" y1="511.0064" y2="509.2661"/>
		<line fill="none" id="t1 p98" stroke="#7A7A7A" stroke-width="2" x1="532.0612" x2="529.6610" y1="509.2661" y2="510.5820"/>
		<line fill="none" id="t1 p99" stroke="#7A7A7A" stroke-width="2" x1="529.6610" x2="528.8414" y1="510.5820" y2="512.2374"/>
		<line fill="none" id="t1 p100" stroke="#7A7A7A" stroke-width="2" x1="528.8414" x2="527.8170" y1="512.2374" y2="512.4497"/>
		<line fill="none" id="t1 p101" stroke="#7A7A7A" stroke-width="2" x1="527.8170" x2="524.4802" y1="512.4497" y2="509.4783"/>
		<line fill="none" id="t1 p102" stroke="#7A7A7A" stroke-width="2" x1="524.4802" x2="524.4216" y1="509.4783" y2="506.8465"/>
		<line fill="none" id="t1 p103" stroke="#7A7A7A" stroke-width="2" x1="524.4216" x2="524.7143" y1="506.8465" y2="505.4457"/>
		<line fill="none" id="t1 p104" stroke="#7A7A7A" stroke-width="2" x1="524.7143" x2="524.1875" y1="505.4457" y2="503.9600"/>
		<line fill="none" id="t1 p105" stroke="#7A7A7A" stroke-width="2" x1="524.1875" x2="523.9826" y1="503.9600" y2="503.7478"/>
		<line fill="none" id="t1 p106" stroke="#7A7A7A" stroke-width="2" x1="523.9826" x2="522.5191" y1="503.7478" y2="501.4556"/>
		<line fill="none" id="t1 p107" stroke="#7A7A7A" stroke-width="2" x1="522.5191" x2="520.5287" y1="501.4556" y2="500.0548"/>
		<line fill="none" id="t1 p108" stroke="#7A7A7A" stroke-width="2" x1="520.5287" x2="519.2115" y1="500.0548" y2="497.4654"/>
		<line fill="none" id="t1 p109" stroke="#7A7A7A" stroke-width="2" x1="519.2115" x2="519.2408" y1="497.4654" y2="496.9560"/>
		<line fill="none" id="t1 p110" stroke="#7A7A7A" stroke-width="2" x1="519.2408" x2="520.2360" y1="496.9560" y2="494.3667"/>
		<line fill="none" id="t1 p111" stroke="#7A7A7A" stroke-width="2" x1="520.2360" x2="520.7336" y1="494.3667" y2="492.4990"/>
		<line fill="none" id="t1 p112" stroke="#7A7A7A" stroke-width="2" x1="520.7336" x2="522.1385" y1="492.4990" y2="489.0182"/>
		<line fill="none" id="t1 p113" stroke="#7A7A7A" stroke-width="2" x1="522.1385" x2="522.9581" y1="489.0182" y2="483.8395"/>
		<line fill="none" id="t1 p114" stroke="#7A7A7A" stroke-width="2" x1="522.9581" x2="524.0118" y1="483.8395" y2="480.0192"/>
		<line fill="none" id="t1 p115" stroke="#7A7A7A" stroke-width="2" x1="524.0118" x2="525.9730" y1="480.0192" y2="477.1751"/>
		<line fill="none" id="t1 p116" stroke="#7A7A7A" stroke-width="2" x1="525.9730" x2="528.0219" y1="477.1751" y2="473.9915"/>
		<line fill="none" id="t1 p117" stroke="#7A7A7A" stroke-width="2" x1="528.0219" x2="530.1879" y1="473.9915" y2="469.1949"/>
		<line fill="none" id="t1 p118" stroke="#7A7A7A" stroke-width="2" x1="530.1879" x2="531.6514" y1="469.1949" y2="466.0537"/>
		<line fill="none" id="t1 p119" stroke="#7A7A7A" stroke-width="2" x1="531.6514" x2="533.5832" y1="466.0537" y2="465.0349"/>
		<line fill="none" id="t1 p120" stroke="#7A7A7A" stroke-width="2" x1="533.5832" x2="534.6370" y1="465.0349" y2="461.2146"/>
		<line fill="none" id="t1 p121" stroke="#7A7A7A" stroke-width="2" x1="534.6370" x2="536.0419" y1="461.2146" y2="457.4367"/>
		<line fill="none" id="t1 p122" stroke="#7A7A7A" stroke-width="2" x1="536.0419" x2="536.4810" y1="457.4367" y2="457.0971"/>
		<line fill="none" id="t1 p123" stroke="#7A7A7A" stroke-width="2" x1="536.4810" x2="539.4080" y1="457.0971" y2="457.1395"/>
		<line fill="none" id="t1 p124" stroke="#7A7A7A" stroke-width="2" x1="539.4080" x2="538.9690" y1="457.1395" y2="458.3281"/>
		<line fill="none" id="t1 p125" stroke="#7A7A7A" stroke-width="2" x1="538.9690" x2="538.7641" y1="458.3281" y2="456.4179"/>
		<line fill="none" id="t1 p126" stroke="#7A7A7A" stroke-width="2" x1="538.7641" x2="538.7641" y1="456.4179" y2="456.0359"/>
		<line fill="none" id="t1 p127" stroke="#7A7A7A" stroke-width="2" x1="538.7641" x2="538.7641" y1="456.0359" y2="455.9510"/>
		<line fill="none" id="t1 p128" stroke="#7A7A7A" stroke-width="2" x1="538.7641" x2="538.7933" y1="455.9510" y2="455.4840"/>
		<line fill="none" id="t1 p129" stroke="#7A7A7A" stroke-width="2" x1="538.7933" x2="538.4714" y1="455.4840" y2="455.6538"/>
		<line fill="none" id="t1 p130" stroke="#7A7A7A" stroke-width="2" x1="538.4714" x2="539.5251" y1="455.6538" y2="452.5976"/>
		<line fill="none" id="t1 p131" stroke="#7A7A7A" stroke-width="2" x1="539.5251" x2="539.6422" y1="452.5976" y2="452.5127"/>
		<line fill="none" id="t1 p132" stroke="#7A7A7A" stroke-width="2" x1="539.6422" x2="539.7885" y1="452.5127" y2="451.7061"/>
		<line fill="none" id="t1 p133" stroke="#7A7A7A" stroke-width="2" x1="539.7885" x2="539.5544" y1="451.7061" y2="452.3853"/>
		<line fill="none" id="t1 p134" stroke="#7A7A7A" stroke-width="2" x1="539.5544" x2="539.4958" y1="452.3853" y2="452.7674"/>
		<line fill="none" id="t1 p135" stroke="#7A7A7A" stroke-width="2" x1="539.4958" x2="539.4958" y1="452.7674" y2="452.9796"/>
		<line fill="none" id="t1 p136" stroke="#7A7A7A" stroke-width="2" x1="539.4958" x2="539.3202" y1="452.9796" y2="453.0220"/>
		<line fill="none" id="t1 p137" stroke="#7A7A7A" stroke-width="2" x1="539.3202" x2="538.9982" y1="453.0220" y2="452.3004"/>
		<line fill="none" id="t1 p138" stroke="#7A7A7A" stroke-width="2" x1="538.9982" x2="538.3250" y1="452.3004" y2="452.0882"/>
		<line fill="none" id="t1 p139" stroke="#7A7A7A" stroke-width="2" x1="538.3250" x2="536.2176" y1="452.0882" y2="453.7861"/>
		<line fill="none" id="t1 p140" stroke="#7A7A7A" stroke-width="2" x1="536.2176" x2="535.1638" y1="453.7861" y2="456.7150"/>
		<line fill="none" id="t1 p141" stroke="#7A7A7A" stroke-width="2" x1="535.1638" x2="537.3884" y1="456.7150" y2="458.0309"/>
		<line fill="none" id="t1 p142" stroke="#7A7A7A" stroke-width="2" x1="537.3884" x2="539.1739" y1="458.0309" y2="457.5640"/>
		<line fill="none" id="t1 p143" stroke="#7A7A7A" stroke-width="2" x1="539.1739" x2="540.0812" y1="457.5640" y2="456.7999"/>
		<line fill="none" id="t1 p144" stroke="#7A7A7A" stroke-width="2" x1="540.0812" x2="539.4373" y1="456.7999" y2="456.0359"/>
		<line fill="none" id="t1 p145" stroke="#7A7A7A" stroke-width="2" x1="539.4373" x2="537.1835" y1="456.0359" y2="456.3330"/>
		<line fill="none" id="t1 p146" stroke="#7A7A7A" stroke-width="2" x1="537.1835" x2="534.6955" y1="456.3330" y2="455.8236"/>
		<line fill="none" id="t1 p147" stroke="#7A7A7A" stroke-width="2" x1="534.6955" x2="533.6125" y1="455.8236" y2="455.7812"/>
		<line fill="none" id="t1 p148" stroke="#7A7A7A" stroke-width="2" x1="533.6125" x2="533.3198" y1="455.7812" y2="457.9460"/>
		<line fill="none" id="t1 p149" stroke="#7A7A7A" stroke-width="2" x1="533.3198" x2="535.0175" y1="457.9460" y2="457.9460"/>
		<line fill="none" id="t1 p150" stroke="#7A7A7A" stroke-width="2" x1="535.0175" x2="535.3687" y1="457.9460" y2="456.9697"/>
		<line fill="none" id="t1 p151" stroke="#7A7A7A" stroke-width="2" x1="535.3687" x2="535.4858" y1="456.9697" y2="455.2718"/>
		<line fill="none" id="t1 p152" stroke="#7A7A7A" stroke-width="2" x1="535.4858" x2="534.0223" y1="455.2718" y2="456.2057"/>
		<line fill="none" id="t1 p153" stroke="#7A7A7A" stroke-width="2" x1="534.0223" x2="533.8759" y1="456.2057" y2="457.0122"/>
		<line fill="none" id="t1 p154" stroke="#7A7A7A" stroke-width="2" x1="533.8759" x2="535.3102" y1="457.0122" y2="458.6677"/>
		<line fill="none" id="t1 p155" stroke="#7A7A7A" stroke-width="2" x1="535.3102" x2="536.6273" y1="458.6677" y2="458.7526"/>
		<line fill="none" id="t1 p156" stroke="#7A7A7A" stroke-width="2" x1="536.6273" x2="538.1787" y1="458.7526" y2="459.4317"/>
		<line fill="none" id="t1 p157" stroke="#7A7A7A" stroke-width="2" x1="538.1787" x2="540.0227" y1="459.4317" y2="458.2432"/>
		<line fill="none" id="t1 p158" stroke="#7A7A7A" stroke-width="2" x1="540.0227" x2="541.2228" y1="458.2432" y2="458.2432"/>
		<line fill="none" id="t1 p159" stroke="#7A7A7A" stroke-width="2" x1="541.2228" x2="543.2717" y1="458.2432" y2="457.6065"/>
		<line fill="none" id="t1 p160" stroke="#7A7A7A" stroke-width="2" x1="543.2717" x2="543.1546" y1="457.6065" y2="455.6963"/>
		<line fill="none" id="t1 p161" stroke="#7A7A7A" stroke-width="2" x1="543.1546" x2="543.0083" y1="455.6963" y2="455.2718"/>
		<line fill="none" id="t1 p162" stroke="#7A7A7A" stroke-width="2" x1="543.0083" x2="541.6326" y1="455.2718" y2="455.3567"/>
		<line fill="none" id="t1 p163" stroke="#7A7A7A" stroke-width="2" x1="541.6326" x2="539.4958" y1="455.3567" y2="457.8187"/>
		<line fill="none" id="t1 p164" stroke="#7A7A7A" stroke-width="2" x1="539.4958" x2="537.7981" y1="457.8187" y2="458.5828"/>
		<line fill="none" id="t1 p165" stroke="#7A7A7A" stroke-width="2" x1="537.7981" x2="536.5395" y1="458.5828" y2="457.2669"/>
		<line fill="none" id="t1 p166" stroke="#7A7A7A" stroke-width="2" x1="536.5395" x2="538.2372" y1="457.2669" y2="457.9036"/>
		<line fill="none" id="t1 p167" stroke="#7A7A7A" stroke-width="2" x1="538.2372" x2="539.0860" y1="457.9036" y2="459.0073"/>
		<line fill="none" id="t1 p168" stroke="#7A7A7A" stroke-width="2" x1="539.0860" x2="541.4277" y1="459.0073" y2="460.5778"/>
		<line fill="none" id="t1 p169" stroke="#7A7A7A" stroke-width="2" x1="541.4277" x2="543.1546" y1="460.5778" y2="458.7101"/>
		<line fill="none" id="t1 p170" stroke="#7A7A7A" stroke-width="2" x1="543.1546" x2="540.5496" y1="458.7101" y2="456.6726"/>
		<line fill="none" id="t1 p171" stroke="#7A7A7A" stroke-width="2" x1="540.5496" x2="539.8471" y1="456.6726" y2="456.3755"/>
		<line fill="none" id="t1 p172" stroke="#7A7A7A" stroke-width="2" x1="539.8471" x2="538.0030" y1="456.3755" y2="455.3567"/>
		<line fill="none" id="t1 p173" stroke="#7A7A7A" stroke-width="2" x1="538.0030" x2="536.5688" y1="455.3567" y2="456.6302"/>
		<line fill="none" id="t1 p174" stroke="#7A7A7A" stroke-width="2" x1="536.5688" x2="536.6859" y1="456.6302" y2="457.1395"/>
		<line fill="none" id="t1 p175" stroke="#7A7A7A" stroke-width="2" x1="536.6859" x2="537.4176" y1="457.1395" y2="458.7950"/>
		<line fill="none" id="t1 p176" stroke="#7A7A7A" stroke-width="2" x1="537.4176" x2="540.6374" y1="458.7950" y2="458.1158"/>
		<line fill="none" id="t1 p177" stroke="#7A7A7A" stroke-width="2" x1="540.6374" x2="539.8763" y1="458.1158" y2="456.4179"/>
		<line fill="none" id="t1 p178" stroke="#7A7A7A" stroke-width="2" x1="539.8763" x2="536.4810" y1="456.4179" y2="455.5265"/>
		<line fill="none" id="t1 p179" stroke="#7A7A7A" stroke-width="2" x1="536.4810" x2="534.8126" y1="455.5265" y2="457.8187"/>
		<line fill="none" id="t1 p180" stroke="#7A7A7A" stroke-width="2" x1="534.8126" x2="532.8515" y1="457.8187" y2="460.4929"/>
		<line fill="none" id="t1 p181" stroke="#7A7A7A" stroke-width="2" x1="532.8515" x2="532.8515" y1="460.4929" y2="460.8325"/>
		<line fill="none" id="t1 p182" stroke="#7A7A7A" stroke-width="2" x1="532.8515" x2="532.9393" y1="460.8325" y2="464.1860"/>
		<line fill="none" id="t1 p183" stroke="#7A7A7A" stroke-width="2" x1="532.9393" x2="531.5636" y1="464.1860" y2="466.0961"/>
		<line fill="none" id="t1 p184" stroke="#7A7A7A" stroke-width="2" x1="531.5636" x2="529.7195" y1="466.0961" y2="471.8691"/>
		<line fill="none" id="t1 p185" stroke="#7A7A7A" stroke-width="2" x1="529.7195" x2="530.1293" y1="471.8691" y2="475.3074"/>
		<line fill="none" id="t1 p186" stroke="#7A7A7A" stroke-width="2" x1="530.1293" x2="530.5977" y1="475.3074" y2="475.9866"/>
		<line fill="none" id="t1 p187" stroke="#7A7A7A" stroke-width="2" x1="530.5977" x2="532.2368" y1="475.9866" y2="477.1751"/>
		<line fill="none" id="t1 p188" stroke="#7A7A7A" stroke-width="2" x1="532.2368" x2="532.0904" y1="477.1751" y2="477.3874"/>
		<line fill="none" id="t1 p189" stroke="#7A7A7A" stroke-width="2" x1="532.0904" x2="534.4028" y1="477.3874" y2="481.5473"/>
		<line fill="none" id="t1 p190" stroke="#7A7A7A" stroke-width="2" x1="534.4028" x2="536.4517" y1="481.5473" y2="487.2354"/>
		<line fill="none" id="t1 p191" stroke="#7A7A7A" stroke-width="2" x1="536.4517" x2="537.3006" y1="487.2354" y2="488.2966"/>
		<line fill="none" id="t1 p192" stroke="#7A7A7A" stroke-width="2" x1="537.3006" x2="541.2520" y1="488.2966" y2="491.4802"/>
		<line fill="none" id="t1 p193" stroke="#7A7A7A" stroke-width="2" x1="541.2520" x2="546.9305" y1="491.4802" y2="493.3479"/>
		<line fill="none" id="t1 p194" stroke="#7A7A7A" stroke-width="2" x1="546.9305" x2="550.3844" y1="493.3479" y2="497.2532"/>
		<line fill="none" id="t1 p195" stroke="#7A7A7A" stroke-width="2" x1="550.3844" x2="554.2188" y1="497.2532" y2="499.0785"/>
		<line fill="none" id="t1 p196" stroke="#7A7A7A" stroke-width="2" x1="554.2188" x2="556.6189" y1="499.0785" y2="498.6115"/>
		<line fill="none" id="t1 p197" stroke="#7A7A7A" stroke-width="2" x1="556.6189" x2="560.5997" y1="498.6115" y2="497.6352"/>
		<line fill="none" id="t1 p198" stroke="#7A7A7A" stroke-width="2" x1="560.5997" x2="561.7412" y1="497.6352" y2="500.0548"/>
		<line fill="none" id="t1 p199" stroke="#7A7A7A" stroke-width="2" x1="561.7412" x2="562.2974" y1="500.0548" y2="505.2759"/>
		<line fill="none" id="t1 p200" stroke="#7A7A7A" stroke-width="2" x1="562.2974" x2="562.7657" y1="505.2759" y2="510.2848"/>
		<line fill="none" id="t1 p201" stroke="#7A7A7A" stroke-width="2" x1="562.7657" x2="562.3266" y1="510.2848" y2="517.2463"/>
		<line fill="none" id="t1 p202" stroke="#7A7A7A" stroke-width="2" x1="562.3266" x2="563.3511" y1="517.2463" y2="523.3164"/>
		<line fill="none" id="t1 p203" stroke="#7A7A7A" stroke-width="2" x1="563.3511" x2="562.7657" y1="523.3164" y2="527.9433"/>
		<line fill="none" id="t1 p204" stroke="#7A7A7A" stroke-width="2" x1="562.7657" x2="565.2537" y1="527.9433" y2="532.6551"/>
		<line fill="none" id="t1 p205" stroke="#7A7A7A" stroke-width="2" x1="565.2537" x2="566.8050" y1="532.6551" y2="535.4142"/>
		<line fill="none" id="t1 p206" stroke="#7A7A7A" stroke-width="2" x1="566.8050" x2="568.5027" y1="535.4142" y2="538.2158"/>
		<line fill="none" id="t1 p207" stroke="#7A7A7A" stroke-width="2" x1="568.5027" x2="566.7465" y1="538.2158" y2="546.9602"/>
		<line fill="none" id="t1 p208" stroke="#7A7A7A" stroke-width="2" x1="566.7465" x2="569.0588" y1="546.9602" y2="555.1102"/>
		<line fill="none" id="t1 p209" stroke="#7A7A7A" stroke-width="2" x1="569.0588" x2="571.8688" y1="555.1102" y2="561.2652"/>
		<line fill="none" id="t1 p210" stroke="#7A7A7A" stroke-width="2" x1="571.8688" x2="573.4201" y1="561.2652" y2="565.8072"/>
		<line fill="none" id="t1 p211" stroke="#7A7A7A" stroke-width="2" x1="573.4201" x2="574.0640" y1="565.8072" y2="568.0145"/>
		<line fill="none" id="t1 p212" stroke="#7A7A7A" stroke-width="2" x1="574.0640" x2="573.3030" y1="568.0145" y2="578.0748"/>
		<line fill="none" id="t1 p213" stroke="#7A7A7A" stroke-width="2" x1="573.3030" x2="576.6691" y1="578.0748" y2="583.5506"/>
		<line fill="none" id="t1 p214" stroke="#7A7A7A" stroke-width="2" x1="576.6691" x2="578.4546" y1="583.5506" y2="584.7391"/>
		<line fill="none" id="t1 p215" stroke="#7A7A7A" stroke-width="2" x1="578.4546" x2="580.0352" y1="584.7391" y2="587.4134"/>
		<line fill="none" id="t1 p216" stroke="#7A7A7A" stroke-width="2" x1="580.0352" x2="577.6935" y1="587.4134" y2="592.2101"/>
		<line fill="none" id="t1 p217" stroke="#7A7A7A" stroke-width="2" x1="577.6935" x2="573.0981" y1="592.2101" y2="597.4312"/>
		<line fill="none" id="t1 p218" stroke="#7A7A7A" stroke-width="2" x1="573.0981" x2="573.5664" y1="597.4312" y2="602.5674"/>
		<line fill="none" id="t1 p219" stroke="#7A7A7A" stroke-width="2" x1="573.5664" x2="573.7421" y1="602.5674" y2="604.3078"/>
		<line fill="none" id="t1 p220" stroke="#7A7A7A" stroke-width="2" x1="573.7421" x2="574.0640" y1="604.3078" y2="612.3730"/>
		<line fill="none" id="t1 p221" stroke="#7A7A7A" stroke-width="2" x1="574.0640" x2="571.8980" y1="612.3730" y2="613.5191"/>
		<line fill="none" id="t1 p222" stroke="#7A7A7A" stroke-width="2" x1="571.8980" x2="571.0199" y1="613.5191" y2="612.3305"/>
		<line fill="none" id="t1 p223" stroke="#7A7A7A" stroke-width="2" x1="571.0199" x2="566.3367" y1="612.3305" y2="604.9021"/>
		<line fill="none" id="t1 p224" stroke="#7A7A7A" stroke-width="2" x1="566.3367" x2="557.5556" y1="604.9021" y2="598.8320"/>
		<line fill="none" id="t1 p225" stroke="#7A7A7A" stroke-width="2" x1="557.5556" x2="554.9213" y1="598.8320" y2="594.6296"/>
		<line fill="none" id="t1 p226" stroke="#7A7A7A" stroke-width="2" x1="554.9213" x2="556.0628" y1="594.6296" y2="588.0926"/>
		<line fill="none" id="t1 p227" stroke="#7A7A7A" stroke-width="2" x1="556.0628" x2="553.5456" y1="588.0926" y2="583.3808"/>
		<line fill="none" id="t1 p228" stroke="#7A7A7A" stroke-width="2" x1="553.5456" x2="551.2625" y1="583.3808" y2="581.0886"/>
		<line fill="none" id="t1 p229" stroke="#7A7A7A" stroke-width="2" x1="551.2625" x2="549.5941" y1="581.0886" y2="578.3719"/>
		<line fill="none" id="t1 p230" stroke="#7A7A7A" stroke-width="2" x1="549.5941" x2="551.5845" y1="578.3719" y2="573.8299"/>
		<line fill="none" id="t1 p231" stroke="#7A7A7A" stroke-width="2" x1="551.5845" x2="554.8627" y1="573.8299" y2="569.3304"/>
		<line fill="none" id="t1 p232" stroke="#7A7A7A" stroke-width="2" x1="554.8627" x2="556.5019" y1="569.3304" y2="562.4113"/>
		<line fill="none" id="t1 p233" stroke="#7A7A7A" stroke-width="2" x1="556.5019" x2="557.0873" y1="562.4113" y2="559.7795"/>
		<line fill="none" id="t1 p234" stroke="#7A7A7A" stroke-width="2" x1="557.0873" x2="557.5263" y1="559.7795" y2="555.5347"/>
		<line fill="none" id="t1 p235" stroke="#7A7A7A" stroke-width="2" x1="557.5263" x2="557.2043" y1="555.5347" y2="555.3649"/>
		<line fill="none" id="t1 p236" stroke="#7A7A7A" stroke-width="2" x1="557.2043" x2="553.6334" y1="555.3649" y2="555.6621"/>
		<line fill="none" id="t1 p237" stroke="#7A7A7A" stroke-width="2" x1="553.6334" x2="551.6723" y1="555.6621" y2="555.7470"/>
		<line fill="none" id="t1 p238" stroke="#7A7A7A" stroke-width="2" x1="551.6723" x2="547.3695" y1="555.7470" y2="552.4784"/>
		<line fill="none" id="t1 p239" stroke="#7A7A7A" stroke-width="2" x1="547.3695" x2="547.3695" y1="552.4784" y2="549.8891"/>
		<line fill="none" id="t1 p240" stroke="#7A7A7A" stroke-width="2" x1="547.3695" x2="547.1646" y1="549.8891" y2="548.9552"/>
		<line fill="none" id="t1 p241" stroke="#7A7A7A" stroke-width="2" x1="547.1646" x2="548.0720" y1="548.9552" y2="548.0214"/>
		<line fill="none" id="t1 p242" stroke="#7A7A7A" stroke-width="2" x1="548.0720" x2="548.0720" y1="548.0214" y2="548.1912"/>
		<line fill="none" id="t1 p243" stroke="#7A7A7A" stroke-width="2" x1="548.0720" x2="549.0087" y1="548.1912" y2="549.0401"/>
		<line fill="none" id="t1 p244" stroke="#7A7A7A" stroke-width="2" x1="549.0087" x2="549.7990" y1="549.0401" y2="550.9078"/>
		<line fill="none" id="t1 p245" stroke="#7A7A7A" stroke-width="2" x1="549.7990" x2="552.0528" y1="550.9078" y2="553.4547"/>
		<line fill="none" id="t1 p246" stroke="#7A7A7A" stroke-width="2" x1="552.0528" x2="553.1065" y1="553.4547" y2="552.9454"/>
		<line fill="none" id="t1 p247" stroke="#7A7A7A" stroke-width="2" x1="553.1065" x2="553.5748" y1="552.9454" y2="552.0964"/>
		<line fill="none" id="t1 p248" stroke="#7A7A7A" stroke-width="2" x1="553.5748" x2="554.1017" y1="552.0964" y2="549.4222"/>
		<line fill="none" id="t1 p249" stroke="#7A7A7A" stroke-width="2" x1="554.1017" x2="551.6137" y1="549.4222" y2="548.7430"/>
		<line fill="none" id="t1 p250" stroke="#7A7A7A" stroke-width="2" x1="551.6137" x2="549.4770" y1="548.7430" y2="547.2148"/>
		<line fill="none" id="t1 p251" stroke="#7A7A7A" stroke-width="2" x1="549.4770" x2="547.3695" y1="547.2148" y2="544.5830"/>
		<line fill="none" id="t1 p252" stroke="#7A7A7A" stroke-width="2" x1="547.3695" x2="548.0135" y1="544.5830" y2="544.0312"/>
		<line fill="none" id="t1 p253" stroke="#7A7A7A" stroke-width="2" x1="548.0135" x2="548.9209" y1="544.0312" y2="545.0075"/>
		<line fill="none" id="t1 p254" stroke="#7A7A7A" stroke-width="2" x1="548.9209" x2="550.8820" y1="545.0075" y2="543.6916"/>
		<line fill="none" id="t1 p255" stroke="#7A7A7A" stroke-width="2" x1="550.8820" x2="550.9698" y1="543.6916" y2="542.8851"/>
		<line fill="none" id="t1 p256" stroke="#7A7A7A" stroke-width="2" x1="550.9698" x2="551.0576" y1="542.8851" y2="541.7390"/>
		<line fill="none" id="t1 p257" stroke="#7A7A7A" stroke-width="2" x1="551.0576" x2="550.0624" y1="541.7390" y2="539.5741"/>
		<line fill="none" id="t1 p258" stroke="#7A7A7A" stroke-width="2" x1="550.0624" x2="548.3940" y1="539.5741" y2="540.7627"/>
		<line fill="none" id="t1 p259" stroke="#7A7A7A" stroke-width="2" x1="548.3940" x2="546.6085" y1="540.7627" y2="541.7390"/>
		<line fill="none" id="t1 p260" stroke="#7A7A7A" stroke-width="2" x1="546.6085" x2="545.3499" y1="541.7390" y2="541.1023"/>
		<line fill="none" id="t1 p261" stroke="#7A7A7A" stroke-width="2" x1="545.3499" x2="541.1935" y1="541.1023" y2="539.4893"/>
		<line fill="none" id="t1 p262" stroke="#7A7A7A" stroke-width="2" x1="541.1935" x2="539.4958" y1="539.4893" y2="536.9424"/>
		<line fill="none" id="t1 p263" stroke="#7A7A7A" stroke-width="2" x1="539.4958" x2="540.0812" y1="536.9424" y2="536.0085"/>
		<line fill="none" id="t1 p264" stroke="#7A7A7A" stroke-width="2" x1="540.0812" x2="540.5203" y1="536.0085" y2="534.9473"/>
		<line fill="none" id="t1 p265" stroke="#7A7A7A" stroke-width="2" x1="540.5203" x2="541.3984" y1="534.9473" y2="531.9759"/>
		<line fill="none" id="t1 p266" stroke="#7A7A7A" stroke-width="2" x1="541.3984" x2="542.0423" y1="531.9759" y2="528.7498"/>
		<line fill="none" id="t1 p267" stroke="#7A7A7A" stroke-width="2" x1="542.0423" x2="541.9545" y1="528.7498" y2="527.6886"/>
		<line fill="none" id="t1 p268" stroke="#7A7A7A" stroke-width="2" x1="541.9545" x2="540.6959" y1="527.6886" y2="523.7834"/>
		<line fill="none" id="t1 p269" stroke="#7A7A7A" stroke-width="2" x1="540.6959" x2="538.6177" y1="523.7834" y2="523.2740"/>
		<line fill="none" id="t1 p270" stroke="#7A7A7A" stroke-width="2" x1="538.6177" x2="538.5592" y1="523.2740" y2="524.6323"/>
		<line fill="none" id="t1 p271" stroke="#7A7A7A" stroke-width="2" x1="538.5592" x2="540.1105" y1="524.6323" y2="529.3441"/>
		<line fill="none" id="t1 p272" stroke="#7A7A7A" stroke-width="2" x1="540.1105" x2="537.8274" y1="529.3441" y2="528.0282"/>
		<line fill="none" id="t1 p273" stroke="#7A7A7A" stroke-width="2" x1="537.8274" x2="536.3932" y1="528.0282" y2="524.3777"/>
		<line fill="none" id="t1 p274" stroke="#7A7A7A" stroke-width="2" x1="536.3932" x2="535.6614" y1="524.3777" y2="520.0479"/>
		<line fill="none" id="t1 p275" stroke="#7A7A7A" stroke-width="2" x1="535.6614" x2="534.4321" y1="520.0479" y2="518.6047"/>
		<line fill="none" id="t1 p276" stroke="#7A7A7A" stroke-width="2" x1="534.4321" x2="533.8467" y1="518.6047" y2="516.5672"/>
		<line fill="none" id="t1 p277" stroke="#7A7A7A" stroke-width="2" x1="533.8467" x2="534.0516" y1="516.5672" y2="515.9729"/>
		<line fill="none" id="t1 p278" stroke="#7A7A7A" stroke-width="2" x1="534.0516" x2="534.1394" y1="515.9729" y2="512.1950"/>
		<line fill="none" id="t1 p279" stroke="#7A7A7A" stroke-width="2" x1="534.1394" x2="530.6562" y1="512.1950" y2="509.5632"/>
		<line fill="none" id="t1 p280" stroke="#7A7A7A" stroke-width="2" x1="530.6562" x2="529.5147" y1="509.5632" y2="511.2187"/>
		<line fill="none" id="t1 p281" stroke="#7A7A7A" stroke-width="2" x1="529.5147" x2="526.9681" y1="511.2187" y2="512.7044"/>
		<line fill="none" id="t1 p282" stroke="#7A7A7A" stroke-width="2" x1="526.9681" x2="523.8362" y1="512.7044" y2="509.9028"/>
		<line fill="none" id="t1 p283" stroke="#7A7A7A" stroke-width="2" x1="523.8362" x2="523.7191" y1="509.9028" y2="507.4832"/>
		<line fill="none" id="t1 p284" stroke="#7A7A7A" stroke-width="2" x1="523.7191" x2="523.9533" y1="507.4832" y2="505.9975"/>
		<line fill="none" id="t1 p285" stroke="#7A7A7A" stroke-width="2" x1="523.9533" x2="523.7191" y1="505.9975" y2="505.7004"/>
		<line fill="none" id="t1 p286" stroke="#7A7A7A" stroke-width="2" x1="523.7191" x2="523.7191" y1="505.7004" y2="504.5967"/>
		<line fill="none" id="t1 p287" stroke="#7A7A7A" stroke-width="2" x1="523.7191" x2="523.5435" y1="504.5967" y2="504.4269"/>
		<line fill="none" id="t1 p288" stroke="#7A7A7A" stroke-width="2" x1="523.5435" x2="521.5531" y1="504.4269" y2="501.4980"/>
		<line fill="none" id="t1 p289" stroke="#7A7A7A" stroke-width="2" x1="521.5531" x2="519.2701" y1="501.4980" y2="499.3756"/>
		<line fill="none" id="t1 p290" stroke="#7A7A7A" stroke-width="2" x1="519.2701" x2="519.0944" y1="499.3756" y2="498.9087"/>
		<line fill="none" id="t1 p291" stroke="#7A7A7A" stroke-width="2" x1="519.0944" x2="519.5042" y1="498.9087" y2="496.7863"/>
		<line fill="none" id="t1 p292" stroke="#7A7A7A" stroke-width="2" x1="519.5042" x2="519.5335" y1="496.7863" y2="496.4467"/>
		<line fill="none" id="t1 p293" stroke="#7A7A7A" stroke-width="2" x1="519.5335" x2="520.2360" y1="496.4467" y2="493.9847"/>
		<line fill="none" id="t1 p294" stroke="#7A7A7A" stroke-width="2" x1="520.2360" x2="520.5287" y1="493.9847" y2="492.6263"/>
		<line fill="none" id="t1 p295" stroke="#7A7A7A" stroke-width="2" x1="520.5287" x2="521.7288" y1="492.6263" y2="491.9047"/>
		<line fill="none" id="t1 p296" stroke="#7A7A7A" stroke-width="2" x1="521.7288" x2="522.2264" y1="491.9047" y2="493.3904"/>
		<line fill="none" id="t1 p297" stroke="#7A7A7A" stroke-width="2" x1="522.2264" x2="519.2701" y1="493.3904" y2="494.6214"/>
		<line fill="none" id="t1 p298" stroke="#7A7A7A" stroke-width="2" x1="519.2701" x2="519.0359" y1="494.6214" y2="495.9797"/>
		<line fill="none" id="t1 p299" stroke="#7A7A7A" stroke-width="2" x1="519.0359" x2="513.5038" y1="495.9797" y2="495.8524"/>
		<line fill="none" id="t1 p300" stroke="#7A7A7A" stroke-width="2" x1="513.5038" x2="510.1085" y1="495.8524" y2="495.2157"/>
		<line fill="none" id="t1 p301" stroke="#7A7A7A" stroke-width="2" x1="510.1085" x2="502.3226" y1="495.2157" y2="495.0883"/>
		<line fill="none" id="t1 p302" stroke="#7A7A7A" stroke-width="2" x1="502.3226" x2="492.7512" y1="495.0883" y2="497.3805"/>
		<line fill="none" id="t1 p303" stroke="#7A7A7A" stroke-width="2" x1="492.7512" x2="489.9120" y1="497.3805" y2="500.5642"/>
		<line fill="none" id="t1 p304" stroke="#7A7A7A" stroke-width="2" x1="489.9120" x2="490.6730" y1="500.5642" y2="503.7478"/>
		<line fill="none" id="t1 p305" stroke="#7A7A7A" stroke-width="2" x1="490.6730" x2="494.9757" y1="503.7478" y2="510.9215"/>
		<line fill="none" id="t1 p306" stroke="#7A7A7A" stroke-width="2" x1="494.9757" x2="496.9368" y1="510.9215" y2="515.0815"/>
		<line fill="none" id="t1 p307" stroke="#7A7A7A" stroke-width="2" x1="496.9368" x2="496.6149" y1="515.0815" y2="523.4013"/>
		<line fill="none" id="t1 p308" stroke="#7A7A7A" stroke-width="2" x1="496.6149" x2="495.2684" y1="523.4013" y2="526.9246"/>
		<line fill="none" id="t1 p309" stroke="#7A7A7A" stroke-width="2" x1="495.2684" x2="489.3266" y1="526.9246" y2="528.3253"/>
		<line fill="none" id="t1 p310" stroke="#7A7A7A" stroke-width="2" x1="489.3266" x2="485.7556" y1="528.3253" y2="530.2780"/>
		<line fill="none" id="t1 p311" stroke="#7A7A7A" stroke-width="2" x1="485.7556" x2="484.0286" y1="530.2780" y2="530.2780"/>
		<line fill="none" id="t1 p312" stroke="#7A7A7A" stroke-width="2" x1="484.0286" x2="482.8286" y1="530.2780" y2="531.9335"/>
		<line fill="none" id="t1 p313" stroke="#7A7A7A" stroke-width="2" x1="482.8286" x2="481.7456" y1="531.9335" y2="534.2681"/>
		<line fill="none" id="t1 p314" stroke="#7A7A7A" stroke-width="2" x1="481.7456" x2="481.1309" y1="534.2681" y2="535.1171"/>
		<line fill="none" id="t1 p315" stroke="#7A7A7A" stroke-width="2" x1="481.1309" x2="479.9601" y1="535.1171" y2="535.5416"/>
		<line fill="none" id="t1 p316" stroke="#7A7A7A" stroke-width="2" x1="479.9601" x2="478.5258" y1="535.5416" y2="538.0460"/>
		<line fill="none" id="t1 p317" stroke="#7A7A7A" stroke-width="2" x1="478.5258" x2="477.0330" y1="538.0460" y2="539.0648"/>
		<line fill="none" id="t1 p318" stroke="#7A7A7A" stroke-width="2" x1="477.0330" x2="474.5451" y1="539.0648" y2="539.1072"/>
		<line fill="none" id="t1 p319" stroke="#7A7A7A" stroke-width="2" x1="474.5451" x2="475.6281" y1="539.1072" y2="536.6028"/>
		<line fill="none" id="t1 p320" stroke="#7A7A7A" stroke-width="2" x1="475.6281" x2="477.4428" y1="536.6028" y2="534.2257"/>
		<line fill="none" id="t1 p321" stroke="#7A7A7A" stroke-width="2" x1="477.4428" x2="475.7744" y1="534.2257" y2="530.9147"/>
		<line fill="none" id="t1 p322" stroke="#7A7A7A" stroke-width="2" x1="475.7744" x2="477.2087" y1="530.9147" y2="527.2217"/>
		<line fill="none" id="t1 p323" stroke="#7A7A7A" stroke-width="2" x1="477.2087" x2="481.1309" y1="527.2217" y2="526.2029"/>
		<line fill="none" id="t1 p324" stroke="#7A7A7A" stroke-width="2" x1="481.1309" x2="482.0675" y1="526.2029" y2="524.5474"/>
		<line fill="none" id="t1 p325" stroke="#7A7A7A" stroke-width="2" x1="482.0675" x2="481.5699" y1="524.5474" y2="523.8258"/>
		<line fill="none" id="t1 p326" stroke="#7A7A7A" stroke-width="2" x1="481.5699" x2="480.1357" y1="523.8258" y2="523.0193"/>
		<line fill="none" id="t1 p327" stroke="#7A7A7A" stroke-width="2" x1="480.1357" x2="479.6088" y1="523.0193" y2="522.9344"/>
		<line fill="none" id="t1 p328" stroke="#7A7A7A" stroke-width="2" x1="479.6088" x2="476.5354" y1="522.9344" y2="519.6234"/>
		<line fill="none" id="t1 p329" stroke="#7A7A7A" stroke-width="2" x1="476.5354" x2="472.8474" y1="519.6234" y2="516.1427"/>
		<line fill="none" id="t1 p330" stroke="#7A7A7A" stroke-width="2" x1="472.8474" x2="469.3935" y1="516.1427" y2="514.7843"/>
		<line fill="none" id="t1 p331" stroke="#7A7A7A" stroke-width="2" x1="469.3935" x2="465.1200" y1="514.7843" y2="512.2374"/>
		<line fill="none" id="t1 p332" stroke="#7A7A7A" stroke-width="2" x1="465.1200" x2="462.3394" y1="512.2374" y2="510.9640"/>
		<line fill="none" id="t1 p333" stroke="#7A7A7A" stroke-width="2" x1="462.3394" x2="461.8710" y1="510.9640" y2="510.2424"/>
		<line fill="none" id="t1 p334" stroke="#7A7A7A" stroke-width="2" x1="461.8710" x2="460.0270" y1="510.2424" y2="507.1012"/>
		<line fill="none" id="t1 p335" stroke="#7A7A7A" stroke-width="2" x1="460.0270" x2="458.2415" y1="507.1012" y2="506.8465"/>
		<line fill="none" id="t1 p336" stroke="#7A7A7A" stroke-width="2" x1="458.2415" x2="458.0366" y1="506.8465" y2="507.2710"/>
		<line fill="none" id="t1 p337" stroke="#7A7A7A" stroke-width="2" x1="458.0366" x2="458.8562" y1="507.2710" y2="509.5207"/>
		<line fill="none" id="t1 p338" stroke="#7A7A7A" stroke-width="2" x1="458.8562" x2="459.2952" y1="509.5207" y2="510.8366"/>
		<line fill="none" id="t1 p339" stroke="#7A7A7A" stroke-width="2" x1="459.2952" x2="456.6902" y1="510.8366" y2="513.7231"/>
		<line fill="none" id="t1 p340" stroke="#7A7A7A" stroke-width="2" x1="456.6902" x2="455.8414" y1="513.7231" y2="514.1052"/>
		<line fill="none" id="t1 p341" stroke="#7A7A7A" stroke-width="2" x1="455.8414" x2="455.0218" y1="514.1052" y2="514.2325"/>
		<line fill="none" id="t1 p342" stroke="#7A7A7A" stroke-width="2" x1="455.0218" x2="453.5290" y1="514.2325" y2="513.8505"/>
		<line fill="none" id="t1 p343" stroke="#7A7A7A" stroke-width="2" x1="453.5290" x2="452.5631" y1="513.8505" y2="513.0015"/>
		<line fill="none" id="t1 p344" stroke="#7A7A7A" stroke-width="2" x1="452.5631" x2="450.2507" y1="513.0015" y2="508.5444"/>
		<line fill="none" id="t1 p345" stroke="#7A7A7A" stroke-width="2" x1="450.2507" x2="449.1677" y1="508.5444" y2="505.4033"/>
		<line fill="none" id="t1 p346" stroke="#7A7A7A" stroke-width="2" x1="449.1677" x2="448.2603" y1="505.4033" y2="504.4269"/>
		<line fill="none" id="t1 p347" stroke="#7A7A7A" stroke-width="2" x1="448.2603" x2="446.8261" y1="504.4269" y2="503.3233"/>
		<line fill="none" id="t1 p348" stroke="#7A7A7A" stroke-width="2" x1="446.8261" x2="445.8016" y1="503.3233" y2="503.7053"/>
		<line fill="none" id="t1 p349" stroke="#7A7A7A" stroke-width="2" x1="445.8016" x2="445.5382" y1="503.7053" y2="507.0587"/>
		<line fill="none" id="t1 p350" stroke="#7A7A7A" stroke-width="2" x1="445.5382" x2="445.4211" y1="507.0587" y2="508.5869"/>
		<line fill="none" id="t1 p351" stroke="#7A7A7A" stroke-width="2" x1="445.4211" x2="445.8895" y1="508.5869" y2="510.1999"/>
		<line fill="none" id="t1 p352" stroke="#7A7A7A" stroke-width="2" x1="445.8895" x2="446.7968" y1="510.1999" y2="513.1713"/>
		<line fill="none" id="t1 p353" stroke="#7A7A7A" stroke-width="2" x1="446.7968" x2="446.5919" y1="513.1713" y2="513.8929"/>
		<line fill="none" id="t1 p354" stroke="#7A7A7A" stroke-width="2" x1="446.5919" x2="444.8943" y1="513.8929" y2="519.1565"/>
		<line fill="none" id="t1 p355" stroke="#7A7A7A" stroke-width="2" x1="444.8943" x2="443.2551" y1="519.1565" y2="521.4912"/>
		<line fill="none" id="t1 p356" stroke="#7A7A7A" stroke-width="2" x1="443.2551" x2="441.2355" y1="521.4912" y2="525.2691"/>
		<line fill="none" id="t1 p357" stroke="#7A7A7A" stroke-width="2" x1="441.2355" x2="436.8157" y1="525.2691" y2="524.4625"/>
		<line fill="none" id="t1 p358" stroke="#7A7A7A" stroke-width="2" x1="436.8157" x2="433.6252" y1="524.4625" y2="521.7459"/>
		<line fill="none" id="t1 p359" stroke="#7A7A7A" stroke-width="2" x1="433.6252" x2="432.5715" y1="521.7459" y2="521.8308"/>
		<line fill="none" id="t1 p360" stroke="#7A7A7A" stroke-width="2" x1="432.5715" x2="430.7860" y1="521.8308" y2="522.4250"/>
		<line fill="none" id="t1 p361" stroke="#7A7A7A" stroke-width="2" x1="430.7860" x2="430.2591" y1="522.4250" y2="524.2928"/>
		<line fill="none" id="t1 p362" stroke="#7A7A7A" stroke-width="2" x1="430.2591" x2="431.8104" y1="524.2928" y2="528.2404"/>
		<line fill="none" id="t1 p363" stroke="#7A7A7A" stroke-width="2" x1="431.8104" x2="433.7423" y1="528.2404" y2="529.9808"/>
		<line fill="none" id="t1 p364" stroke="#7A7A7A" stroke-width="2" x1="433.7423" x2="439.3915" y1="529.9808" y2="533.5040"/>
		<line fill="none" id="t1 p365" stroke="#7A7A7A" stroke-width="2" x1="439.3915" x2="445.0992" y1="533.5040" y2="535.8811"/>
		<line fill="none" id="t1 p366" stroke="#7A7A7A" stroke-width="2" x1="445.0992" x2="446.0943" y1="535.8811" y2="536.1358"/>
		<line fill="none" id="t1 p367" stroke="#7A7A7A" stroke-width="2" x1="446.0943" x2="450.8361" y1="536.1358" y2="535.2020"/>
		<line fill="none" id="t1 p368" stroke="#7A7A7A" stroke-width="2" x1="450.8361" x2="454.1729" y1="535.2020" y2="534.6077"/>
		<line fill="none" id="t1 p369" stroke="#7A7A7A" stroke-width="2" x1="454.1729" x2="455.8121" y1="534.6077" y2="533.7587"/>
		<line fill="none" id="t1 p370" stroke="#7A7A7A" stroke-width="2" x1="455.8121" x2="456.4853" y1="533.7587" y2="532.6975"/>
		<line fill="none" id="t1 p371" stroke="#7A7A7A" stroke-width="2" x1="456.4853" x2="459.5294" y1="532.6975" y2="534.0983"/>
		<line fill="none" id="t1 p372" stroke="#7A7A7A" stroke-width="2" x1="459.5294" x2="463.0418" y1="534.0983" y2="536.6028"/>
		<line fill="none" id="t1 p373" stroke="#7A7A7A" stroke-width="2" x1="463.0418" x2="466.4079" y1="536.6028" y2="538.8101"/>
		<line fill="none" id="t1 p374" stroke="#7A7A7A" stroke-width="2" x1="466.4079" x2="468.6910" y1="538.8101" y2="540.2958"/>
		<line fill="none" id="t1 p375" stroke="#7A7A7A" stroke-width="2" x1="468.6910" x2="468.9252" y1="540.2958" y2="540.8051"/>
		<line fill="none" id="t1 p376" stroke="#7A7A7A" stroke-width="2" x1="468.9252" x2="466.2323" y1="540.8051" y2="543.9888"/>
		<line fill="none" id="t1 p377" stroke="#7A7A7A" stroke-width="2" x1="466.2323" x2="465.2957" y1="543.9888" y2="544.5830"/>
		<line fill="none" id="t1 p378" stroke="#7A7A7A" stroke-width="2" x1="465.2957" x2="458.0659" y1="544.5830" y2="548.8279"/>
		<line fill="none" id="t1 p379" stroke="#7A7A7A" stroke-width="2" x1="458.0659" x2="456.7487" y1="548.8279" y2="549.3373"/>
		<line fill="none" id="t1 p380" stroke="#7A7A7A" stroke-width="2" x1="456.7487" x2="454.3778" y1="549.3373" y2="554.0915"/>
		<line fill="none" id="t1 p381" stroke="#7A7A7A" stroke-width="2" x1="454.3778" x2="456.1926" y1="554.0915" y2="555.9592"/>
		<line fill="none" id="t1 p382" stroke="#7A7A7A" stroke-width="2" x1="456.1926" x2="458.0952" y1="555.9592" y2="557.6996"/>
		<line fill="none" id="t1 p383" stroke="#7A7A7A" stroke-width="2" x1="458.0952" x2="463.6565" y1="557.6996" y2="558.4636"/>
		<line fill="none" id="t1 p384" stroke="#7A7A7A" stroke-width="2" x1="463.6565" x2="468.3105" y1="558.4636" y2="557.4873"/>
		<line fill="none" id="t1 p385" stroke="#7A7A7A" stroke-width="2" x1="468.3105" x2="471.3546" y1="557.4873" y2="558.6759"/>
		<line fill="none" id="t1 p386" stroke="#7A7A7A" stroke-width="2" x1="471.3546" x2="472.4961" y1="558.6759" y2="559.5673"/>
		<line fill="none" id="t1 p387" stroke="#7A7A7A" stroke-width="2" x1="472.4961" x2="474.6621" y1="559.5673" y2="560.4163"/>
		<line fill="none" id="t1 p388" stroke="#7A7A7A" stroke-width="2" x1="474.6621" x2="481.2187" y1="560.4163" y2="560.3314"/>
		<line fill="none" id="t1 p389" stroke="#7A7A7A" stroke-width="2" x1="481.2187" x2="482.6237" y1="560.3314" y2="560.2889"/>
		<line fill="none" id="t1 p390" stroke="#7A7A7A" stroke-width="2" x1="482.6237" x2="485.6092" y1="560.2889" y2="563.2179"/>
		<line fill="none" id="t1 p391" stroke="#7A7A7A" stroke-width="2" x1="485.6092" x2="484.9360" y1="563.2179" y2="565.1280"/>
		<line fill="none" id="t1 p392" stroke="#7A7A7A" stroke-width="2" x1="484.9360" x2="484.2628" y1="565.1280" y2="566.1468"/>
		<line fill="none" id="t1 p393" stroke="#7A7A7A" stroke-width="2" x1="484.2628" x2="484.0872" y1="566.1468" y2="566.6137"/>
		<line fill="none" id="t1 p394" stroke="#7A7A7A" stroke-width="2" x1="484.0872" x2="486.0190" y1="566.6137" y2="569.3729"/>
		<line fill="none" id="t1 p395" stroke="#7A7A7A" stroke-width="2" x1="486.0190" x2="489.9412" y1="569.3729" y2="570.6039"/>
		<line fill="none" id="t1 p396" stroke="#7A7A7A" stroke-width="2" x1="489.9412" x2="495.9416" y1="570.6039" y2="567.2080"/>
		<line fill="none" id="t1 p397" stroke="#7A7A7A" stroke-width="2" x1="495.9416" x2="496.4100" y1="567.2080" y2="562.2840"/>
		<line fill="none" id="t1 p398" stroke="#7A7A7A" stroke-width="2" x1="496.4100" x2="495.4148" y1="562.2840" y2="561.2228"/>
		<line fill="none" id="t1 p399" stroke="#7A7A7A" stroke-width="2" x1="495.4148" x2="491.1999" y1="561.2228" y2="555.7470"/>
		<line fill="none" id="t1 p400" stroke="#7A7A7A" stroke-width="2" x1="491.1999" x2="490.7023" y1="555.7470" y2="554.6433"/>
		<line fill="none" id="t1 p401" stroke="#7A7A7A" stroke-width="2" x1="490.7023" x2="492.0487" y1="554.6433" y2="550.8654"/>
		<line fill="none" id="t1 p402" stroke="#7A7A7A" stroke-width="2" x1="492.0487" x2="494.0976" y1="550.8654" y2="548.7854"/>
		<line fill="none" id="t1 p403" stroke="#7A7A7A" stroke-width="2" x1="494.0976" x2="498.9858" y1="548.7854" y2="544.9651"/>
		<line fill="none" id="t1 p404" stroke="#7A7A7A" stroke-width="2" x1="498.9858" x2="499.4248" y1="544.9651" y2="540.9749"/>
		<line fill="none" id="t1 p405" stroke="#7A7A7A" stroke-width="2" x1="499.4248" x2="502.8202" y1="540.9749" y2="540.5080"/>
		<line fill="none" id="t1 p406" stroke="#7A7A7A" stroke-width="2" x1="502.8202" x2="504.1959" y1="540.5080" y2="541.0174"/>
		<line fill="none" id="t1 p407" stroke="#7A7A7A" stroke-width="2" x1="504.1959" x2="510.1085" y1="541.0174" y2="541.4843"/>
		<line fill="none" id="t1 p408" stroke="#7A7A7A" stroke-width="2" x1="510.1085" x2="514.2648" y1="541.4843" y2="534.2681"/>
		<line fill="none" id="t1 p409" stroke="#7A7A7A" stroke-width="2" x1="514.2648" x2="513.7087" y1="534.2681" y2="530.2780"/>
		<line fill="none" id="t1 p410" stroke="#7A7A7A" stroke-width="2" x1="513.7087" x2="513.2111" y1="530.2780" y2="529.1319"/>
		<line fill="none" id="t1 p411" stroke="#7A7A7A" stroke-width="2" x1="513.2111" x2="512.3037" y1="529.1319" y2="526.3303"/>
		<line fill="none" id="t1 p412" stroke="#7A7A7A" stroke-width="2" x1="512.3037" x2="507.3571" y1="526.3303" y2="524.8870"/>
		<line fill="none" id="t1 p413" stroke="#7A7A7A" stroke-width="2" x1="507.3571" x2="504.5471" y1="524.8870" y2="522.5948"/>
		<line fill="none" id="t1 p414" stroke="#7A7A7A" stroke-width="2" x1="504.5471" x2="505.5423" y1="522.5948" y2="519.4961"/>
		<line fill="none" id="t1 p415" stroke="#7A7A7A" stroke-width="2" x1="505.5423" x2="509.0255" y1="519.4961" y2="517.9680"/>
		<line fill="none" id="t1 p416" stroke="#7A7A7A" stroke-width="2" x1="509.0255" x2="510.4304" y1="517.9680" y2="517.2463"/>
		<line fill="none" id="t1 p417" stroke="#7A7A7A" stroke-width="2" x1="510.4304" x2="511.3964" y1="517.2463" y2="516.9492"/>
		<line fill="none" id="t1 p418" stroke="#7A7A7A" stroke-width="2" x1="511.3964" x2="513.5038" y1="516.9492" y2="518.6471"/>
		<line fill="none" id="t1 p419" stroke="#7A7A7A" stroke-width="2" x1="513.5038" x2="516.0503" y1="518.6471" y2="520.2602"/>
		<line fill="none" id="t1 p420" stroke="#7A7A7A" stroke-width="2" x1="516.0503" x2="516.6943" y1="520.2602" y2="520.7695"/>
		<line fill="none" id="t1 p421" stroke="#7A7A7A" stroke-width="2" x1="516.6943" x2="518.0700" y1="520.7695" y2="521.4063"/>
		<line fill="none" id="t1 p422" stroke="#7A7A7A" stroke-width="2" x1="518.0700" x2="519.0652" y1="521.4063" y2="522.5524"/>
		<line fill="none" id="t1 p423" stroke="#7A7A7A" stroke-width="2" x1="519.0652" x2="520.9677" y1="522.5524" y2="526.7548"/>
		<line fill="none" id="t1 p424" stroke="#7A7A7A" stroke-width="2" x1="520.9677" x2="524.5094" y1="526.7548" y2="531.4241"/>
		<line fill="none" id="t1 p425" stroke="#7A7A7A" stroke-width="2" x1="524.5094" x2="524.6265" y1="531.4241" y2="533.6314"/>
		<line fill="none" id="t1 p426" stroke="#7A7A7A" stroke-width="2" x1="524.6265" x2="526.0608" y1="533.6314" y2="536.2207"/>
		<line fill="none" id="t1 p427" stroke="#7A7A7A" stroke-width="2" x1="526.0608" x2="526.2364" y1="536.2207" y2="538.5554"/>
		<line fill="none" id="t1 p428" stroke="#7A7A7A" stroke-width="2" x1="526.2364" x2="526.2071" y1="538.5554" y2="539.7439"/>
		<line fill="none" id="t1 p429" stroke="#7A7A7A" stroke-width="2" x1="526.2071" x2="525.6510" y1="539.7439" y2="540.5929"/>
		<line fill="none" id="t1 p430" stroke="#7A7A7A" stroke-width="2" x1="525.6510" x2="523.5142" y1="540.5929" y2="544.9651"/>
		<line fill="none" id="t1 p431" stroke="#7A7A7A" stroke-width="2" x1="523.5142" x2="523.1630" y1="544.9651" y2="546.1112"/>
		<line fill="none" id="t1 p432" stroke="#7A7A7A" stroke-width="2" x1="523.1630" x2="523.2508" y1="546.1112" y2="546.9602"/>
		<line fill="none" id="t1 p433" stroke="#7A7A7A" stroke-width="2" x1="523.2508" x2="525.3290" y1="546.9602" y2="549.3797"/>
		<line fill="none" id="t1 p434" stroke="#7A7A7A" stroke-width="2" x1="525.3290" x2="526.2657" y1="549.3797" y2="550.4409"/>
		<line fill="none" id="t1 p435" stroke="#7A7A7A" stroke-width="2" x1="526.2657" x2="527.5243" y1="550.4409" y2="552.9878"/>
		<line fill="none" id="t1 p436" stroke="#7A7A7A" stroke-width="2" x1="527.5243" x2="531.7685" y1="552.9878" y2="555.4074"/>
		<line fill="none" id="t1 p437" stroke="#7A7A7A" stroke-width="2" x1="531.7685" x2="532.8222" y1="555.4074" y2="561.0530"/>
		<line fill="none" id="t1 p438" stroke="#7A7A7A" stroke-width="2" x1="532.8222" x2="533.3491" y1="561.0530" y2="561.9869"/>
		<line fill="none" id="t1 p439" stroke="#7A7A7A" stroke-width="2" x1="533.3491" x2="533.9052" y1="561.9869" y2="565.5101"/>
		<line fill="none" id="t1 p440" stroke="#7A7A7A" stroke-width="2" x1="533.9052" x2="533.5540" y1="565.5101" y2="566.1468"/>
		<line fill="none" id="t1 p441" stroke="#7A7A7A" stroke-width="2" x1="533.5540" x2="533.3491" y1="566.1468" y2="566.4015"/>
		<line fill="none" id="t1 p442" stroke="#7A7A7A" stroke-width="2" x1="533.3491" x2="530.9782" y1="566.4015" y2="568.8635"/>
		<line fill="none" id="t1 p443" stroke="#7A7A7A" stroke-width="2" x1="530.9782" x2="527.5535" y1="568.8635" y2="573.1932"/>
		<line fill="none" id="t1 p444" stroke="#7A7A7A" stroke-width="2" x1="527.5535" x2="526.2657" y1="573.1932" y2="574.4242"/>
		<line fill="none" id="t1 p445" stroke="#7A7A7A" stroke-width="2" x1="526.2657" x2="524.0997" y1="574.4242" y2="575.3581"/>
		<line fill="none" id="t1 p446" stroke="#7A7A7A" stroke-width="2" x1="524.0997" x2="521.1434" y1="575.3581" y2="575.1458"/>
		<line fill="none" id="t1 p447" stroke="#7A7A7A" stroke-width="2" x1="521.1434" x2="520.0311" y1="575.1458" y2="574.2969"/>
		<line fill="none" id="t1 p448" stroke="#7A7A7A" stroke-width="2" x1="520.0311" x2="519.9433" y1="574.2969" y2="568.9908"/>
		<line fill="none" id="t1 p449" stroke="#7A7A7A" stroke-width="2" x1="519.9433" x2="516.0503" y1="568.9908" y2="564.8309"/>
		<line fill="none" id="t1 p450" stroke="#7A7A7A" stroke-width="2" x1="516.0503" x2="512.0988" y1="564.8309" y2="560.2889"/>
		<line fill="none" id="t1 p451" stroke="#7A7A7A" stroke-width="2" x1="512.0988" x2="510.4012" y1="560.2889" y2="558.9306"/>
		<line fill="none" id="t1 p452" stroke="#7A7A7A" stroke-width="2" x1="510.4012" x2="506.6253" y1="558.9306" y2="560.8832"/>
		<line fill="none" id="t1 p453" stroke="#7A7A7A" stroke-width="2" x1="506.6253" x2="509.2596" y1="560.8832" y2="564.1942"/>
		<line fill="none" id="t1 p454" stroke="#7A7A7A" stroke-width="2" x1="509.2596" x2="512.3037" y1="564.1942" y2="566.2741"/>
		<line fill="none" id="t1 p455" stroke="#7A7A7A" stroke-width="2" x1="512.3037" x2="514.1478" y1="566.2741" y2="570.5190"/>
		<line fill="none" id="t1 p456" stroke="#7A7A7A" stroke-width="2" x1="514.1478" x2="511.6891" y1="570.5190" y2="572.2169"/>
		<line fill="none" id="t1 p457" stroke="#7A7A7A" stroke-width="2" x1="511.6891" x2="509.8743" y1="572.2169" y2="573.9148"/>
		<line fill="none" id="t1 p458" stroke="#7A7A7A" stroke-width="2" x1="509.8743" x2="507.8839" y1="573.9148" y2="577.1833"/>
		<line fill="none" id="t1 p459" stroke="#7A7A7A" stroke-width="2" x1="507.8839" x2="505.2496" y1="577.1833" y2="582.1498"/>
		<line fill="none" id="t1 p460" stroke="#7A7A7A" stroke-width="2" x1="505.2496" x2="505.2496" y1="582.1498" y2="583.9751"/>
		<line fill="none" id="t1 p461" stroke="#7A7A7A" stroke-width="2" x1="505.2496" x2="507.2985" y1="583.9751" y2="585.4183"/>
		<line fill="none" id="t1 p462" stroke="#7A7A7A" stroke-width="2" x1="507.2985" x2="509.2596" y1="585.4183" y2="586.9040"/>
		<line fill="none" id="t1 p463" stroke="#7A7A7A" stroke-width="2" x1="509.2596" x2="510.3719" y1="586.9040" y2="587.6256"/>
		<line fill="none" id="t1 p464" stroke="#7A7A7A" stroke-width="2" x1="510.3719" x2="510.0206" y1="587.6256" y2="587.9228"/>
		<line fill="none" id="t1 p465" stroke="#7A7A7A" stroke-width="2" x1="510.0206" x2="507.6498" y1="587.9228" y2="588.6444"/>
		<line fill="none" id="t1 p466" stroke="#7A7A7A" stroke-width="2" x1="507.6498" x2="507.0351" y1="588.6444" y2="588.1775"/>
		<line fill="none" id="t1 p467" stroke="#7A7A7A" stroke-width="2" x1="507.0351" x2="503.5812" y1="588.1775" y2="585.9277"/>
		<line fill="none" id="t1 p468" stroke="#7A7A7A" stroke-width="2" x1="503.5812" x2="502.3226" y1="585.9277" y2="585.3334"/>
		<line fill="none" id="t1 p469" stroke="#7A7A7A" stroke-width="2" x1="502.3226" x2="498.5467" y1="585.3334" y2="587.2860"/>
		<line fill="none" id="t1 p470" stroke="#7A7A7A" stroke-width="2" x1="498.5467" x2="495.1221" y1="587.2860" y2="588.2199"/>
		<line fill="none" id="t1 p471" stroke="#7A7A7A" stroke-width="2" x1="495.1221" x2="488.6533" y1="588.2199" y2="591.1064"/>
		<line fill="none" id="t1 p472" stroke="#7A7A7A" stroke-width="2" x1="488.6533" x2="485.0531" y1="591.1064" y2="593.8655"/>
		<line fill="none" id="t1 p473" stroke="#7A7A7A" stroke-width="2" x1="485.0531" x2="481.6577" y1="593.8655" y2="593.3137"/>
		<line fill="none" id="t1 p474" stroke="#7A7A7A" stroke-width="2" x1="481.6577" x2="480.1357" y1="593.3137" y2="592.1676"/>
		<line fill="none" id="t1 p475" stroke="#7A7A7A" stroke-width="2" x1="480.1357" x2="479.6381" y1="592.1676" y2="590.3423"/>
		<line fill="none" id="t1 p476" stroke="#7A7A7A" stroke-width="2" x1="479.6381" x2="479.0820" y1="590.3423" y2="586.8616"/>
		<line fill="none" id="t1 p477" stroke="#7A7A7A" stroke-width="2" x1="479.0820" x2="477.2379" y1="586.8616" y2="586.9040"/>
		<line fill="none" id="t1 p478" stroke="#7A7A7A" stroke-width="2" x1="477.2379" x2="476.4476" y1="586.9040" y2="588.0926"/>
		<line fill="none" id="t1 p479" stroke="#7A7A7A" stroke-width="2" x1="476.4476" x2="475.0719" y1="588.0926" y2="589.9178"/>
		<line fill="none" id="t1 p480" stroke="#7A7A7A" stroke-width="2" x1="475.0719" x2="471.3839" y1="589.9178" y2="589.7905"/>
		<line fill="none" id="t1 p481" stroke="#7A7A7A" stroke-width="2" x1="471.3839" x2="470.0960" y1="589.7905" y2="592.5921"/>
		<line fill="none" id="t1 p482" stroke="#7A7A7A" stroke-width="2" x1="470.0960" x2="469.9204" y1="592.5921" y2="593.6108"/>
		<line fill="none" id="t1 p483" stroke="#7A7A7A" stroke-width="2" x1="469.9204" x2="469.5398" y1="593.6108" y2="595.2239"/>
		<line fill="none" id="t1 p484" stroke="#7A7A7A" stroke-width="2" x1="469.5398" x2="467.9885" y1="595.2239" y2="595.0965"/>
		<line fill="none" id="t1 p485" stroke="#7A7A7A" stroke-width="2" x1="467.9885" x2="465.7054" y1="595.0965" y2="596.0304"/>
		<line fill="none" id="t1 p486" stroke="#7A7A7A" stroke-width="2" x1="465.7054" x2="464.3883" y1="596.0304" y2="598.1104"/>
		<line fill="none" id="t1 p487" stroke="#7A7A7A" stroke-width="2" x1="464.3883" x2="460.1734" y1="598.1104" y2="600.1479"/>
		<line fill="none" id="t1 p488" stroke="#7A7A7A" stroke-width="2" x1="460.1734" x2="456.5438" y1="600.1479" y2="599.6385"/>
		<line fill="none" id="t1 p489" stroke="#7A7A7A" stroke-width="2" x1="456.5438" x2="457.3927" y1="599.6385" y2="597.8557"/>
		<line fill="none" id="t1 p490" stroke="#7A7A7A" stroke-width="2" x1="457.3927" x2="462.3686" y1="597.8557" y2="594.9692"/>
		<line fill="none" id="t1 p491" stroke="#7A7A7A" stroke-width="2" x1="462.3686" x2="462.1052" y1="594.9692" y2="591.9554"/>
		<line fill="none" id="t1 p492" stroke="#7A7A7A" stroke-width="2" x1="462.1052" x2="463.2467" y1="591.9554" y2="589.0264"/>
		<line fill="none" id="t1 p493" stroke="#7A7A7A" stroke-width="2" x1="463.2467" x2="463.6565" y1="589.0264" y2="586.6069"/>
		<line fill="none" id="t1 p494" stroke="#7A7A7A" stroke-width="2" x1="463.6565" x2="462.4272" y1="586.6069" y2="584.5694"/>
		<line fill="none" id="t1 p495" stroke="#7A7A7A" stroke-width="2" x1="462.4272" x2="462.2515" y1="584.5694" y2="582.8290"/>
		<line fill="none" id="t1 p496" stroke="#7A7A7A" stroke-width="2" x1="462.2515" x2="464.7395" y1="582.8290" y2="581.0461"/>
		<line fill="none" id="t1 p497" stroke="#7A7A7A" stroke-width="2" x1="464.7395" x2="467.6665" y1="581.0461" y2="584.5694"/>
		<line fill="none" id="t1 p498" stroke="#7A7A7A" stroke-width="2" x1="467.6665" x2="469.1593" y1="584.5694" y2="583.8053"/>
		<line fill="none" id="t1 p499" stroke="#7A7A7A" stroke-width="2" x1="469.1593" x2="469.2471" y1="583.8053" y2="578.1172"/>
		<line fill="none" id="t1 p500" stroke="#7A7A7A" stroke-width="2" x1="469.2471" x2="469.7740" y1="578.1172" y2="574.8487"/>
		<line fill="none" id="t1 p501" stroke="#7A7A7A" stroke-width="2" x1="469.7740" x2="467.4324" y1="574.8487" y2="569.1606"/>
		<line fill="none" id="t1 p502" stroke="#7A7A7A" stroke-width="2" x1="467.4324" x2="462.9248" y1="569.1606" y2="565.4252"/>
		<line fill="none" id="t1 p503" stroke="#7A7A7A" stroke-width="2" x1="462.9248" x2="458.2122" y1="565.4252" y2="562.1566"/>
		<line fill="none" id="t1 p504" stroke="#7A7A7A" stroke-width="2" x1="458.2122" x2="453.0607" y1="562.1566" y2="558.9306"/>
		<line fill="none" id="t1 p505" stroke="#7A7A7A" stroke-width="2" x1="453.0607" x2="446.9139" y1="558.9306" y2="556.6384"/>
		<line fill="none" id="t1 p506" stroke="#7A7A7A" stroke-width="2" x1="446.9139" x2="439.9769" y1="556.6384" y2="554.4311"/>
		<line fill="none" id="t1 p507" stroke="#7A7A7A" stroke-width="2" x1="439.9769" x2="431.3421" y1="554.4311" y2="551.1625"/>
		<line fill="none" id="t1 p508" stroke="#7A7A7A" stroke-width="2" x1="431.3421" x2="430.5226" y1="551.1625" y2="551.2474"/>
		<line fill="none" id="t1 p509" stroke="#7A7A7A" stroke-width="2" x1="430.5226" x2="429.1469" y1="551.2474" y2="550.8229"/>
		<line fill="none" id="t1 p510" stroke="#7A7A7A" stroke-width="2" x1="429.1469" x2="429.1761" y1="550.8229" y2="549.9740"/>
		<line fill="none" id="t1 p511" stroke="#7A7A7A" stroke-width="2" x1="429.1761" x2="425.0490" y1="549.9740" y2="545.6443"/>
		<line fill="none" id="t1 p512" stroke="#7A7A7A" stroke-width="2" x1="425.0490" x2="420.6877" y1="545.6443" y2="541.7390"/>
		<line fill="none" id="t1 p513" stroke="#7A7A7A" stroke-width="2" x1="420.6877" x2="417.8485" y1="541.7390" y2="537.8338"/>
		<line fill="none" id="t1 p514" stroke="#7A7A7A" stroke-width="2" x1="417.8485" x2="416.0338" y1="537.8338" y2="535.8811"/>
		<line fill="none" id="t1 p515" stroke="#7A7A7A" stroke-width="2" x1="416.0338" x2="410.3553" y1="535.8811" y2="531.8486"/>
		<line fill="none" id="t1 p516" stroke="#7A7A7A" stroke-width="2" x1="410.3553" x2="406.6380" y1="531.8486" y2="530.3629"/>
		<line fill="none" id="t1 p517" stroke="#7A7A7A" stroke-width="2" x1="406.6380" x2="402.5694" y1="530.3629" y2="529.6412"/>
		<line fill="none" id="t1 p518" stroke="#7A7A7A" stroke-width="2" x1="402.5694" x2="397.8569" y1="529.6412" y2="528.0707"/>
		<line fill="none" id="t1 p519" stroke="#7A7A7A" stroke-width="2" x1="397.8569" x2="393.3786" y1="528.0707" y2="525.0144"/>
		<line fill="none" id="t1 p520" stroke="#7A7A7A" stroke-width="2" x1="393.3786" x2="392.1492" y1="525.0144" y2="524.3352"/>
		<line fill="none" id="t1 p521" stroke="#7A7A7A" stroke-width="2" x1="392.1492" x2="388.0514" y1="524.3352" y2="523.2315"/>
		<line fill="none" id="t1 p522" stroke="#7A7A7A" stroke-width="2" x1="388.0514" x2="387.3782" y1="523.2315" y2="519.5810"/>
		<line fill="none" id="t1 p523" stroke="#7A7A7A" stroke-width="2" x1="387.3782" x2="385.6512" y1="519.5810" y2="516.9916"/>
		<line fill="none" id="t1 p524" stroke="#7A7A7A" stroke-width="2" x1="385.6512" x2="386.1488" y1="516.9916" y2="515.0815"/>
		<line fill="none" id="t1 p525" stroke="#7A7A7A" stroke-width="2" x1="386.1488" x2="386.3244" y1="515.0815" y2="513.0864"/>
		<line fill="none" id="t1 p526" stroke="#7A7A7A" stroke-width="2" x1="386.3244" x2="385.9439" y1="513.0864" y2="509.8179"/>
		<line fill="none" id="t1 p527" stroke="#7A7A7A" stroke-width="2" x1="385.9439" x2="383.4852" y1="509.8179" y2="504.8514"/>
		<line fill="none" id="t1 p528" stroke="#7A7A7A" stroke-width="2" x1="383.4852" x2="382.8413" y1="504.8514" y2="503.8327"/>
		<line fill="none" id="t1 p529" stroke="#7A7A7A" stroke-width="2" x1="382.8413" x2="380.6460" y1="503.8327" y2="499.9699"/>
		<line fill="none" id="t1 p530" stroke="#7A7A7A" stroke-width="2" x1="380.6460" x2="380.8509" y1="499.9699" y2="495.1732"/>
		<line fill="none" id="t1 p531" stroke="#7A7A7A" stroke-width="2" x1="380.8509" x2="382.8705" y1="495.1732" y2="494.9185"/>
		<line fill="none" id="t1 p532" stroke="#7A7A7A" stroke-width="2" x1="382.8705" x2="387.7587" y1="494.9185" y2="495.3430"/>
		<line fill="none" id="t1 p533" stroke="#7A7A7A" stroke-width="2" x1="387.7587" x2="392.4126" y1="495.3430" y2="497.0834"/>
		<line fill="none" id="t1 p534" stroke="#7A7A7A" stroke-width="2" x1="392.4126" x2="395.6031" y1="497.0834" y2="499.4180"/>
		<line fill="none" id="t1 p535" stroke="#7A7A7A" stroke-width="2" x1="395.6031" x2="398.5594" y1="499.4180" y2="500.6915"/>
		<line fill="none" id="t1 p536" stroke="#7A7A7A" stroke-width="2" x1="398.5594" x2="399.0863" y1="500.6915" y2="501.0735"/>
		<line fill="none" id="t1 p537" stroke="#7A7A7A" stroke-width="2" x1="399.0863" x2="402.4816" y1="501.0735" y2="501.2433"/>
		<line fill="none" id="t1 p538" stroke="#7A7A7A" stroke-width="2" x1="402.4816" x2="403.2719" y1="501.2433" y2="499.5029"/>
		<line fill="none" id="t1 p539" stroke="#7A7A7A" stroke-width="2" x1="403.2719" x2="401.9548" y1="499.5029" y2="495.7675"/>
		<line fill="none" id="t1 p540" stroke="#7A7A7A" stroke-width="2" x1="401.9548" x2="400.5498" y1="495.7675" y2="493.4328"/>
		<line fill="none" id="t1 p541" stroke="#7A7A7A" stroke-width="2" x1="400.5498" x2="397.6228" y1="493.4328" y2="495.0034"/>
		<line fill="none" id="t1 p542" stroke="#7A7A7A" stroke-width="2" x1="397.6228" x2="395.4568" y1="495.0034" y2="492.7961"/>
		<line fill="none" id="t1 p543" stroke="#7A7A7A" stroke-width="2" x1="395.4568" x2="393.9932" y1="492.7961" y2="489.4427"/>
		<line fill="none" id="t1 p544" stroke="#7A7A7A" stroke-width="2" x1="393.9932" x2="391.2711" y1="489.4427" y2="486.5138"/>
		<line fill="none" id="t1 p545" stroke="#7A7A7A" stroke-width="2" x1="391.2711" x2="388.5782" y1="486.5138" y2="483.8395"/>
		<line fill="none" id="t1 p546" stroke="#7A7A7A" stroke-width="2" x1="388.5782" x2="386.1195" y1="483.8395" y2="480.8257"/>
		<line fill="none" id="t1 p547" stroke="#7A7A7A" stroke-width="2" x1="386.1195" x2="380.2069" y1="480.8257" y2="477.8119"/>
		<line fill="none" id="t1 p548" stroke="#7A7A7A" stroke-width="2" x1="380.2069" x2="378.9776" y1="477.8119" y2="477.2600"/>
		<line fill="none" id="t1 p549" stroke="#7A7A7A" stroke-width="2" x1="378.9776" x2="373.6211" y1="477.2600" y2="476.2413"/>
		<line fill="none" id="t1 p550" stroke="#7A7A7A" stroke-width="2" x1="373.6211" x2="373.9724" y1="476.2413" y2="474.2462"/>
		<line fill="none" id="t1 p551" stroke="#7A7A7A" stroke-width="2" x1="373.9724" x2="377.3092" y1="474.2462" y2="473.4821"/>
		<line fill="none" id="t1 p552" stroke="#7A7A7A" stroke-width="2" x1="377.3092" x2="378.9483" y1="473.4821" y2="472.5907"/>
		<line fill="none" id="t1 p553" stroke="#7A7A7A" stroke-width="2" x1="378.9483" x2="378.2458" y1="472.5907" y2="469.4495"/>
		<line fill="none" id="t1 p554" stroke="#7A7A7A" stroke-width="2" x1="378.2458" x2="378.1580" y1="469.4495" y2="468.2610"/>
		<line fill="none" id="t1 p555" stroke="#7A7A7A" stroke-width="2" x1="378.1580" x2="377.9531" y1="468.2610" y2="461.5966"/>
		<line fill="none" id="t1 p556" stroke="#7A7A7A" stroke-width="2" x1="377.9531" x2="377.3092" y1="461.5966" y2="455.4416"/>
		<line fill="none" id="t1 p557" stroke="#7A7A7A" stroke-width="2" x1="377.3092" x2="379.1532" y1="455.4416" y2="450.3903"/>
		<line fill="none" id="t1 p558" stroke="#7A7A7A" stroke-width="2" x1="379.1532" x2="381.6412" y1="450.3903" y2="447.5887"/>
		<line fill="none" id="t1 p559" stroke="#7A7A7A" stroke-width="2" x1="381.6412" x2="382.9291" y1="447.5887" y2="448.1405"/>
		<line fill="none" id="t1 p560" stroke="#7A7A7A" stroke-width="2" x1="382.9291" x2="383.5730" y1="448.1405" y2="452.3429"/>
		<line fill="none" id="t1 p561" stroke="#7A7A7A" stroke-width="2" x1="383.5730" x2="383.8072" y1="452.3429" y2="454.8473"/>
		<line fill="none" id="t1 p562" stroke="#7A7A7A" stroke-width="2" x1="383.8072" x2="383.5145" y1="454.8473" y2="457.1395"/>
		<line fill="none" id="t1 p563" stroke="#7A7A7A" stroke-width="2" x1="383.5145" x2="384.2170" y1="457.1395" y2="457.9460"/>
		<line fill="none" id="t1 p564" stroke="#7A7A7A" stroke-width="2" x1="384.2170" x2="391.0662" y1="457.9460" y2="462.7427"/>
		<line fill="none" id="t1 p565" stroke="#7A7A7A" stroke-width="2" x1="391.0662" x2="395.4568" y1="462.7427" y2="466.4357"/>
		<line fill="none" id="t1 p566" stroke="#7A7A7A" stroke-width="2" x1="395.4568" x2="399.4375" y1="466.4357" y2="470.8928"/>
		<line fill="none" id="t1 p567" stroke="#7A7A7A" stroke-width="2" x1="399.4375" x2="402.8329" y1="470.8928" y2="476.4111"/>
		<line fill="none" id="t1 p568" stroke="#7A7A7A" stroke-width="2" x1="402.8329" x2="409.5650" y1="476.4111" y2="479.4673"/>
		<line fill="none" id="t1 p569" stroke="#7A7A7A" stroke-width="2" x1="409.5650" x2="412.5506" y1="479.4673" y2="483.1179"/>
		<line fill="none" id="t1 p570" stroke="#7A7A7A" stroke-width="2" x1="412.5506" x2="411.3798" y1="483.1179" y2="485.6648"/>
		<line fill="none" id="t1 p571" stroke="#7A7A7A" stroke-width="2" x1="411.3798" x2="409.9748" y1="485.6648" y2="487.5325"/>
		<line fill="none" id="t1 p572" stroke="#7A7A7A" stroke-width="2" x1="409.9748" x2="408.4235" y1="487.5325" y2="489.1031"/>
		<line fill="none" id="t1 p573" stroke="#7A7A7A" stroke-width="2" x1="408.4235" x2="409.5065" y1="489.1031" y2="492.5839"/>
		<line fill="none" id="t1 p574" stroke="#7A7A7A" stroke-width="2" x1="409.5065" x2="409.0089" y1="492.5839" y2="494.8336"/>
		<line fill="none" id="t1 p575" stroke="#7A7A7A" stroke-width="2" x1="409.0089" x2="410.3846" y1="494.8336" y2="499.0360"/>
		<line fill="none" id="t1 p576" stroke="#7A7A7A" stroke-width="2" x1="410.3846" x2="412.8433" y1="499.0360" y2="502.8988"/>
		<line fill="none" id="t1 p577" stroke="#7A7A7A" stroke-width="2" x1="412.8433" x2="413.3409" y1="502.8988" y2="503.4931"/>
		<line fill="none" id="t1 p578" stroke="#7A7A7A" stroke-width="2" x1="413.3409" x2="417.9363" y1="503.4931" y2="509.8603"/>
		<line fill="none" id="t1 p579" stroke="#7A7A7A" stroke-width="2" x1="417.9363" x2="420.1316" y1="509.8603" y2="511.8979"/>
		<line fill="none" id="t1 p580" stroke="#7A7A7A" stroke-width="2" x1="420.1316" x2="427.5663" y1="511.8979" y2="512.8317"/>
		<line fill="none" id="t1 p581" stroke="#7A7A7A" stroke-width="2" x1="427.5663" x2="430.7860" y1="512.8317" y2="512.5346"/>
		<line fill="none" id="t1 p582" stroke="#7A7A7A" stroke-width="2" x1="430.7860" x2="433.9472" y1="512.5346" y2="512.2799"/>
		<line fill="none" id="t1 p583" stroke="#7A7A7A" stroke-width="2" x1="433.9472" x2="437.6352" y1="512.2799" y2="513.7231"/>
		<line fill="none" id="t1 p584" stroke="#7A7A7A" stroke-width="2" x1="437.6352" x2="442.0843" y1="513.7231" y2="512.6195"/>
		<line fill="none" id="t1 p585" stroke="#7A7A7A" stroke-width="2" x1="442.0843" x2="442.9039" y1="512.6195" y2="511.6007"/>
		<line fill="none" id="t1 p586" stroke="#7A7A7A" stroke-width="2" x1="442.9039" x2="443.4015" y1="511.6007" y2="507.8653"/>
		<line fill="none" id="t1 p587" stroke="#7A7A7A" stroke-width="2" x1="443.4015" x2="443.1380" y1="507.8653" y2="506.9738"/>
		<line fill="none" id="t1 p588" stroke="#7A7A7A" stroke-width="2" x1="443.1380" x2="441.1769" y1="506.9738" y2="505.4882"/>
		<line fill="none" id="t1 p589" stroke="#7A7A7A" stroke-width="2" x1="441.1769" x2="439.2158" y1="505.4882" y2="505.4033"/>
		<line fill="none" id="t1 p590" stroke="#7A7A7A" stroke-width="2" x1="439.2158" x2="438.1328" y1="505.4033" y2="505.4033"/>
		<line fill="none" id="t1 p591" stroke="#7A7A7A" stroke-width="2" x1="438.1328" x2="436.4059" y1="505.4033" y2="505.2759"/>
		<line fill="none" id="t1 p592" stroke="#7A7A7A" stroke-width="2" x1="436.4059" x2="435.4107" y1="505.2759" y2="504.8514"/>
		<line fill="none" id="t1 p593" stroke="#7A7A7A" stroke-width="2" x1="435.4107" x2="432.1910" y1="504.8514" y2="501.2009"/>
		<line fill="none" id="t1 p594" stroke="#7A7A7A" stroke-width="2" x1="432.1910" x2="431.5763" y1="501.2009" y2="500.5642"/>
		<line fill="none" id="t1 p595" stroke="#7A7A7A" stroke-width="2" x1="431.5763" x2="431.9275" y1="500.5642" y2="498.6540"/>
		<line fill="none" id="t1 p596" stroke="#7A7A7A" stroke-width="2" x1="431.9275" x2="432.3373" y1="498.6540" y2="497.5079"/>
		<line fill="none" id="t1 p597" stroke="#7A7A7A" stroke-width="2" x1="432.3373" x2="429.7323" y1="497.5079" y2="493.7300"/>
		<line fill="none" id="t1 p598" stroke="#7A7A7A" stroke-width="2" x1="429.7323" x2="428.2102" y1="493.7300" y2="492.3716"/>
		<line fill="none" id="t1 p599" stroke="#7A7A7A" stroke-width="2" x1="428.2102" x2="427.6833" y1="492.3716" y2="491.8198"/>
		<line fill="none" id="t1 p600" stroke="#7A7A7A" stroke-width="2" x1="427.6833" x2="426.9808" y1="491.8198" y2="490.8010"/>
		<line fill="none" id="t1 p601" stroke="#7A7A7A" stroke-width="2" x1="426.9808" x2="425.4003" y1="490.8010" y2="488.9758"/>
		<line fill="none" id="t1 p602" stroke="#7A7A7A" stroke-width="2" x1="425.4003" x2="426.5125" y1="488.9758" y2="484.8158"/>
		<line fill="none" id="t1 p603" stroke="#7A7A7A" stroke-width="2" x1="426.5125" x2="427.8590" y1="484.8158" y2="484.3913"/>
		<line fill="none" id="t1 p604" stroke="#7A7A7A" stroke-width="2" x1="427.8590" x2="429.5566" y1="484.3913" y2="481.2926"/>
		<line fill="none" id="t1 p605" stroke="#7A7A7A" stroke-width="2" x1="429.5566" x2="427.9468" y1="481.2926" y2="478.5759"/>
		<line fill="none" id="t1 p606" stroke="#7A7A7A" stroke-width="2" x1="427.9468" x2="426.6003" y1="478.5759" y2="475.4348"/>
		<line fill="none" id="t1 p607" stroke="#7A7A7A" stroke-width="2" x1="426.6003" x2="429.0590" y1="475.4348" y2="471.2748"/>
		<line fill="none" id="t1 p608" stroke="#7A7A7A" stroke-width="2" x1="429.0590" x2="430.5518" y1="471.2748" y2="468.5581"/>
		<line fill="none" id="t1 p609" stroke="#7A7A7A" stroke-width="2" x1="430.5518" x2="430.4347" y1="468.5581" y2="467.6667"/>
		<line fill="none" id="t1 p610" stroke="#7A7A7A" stroke-width="2" x1="430.4347" x2="429.4981" y1="467.6667" y2="465.4170"/>
		<line fill="none" id="t1 p611" stroke="#7A7A7A" stroke-width="2" x1="429.4981" x2="429.1761" y1="465.4170" y2="464.6953"/>
		<line fill="none" id="t1 p612" stroke="#7A7A7A" stroke-width="2" x1="429.1761" x2="427.7711" y1="464.6953" y2="463.0823"/>
		<line fill="none" id="t1 p613" stroke="#7A7A7A" stroke-width="2" x1="427.7711" x2="426.3954" y1="463.0823" y2="462.4031"/>
		<line fill="none" id="t1 p614" stroke="#7A7A7A" stroke-width="2" x1="426.3954" x2="425.9271" y1="462.4031" y2="461.7239"/>
		<line fill="none" id="t1 p615" stroke="#7A7A7A" stroke-width="2" x1="425.9271" x2="423.9953" y1="461.7239" y2="460.4929"/>
		<line fill="none" id="t1 p616" stroke="#7A7A7A" stroke-width="2" x1="423.9953" x2="423.7904" y1="460.4929" y2="459.7289"/>
		<line fill="none" id="t1 p617" stroke="#7A7A7A" stroke-width="2" x1="423.7904" x2="423.0294" y1="459.7289" y2="459.5166"/>
		<line fill="none" id="t1 p618" stroke="#7A7A7A" stroke-width="2" x1="423.0294" x2="421.3902" y1="459.5166" y2="458.4554"/>
		<line fill="none" id="t1 p619" stroke="#7A7A7A" stroke-width="2" x1="421.3902" x2="420.7170" y1="458.4554" y2="456.7575"/>
		<line fill="none" id="t1 p620" stroke="#7A7A7A" stroke-width="2" x1="420.7170" x2="420.4243" y1="456.7575" y2="453.7861"/>
		<line fill="none" id="t1 p621" stroke="#7A7A7A" stroke-width="2" x1="420.4243" x2="418.9901" y1="453.7861" y2="452.0033"/>
		<line fill="none" id="t1 p622" stroke="#7A7A7A" stroke-width="2" x1="418.9901" x2="416.5899" y1="452.0033" y2="449.8384"/>
		<line fill="none" id="t1 p623" stroke="#7A7A7A" stroke-width="2" x1="416.5899" x2="411.4969" y1="449.8384" y2="448.1405"/>
		<line fill="none" id="t1 p624" stroke="#7A7A7A" stroke-width="2" x1="411.4969" x2="409.0674" y1="448.1405" y2="448.8621"/>
		<line fill="none" id="t1 p625" stroke="#7A7A7A" stroke-width="2" x1="409.0674" x2="408.0430" y1="448.8621" y2="451.7486"/>
		<line fill="none" id="t1 p626" stroke="#7A7A7A" stroke-width="2" x1="408.0430" x2="407.0771" y1="451.7486" y2="455.2718"/>
		<line fill="none" id="t1 p627" stroke="#7A7A7A" stroke-width="2" x1="407.0771" x2="406.3746" y1="455.2718" y2="457.1820"/>
		<line fill="none" id="t1 p628" stroke="#7A7A7A" stroke-width="2" x1="406.3746" x2="404.8818" y1="457.1820" y2="461.5542"/>
		<line fill="none" id="t1 p629" stroke="#7A7A7A" stroke-width="2" x1="404.8818" x2="404.4135" y1="461.5542" y2="462.2333"/>
		<line fill="none" id="t1 p630" stroke="#7A7A7A" stroke-width="2" x1="404.4135" x2="403.0378" y1="462.2333" y2="462.8701"/>
		<line fill="none" id="t1 p631" stroke="#7A7A7A" stroke-width="2" x1="403.0378" x2="398.3545" y1="462.8701" y2="461.4693"/>
		<line fill="none" id="t1 p632" stroke="#7A7A7A" stroke-width="2" x1="398.3545" x2="396.0422" y1="461.4693" y2="460.8750"/>
		<line fill="none" id="t1 p633" stroke="#7A7A7A" stroke-width="2" x1="396.0422" x2="391.7394" y1="460.8750" y2="459.2619"/>
		<line fill="none" id="t1 p634" stroke="#7A7A7A" stroke-width="2" x1="391.7394" x2="391.1540" y1="459.2619" y2="458.5828"/>
		<line fill="none" id="t1 p635" stroke="#7A7A7A" stroke-width="2" x1="391.1540" x2="390.0417" y1="458.5828" y2="457.4367"/>
		<line fill="none" id="t1 p636" stroke="#7A7A7A" stroke-width="2" x1="390.0417" x2="390.3052" y1="457.4367" y2="456.7575"/>
		<line fill="none" id="t1 p637" stroke="#7A7A7A" stroke-width="2" x1="390.3052" x2="392.6761" y1="456.7575" y2="456.2481"/>
		<line fill="none" id="t1 p638" stroke="#7A7A7A" stroke-width="2" x1="392.6761" x2="397.5935" y1="456.2481" y2="454.3804"/>
		<line fill="none" id="t1 p639" stroke="#7A7A7A" stroke-width="2" x1="397.5935" x2="400.8425" y1="454.3804" y2="452.9371"/>
		<line fill="none" id="t1 p640" stroke="#7A7A7A" stroke-width="2" x1="400.8425" x2="404.2086" y1="452.9371" y2="449.9233"/>
		<line fill="none" id="t1 p641" stroke="#7A7A7A" stroke-width="2" x1="404.2086" x2="406.2868" y1="449.9233" y2="446.2728"/>
		<line fill="none" id="t1 p642" stroke="#7A7A7A" stroke-width="2" x1="406.2868" x2="406.3160" y1="446.2728" y2="445.5087"/>
		<line fill="none" id="t1 p643" stroke="#7A7A7A" stroke-width="2" x1="406.3160" x2="409.2431" y1="445.5087" y2="442.9193"/>
		<line fill="none" id="t1 p644" stroke="#7A7A7A" stroke-width="2" x1="409.2431" x2="409.8870" y1="442.9193" y2="442.1128"/>
		<line fill="none" id="t1 p645" stroke="#7A7A7A" stroke-width="2" x1="409.8870" x2="412.7262" y1="442.1128" y2="438.3349"/>
		<line fill="none" id="t1 p646" stroke="#7A7A7A" stroke-width="2" x1="412.7262" x2="417.6729" y1="438.3349" y2="440.5847"/>
		<line fill="none" id="t1 p647" stroke="#7A7A7A" stroke-width="2" x1="417.6729" x2="421.0683" y1="440.5847" y2="445.1267"/>
		<line fill="none" id="t1 p648" stroke="#7A7A7A" stroke-width="2" x1="421.0683" x2="421.1853" y1="445.1267" y2="446.9095"/>
		<line fill="none" id="t1 p649" stroke="#7A7A7A" stroke-width="2" x1="421.1853" x2="421.5073" y1="446.9095" y2="451.7486"/>
		<line fill="none" id="t1 p650" stroke="#7A7A7A" stroke-width="2" x1="421.5073" x2="422.7659" y1="451.7486" y2="455.3143"/>
		<line fill="none" id="t1 p651" stroke="#7A7A7A" stroke-width="2" x1="422.7659" x2="423.4977" y1="455.3143" y2="454.8898"/>
		<line fill="none" id="t1 p652" stroke="#7A7A7A" stroke-width="2" x1="423.4977" x2="423.7318" y1="454.8898" y2="451.3241"/>
		<line fill="none" id="t1 p653" stroke="#7A7A7A" stroke-width="2" x1="423.7318" x2="424.9027" y1="451.3241" y2="448.9046"/>
		<line fill="none" id="t1 p654" stroke="#7A7A7A" stroke-width="2" x1="424.9027" x2="424.9612" y1="448.9046" y2="448.1405"/>
		<line fill="none" id="t1 p655" stroke="#7A7A7A" stroke-width="2" x1="424.9612" x2="425.1954" y1="448.1405" y2="446.2303"/>
		<line fill="none" id="t1 p656" stroke="#7A7A7A" stroke-width="2" x1="425.1954" x2="425.1368" y1="446.2303" y2="442.9193"/>
		<line fill="none" id="t1 p657" stroke="#7A7A7A" stroke-width="2" x1="425.1368" x2="423.9075" y1="442.9193" y2="439.8631"/>
		<line fill="none" id="t1 p658" stroke="#7A7A7A" stroke-width="2" x1="423.9075" x2="423.6733" y1="439.8631" y2="438.7170"/>
		<line fill="none" id="t1 p659" stroke="#7A7A7A" stroke-width="2" x1="423.6733" x2="424.9027" y1="438.7170" y2="434.3448"/>
		<line fill="none" id="t1 p660" stroke="#7A7A7A" stroke-width="2" x1="424.9027" x2="425.4588" y1="434.3448" y2="433.4958"/>
		<line fill="none" id="t1 p661" stroke="#7A7A7A" stroke-width="2" x1="425.4588" x2="426.2491" y1="433.4958" y2="432.2224"/>
		<line fill="none" id="t1 p662" stroke="#7A7A7A" stroke-width="2" x1="426.2491" x2="426.5125" y1="432.2224" y2="431.7130"/>
		<line fill="none" id="t1 p663" stroke="#7A7A7A" stroke-width="2" x1="426.5125" x2="429.3517" y1="431.7130" y2="429.3359"/>
		<line fill="none" id="t1 p664" stroke="#7A7A7A" stroke-width="2" x1="429.3517" x2="430.8153" y1="429.3359" y2="426.7041"/>
		<line fill="none" id="t1 p665" stroke="#7A7A7A" stroke-width="2" x1="430.8153" x2="432.0739" y1="426.7041" y2="425.6429"/>
		<line fill="none" id="t1 p666" stroke="#7A7A7A" stroke-width="2" x1="432.0739" x2="435.1473" y1="425.6429" y2="422.8413"/>
		<line fill="none" id="t1 p667" stroke="#7A7A7A" stroke-width="2" x1="435.1473" x2="436.2010" y1="422.8413" y2="421.3981"/>
		<line fill="none" id="t1 p668" stroke="#7A7A7A" stroke-width="2" x1="436.2010" x2="441.9380" y1="421.3981" y2="421.1858"/>
		<line fill="none" id="t1 p669" stroke="#7A7A7A" stroke-width="2" x1="441.9380" x2="449.0799" y1="421.1858" y2="422.0772"/>
		<line fill="none" id="t1 p670" stroke="#7A7A7A" stroke-width="2" x1="449.0799" x2="451.7142" y1="422.0772" y2="422.0348"/>
		<line fill="none" id="t1 p671" stroke="#7A7A7A" stroke-width="2" x1="451.7142" x2="453.2070" y1="422.0348" y2="422.2046"/>
		<line fill="none" id="t1 p672" stroke="#7A7A7A" stroke-width="2" x1="453.2070" x2="455.3438" y1="422.2046" y2="420.5915"/>
		<line fill="none" id="t1 p673" stroke="#7A7A7A" stroke-width="2" x1="455.3438" x2="455.4316" y1="420.5915" y2="420.3368"/>
		<line fill="none" id="t1 p674" stroke="#7A7A7A" stroke-width="2" x1="455.4316" x2="454.2900" y1="420.3368" y2="417.6626"/>
		<line fill="none" id="t1 p675" stroke="#7A7A7A" stroke-width="2" x1="454.2900" x2="453.8217" y1="417.6626" y2="413.3753"/>
		<line fill="none" id="t1 p676" stroke="#7A7A7A" stroke-width="2" x1="453.8217" x2="454.3486" y1="413.3753" y2="409.4701"/>
		<line fill="none" id="t1 p677" stroke="#7A7A7A" stroke-width="2" x1="454.3486" x2="455.6657" y1="409.4701" y2="405.6073"/>
		<line fill="none" id="t1 p678" stroke="#7A7A7A" stroke-width="2" x1="455.6657" x2="456.0755" y1="405.6073" y2="403.8669"/>
		<line fill="none" id="t1 p679" stroke="#7A7A7A" stroke-width="2" x1="456.0755" x2="456.1341" y1="403.8669" y2="402.9755"/>
		<line fill="none" id="t1 p680" stroke="#7A7A7A" stroke-width="2" x1="456.1341" x2="456.2511" y1="402.9755" y2="398.3911"/>
		<line fill="none" id="t1 p681" stroke="#7A7A7A" stroke-width="2" x1="456.2511" x2="455.1681" y1="398.3911" y2="396.7780"/>
		<line fill="none" id="t1 p682" stroke="#7A7A7A" stroke-width="2" x1="455.1681" x2="451.3337" y1="396.7780" y2="395.0377"/>
		<line fill="none" id="t1 p683" stroke="#7A7A7A" stroke-width="2" x1="451.3337" x2="448.3774" y1="395.0377" y2="392.4483"/>
		<line fill="none" id="t1 p684" stroke="#7A7A7A" stroke-width="2" x1="448.3774" x2="444.0454" y1="392.4483" y2="389.6043"/>
		<line fill="none" id="t1 p685" stroke="#7A7A7A" stroke-width="2" x1="444.0454" x2="438.9231" y1="389.6043" y2="389.5618"/>
		<line fill="none" id="t1 p686" stroke="#7A7A7A" stroke-width="2" x1="438.9231" x2="433.9764" y1="389.5618" y2="391.4720"/>
		<line fill="none" id="t1 p687" stroke="#7A7A7A" stroke-width="2" x1="433.9764" x2="432.1910" y1="391.4720" y2="391.9389"/>
		<line fill="none" id="t1 p688" stroke="#7A7A7A" stroke-width="2" x1="432.1910" x2="428.7078" y1="391.9389" y2="393.2124"/>
		<line fill="none" id="t1 p689" stroke="#7A7A7A" stroke-width="2" x1="428.7078" x2="426.1320" y1="393.2124" y2="395.9291"/>
		<line fill="none" id="t1 p690" stroke="#7A7A7A" stroke-width="2" x1="426.1320" x2="425.6051" y1="395.9291" y2="396.5233"/>
		<line fill="none" id="t1 p691" stroke="#7A7A7A" stroke-width="2" x1="425.6051" x2="422.4147" y1="396.5233" y2="398.1364"/>
		<line fill="none" id="t1 p692" stroke="#7A7A7A" stroke-width="2" x1="422.4147" x2="420.1316" y1="398.1364" y2="398.2637"/>
		<line fill="none" id="t1 p693" stroke="#7A7A7A" stroke-width="2" x1="420.1316" x2="416.7362" y1="398.2637" y2="400.5559"/>
		<line fill="none" id="t1 p694" stroke="#7A7A7A" stroke-width="2" x1="416.7362" x2="413.6043" y1="400.5559" y2="401.4898"/>
		<line fill="none" id="t1 p695" stroke="#7A7A7A" stroke-width="2" x1="413.6043" x2="410.5017" y1="401.4898" y2="403.4849"/>
		<line fill="none" id="t1 p696" stroke="#7A7A7A" stroke-width="2" x1="410.5017" x2="407.6332" y1="403.4849" y2="406.4138"/>
		<line fill="none" id="t1 p697" stroke="#7A7A7A" stroke-width="2" x1="407.6332" x2="405.2623" y1="406.4138" y2="410.6162"/>
		<line fill="none" id="t1 p698" stroke="#7A7A7A" stroke-width="2" x1="405.2623" x2="404.1500" y1="410.6162" y2="413.2904"/>
		<line fill="none" id="t1 p699" stroke="#7A7A7A" stroke-width="2" x1="404.1500" x2="403.0670" y1="413.2904" y2="414.6912"/>
		<line fill="none" id="t1 p700" stroke="#7A7A7A" stroke-width="2" x1="403.0670" x2="401.2815" y1="414.6912" y2="416.9410"/>
		<line fill="none" id="t1 p701" stroke="#7A7A7A" stroke-width="2" x1="401.2815" x2="399.7009" y1="416.9410" y2="417.9173"/>
		<line fill="none" id="t1 p702" stroke="#7A7A7A" stroke-width="2" x1="399.7009" x2="398.6179" y1="417.9173" y2="418.9785"/>
		<line fill="none" id="t1 p703" stroke="#7A7A7A" stroke-width="2" x1="398.6179" x2="395.7202" y1="418.9785" y2="420.3368"/>
		<line fill="none" id="t1 p704" stroke="#7A7A7A" stroke-width="2" x1="395.7202" x2="394.6372" y1="420.3368" y2="420.9311"/>
		<line fill="none" id="t1 p705" stroke="#7A7A7A" stroke-width="2" x1="394.6372" x2="392.6175" y1="420.9311" y2="423.3931"/>
		<line fill="none" id="t1 p706" stroke="#7A7A7A" stroke-width="2" x1="392.6175" x2="390.9784" y1="423.3931" y2="423.0960"/>
		<line fill="none" id="t1 p707" stroke="#7A7A7A" stroke-width="2" x1="390.9784" x2="390.8613" y1="423.0960" y2="422.9262"/>
		<line fill="none" id="t1 p708" stroke="#7A7A7A" stroke-width="2" x1="390.8613" x2="387.6416" y1="422.9262" y2="419.7426"/>
		<line fill="none" id="t1 p709" stroke="#7A7A7A" stroke-width="2" x1="387.6416" x2="384.6560" y1="419.7426" y2="417.1957"/>
		<line fill="none" id="t1 p710" stroke="#7A7A7A" stroke-width="2" x1="384.6560" x2="384.1877" y1="417.1957" y2="416.8561"/>
		<line fill="none" id="t1 p711" stroke="#7A7A7A" stroke-width="2" x1="384.1877" x2="382.0510" y1="416.8561" y2="415.6251"/>
		<line fill="none" id="t1 p712" stroke="#7A7A7A" stroke-width="2" x1="382.0510" x2="379.1239" y1="415.6251" y2="414.1394"/>
		<line fill="none" id="t1 p713" stroke="#7A7A7A" stroke-width="2" x1="379.1239" x2="375.8749" y1="414.1394" y2="412.1019"/>
		<line fill="none" id="t1 p714" stroke="#7A7A7A" stroke-width="2" x1="375.8749" x2="369.0257" y1="412.1019" y2="411.6774"/>
		<line fill="none" id="t1 p715" stroke="#7A7A7A" stroke-width="2" x1="369.0257" x2="367.0646" y1="411.6774" y2="409.2154"/>
		<line fill="none" id="t1 p716" stroke="#7A7A7A" stroke-width="2" x1="367.0646" x2="368.4695" y1="409.2154" y2="404.9706"/>
		<line fill="none" id="t1 p717" stroke="#7A7A7A" stroke-width="2" x1="368.4695" x2="367.3280" y1="404.9706" y2="401.2776"/>
		<line fill="none" id="t1 p718" stroke="#7A7A7A" stroke-width="2" x1="367.3280" x2="370.7234" y1="401.2776" y2="394.6132"/>
		<line fill="none" id="t1 p719" stroke="#7A7A7A" stroke-width="2" x1="370.7234" x2="368.4403" y1="394.6132" y2="391.4295"/>
		<line fill="none" id="t1 p720" stroke="#7A7A7A" stroke-width="2" x1="368.4403" x2="366.1572" y1="391.4295" y2="387.6092"/>
		<line fill="none" id="t1 p721" stroke="#7A7A7A" stroke-width="2" x1="366.1572" x2="365.4547" y1="387.6092" y2="385.1896"/>
		<line fill="none" id="t1 p722" stroke="#7A7A7A" stroke-width="2" x1="365.4547" x2="362.4106" y1="385.1896" y2="381.3693"/>
		<line fill="none" id="t1 p723" stroke="#7A7A7A" stroke-width="2" x1="362.4106" x2="363.8741" y1="381.3693" y2="376.4028"/>
		<line fill="none" id="t1 p724" stroke="#7A7A7A" stroke-width="2" x1="363.8741" x2="366.5377" y1="376.4028" y2="373.9408"/>
		<line fill="none" id="t1 p725" stroke="#7A7A7A" stroke-width="2" x1="366.5377" x2="370.5770" y1="373.9408" y2="374.8323"/>
		<line fill="none" id="t1 p726" stroke="#7A7A7A" stroke-width="2" x1="370.5770" x2="375.9335" y1="374.8323" y2="376.2755"/>
		<line fill="none" id="t1 p727" stroke="#7A7A7A" stroke-width="2" x1="375.9335" x2="376.5774" y1="376.2755" y2="376.9547"/>
		<line fill="none" id="t1 p728" stroke="#7A7A7A" stroke-width="2" x1="376.5774" x2="376.1091" y1="376.9547" y2="379.6289"/>
		<line fill="none" id="t1 p729" stroke="#7A7A7A" stroke-width="2" x1="376.1091" x2="375.6115" y1="379.6289" y2="381.7938"/>
		<line fill="none" id="t1 p730" stroke="#7A7A7A" stroke-width="2" x1="375.6115" x2="375.9335" y1="381.7938" y2="382.8550"/>
		<line fill="none" id="t1 p731" stroke="#7A7A7A" stroke-width="2" x1="375.9335" x2="379.3288" y1="382.8550" y2="383.4493"/>
		<line fill="none" id="t1 p732" stroke="#7A7A7A" stroke-width="2" x1="379.3288" x2="380.7338" y1="383.4493" y2="383.2370"/>
		<line fill="none" id="t1 p733" stroke="#7A7A7A" stroke-width="2" x1="380.7338" x2="383.3096" y1="383.2370" y2="380.0959"/>
		<line fill="none" id="t1 p734" stroke="#7A7A7A" stroke-width="2" x1="383.3096" x2="385.8268" y1="380.0959" y2="376.5302"/>
		<line fill="none" id="t1 p735" stroke="#7A7A7A" stroke-width="2" x1="385.8268" x2="388.8124" y1="376.5302" y2="376.7849"/>
		<line fill="none" id="t1 p736" stroke="#7A7A7A" stroke-width="2" x1="388.8124" x2="392.8810" y1="376.7849" y2="378.6951"/>
		<line fill="none" id="t1 p737" stroke="#7A7A7A" stroke-width="2" x1="392.8810" x2="396.9203" y1="378.6951" y2="377.5065"/>
		<line fill="none" id="t1 p738" stroke="#7A7A7A" stroke-width="2" x1="396.9203" x2="397.4471" y1="377.5065" y2="375.4690"/>
		<line fill="none" id="t1 p739" stroke="#7A7A7A" stroke-width="2" x1="397.4471" x2="396.5398" y1="375.4690" y2="373.0070"/>
		<line fill="none" id="t1 p740" stroke="#7A7A7A" stroke-width="2" x1="396.5398" x2="397.1837" y1="373.0070" y2="369.3989"/>
		<line fill="none" id="t1 p741" stroke="#7A7A7A" stroke-width="2" x1="397.1837" x2="397.5057" y1="369.3989" y2="365.4087"/>
		<line fill="none" id="t1 p742" stroke="#7A7A7A" stroke-width="2" x1="397.5057" x2="395.8665" y1="365.4087" y2="363.7533"/>
		<line fill="none" id="t1 p743" stroke="#7A7A7A" stroke-width="2" x1="395.8665" x2="393.1444" y1="363.7533" y2="361.8006"/>
		<line fill="none" id="t1 p744" stroke="#7A7A7A" stroke-width="2" x1="393.1444" x2="392.7932" y1="361.8006" y2="359.1264"/>
		<line fill="none" id="t1 p745" stroke="#7A7A7A" stroke-width="2" x1="392.7932" x2="392.3248" y1="359.1264" y2="357.3011"/>
		<line fill="none" id="t1 p746" stroke="#7A7A7A" stroke-width="2" x1="392.3248" x2="389.4271" y1="357.3011" y2="352.9714"/>
		<line fill="none" id="t1 p747" stroke="#7A7A7A" stroke-width="2" x1="389.4271" x2="388.1977" y1="352.9714" y2="350.9339"/>
		<line fill="none" id="t1 p748" stroke="#7A7A7A" stroke-width="2" x1="388.1977" x2="388.1685" y1="350.9339" y2="347.3258"/>
		<line fill="none" id="t1 p749" stroke="#7A7A7A" stroke-width="2" x1="388.1685" x2="386.1781" y1="347.3258" y2="346.6466"/>
		<line fill="none" id="t1 p750" stroke="#7A7A7A" stroke-width="2" x1="386.1781" x2="385.0365" y1="346.6466" y2="346.1797"/>
		<line fill="none" id="t1 p751" stroke="#7A7A7A" stroke-width="2" x1="385.0365" x2="382.2851" y1="346.1797" y2="345.9674"/>
		<line fill="none" id="t1 p752" stroke="#7A7A7A" stroke-width="2" x1="382.2851" x2="381.4070" y1="345.9674" y2="345.7976"/>
		<line fill="none" id="t1 p753" stroke="#7A7A7A" stroke-width="2" x1="381.4070" x2="378.8020" y1="345.7976" y2="345.4580"/>
		<line fill="none" id="t1 p754" stroke="#7A7A7A" stroke-width="2" x1="378.8020" x2="376.5189" y1="345.4580" y2="344.6091"/>
		<line fill="none" id="t1 p755" stroke="#7A7A7A" stroke-width="2" x1="376.5189" x2="375.4066" y1="344.6091" y2="344.5242"/>
		<line fill="none" id="t1 p756" stroke="#7A7A7A" stroke-width="2" x1="375.4066" x2="371.5429" y1="344.5242" y2="343.1234"/>
		<line fill="none" id="t1 p757" stroke="#7A7A7A" stroke-width="2" x1="371.5429" x2="367.5622" y1="343.1234" y2="343.3781"/>
		<line fill="none" id="t1 p758" stroke="#7A7A7A" stroke-width="2" x1="367.5622" x2="366.5963" y1="343.3781" y2="343.5479"/>
		<line fill="none" id="t1 p759" stroke="#7A7A7A" stroke-width="2" x1="366.5963" x2="362.6448" y1="343.5479" y2="343.5479"/>
		<line fill="none" id="t1 p760" stroke="#7A7A7A" stroke-width="2" x1="362.6448" x2="361.5325" y1="343.5479" y2="344.1846"/>
		<line fill="none" id="t1 p761" stroke="#7A7A7A" stroke-width="2" x1="361.5325" x2="357.9322" y1="344.1846" y2="345.2458"/>
		<line fill="none" id="t1 p762" stroke="#7A7A7A" stroke-width="2" x1="357.9322" x2="356.8200" y1="345.2458" y2="345.4156"/>
		<line fill="none" id="t1 p763" stroke="#7A7A7A" stroke-width="2" x1="356.8200" x2="354.5662" y1="345.4156" y2="346.8588"/>
		<line fill="none" id="t1 p764" stroke="#7A7A7A" stroke-width="2" x1="354.5662" x2="353.9222" y1="346.8588" y2="347.1560"/>
		<line fill="none" id="t1 p765" stroke="#7A7A7A" stroke-width="2" x1="353.9222" x2="350.9952" y1="347.1560" y2="349.1510"/>
		<line fill="none" id="t1 p766" stroke="#7A7A7A" stroke-width="2" x1="350.9952" x2="350.7610" y1="349.1510" y2="349.8302"/>
		<line fill="none" id="t1 p767" stroke="#7A7A7A" stroke-width="2" x1="350.7610" x2="350.5854" y1="349.8302" y2="352.0800"/>
		<line fill="none" id="t1 p768" stroke="#7A7A7A" stroke-width="2" x1="350.5854" x2="350.3805" y1="352.0800" y2="353.6081"/>
		<line fill="none" id="t1 p769" stroke="#7A7A7A" stroke-width="2" x1="350.3805" x2="347.1022" y1="353.6081" y2="356.3672"/>
		<line fill="none" id="t1 p770" stroke="#7A7A7A" stroke-width="2" x1="347.1022" x2="345.4631" y1="356.3672" y2="358.3199"/>
		<line fill="none" id="t1 p771" stroke="#7A7A7A" stroke-width="2" x1="345.4631" x2="344.7606" y1="358.3199" y2="358.5321"/>
		<line fill="none" id="t1 p772" stroke="#7A7A7A" stroke-width="2" x1="344.7606" x2="342.6824" y1="358.5321" y2="357.4285"/>
		<line fill="none" id="t1 p773" stroke="#7A7A7A" stroke-width="2" x1="342.6824" x2="338.2626" y1="357.4285" y2="355.6032"/>
		<line fill="none" id="t1 p774" stroke="#7A7A7A" stroke-width="2" x1="338.2626" x2="335.0136" y1="355.6032" y2="354.8391"/>
		<line fill="none" id="t1 p775" stroke="#7A7A7A" stroke-width="2" x1="335.0136" x2="334.3404" y1="354.8391" y2="355.5607"/>
		<line fill="none" id="t1 p776" stroke="#7A7A7A" stroke-width="2" x1="334.3404" x2="333.1696" y1="355.5607" y2="356.9615"/>
		<line fill="none" id="t1 p777" stroke="#7A7A7A" stroke-width="2" x1="333.1696" x2="332.9940" y1="356.9615" y2="357.1738"/>
		<line fill="none" id="t1 p778" stroke="#7A7A7A" stroke-width="2" x1="332.9940" x2="333.0232" y1="357.1738" y2="358.7444"/>
		<line fill="none" id="t1 p779" stroke="#7A7A7A" stroke-width="2" x1="333.0232" x2="334.1648" y1="358.7444" y2="359.7631"/>
		<line fill="none" id="t1 p780" stroke="#7A7A7A" stroke-width="2" x1="334.1648" x2="335.2770" y1="359.7631" y2="361.2064"/>
		<line fill="none" id="t1 p781" stroke="#7A7A7A" stroke-width="2" x1="335.2770" x2="335.5697" y1="361.2064" y2="362.2676"/>
		<line fill="none" id="t1 p782" stroke="#7A7A7A" stroke-width="2" x1="335.5697" x2="335.6868" y1="362.2676" y2="362.7345"/>
		<line fill="none" id="t1 p783" stroke="#7A7A7A" stroke-width="2" x1="335.6868" x2="334.9551" y1="362.7345" y2="365.0267"/>
		<line fill="none" id="t1 p784" stroke="#7A7A7A" stroke-width="2" x1="334.9551" x2="334.6331" y1="365.0267" y2="365.1965"/>
		<line fill="none" id="t1 p785" stroke="#7A7A7A" stroke-width="2" x1="334.6331" x2="331.2085" y1="365.1965" y2="364.7296"/>
		<line fill="none" id="t1 p786" stroke="#7A7A7A" stroke-width="2" x1="331.2085" x2="327.7253" y1="364.7296" y2="364.9843"/>
		<line fill="none" id="t1 p787" stroke="#7A7A7A" stroke-width="2" x1="327.7253" x2="325.2959" y1="364.9843" y2="367.9981"/>
		<line fill="none" id="t1 p788" stroke="#7A7A7A" stroke-width="2" x1="325.2959" x2="325.5886" y1="367.9981" y2="370.4176"/>
		<line fill="none" id="t1 p789" stroke="#7A7A7A" stroke-width="2" x1="325.5886" x2="329.6572" y1="370.4176" y2="371.1393"/>
		<line fill="none" id="t1 p790" stroke="#7A7A7A" stroke-width="2" x1="329.6572" x2="330.4182" y1="371.1393" y2="371.0119"/>
		<line fill="none" id="t1 p791" stroke="#7A7A7A" stroke-width="2" x1="330.4182" x2="333.5208" y1="371.0119" y2="371.0544"/>
		<line fill="none" id="t1 p792" stroke="#7A7A7A" stroke-width="2" x1="333.5208" x2="334.4282" y1="371.0544" y2="370.5874"/>
		<line fill="none" id="t1 p793" stroke="#7A7A7A" stroke-width="2" x1="334.4282" x2="337.5601" y1="370.5874" y2="368.5499"/>
		<line fill="none" id="t1 p794" stroke="#7A7A7A" stroke-width="2" x1="337.5601" x2="340.8969" y1="368.5499" y2="369.5687"/>
		<line fill="none" id="t1 p795" stroke="#7A7A7A" stroke-width="2" x1="340.8969" x2="341.6287" y1="369.5687" y2="369.0593"/>
		<line fill="none" id="t1 p796" stroke="#7A7A7A" stroke-width="2" x1="341.6287" x2="346.2241" y1="369.0593" y2="365.9181"/>
		<line fill="none" id="t1 p797" stroke="#7A7A7A" stroke-width="2" x1="346.2241" x2="348.5072" y1="365.9181" y2="364.1353"/>
		<line fill="none" id="t1 p798" stroke="#7A7A7A" stroke-width="2" x1="348.5072" x2="350.3805" y1="364.1353" y2="364.5598"/>
		<line fill="none" id="t1 p799" stroke="#7A7A7A" stroke-width="2" x1="350.3805" x2="355.4735" y1="364.5598" y2="365.0267"/>
		<line fill="none" id="t1 p800" stroke="#7A7A7A" stroke-width="2" x1="355.4735" x2="357.5517" y1="365.0267" y2="366.7246"/>
		<line fill="none" id="t1 p801" stroke="#7A7A7A" stroke-width="2" x1="357.5517" x2="357.6395" y1="366.7246" y2="367.1067"/>
		<line fill="none" id="t1 p802" stroke="#7A7A7A" stroke-width="2" x1="357.6395" x2="356.3224" y1="367.1067" y2="369.7809"/>
		<line fill="none" id="t1 p803" stroke="#7A7A7A" stroke-width="2" x1="356.3224" x2="354.6832" y1="369.7809" y2="371.2666"/>
		<line fill="none" id="t1 p804" stroke="#7A7A7A" stroke-width="2" x1="354.6832" x2="354.3613" y1="371.2666" y2="373.5164"/>
		<line fill="none" id="t1 p805" stroke="#7A7A7A" stroke-width="2" x1="354.3613" x2="352.4880" y1="373.5164" y2="375.1294"/>
		<line fill="none" id="t1 p806" stroke="#7A7A7A" stroke-width="2" x1="352.4880" x2="350.7610" y1="375.1294" y2="378.3555"/>
		<line fill="none" id="t1 p807" stroke="#7A7A7A" stroke-width="2" x1="350.7610" x2="350.6147" y1="378.3555" y2="379.6289"/>
		<line fill="none" id="t1 p808" stroke="#7A7A7A" stroke-width="2" x1="350.6147" x2="348.4487" y1="379.6289" y2="382.8125"/>
		<line fill="none" id="t1 p809" stroke="#7A7A7A" stroke-width="2" x1="348.4487" x2="345.8729" y1="382.8125" y2="382.3456"/>
		<line fill="none" id="t1 p810" stroke="#7A7A7A" stroke-width="2" x1="345.8729" x2="344.5850" y1="382.3456" y2="382.3032"/>
		<line fill="none" id="t1 p811" stroke="#7A7A7A" stroke-width="2" x1="344.5850" x2="341.4238" y1="382.3032" y2="382.0909"/>
		<line fill="none" id="t1 p812" stroke="#7A7A7A" stroke-width="2" x1="341.4238" x2="340.6628" y1="382.0909" y2="380.6901"/>
		<line fill="none" id="t1 p813" stroke="#7A7A7A" stroke-width="2" x1="340.6628" x2="339.3163" y1="380.6901" y2="376.7000"/>
		<line fill="none" id="t1 p814" stroke="#7A7A7A" stroke-width="2" x1="339.3163" x2="337.8821" y1="376.7000" y2="376.0633"/>
		<line fill="none" id="t1 p815" stroke="#7A7A7A" stroke-width="2" x1="337.8821" x2="332.1159" y1="376.0633" y2="375.2567"/>
		<line fill="none" id="t1 p816" stroke="#7A7A7A" stroke-width="2" x1="332.1159" x2="327.2277" y1="375.2567" y2="375.3416"/>
		<line fill="none" id="t1 p817" stroke="#7A7A7A" stroke-width="2" x1="327.2277" x2="321.6956" y1="375.3416" y2="374.3653"/>
		<line fill="none" id="t1 p818" stroke="#7A7A7A" stroke-width="2" x1="321.6956" x2="316.1928" y1="374.3653" y2="372.3703"/>
		<line fill="none" id="t1 p819" stroke="#7A7A7A" stroke-width="2" x1="316.1928" x2="313.0316" y1="372.3703" y2="369.1442"/>
		<line fill="none" id="t1 p820" stroke="#7A7A7A" stroke-width="2" x1="313.0316" x2="312.5926" y1="369.1442" y2="364.6022"/>
		<line fill="none" id="t1 p821" stroke="#7A7A7A" stroke-width="2" x1="312.5926" x2="313.3536" y1="364.6022" y2="363.5410"/>
		<line fill="none" id="t1 p822" stroke="#7A7A7A" stroke-width="2" x1="313.3536" x2="318.5052" y1="363.5410" y2="362.9467"/>
		<line fill="none" id="t1 p823" stroke="#7A7A7A" stroke-width="2" x1="318.5052" x2="323.4811" y1="362.9467" y2="359.5933"/>
		<line fill="none" id="t1 p824" stroke="#7A7A7A" stroke-width="2" x1="323.4811" x2="325.2666" y1="359.5933" y2="356.9191"/>
		<line fill="none" id="t1 p825" stroke="#7A7A7A" stroke-width="2" x1="325.2666" x2="325.3544" y1="356.9191" y2="354.7542"/>
		<line fill="none" id="t1 p826" stroke="#7A7A7A" stroke-width="2" x1="325.3544" x2="325.7642" y1="354.7542" y2="351.9951"/>
		<line fill="none" id="t1 p827" stroke="#7A7A7A" stroke-width="2" x1="325.7642" x2="321.1102" y1="351.9951" y2="349.5331"/>
		<line fill="none" id="t1 p828" stroke="#7A7A7A" stroke-width="2" x1="321.1102" x2="319.4126" y1="349.5331" y2="349.8302"/>
		<line fill="none" id="t1 p829" stroke="#7A7A7A" stroke-width="2" x1="319.4126" x2="318.0661" y1="349.8302" y2="348.8963"/>
		<line fill="none" id="t1 p830" stroke="#7A7A7A" stroke-width="2" x1="318.0661" x2="317.1587" y1="348.8963" y2="347.4955"/>
		<line fill="none" id="t1 p831" stroke="#7A7A7A" stroke-width="2" x1="317.1587" x2="316.4270" y1="347.4955" y2="347.7502"/>
		<line fill="none" id="t1 p832" stroke="#7A7A7A" stroke-width="2" x1="316.4270" x2="316.5733" y1="347.7502" y2="348.3021"/>
		<line fill="none" id="t1 p833" stroke="#7A7A7A" stroke-width="2" x1="316.5733" x2="316.8953" y1="348.3021" y2="348.6417"/>
		<line fill="none" id="t1 p834" stroke="#7A7A7A" stroke-width="2" x1="316.8953" x2="316.7490" y1="348.6417" y2="351.1037"/>
		<line fill="none" id="t1 p835" stroke="#7A7A7A" stroke-width="2" x1="316.7490" x2="317.0709" y1="351.1037" y2="352.0800"/>
		<line fill="none" id="t1 p836" stroke="#7A7A7A" stroke-width="2" x1="317.0709" x2="316.3392" y1="352.0800" y2="352.5893"/>
		<line fill="none" id="t1 p837" stroke="#7A7A7A" stroke-width="2" x1="316.3392" x2="312.7682" y1="352.5893" y2="352.2922"/>
		<line fill="none" id="t1 p838" stroke="#7A7A7A" stroke-width="2" x1="312.7682" x2="311.0413" y1="352.2922" y2="352.2922"/>
		<line fill="none" id="t1 p839" stroke="#7A7A7A" stroke-width="2" x1="311.0413" x2="308.7289" y1="352.2922" y2="350.2547"/>
		<line fill="none" id="t1 p840" stroke="#7A7A7A" stroke-width="2" x1="308.7289" x2="306.6800" y1="350.2547" y2="349.0237"/>
		<line fill="none" id="t1 p841" stroke="#7A7A7A" stroke-width="2" x1="306.6800" x2="305.9775" y1="349.0237" y2="347.7078"/>
		<line fill="none" id="t1 p842" stroke="#7A7A7A" stroke-width="2" x1="305.9775" x2="303.3432" y1="347.7078" y2="346.2645"/>
		<line fill="none" id="t1 p843" stroke="#7A7A7A" stroke-width="2" x1="303.3432" x2="302.4358" y1="346.2645" y2="346.0099"/>
		<line fill="none" id="t1 p844" stroke="#7A7A7A" stroke-width="2" x1="302.4358" x2="301.1772" y1="346.0099" y2="344.3544"/>
		<line fill="none" id="t1 p845" stroke="#7A7A7A" stroke-width="2" x1="301.1772" x2="300.0356" y1="344.3544" y2="343.8025"/>
		<line fill="none" id="t1 p846" stroke="#7A7A7A" stroke-width="2" x1="300.0356" x2="297.8696" y1="343.8025" y2="342.8262"/>
		<line fill="none" id="t1 p847" stroke="#7A7A7A" stroke-width="2" x1="297.8696" x2="300.7967" y1="342.8262" y2="341.9773"/>
		<line fill="none" id="t1 p848" stroke="#7A7A7A" stroke-width="2" x1="300.7967" x2="301.6162" y1="341.9773" y2="341.9348"/>
		<line fill="none" id="t1 p849" stroke="#7A7A7A" stroke-width="2" x1="301.6162" x2="303.5481" y1="341.9348" y2="341.4254"/>
		<line fill="none" id="t1 p850" stroke="#7A7A7A" stroke-width="2" x1="303.5481" x2="309.2265" y1="341.4254" y2="342.1895"/>
		<line fill="none" id="t1 p851" stroke="#7A7A7A" stroke-width="2" x1="309.2265" x2="311.5974" y1="342.1895" y2="343.9299"/>
		<line fill="none" id="t1 p852" stroke="#7A7A7A" stroke-width="2" x1="311.5974" x2="311.7437" y1="343.9299" y2="340.3642"/>
		<line fill="none" id="t1 p853" stroke="#7A7A7A" stroke-width="2" x1="311.7437" x2="311.4510" y1="340.3642" y2="339.9398"/>
		<line fill="none" id="t1 p854" stroke="#7A7A7A" stroke-width="2" x1="311.4510" x2="309.8997" y1="339.9398" y2="339.3455"/>
		<line fill="none" id="t1 p855" stroke="#7A7A7A" stroke-width="2" x1="309.8997" x2="308.2313" y1="339.3455" y2="339.4728"/>
		<line fill="none" id="t1 p856" stroke="#7A7A7A" stroke-width="2" x1="308.2313" x2="305.6555" y1="339.4728" y2="338.5390"/>
		<line fill="none" id="t1 p857" stroke="#7A7A7A" stroke-width="2" x1="305.6555" x2="304.2798" y1="338.5390" y2="338.1145"/>
		<line fill="none" id="t1 p858" stroke="#7A7A7A" stroke-width="2" x1="304.2798" x2="302.9041" y1="338.1145" y2="337.9871"/>
		<line fill="none" id="t1 p859" stroke="#7A7A7A" stroke-width="2" x1="302.9041" x2="302.2016" y1="337.9871" y2="338.8361"/>
		<line fill="none" id="t1 p860" stroke="#7A7A7A" stroke-width="2" x1="302.2016" x2="300.8552" y1="338.8361" y2="337.8173"/>
		<line fill="none" id="t1 p861" stroke="#7A7A7A" stroke-width="2" x1="300.8552" x2="299.9771" y1="337.8173" y2="337.5626"/>
		<line fill="none" id="t1 p862" stroke="#7A7A7A" stroke-width="2" x1="299.9771" x2="298.3672" y1="337.5626" y2="337.2655"/>
		<line fill="none" id="t1 p863" stroke="#7A7A7A" stroke-width="2" x1="298.3672" x2="297.1964" y1="337.2655" y2="337.9022"/>
		<line fill="none" id="t1 p864" stroke="#7A7A7A" stroke-width="2" x1="297.1964" x2="296.6988" y1="337.9022" y2="338.4116"/>
		<line fill="none" id="t1 p865" stroke="#7A7A7A" stroke-width="2" x1="296.6988" x2="294.7670" y1="338.4116" y2="339.3455"/>
		<line fill="none" id="t1 p866" stroke="#7A7A7A" stroke-width="2" x1="294.7670" x2="293.3327" y1="339.3455" y2="340.7463"/>
		<line fill="none" id="t1 p867" stroke="#7A7A7A" stroke-width="2" x1="293.3327" x2="292.8351" y1="340.7463" y2="341.2981"/>
		<line fill="none" id="t1 p868" stroke="#7A7A7A" stroke-width="2" x1="292.8351" x2="288.2397" y1="341.2981" y2="340.5765"/>
		<line fill="none" id="t1 p869" stroke="#7A7A7A" stroke-width="2" x1="288.2397" x2="284.6687" y1="340.5765" y2="339.4304"/>
		<line fill="none" id="t1 p870" stroke="#7A7A7A" stroke-width="2" x1="284.6687" x2="282.7076" y1="339.4304" y2="335.5676"/>
		<line fill="none" id="t1 p871" stroke="#7A7A7A" stroke-width="2" x1="282.7076" x2="282.1222" y1="335.5676" y2="333.7847"/>
		<line fill="none" id="t1 p872" stroke="#7A7A7A" stroke-width="2" x1="282.1222" x2="281.8295" y1="333.7847" y2="332.9358"/>
		<line fill="none" id="t1 p873" stroke="#7A7A7A" stroke-width="2" x1="281.8295" x2="279.6342" y1="332.9358" y2="330.6011"/>
		<line fill="none" id="t1 p874" stroke="#7A7A7A" stroke-width="2" x1="279.6342" x2="276.2974" y1="330.6011" y2="323.5972"/>
		<line fill="none" id="t1 p875" stroke="#7A7A7A" stroke-width="2" x1="276.2974" x2="274.8339" y1="323.5972" y2="315.9565"/>
		<line fill="none" id="t1 p876" stroke="#7A7A7A" stroke-width="2" x1="274.8339" x2="273.3704" y1="315.9565" y2="312.6455"/>
		<line fill="none" id="t1 p877" stroke="#7A7A7A" stroke-width="2" x1="273.3704" x2="268.4237" y1="312.6455" y2="306.2782"/>
		<line fill="none" id="t1 p878" stroke="#7A7A7A" stroke-width="2" x1="268.4237" x2="259.2328" y1="306.2782" y2="301.9061"/>
		<line fill="none" id="t1 p879" stroke="#7A7A7A" stroke-width="2" x1="259.2328" x2="257.5937" y1="301.9061" y2="301.1844"/>
		<line fill="none" id="t1 p880" stroke="#7A7A7A" stroke-width="2" x1="257.5937" x2="254.6667" y1="301.1844" y2="299.6563"/>
		<line fill="none" id="t1 p881" stroke="#7A7A7A" stroke-width="2" x1="254.6667" x2="250.7152" y1="299.6563" y2="299.0196"/>
		<line fill="none" id="t1 p882" stroke="#7A7A7A" stroke-width="2" x1="250.7152" x2="250.2469" y1="299.0196" y2="298.2131"/>
		<line fill="none" id="t1 p883" stroke="#7A7A7A" stroke-width="2" x1="250.2469" x2="246.5588" y1="298.2131" y2="295.3690"/>
		<line fill="none" id="t1 p884" stroke="#7A7A7A" stroke-width="2" x1="246.5588" x2="242.9293" y1="295.3690" y2="291.1242"/>
		<line fill="none" id="t1 p885" stroke="#7A7A7A" stroke-width="2" x1="242.9293" x2="238.2753" y1="291.1242" y2="287.3887"/>
		<line fill="none" id="t1 p886" stroke="#7A7A7A" stroke-width="2" x1="238.2753" x2="236.4898" y1="287.3887" y2="286.4973"/>
		<line fill="none" id="t1 p887" stroke="#7A7A7A" stroke-width="2" x1="236.4898" x2="234.4409" y1="286.4973" y2="283.9929"/>
		<line fill="none" id="t1 p888" stroke="#7A7A7A" stroke-width="2" x1="234.4409" x2="234.2653" y1="283.9929" y2="282.9317"/>
		<line fill="none" id="t1 p889" stroke="#7A7A7A" stroke-width="2" x1="234.2653" x2="233.7677" y1="282.9317" y2="275.6306"/>
		<line fill="none" id="t1 p890" stroke="#7A7A7A" stroke-width="2" x1="233.7677" x2="233.0652" y1="275.6306" y2="271.8951"/>
		<line fill="none" id="t1 p891" stroke="#7A7A7A" stroke-width="2" x1="233.0652" x2="233.4457" y1="271.8951" y2="267.9474"/>
		<line fill="none" id="t1 p892" stroke="#7A7A7A" stroke-width="2" x1="233.4457" x2="233.4457" y1="267.9474" y2="266.9711"/>
		<line fill="none" id="t1 p893" stroke="#7A7A7A" stroke-width="2" x1="233.4457" x2="232.5676" y1="266.9711" y2="266.2070"/>
		<line fill="none" id="t1 p894" stroke="#7A7A7A" stroke-width="2" x1="232.5676" x2="231.4261" y1="266.2070" y2="266.6315"/>
		<line fill="none" id="t1 p895" stroke="#7A7A7A" stroke-width="2" x1="231.4261" x2="230.8114" y1="266.6315" y2="266.7164"/>
		<line fill="none" id="t1 p896" stroke="#7A7A7A" stroke-width="2" x1="230.8114" x2="228.1478" y1="266.7164" y2="267.5654"/>
		<line fill="none" id="t1 p897" stroke="#7A7A7A" stroke-width="2" x1="228.1478" x2="226.4794" y1="267.5654" y2="270.6217"/>
		<line fill="none" id="t1 p898" stroke="#7A7A7A" stroke-width="2" x1="226.4794" x2="224.6646" y1="270.6217" y2="271.4706"/>
		<line fill="none" id="t1 p899" stroke="#7A7A7A" stroke-width="2" x1="224.6646" x2="224.3427" y1="271.4706" y2="271.1310"/>
		<line fill="none" id="t1 p900" stroke="#7A7A7A" stroke-width="2" x1="224.3427" x2="222.7328" y1="271.1310" y2="267.6078"/>
		<line fill="none" id="t1 p901" stroke="#7A7A7A" stroke-width="2" x1="222.7328" x2="222.0889" y1="267.6078" y2="266.2919"/>
		<line fill="none" id="t1 p902" stroke="#7A7A7A" stroke-width="2" x1="222.0889" x2="219.5716" y1="266.2919" y2="267.1409"/>
		<line fill="none" id="t1 p903" stroke="#7A7A7A" stroke-width="2" x1="219.5716" x2="216.9666" y1="267.1409" y2="268.7964"/>
		<line fill="none" id="t1 p904" stroke="#7A7A7A" stroke-width="2" x1="216.9666" x2="215.8250" y1="268.7964" y2="266.9287"/>
		<line fill="none" id="t1 p905" stroke="#7A7A7A" stroke-width="2" x1="215.8250" x2="214.8298" y1="266.9287" y2="263.5328"/>
		<line fill="none" id="t1 p906" stroke="#7A7A7A" stroke-width="2" x1="214.8298" x2="213.7176" y1="263.5328" y2="261.8349"/>
		<line fill="none" id="t1 p907" stroke="#7A7A7A" stroke-width="2" x1="213.7176" x2="212.3711" y1="261.8349" y2="260.5614"/>
		<line fill="none" id="t1 p908" stroke="#7A7A7A" stroke-width="2" x1="212.3711" x2="210.7613" y1="260.5614" y2="259.1182"/>
		<line fill="none" id="t1 p909" stroke="#7A7A7A" stroke-width="2" x1="210.7613" x2="210.6442" y1="259.1182" y2="258.3965"/>
		<line fill="none" id="t1 p910" stroke="#7A7A7A" stroke-width="2" x1="210.6442" x2="210.6442" y1="258.3965" y2="258.2268"/>
		<line fill="none" id="t1 p911" stroke="#7A7A7A" stroke-width="2" x1="210.6442" x2="210.1173" y1="258.2268" y2="255.0856"/>
		<line fill="none" id="t1 p912" stroke="#7A7A7A" stroke-width="2" x1="210.1173" x2="210.2637" y1="255.0856" y2="254.7460"/>
		<line fill="none" id="t1 p913" stroke="#7A7A7A" stroke-width="2" x1="210.2637" x2="210.7905" y1="254.7460" y2="253.4301"/>
		<line fill="none" id="t1 p914" stroke="#7A7A7A" stroke-width="2" x1="210.7905" x2="210.4100" y1="253.4301" y2="250.9256"/>
		<line fill="none" id="t1 p915" stroke="#7A7A7A" stroke-width="2" x1="210.4100" x2="209.9710" y1="250.9256" y2="249.1004"/>
		<line fill="none" id="t1 p916" stroke="#7A7A7A" stroke-width="2" x1="209.9710" x2="210.0295" y1="249.1004" y2="248.5485"/>
		<line fill="none" id="t1 p917" stroke="#7A7A7A" stroke-width="2" x1="210.0295" x2="210.9369" y1="248.5485" y2="245.7470"/>
		<line fill="none" id="t1 p918" stroke="#7A7A7A" stroke-width="2" x1="210.9369" x2="212.5175" y1="245.7470" y2="245.2376"/>
		<line fill="none" id="t1 p919" stroke="#7A7A7A" stroke-width="2" x1="212.5175" x2="214.5664" y1="245.2376" y2="245.4498"/>
		<line fill="none" id="t1 p920" stroke="#7A7A7A" stroke-width="2" x1="214.5664" x2="217.7861" y1="245.4498" y2="243.4123"/>
		<line fill="none" id="t1 p921" stroke="#7A7A7A" stroke-width="2" x1="217.7861" x2="218.2544" y1="243.4123" y2="240.9927"/>
		<line fill="none" id="t1 p922" stroke="#7A7A7A" stroke-width="2" x1="218.2544" x2="217.5812" y1="240.9927" y2="238.4883"/>
		<line fill="none" id="t1 p923" stroke="#7A7A7A" stroke-width="2" x1="217.5812" x2="216.7324" y1="238.4883" y2="237.4695"/>
		<line fill="none" id="t1 p924" stroke="#7A7A7A" stroke-width="2" x1="216.7324" x2="216.1177" y1="237.4695" y2="237.0450"/>
		<line fill="none" id="t1 p925" stroke="#7A7A7A" stroke-width="2" x1="216.1177" x2="215.4445" y1="237.0450" y2="232.4182"/>
		<line fill="none" id="t1 p926" stroke="#7A7A7A" stroke-width="2" x1="215.4445" x2="213.3370" y1="232.4182" y2="228.4280"/>
		<line fill="none" id="t1 p927" stroke="#7A7A7A" stroke-width="2" x1="213.3370" x2="214.4200" y1="228.4280" y2="222.6551"/>
		<line fill="none" id="t1 p928" stroke="#7A7A7A" stroke-width="2" x1="214.4200" x2="213.4249" y1="222.6551" y2="220.7873"/>
		<line fill="none" id="t1 p929" stroke="#7A7A7A" stroke-width="2" x1="213.4249" x2="210.9661" y1="220.7873" y2="213.9956"/>
		<line fill="none" id="t1 p930" stroke="#7A7A7A" stroke-width="2" x1="210.9661" x2="209.1221" y1="213.9956" y2="208.7745"/>
		<line fill="none" id="t1 p931" stroke="#7A7A7A" stroke-width="2" x1="209.1221" x2="207.7464" y1="208.7745" y2="203.8505"/>
		<line fill="none" id="t1 p932" stroke="#7A7A7A" stroke-width="2" x1="207.7464" x2="207.5415" y1="203.8505" y2="200.4122"/>
		<line fill="none" id="t1 p933" stroke="#7A7A7A" stroke-width="2" x1="207.5415" x2="207.2196" y1="200.4122" y2="198.7991"/>
		<line fill="none" id="t1 p934" stroke="#7A7A7A" stroke-width="2" x1="207.2196" x2="206.3122" y1="198.7991" y2="198.1624"/>
		<line fill="none" id="t1 p935" stroke="#7A7A7A" stroke-width="2" x1="206.3122" x2="203.9120" y1="198.1624" y2="200.5820"/>
		<line fill="none" id="t1 p936" stroke="#7A7A7A" stroke-width="2" x1="203.9120" x2="202.9461" y1="200.5820" y2="202.5770"/>
		<line fill="none" id="t1 p937" stroke="#7A7A7A" stroke-width="2" x1="202.9461" x2="204.0584" y1="202.5770" y2="205.2088"/>
		<line fill="none" id="t1 p938" stroke="#7A7A7A" stroke-width="2" x1="204.0584" x2="204.0876" y1="205.2088" y2="207.2463"/>
		<line fill="none" id="t1 p939" stroke="#7A7A7A" stroke-width="2" x1="204.0876" x2="202.9461" y1="207.2463" y2="206.4823"/>
		<line fill="none" id="t1 p940" stroke="#7A7A7A" stroke-width="2" x1="202.9461" x2="200.9850" y1="206.4823" y2="203.5533"/>
		<line fill="none" id="t1 p941" stroke="#7A7A7A" stroke-width="2" x1="200.9850" x2="201.3362" y1="203.5533" y2="201.2611"/>
		<line fill="none" id="t1 p942" stroke="#7A7A7A" stroke-width="2" x1="201.3362" x2="200.7215" y1="201.2611" y2="197.8653"/>
		<line fill="none" id="t1 p943" stroke="#7A7A7A" stroke-width="2" x1="200.7215" x2="200.4288" y1="197.8653" y2="197.3983"/>
		<line fill="none" id="t1 p944" stroke="#7A7A7A" stroke-width="2" x1="200.4288" x2="200.4874" y1="197.3983" y2="196.4220"/>
		<line fill="none" id="t1 p945" stroke="#7A7A7A" stroke-width="2" x1="200.4874" x2="203.0632" y1="196.4220" y2="194.2147"/>
		<line fill="none" id="t1 p946" stroke="#7A7A7A" stroke-width="2" x1="203.0632" x2="207.1025" y1="194.2147" y2="194.0449"/>
		<line fill="none" id="t1 p947" stroke="#7A7A7A" stroke-width="2" x1="207.1025" x2="209.7368" y1="194.0449" y2="193.4931"/>
		<line fill="none" id="t1 p948" stroke="#7A7A7A" stroke-width="2" x1="209.7368" x2="213.8346" y1="193.4931" y2="194.3421"/>
		<line fill="none" id="t1 p949" stroke="#7A7A7A" stroke-width="2" x1="213.8346" x2="217.3178" y1="194.3421" y2="199.0963"/>
		<line fill="none" id="t1 p950" stroke="#7A7A7A" stroke-width="2" x1="217.3178" x2="216.4104" y1="199.0963" y2="201.0913"/>
		<line fill="none" id="t1 p951" stroke="#7A7A7A" stroke-width="2" x1="216.4104" x2="213.1614" y1="201.0913" y2="203.5533"/>
		<line fill="none" id="t1 p952" stroke="#7A7A7A" stroke-width="2" x1="213.1614" x2="214.8298" y1="203.5533" y2="206.4823"/>
		<line fill="none" id="t1 p953" stroke="#7A7A7A" stroke-width="2" x1="214.8298" x2="221.2693" y1="206.4823" y2="207.0765"/>
		<line fill="none" id="t1 p954" stroke="#7A7A7A" stroke-width="2" x1="221.2693" x2="227.6795" y1="207.0765" y2="206.4823"/>
		<line fill="none" id="t1 p955" stroke="#7A7A7A" stroke-width="2" x1="227.6795" x2="229.4650" y1="206.4823" y2="206.2700"/>
		<line fill="none" id="t1 p956" stroke="#7A7A7A" stroke-width="2" x1="229.4650" x2="233.7677" y1="206.2700" y2="205.6757"/>
		<line fill="none" id="t1 p957" stroke="#7A7A7A" stroke-width="2" x1="233.7677" x2="234.8214" y1="205.6757" y2="203.2137"/>
		<line fill="none" id="t1 p958" stroke="#7A7A7A" stroke-width="2" x1="234.8214" x2="232.2749" y1="203.2137" y2="200.9215"/>
		<line fill="none" id="t1 p959" stroke="#7A7A7A" stroke-width="2" x1="232.2749" x2="228.1185" y1="200.9215" y2="197.0163"/>
		<line fill="none" id="t1 p960" stroke="#7A7A7A" stroke-width="2" x1="228.1185" x2="225.0452" y1="197.0163" y2="194.3845"/>
		<line fill="none" id="t1 p961" stroke="#7A7A7A" stroke-width="2" x1="225.0452" x2="223.9329" y1="194.3845" y2="193.3233"/>
		<line fill="none" id="t1 p962" stroke="#7A7A7A" stroke-width="2" x1="223.9329" x2="221.6498" y1="193.3233" y2="191.7527"/>
		<line fill="none" id="t1 p963" stroke="#7A7A7A" stroke-width="2" x1="221.6498" x2="219.3082" y1="191.7527" y2="190.3095"/>
		<line fill="none" id="t1 p964" stroke="#7A7A7A" stroke-width="2" x1="219.3082" x2="217.4056" y1="190.3095" y2="189.4180"/>
		<line fill="none" id="t1 p965" stroke="#7A7A7A" stroke-width="2" x1="217.4056" x2="217.0836" y1="189.4180" y2="189.4180"/>
		<line fill="none" id="t1 p966" stroke="#7A7A7A" stroke-width="2" x1="217.0836" x2="212.6053" y1="189.4180" y2="189.1209"/>
		<line fill="none" id="t1 p967" stroke="#7A7A7A" stroke-width="2" x1="212.6053" x2="207.9220" y1="189.1209" y2="190.6066"/>
		<line fill="none" id="t1 p968" stroke="#7A7A7A" stroke-width="2" x1="207.9220" x2="203.7364" y1="190.6066" y2="191.1160"/>
		<line fill="none" id="t1 p969" stroke="#7A7A7A" stroke-width="2" x1="203.7364" x2="198.5555" y1="191.1160" y2="192.6017"/>
		<line fill="none" id="t1 p970" stroke="#7A7A7A" stroke-width="2" x1="198.5555" x2="192.1454" y1="192.6017" y2="195.9975"/>
		<line fill="none" id="t1 p971" stroke="#7A7A7A" stroke-width="2" x1="192.1454" x2="187.1694" y1="195.9975" y2="197.8228"/>
		<line fill="none" id="t1 p972" stroke="#7A7A7A" stroke-width="2" x1="187.1694" x2="185.8815" y1="197.8228" y2="201.5158"/>
		<line fill="none" id="t1 p973" stroke="#7A7A7A" stroke-width="2" x1="185.8815" x2="185.2961" y1="201.5158" y2="205.5484"/>
		<line fill="none" id="t1 p974" stroke="#7A7A7A" stroke-width="2" x1="185.2961" x2="185.5010" y1="205.5484" y2="209.0716"/>
		<line fill="none" id="t1 p975" stroke="#7A7A7A" stroke-width="2" x1="185.5010" x2="187.1109" y1="209.0716" y2="210.0479"/>
		<line fill="none" id="t1 p976" stroke="#7A7A7A" stroke-width="2" x1="187.1109" x2="190.5648" y1="210.0479" y2="210.4724"/>
		<line fill="none" id="t1 p977" stroke="#7A7A7A" stroke-width="2" x1="190.5648" x2="192.4673" y1="210.4724" y2="210.6847"/>
		<line fill="none" id="t1 p978" stroke="#7A7A7A" stroke-width="2" x1="192.4673" x2="194.9260" y1="210.6847" y2="208.8169"/>
		<line fill="none" id="t1 p979" stroke="#7A7A7A" stroke-width="2" x1="194.9260" x2="197.5311" y1="208.8169" y2="208.5622"/>
		<line fill="none" id="t1 p980" stroke="#7A7A7A" stroke-width="2" x1="197.5311" x2="196.7993" y1="208.5622" y2="210.3451"/>
		<line fill="none" id="t1 p981" stroke="#7A7A7A" stroke-width="2" x1="196.7993" x2="196.8286" y1="210.3451" y2="210.8120"/>
		<line fill="none" id="t1 p982" stroke="#7A7A7A" stroke-width="2" x1="196.8286" x2="200.2825" y1="210.8120" y2="217.2217"/>
		<line fill="none" id="t1 p983" stroke="#7A7A7A" stroke-width="2" x1="200.2825" x2="203.8535" y1="217.2217" y2="220.4902"/>
		<line fill="none" id="t1 p984" stroke="#7A7A7A" stroke-width="2" x1="203.8535" x2="205.0828" y1="220.4902" y2="225.8387"/>
		<line fill="none" id="t1 p985" stroke="#7A7A7A" stroke-width="2" x1="205.0828" x2="206.1951" y1="225.8387" y2="228.1734"/>
		<line fill="none" id="t1 p986" stroke="#7A7A7A" stroke-width="2" x1="206.1951" x2="209.7075" y1="228.1734" y2="231.6966"/>
		<line fill="none" id="t1 p987" stroke="#7A7A7A" stroke-width="2" x1="209.7075" x2="210.9661" y1="231.6966" y2="235.2198"/>
		<line fill="none" id="t1 p988" stroke="#7A7A7A" stroke-width="2" x1="210.9661" x2="209.9710" y1="235.2198" y2="240.8229"/>
		<line fill="none" id="t1 p989" stroke="#7A7A7A" stroke-width="2" x1="209.9710" x2="206.3414" y1="240.8229" y2="243.9641"/>
		<line fill="none" id="t1 p990" stroke="#7A7A7A" stroke-width="2" x1="206.3414" x2="207.0732" y1="243.9641" y2="247.4449"/>
		<line fill="none" id="t1 p991" stroke="#7A7A7A" stroke-width="2" x1="207.0732" x2="205.6975" y1="247.4449" y2="250.9256"/>
		<line fill="none" id="t1 p992" stroke="#7A7A7A" stroke-width="2" x1="205.6975" x2="202.6534" y1="250.9256" y2="252.9632"/>
		<line fill="none" id="t1 p993" stroke="#7A7A7A" stroke-width="2" x1="202.6534" x2="198.1165" y1="252.9632" y2="258.4390"/>
		<line fill="none" id="t1 p994" stroke="#7A7A7A" stroke-width="2" x1="198.1165" x2="200.0483" y1="258.4390" y2="263.5328"/>
		<line fill="none" id="t1 p995" stroke="#7A7A7A" stroke-width="2" x1="200.0483" x2="199.3166" y1="263.5328" y2="267.8201"/>
		<line fill="none" id="t1 p996" stroke="#7A7A7A" stroke-width="2" x1="199.3166" x2="198.2336" y1="267.8201" y2="268.4568"/>
		<line fill="none" id="t1 p997" stroke="#7A7A7A" stroke-width="2" x1="198.2336" x2="191.0038" y1="268.4568" y2="268.5841"/>
		<line fill="none" id="t1 p998" stroke="#7A7A7A" stroke-width="2" x1="191.0038" x2="191.1209" y1="268.5841" y2="266.0797"/>
		<line fill="none" id="t1 p999" stroke="#7A7A7A" stroke-width="2" x1="191.1209" x2="192.3210" y1="266.0797" y2="261.4953"/>
		<line fill="none" id="t1 p1000" stroke="#7A7A7A" stroke-width="2" x1="192.3210" x2="190.3599" y1="261.4953" y2="257.9296"/>
		<line fill="none" id="t1 p1001" stroke="#7A7A7A" stroke-width="2" x1="190.3599" x2="188.6329" y1="257.9296" y2="255.3403"/>
		<line fill="none" id="t1 p1002" stroke="#7A7A7A" stroke-width="2" x1="188.6329" x2="188.8964" y1="255.3403" y2="254.0668"/>
		<line fill="none" id="t1 p1003" stroke="#7A7A7A" stroke-width="2" x1="188.8964" x2="190.7111" y1="254.0668" y2="252.6236"/>
		<line fill="none" id="t1 p1004" stroke="#7A7A7A" stroke-width="2" x1="190.7111" x2="191.6185" y1="252.6236" y2="252.4962"/>
		<line fill="none" id="t1 p1005" stroke="#7A7A7A" stroke-width="2" x1="191.6185" x2="192.7600" y1="252.4962" y2="252.9632"/>
		<line fill="none" id="t1 p1006" stroke="#7A7A7A" stroke-width="2" x1="192.7600" x2="196.4481" y1="252.9632" y2="249.6946"/>
		<line fill="none" id="t1 p1007" stroke="#7A7A7A" stroke-width="2" x1="196.4481" x2="196.8579" y1="249.6946" y2="246.5110"/>
		<line fill="none" id="t1 p1008" stroke="#7A7A7A" stroke-width="2" x1="196.8579" x2="196.2432" y1="246.5110" y2="239.1675"/>
		<line fill="none" id="t1 p1009" stroke="#7A7A7A" stroke-width="2" x1="196.2432" x2="194.8675" y1="239.1675" y2="234.4133"/>
		<line fill="none" id="t1 p1010" stroke="#7A7A7A" stroke-width="2" x1="194.8675" x2="194.4284" y1="234.4133" y2="230.2109"/>
		<line fill="none" id="t1 p1011" stroke="#7A7A7A" stroke-width="2" x1="194.4284" x2="193.0235" y1="230.2109" y2="228.0036"/>
		<line fill="none" id="t1 p1012" stroke="#7A7A7A" stroke-width="2" x1="193.0235" x2="190.3306" y1="228.0036" y2="224.3955"/>
		<line fill="none" id="t1 p1013" stroke="#7A7A7A" stroke-width="2" x1="190.3306" x2="189.2183" y1="224.3955" y2="221.9759"/>
		<line fill="none" id="t1 p1014" stroke="#7A7A7A" stroke-width="2" x1="189.2183" x2="189.1012" y1="221.9759" y2="221.5939"/>
		<line fill="none" id="t1 p1015" stroke="#7A7A7A" stroke-width="2" x1="189.1012" x2="188.4280" y1="221.5939" y2="221.1694"/>
		<line fill="none" id="t1 p1016" stroke="#7A7A7A" stroke-width="2" x1="188.4280" x2="187.9304" y1="221.1694" y2="221.4665"/>
		<line fill="none" id="t1 p1017" stroke="#7A7A7A" stroke-width="2" x1="187.9304" x2="187.6963" y1="221.4665" y2="223.0796"/>
		<line fill="none" id="t1 p1018" stroke="#7A7A7A" stroke-width="2" x1="187.6963" x2="188.6329" y1="223.0796" y2="227.4093"/>
		<line fill="none" id="t1 p1019" stroke="#7A7A7A" stroke-width="2" x1="188.6329" x2="187.9890" y1="227.4093" y2="233.6067"/>
		<line fill="none" id="t1 p1020" stroke="#7A7A7A" stroke-width="2" x1="187.9890" x2="186.8474" y1="233.6067" y2="235.4745"/>
		<line fill="none" id="t1 p1021" stroke="#7A7A7A" stroke-width="2" x1="186.8474" x2="187.5499" y1="235.4745" y2="241.8417"/>
		<line fill="none" id="t1 p1022" stroke="#7A7A7A" stroke-width="2" x1="187.5499" x2="188.9256" y1="241.8417" y2="243.9217"/>
		<line fill="none" id="t1 p1023" stroke="#7A7A7A" stroke-width="2" x1="188.9256" x2="188.2524" y1="243.9217" y2="247.0204"/>
		<line fill="none" id="t1 p1024" stroke="#7A7A7A" stroke-width="2" x1="188.2524" x2="185.1498" y1="247.0204" y2="248.3363"/>
		<line fill="none" id="t1 p1025" stroke="#7A7A7A" stroke-width="2" x1="185.1498" x2="180.4665" y1="248.3363" y2="251.8171"/>
		<line fill="none" id="t1 p1026" stroke="#7A7A7A" stroke-width="2" x1="180.4665" x2="179.2664" y1="251.8171" y2="253.6423"/>
		<line fill="none" id="t1 p1027" stroke="#7A7A7A" stroke-width="2" x1="179.2664" x2="179.1201" y1="253.6423" y2="254.1517"/>
		<line fill="none" id="t1 p1028" stroke="#7A7A7A" stroke-width="2" x1="179.1201" x2="178.7396" y1="254.1517" y2="256.9533"/>
		<line fill="none" id="t1 p1029" stroke="#7A7A7A" stroke-width="2" x1="178.7396" x2="178.3590" y1="256.9533" y2="261.9198"/>
		<line fill="none" id="t1 p1030" stroke="#7A7A7A" stroke-width="2" x1="178.3590" x2="177.8907" y1="261.9198" y2="269.6029"/>
		<line fill="none" id="t1 p1031" stroke="#7A7A7A" stroke-width="2" x1="177.8907" x2="177.7151" y1="269.6029" y2="271.7678"/>
		<line fill="none" id="t1 p1032" stroke="#7A7A7A" stroke-width="2" x1="177.7151" x2="178.8566" y1="271.7678" y2="275.9701"/>
		<line fill="none" id="t1 p1033" stroke="#7A7A7A" stroke-width="2" x1="178.8566" x2="181.8715" y1="275.9701" y2="282.8043"/>
		<line fill="none" id="t1 p1034" stroke="#7A7A7A" stroke-width="2" x1="181.8715" x2="184.6229" y1="282.8043" y2="288.7046"/>
		<line fill="none" id="t1 p1035" stroke="#7A7A7A" stroke-width="2" x1="184.6229" x2="187.1401" y1="288.7046" y2="294.0531"/>
		<line fill="none" id="t1 p1036" stroke="#7A7A7A" stroke-width="2" x1="187.1401" x2="188.6622" y1="294.0531" y2="297.0670"/>
		<line fill="none" id="t1 p1037" stroke="#7A7A7A" stroke-width="2" x1="188.6622" x2="190.0672" y1="297.0670" y2="300.5477"/>
		<line fill="none" id="t1 p1038" stroke="#7A7A7A" stroke-width="2" x1="190.0672" x2="192.1454" y1="300.5477" y2="305.3868"/>
		<line fill="none" id="t1 p1039" stroke="#7A7A7A" stroke-width="2" x1="192.1454" x2="193.8430" y1="305.3868" y2="309.4194"/>
		<line fill="none" id="t1 p1040" stroke="#7A7A7A" stroke-width="2" x1="193.8430" x2="195.4822" y1="309.4194" y2="313.2398"/>
		<line fill="none" id="t1 p1041" stroke="#7A7A7A" stroke-width="2" x1="195.4822" x2="196.5652" y1="313.2398" y2="315.4895"/>
		<line fill="none" id="t1 p1042" stroke="#7A7A7A" stroke-width="2" x1="196.5652" x2="198.2043" y1="315.4895" y2="318.4609"/>
		<line fill="none" id="t1 p1043" stroke="#7A7A7A" stroke-width="2" x1="198.2043" x2="200.1361" y1="318.4609" y2="322.2813"/>
		<line fill="none" id="t1 p1044" stroke="#7A7A7A" stroke-width="2" x1="200.1361" x2="202.8875" y1="322.2813" y2="327.5024"/>
		<line fill="none" id="t1 p1045" stroke="#7A7A7A" stroke-width="2" x1="202.8875" x2="206.5171" y1="327.5024" y2="331.9170"/>
		<line fill="none" id="t1 p1046" stroke="#7A7A7A" stroke-width="2" x1="206.5171" x2="210.5856" y1="331.9170" y2="336.1619"/>
		<line fill="none" id="t1 p1047" stroke="#7A7A7A" stroke-width="2" x1="210.5856" x2="217.4641" y1="336.1619" y2="343.0385"/>
		<line fill="none" id="t1 p1048" stroke="#7A7A7A" stroke-width="2" x1="217.4641" x2="221.9132" y1="343.0385" y2="347.7502"/>
		<line fill="none" id="t1 p1049" stroke="#7A7A7A" stroke-width="2" x1="221.9132" x2="223.1426" y1="347.7502" y2="348.9388"/>
		<line fill="none" id="t1 p1050" stroke="#7A7A7A" stroke-width="2" x1="223.1426" x2="226.7721" y1="348.9388" y2="348.1747"/>
		<line fill="none" id="t1 p1051" stroke="#7A7A7A" stroke-width="2" x1="226.7721" x2="230.8407" y1="348.1747" y2="344.9487"/>
		<line fill="none" id="t1 p1052" stroke="#7A7A7A" stroke-width="2" x1="230.8407" x2="234.9092" y1="344.9487" y2="343.3781"/>
		<line fill="none" id="t1 p1053" stroke="#7A7A7A" stroke-width="2" x1="234.9092" x2="242.0805" y1="343.3781" y2="341.3405"/>
		<line fill="none" id="t1 p1054" stroke="#7A7A7A" stroke-width="2" x1="242.0805" x2="247.8467" y1="341.3405" y2="339.4728"/>
		<line fill="none" id="t1 p1055" stroke="#7A7A7A" stroke-width="2" x1="247.8467" x2="251.4762" y1="339.4728" y2="340.3642"/>
		<line fill="none" id="t1 p1056" stroke="#7A7A7A" stroke-width="2" x1="251.4762" x2="258.1206" y1="340.3642" y2="343.0809"/>
		<line fill="none" id="t1 p1057" stroke="#7A7A7A" stroke-width="2" x1="258.1206" x2="259.6134" y1="343.0809" y2="343.3356"/>
		<line fill="none" id="t1 p1058" stroke="#7A7A7A" stroke-width="2" x1="259.6134" x2="263.9161" y1="343.3356" y2="341.9348"/>
		<line fill="none" id="t1 p1059" stroke="#7A7A7A" stroke-width="2" x1="263.9161" x2="264.7942" y1="341.9348" y2="338.7087"/>
		<line fill="none" id="t1 p1060" stroke="#7A7A7A" stroke-width="2" x1="264.7942" x2="262.3940" y1="338.7087" y2="335.9921"/>
		<line fill="none" id="t1 p1061" stroke="#7A7A7A" stroke-width="2" x1="262.3940" x2="260.8134" y1="335.9921" y2="333.6998"/>
		<line fill="none" id="t1 p1062" stroke="#7A7A7A" stroke-width="2" x1="260.8134" x2="261.0769" y1="333.6998" y2="329.6248"/>
		<line fill="none" id="t1 p1063" stroke="#7A7A7A" stroke-width="2" x1="261.0769" x2="260.5500" y1="329.6248" y2="328.8607"/>
		<line fill="none" id="t1 p1064" stroke="#7A7A7A" stroke-width="2" x1="260.5500" x2="258.0328" y1="328.8607" y2="326.1441"/>
		<line fill="none" id="t1 p1065" stroke="#7A7A7A" stroke-width="2" x1="258.0328" x2="260.4329" y1="326.1441" y2="322.3237"/>
		<line fill="none" id="t1 p1066" stroke="#7A7A7A" stroke-width="2" x1="260.4329" x2="261.7208" y1="322.3237" y2="322.3662"/>
		<line fill="none" id="t1 p1067" stroke="#7A7A7A" stroke-width="2" x1="261.7208" x2="263.0087" y1="322.3662" y2="323.7245"/>
		<line fill="none" id="t1 p1068" stroke="#7A7A7A" stroke-width="2" x1="263.0087" x2="264.2088" y1="323.7245" y2="325.9318"/>
		<line fill="none" id="t1 p1069" stroke="#7A7A7A" stroke-width="2" x1="264.2088" x2="266.5504" y1="325.9318" y2="328.8607"/>
		<line fill="none" id="t1 p1070" stroke="#7A7A7A" stroke-width="2" x1="266.5504" x2="266.9017" y1="328.8607" y2="329.0305"/>
		<line fill="none" id="t1 p1071" stroke="#7A7A7A" stroke-width="2" x1="266.9017" x2="267.6920" y1="329.0305" y2="329.9219"/>
		<line fill="none" id="t1 p1072" stroke="#7A7A7A" stroke-width="2" x1="267.6920" x2="267.9847" y1="329.9219" y2="332.4688"/>
		<line fill="none" id="t1 p1073" stroke="#7A7A7A" stroke-width="2" x1="267.9847" x2="270.3556" y1="332.4688" y2="334.0394"/>
		<line fill="none" id="t1 p1074" stroke="#7A7A7A" stroke-width="2" x1="270.3556" x2="272.2289" y1="334.0394" y2="334.8460"/>
		<line fill="none" id="t1 p1075" stroke="#7A7A7A" stroke-width="2" x1="272.2289" x2="273.1655" y1="334.8460" y2="337.1382"/>
		<line fill="none" id="t1 p1076" stroke="#7A7A7A" stroke-width="2" x1="273.1655" x2="274.3656" y1="337.1382" y2="339.3455"/>
		<line fill="none" id="t1 p1077" stroke="#7A7A7A" stroke-width="2" x1="274.3656" x2="274.5997" y1="339.3455" y2="342.7838"/>
		<line fill="none" id="t1 p1078" stroke="#7A7A7A" stroke-width="2" x1="274.5997" x2="273.8973" y1="342.7838" y2="346.0099"/>
		<line fill="none" id="t1 p1079" stroke="#7A7A7A" stroke-width="2" x1="273.8973" x2="274.3070" y1="346.0099" y2="347.6229"/>
		<line fill="none" id="t1 p1080" stroke="#7A7A7A" stroke-width="2" x1="274.3070" x2="275.6242" y1="347.6229" y2="350.8065"/>
		<line fill="none" id="t1 p1081" stroke="#7A7A7A" stroke-width="2" x1="275.6242" x2="277.6439" y1="350.8065" y2="351.5706"/>
		<line fill="none" id="t1 p1082" stroke="#7A7A7A" stroke-width="2" x1="277.6439" x2="282.2686" y1="351.5706" y2="356.8766"/>
		<line fill="none" id="t1 p1083" stroke="#7A7A7A" stroke-width="2" x1="282.2686" x2="284.0833" y1="356.8766" y2="365.7483"/>
		<line fill="none" id="t1 p1084" stroke="#7A7A7A" stroke-width="2" x1="284.0833" x2="287.8885" y1="365.7483" y2="371.0119"/>
		<line fill="none" id="t1 p1085" stroke="#7A7A7A" stroke-width="2" x1="287.8885" x2="296.0256" y1="371.0119" y2="374.4502"/>
		<line fill="none" id="t1 p1086" stroke="#7A7A7A" stroke-width="2" x1="296.0256" x2="309.2558" y1="374.4502" y2="378.9922"/>
		<line fill="none" id="t1 p1087" stroke="#7A7A7A" stroke-width="2" x1="309.2558" x2="323.4226" y1="378.9922" y2="385.9537"/>
		<line fill="none" id="t1 p1088" stroke="#7A7A7A" stroke-width="2" x1="323.4226" x2="325.1495" y1="385.9537" y2="388.7978"/>
		<line fill="none" id="t1 p1089" stroke="#7A7A7A" stroke-width="2" x1="325.1495" x2="329.5401" y1="388.7978" y2="392.0238"/>
		<line fill="none" id="t1 p1090" stroke="#7A7A7A" stroke-width="2" x1="329.5401" x2="335.0429" y1="392.0238" y2="396.6931"/>
		<line fill="none" id="t1 p1091" stroke="#7A7A7A" stroke-width="2" x1="335.0429" x2="334.8965" y1="396.6931" y2="399.7494"/>
		<line fill="none" id="t1 p1092" stroke="#7A7A7A" stroke-width="2" x1="334.8965" x2="338.0285" y1="399.7494" y2="410.0644"/>
		<line fill="none" id="t1 p1093" stroke="#7A7A7A" stroke-width="2" x1="338.0285" x2="340.6042" y1="410.0644" y2="412.1868"/>
		<line fill="none" id="t1 p1094" stroke="#7A7A7A" stroke-width="2" x1="340.6042" x2="346.1656" y1="412.1868" y2="419.0634"/>
		<line fill="none" id="t1 p1095" stroke="#7A7A7A" stroke-width="2" x1="346.1656" x2="350.6439" y1="419.0634" y2="425.0911"/>
		<line fill="none" id="t1 p1096" stroke="#7A7A7A" stroke-width="2" x1="350.6439" x2="351.5513" y1="425.0911" y2="426.4919"/>
		<line fill="none" id="t1 p1097" stroke="#7A7A7A" stroke-width="2" x1="351.5513" x2="350.1756" y1="426.4919" y2="432.3922"/>
		<line fill="none" id="t1 p1098" stroke="#7A7A7A" stroke-width="2" x1="350.1756" x2="346.9266" y1="432.3922" y2="438.5047"/>
		<line fill="none" id="t1 p1099" stroke="#7A7A7A" stroke-width="2" x1="346.9266" x2="343.5898" y1="438.5047" y2="445.7634"/>
		<line fill="none" id="t1 p1100" stroke="#7A7A7A" stroke-width="2" x1="343.5898" x2="340.2823" y1="445.7634" y2="453.7861"/>
		<line fill="none" id="t1 p1101" stroke="#7A7A7A" stroke-width="2" x1="340.2823" x2="338.3504" y1="453.7861" y2="459.3893"/>
		<line fill="none" id="t1 p1102" stroke="#7A7A7A" stroke-width="2" x1="338.3504" x2="339.3456" y1="459.3893" y2="468.2610"/>
		<line fill="none" id="t1 p1103" stroke="#7A7A7A" stroke-width="2" x1="339.3456" x2="342.8288" y1="468.2610" y2="473.7793"/>
		<line fill="none" id="t1 p1104" stroke="#7A7A7A" stroke-width="2" x1="342.8288" x2="347.5413" y1="473.7793" y2="480.4437"/>
		<line fill="none" id="t1 p1105" stroke="#7A7A7A" stroke-width="2" x1="347.5413" x2="348.7999" y1="480.4437" y2="486.5987"/>
		<line fill="none" id="t1 p1106" stroke="#7A7A7A" stroke-width="2" x1="348.7999" x2="349.9415" y1="486.5987" y2="492.9235"/>
		<line fill="none" id="t1 p1107" stroke="#7A7A7A" stroke-width="2" x1="349.9415" x2="350.9659" y1="492.9235" y2="499.5454"/>
		<line fill="none" id="t1 p1108" stroke="#7A7A7A" stroke-width="2" x1="350.9659" x2="350.8196" y1="499.5454" y2="505.7853"/>
		<line fill="none" id="t1 p1109" stroke="#7A7A7A" stroke-width="2" x1="350.8196" x2="348.9463" y1="505.7853" y2="512.1101"/>
		<line fill="none" id="t1 p1110" stroke="#7A7A7A" stroke-width="2" x1="348.9463" x2="348.0682" y1="512.1101" y2="513.5109"/>
		<line fill="none" id="t1 p1111" stroke="#7A7A7A" stroke-width="2" x1="348.0682" x2="343.0337" y1="513.5109" y2="518.9018"/>
		<line fill="none" id="t1 p1112" stroke="#7A7A7A" stroke-width="2" x1="343.0337" x2="336.7406" y1="518.9018" y2="524.2928"/>
		<line fill="none" id="t1 p1113" stroke="#7A7A7A" stroke-width="2" x1="336.7406" x2="332.1451" y1="524.2928" y2="529.7686"/>
		<line fill="none" id="t1 p1114" stroke="#7A7A7A" stroke-width="2" x1="332.1451" x2="327.2277" y1="529.7686" y2="534.3106"/>
		<line fill="none" id="t1 p1115" stroke="#7A7A7A" stroke-width="2" x1="327.2277" x2="320.4077" y1="534.3106" y2="537.7064"/>
		<line fill="none" id="t1 p1116" stroke="#7A7A7A" stroke-width="2" x1="320.4077" x2="315.4903" y1="537.7064" y2="540.3807"/>
		<line fill="none" id="t1 p1117" stroke="#7A7A7A" stroke-width="2" x1="315.4903" x2="308.4069" y1="540.3807" y2="545.6867"/>
		<line fill="none" id="t1 p1118" stroke="#7A7A7A" stroke-width="2" x1="308.4069" x2="307.1776" y1="545.6867" y2="546.7904"/>
		<line fill="none" id="t1 p1119" stroke="#7A7A7A" stroke-width="2" x1="307.1776" x2="300.7381" y1="546.7904" y2="553.4972"/>
		<line fill="none" id="t1 p1120" stroke="#7A7A7A" stroke-width="2" x1="300.7381" x2="297.8696" y1="553.4972" y2="555.8743"/>
		<line fill="none" id="t1 p1121" stroke="#7A7A7A" stroke-width="2" x1="297.8696" x2="296.8159" y1="555.8743" y2="556.3837"/>
		<line fill="none" id="t1 p1122" stroke="#7A7A7A" stroke-width="2" x1="296.8159" x2="292.1912" y1="556.3837" y2="558.2090"/>
		<line fill="none" id="t1 p1123" stroke="#7A7A7A" stroke-width="2" x1="292.1912" x2="287.8592" y1="558.2090" y2="558.6334"/>
		<line fill="none" id="t1 p1124" stroke="#7A7A7A" stroke-width="2" x1="287.8592" x2="285.7517" y1="558.6334" y2="559.7795"/>
		<line fill="none" id="t1 p1125" stroke="#7A7A7A" stroke-width="2" x1="285.7517" x2="286.7762" y1="559.7795" y2="564.1093"/>
		<line fill="none" id="t1 p1126" stroke="#7A7A7A" stroke-width="2" x1="286.7762" x2="287.8885" y1="564.1093" y2="568.8635"/>
		<line fill="none" id="t1 p1127" stroke="#7A7A7A" stroke-width="2" x1="287.8885" x2="288.9715" y1="568.8635" y2="570.5614"/>
		<line fill="none" id="t1 p1128" stroke="#7A7A7A" stroke-width="2" x1="288.9715" x2="289.8788" y1="570.5614" y2="573.5752"/>
		<line fill="none" id="t1 p1129" stroke="#7A7A7A" stroke-width="2" x1="289.8788" x2="291.2253" y1="573.5752" y2="575.9099"/>
		<line fill="none" id="t1 p1130" stroke="#7A7A7A" stroke-width="2" x1="291.2253" x2="294.8548" y1="575.9099" y2="578.8813"/>
		<line fill="none" id="t1 p1131" stroke="#7A7A7A" stroke-width="2" x1="294.8548" x2="296.1427" y1="578.8813" y2="579.1784"/>
		<line fill="none" id="t1 p1132" stroke="#7A7A7A" stroke-width="2" x1="296.1427" x2="302.2309" y1="579.1784" y2="580.7066"/>
		<line fill="none" id="t1 p1133" stroke="#7A7A7A" stroke-width="2" x1="302.2309" x2="306.8263" y1="580.7066" y2="581.3857"/>
		<line fill="none" id="t1 p1134" stroke="#7A7A7A" stroke-width="2" x1="306.8263" x2="311.0998" y1="581.3857" y2="579.8151"/>
		<line fill="none" id="t1 p1135" stroke="#7A7A7A" stroke-width="2" x1="311.0998" x2="315.1684" y1="579.8151" y2="576.4617"/>
		<line fill="none" id="t1 p1136" stroke="#7A7A7A" stroke-width="2" x1="315.1684" x2="317.7149" y1="576.4617" y2="574.0422"/>
		<line fill="none" id="t1 p1137" stroke="#7A7A7A" stroke-width="2" x1="317.7149" x2="320.7590" y1="574.0422" y2="573.0234"/>
		<line fill="none" id="t1 p1138" stroke="#7A7A7A" stroke-width="2" x1="320.7590" x2="321.3737" y1="573.0234" y2="570.3067"/>
		<line fill="none" id="t1 p1139" stroke="#7A7A7A" stroke-width="2" x1="321.3737" x2="322.0176" y1="570.3067" y2="569.2880"/>
		<line fill="none" id="t1 p1140" stroke="#7A7A7A" stroke-width="2" x1="322.0176" x2="326.0276" y1="569.2880" y2="565.1280"/>
		<line fill="none" id="t1 p1141" stroke="#7A7A7A" stroke-width="2" x1="326.0276" x2="329.8620" y1="565.1280" y2="568.8635"/>
		<line fill="none" id="t1 p1142" stroke="#7A7A7A" stroke-width="2" x1="329.8620" x2="330.7109" y1="568.8635" y2="570.1794"/>
		<line fill="none" id="t1 p1143" stroke="#7A7A7A" stroke-width="2" x1="330.7109" x2="333.4623" y1="570.1794" y2="574.0422"/>
		<line fill="none" id="t1 p1144" stroke="#7A7A7A" stroke-width="2" x1="333.4623" x2="337.6187" y1="574.0422" y2="574.6365"/>
		<line fill="none" id="t1 p1145" stroke="#7A7A7A" stroke-width="2" x1="337.6187" x2="338.2041" y1="574.6365" y2="570.9010"/>
		<line fill="none" id="t1 p1146" stroke="#7A7A7A" stroke-width="2" x1="338.2041" x2="338.3504" y1="570.9010" y2="569.5427"/>
		<line fill="none" id="t1 p1147" stroke="#7A7A7A" stroke-width="2" x1="338.3504" x2="340.5457" y1="569.5427" y2="564.8309"/>
		<line fill="none" id="t1 p1148" stroke="#7A7A7A" stroke-width="2" x1="340.5457" x2="340.9555" y1="564.8309" y2="565.0007"/>
		<line fill="none" id="t1 p1149" stroke="#7A7A7A" stroke-width="2" x1="340.9555" x2="345.0533" y1="565.0007" y2="566.4015"/>
		<line fill="none" id="t1 p1150" stroke="#7A7A7A" stroke-width="2" x1="345.0533" x2="351.4635" y1="566.4015" y2="567.6749"/>
		<line fill="none" id="t1 p1151" stroke="#7A7A7A" stroke-width="2" x1="351.4635" x2="356.7322" y1="567.6749" y2="568.9059"/>
		<line fill="none" id="t1 p1152" stroke="#7A7A7A" stroke-width="2" x1="356.7322" x2="362.4691" y1="568.9059" y2="569.5851"/>
		<line fill="none" id="t1 p1153" stroke="#7A7A7A" stroke-width="2" x1="362.4691" x2="367.2987" y1="569.5851" y2="568.9484"/>
		<line fill="none" id="t1 p1154" stroke="#7A7A7A" stroke-width="2" x1="367.2987" x2="370.6648" y1="568.9484" y2="572.1744"/>
		<line fill="none" id="t1 p1155" stroke="#7A7A7A" stroke-width="2" x1="370.6648" x2="371.0453" y1="572.1744" y2="573.4054"/>
		<line fill="none" id="t1 p1156" stroke="#7A7A7A" stroke-width="2" x1="371.0453" x2="369.9623" y1="573.4054" y2="579.2633"/>
		<line fill="none" id="t1 p1157" stroke="#7A7A7A" stroke-width="2" x1="369.9623" x2="365.9230" y1="579.2633" y2="585.4608"/>
		<line fill="none" id="t1 p1158" stroke="#7A7A7A" stroke-width="2" x1="365.9230" x2="363.9912" y1="585.4608" y2="590.1725"/>
		<line fill="none" id="t1 p1159" stroke="#7A7A7A" stroke-width="2" x1="363.9912" x2="362.6448" y1="590.1725" y2="593.7806"/>
		<line fill="none" id="t1 p1160" stroke="#7A7A7A" stroke-width="2" x1="362.6448" x2="362.9960" y1="593.7806" y2="600.6997"/>
		<line fill="none" id="t1 p1161" stroke="#7A7A7A" stroke-width="2" x1="362.9960" x2="363.6985" y1="600.6997" y2="604.5201"/>
		<line fill="none" id="t1 p1162" stroke="#7A7A7A" stroke-width="2" x1="363.6985" x2="364.3132" y1="604.5201" y2="606.5151"/>
		<line fill="none" id="t1 p1163" stroke="#7A7A7A" stroke-width="2" x1="364.3132" x2="367.1231" y1="606.5151" y2="607.4065"/>
		<line fill="none" id="t1 p1164" stroke="#7A7A7A" stroke-width="2" x1="367.1231" x2="371.6893" y1="607.4065" y2="604.7748"/>
		<line fill="none" id="t1 p1165" stroke="#7A7A7A" stroke-width="2" x1="371.6893" x2="378.2166" y1="604.7748" y2="601.2091"/>
		<line fill="none" id="t1 p1166" stroke="#7A7A7A" stroke-width="2" x1="378.2166" x2="379.1825" y1="601.2091" y2="600.6997"/>
		<line fill="none" id="t1 p1167" stroke="#7A7A7A" stroke-width="2" x1="379.1825" x2="382.8120" y1="600.6997" y2="597.8557"/>
		<line fill="none" id="t1 p1168" stroke="#7A7A7A" stroke-width="2" x1="382.8120" x2="383.2218" y1="597.8557" y2="596.9218"/>
		<line fill="none" id="t1 p1169" stroke="#7A7A7A" stroke-width="2" x1="383.2218" x2="386.5586" y1="596.9218" y2="593.5684"/>
		<line fill="none" id="t1 p1170" stroke="#7A7A7A" stroke-width="2" x1="386.5586" x2="389.2222" y1="593.5684" y2="591.0215"/>
		<line fill="none" id="t1 p1171" stroke="#7A7A7A" stroke-width="2" x1="389.2222" x2="393.5542" y1="591.0215" y2="584.2298"/>
		<line fill="none" id="t1 p1172" stroke="#7A7A7A" stroke-width="2" x1="393.5542" x2="396.8617" y1="584.2298" y2="579.8151"/>
		<line fill="none" id="t1 p1173" stroke="#7A7A7A" stroke-width="2" x1="396.8617" x2="401.1059" y1="579.8151" y2="579.0935"/>
		<line fill="none" id="t1 p1174" stroke="#7A7A7A" stroke-width="2" x1="401.1059" x2="407.1356" y1="579.0935" y2="575.8250"/>
		<line fill="none" id="t1 p1175" stroke="#7A7A7A" stroke-width="2" x1="407.1356" x2="410.8529" y1="575.8250" y2="575.1883"/>
		<line fill="none" id="t1 p1176" stroke="#7A7A7A" stroke-width="2" x1="410.8529" x2="413.6629" y1="575.1883" y2="577.2258"/>
		<line fill="none" id="t1 p1177" stroke="#7A7A7A" stroke-width="2" x1="413.6629" x2="417.0290" y1="577.2258" y2="578.2446"/>
		<line fill="none" id="t1 p1178" stroke="#7A7A7A" stroke-width="2" x1="417.0290" x2="418.6095" y1="578.2446" y2="580.1547"/>
		<line fill="none" id="t1 p1179" stroke="#7A7A7A" stroke-width="2" x1="418.6095" x2="420.4536" y1="580.1547" y2="583.3808"/>
		<line fill="none" id="t1 p1180" stroke="#7A7A7A" stroke-width="2" x1="420.4536" x2="420.8048" y1="583.3808" y2="588.8566"/>
		<line fill="none" id="t1 p1181" stroke="#7A7A7A" stroke-width="2" x1="420.8048" x2="419.9853" y1="588.8566" y2="593.7806"/>
		<line fill="none" id="t1 p1182" stroke="#7A7A7A" stroke-width="2" x1="419.9853" x2="419.6925" y1="593.7806" y2="594.7994"/>
		<line fill="none" id="t1 p1183" stroke="#7A7A7A" stroke-width="2" x1="419.6925" x2="418.3461" y1="594.7994" y2="598.7046"/>
		<line fill="none" id="t1 p1184" stroke="#7A7A7A" stroke-width="2" x1="418.3461" x2="419.5462" y1="598.7046" y2="604.0531"/>
		<line fill="none" id="t1 p1185" stroke="#7A7A7A" stroke-width="2" x1="419.5462" x2="417.4973" y1="604.0531" y2="610.8024"/>
		<line fill="none" id="t1 p1186" stroke="#7A7A7A" stroke-width="2" x1="417.4973" x2="416.6192" y1="610.8024" y2="613.5616"/>
		<line fill="none" id="t1 p1187" stroke="#7A7A7A" stroke-width="2" x1="416.6192" x2="416.3850" y1="613.5616" y2="614.5379"/>
		<line fill="none" id="t1 p1188" stroke="#7A7A7A" stroke-width="2" x1="416.3850" x2="415.3313" y1="614.5379" y2="616.3207"/>
		<line fill="none" id="t1 p1189" stroke="#7A7A7A" stroke-width="2" x1="415.3313" x2="413.3116" y1="616.3207" y2="614.7077"/>
		<line fill="none" id="t1 p1190" stroke="#7A7A7A" stroke-width="2" x1="413.3116" x2="410.6480" y1="614.7077" y2="612.2881"/>
		<line fill="none" id="t1 p1191" stroke="#7A7A7A" stroke-width="2" x1="410.6480" x2="409.0674" y1="612.2881" y2="610.9722"/>
		<line fill="none" id="t1 p1192" stroke="#7A7A7A" stroke-width="2" x1="409.0674" x2="407.9844" y1="610.9722" y2="607.5339"/>
		<line fill="none" id="t1 p1193" stroke="#7A7A7A" stroke-width="2" x1="407.9844" x2="410.9993" y1="607.5339" y2="601.6336"/>
		<line fill="none" id="t1 p1194" stroke="#7A7A7A" stroke-width="2" x1="410.9993" x2="412.2872" y1="601.6336" y2="595.5210"/>
		<line fill="none" id="t1 p1195" stroke="#7A7A7A" stroke-width="2" x1="412.2872" x2="414.1605" y1="595.5210" y2="591.1488"/>
		<line fill="none" id="t1 p1196" stroke="#7A7A7A" stroke-width="2" x1="414.1605" x2="414.4239" y1="591.1488" y2="589.1113"/>
		<line fill="none" id="t1 p1197" stroke="#7A7A7A" stroke-width="2" x1="414.4239" x2="412.9897" y1="589.1113" y2="588.2199"/>
		<line fill="none" id="t1 p1198" stroke="#7A7A7A" stroke-width="2" x1="412.9897" x2="410.3553" y1="588.2199" y2="588.3048"/>
		<line fill="none" id="t1 p1199" stroke="#7A7A7A" stroke-width="2" x1="410.3553" x2="406.3746" y1="588.3048" y2="592.1252"/>
		<line fill="none" id="t1 p1200" stroke="#7A7A7A" stroke-width="2" x1="406.3746" x2="405.2623" y1="592.1252" y2="592.0827"/>
		<line fill="none" id="t1 p1201" stroke="#7A7A7A" stroke-width="2" x1="405.2623" x2="401.7206" y1="592.0827" y2="592.0827"/>
		<line fill="none" id="t1 p1202" stroke="#7A7A7A" stroke-width="2" x1="401.7206" x2="401.1937" y1="592.0827" y2="595.0116"/>
		<line fill="none" id="t1 p1203" stroke="#7A7A7A" stroke-width="2" x1="401.1937" x2="402.1889" y1="595.0116" y2="599.8083"/>
		<line fill="none" id="t1 p1204" stroke="#7A7A7A" stroke-width="2" x1="402.1889" x2="397.9155" y1="599.8083" y2="600.5724"/>
		<line fill="none" id="t1 p1205" stroke="#7A7A7A" stroke-width="2" x1="397.9155" x2="394.2274" y1="600.5724" y2="603.6286"/>
		<line fill="none" id="t1 p1206" stroke="#7A7A7A" stroke-width="2" x1="394.2274" x2="391.4760" y1="603.6286" y2="609.7837"/>
		<line fill="none" id="t1 p1207" stroke="#7A7A7A" stroke-width="2" x1="391.4760" x2="386.9976" y1="609.7837" y2="612.6277"/>
		<line fill="none" id="t1 p1208" stroke="#7A7A7A" stroke-width="2" x1="386.9976" x2="384.3633" y1="612.6277" y2="616.1933"/>
		<line fill="none" id="t1 p1209" stroke="#7A7A7A" stroke-width="2" x1="384.3633" x2="384.1584" y1="616.1933" y2="619.9712"/>
		<line fill="none" id="t1 p1210" stroke="#7A7A7A" stroke-width="2" x1="384.1584" x2="386.0317" y1="619.9712" y2="622.0512"/>
		<line fill="none" id="t1 p1211" stroke="#7A7A7A" stroke-width="2" x1="386.0317" x2="388.4026" y1="622.0512" y2="626.5932"/>
		<line fill="none" id="t1 p1212" stroke="#7A7A7A" stroke-width="2" x1="388.4026" x2="389.2807" y1="626.5932" y2="632.8331"/>
		<line fill="none" id="t1 p1213" stroke="#7A7A7A" stroke-width="2" x1="389.2807" x2="388.2270" y1="632.8331" y2="635.5498"/>
		<line fill="none" id="t1 p1214" stroke="#7A7A7A" stroke-width="2" x1="388.2270" x2="387.7879" y1="635.5498" y2="641.3652"/>
		<line fill="none" id="t1 p1215" stroke="#7A7A7A" stroke-width="2" x1="387.7879" x2="388.5197" y1="641.3652" y2="646.5863"/>
		<line fill="none" id="t1 p1216" stroke="#7A7A7A" stroke-width="2" x1="388.5197" x2="389.3685" y1="646.5863" y2="648.0296"/>
		<line fill="none" id="t1 p1217" stroke="#7A7A7A" stroke-width="2" x1="389.3685" x2="392.9688" y1="648.0296" y2="650.4916"/>
		<line fill="none" id="t1 p1218" stroke="#7A7A7A" stroke-width="2" x1="392.9688" x2="396.2763" y1="650.4916" y2="653.7177"/>
		<line fill="none" id="t1 p1219" stroke="#7A7A7A" stroke-width="2" x1="396.2763" x2="398.6472" y1="653.7177" y2="655.8401"/>
		<line fill="none" id="t1 p1220" stroke="#7A7A7A" stroke-width="2" x1="398.6472" x2="402.3353" y1="655.8401" y2="658.9388"/>
		<line fill="none" id="t1 p1221" stroke="#7A7A7A" stroke-width="2" x1="402.3353" x2="409.0674" y1="658.9388" y2="660.0000"/>
		<line fill="none" id="t1 p1222" stroke="#7A7A7A" stroke-width="2" x1="409.0674" x2="409.3601" y1="660.0000" y2="657.5380"/>
		<line fill="none" id="t1 p1223" stroke="#7A7A7A" stroke-width="2" x1="409.3601" x2="409.0967" y1="657.5380" y2="654.9062"/>
		<line fill="none" id="t1 p1224" stroke="#7A7A7A" stroke-width="2" x1="409.0967" x2="408.9504" y1="654.9062" y2="653.1234"/>
		<line fill="none" id="t1 p1225" stroke="#7A7A7A" stroke-width="2" x1="408.9504" x2="412.1701" y1="653.1234" y2="647.2231"/>
		<line fill="none" id="t1 p1226" stroke="#7A7A7A" stroke-width="2" x1="412.1701" x2="413.1360" y1="647.2231" y2="646.6712"/>
		<line fill="none" id="t1 p1227" stroke="#7A7A7A" stroke-width="2" x1="413.1360" x2="416.9997" y1="646.6712" y2="644.5064"/>
		<line fill="none" id="t1 p1228" stroke="#7A7A7A" stroke-width="2" x1="416.9997" x2="421.0975" y1="644.5064" y2="642.5537"/>
		<line fill="none" id="t1 p1229" stroke="#7A7A7A" stroke-width="2" x1="421.0975" x2="424.3173" y1="642.5537" y2="643.6574"/>
		<line fill="none" id="t1 p1230" stroke="#7A7A7A" stroke-width="2" x1="424.3173" x2="427.6541" y1="643.6574" y2="645.2280"/>
		<line fill="none" id="t1 p1231" stroke="#7A7A7A" stroke-width="2" x1="427.6541" x2="434.5326" y1="645.2280" y2="645.8647"/>
		<line fill="none" id="t1 p1232" stroke="#7A7A7A" stroke-width="2" x1="434.5326" x2="439.8012" y1="645.8647" y2="646.3741"/>
		<line fill="none" id="t1 p1233" stroke="#7A7A7A" stroke-width="2" x1="439.8012" x2="443.8405" y1="646.3741" y2="648.8785"/>
		<line fill="none" id="t1 p1234" stroke="#7A7A7A" stroke-width="2" x1="443.8405" x2="444.7772" y1="648.8785" y2="649.5153"/>
		<line fill="none" id="t1 p1235" stroke="#7A7A7A" stroke-width="2" x1="444.7772" x2="447.2066" y1="649.5153" y2="651.6801"/>
		<line fill="none" id="t1 p1236" stroke="#7A7A7A" stroke-width="2" x1="447.2066" x2="453.9681" y1="651.6801" y2="652.7838"/>
		<line fill="none" id="t1 p1237" stroke="#7A7A7A" stroke-width="2" x1="453.9681" x2="455.7243" y1="652.7838" y2="652.7838"/>
		<line fill="none" id="t1 p1238" stroke="#7A7A7A" stroke-width="2" x1="455.7243" x2="460.7880" y1="652.7838" y2="651.5528"/>
		<line fill="none" id="t1 p1239" stroke="#7A7A7A" stroke-width="2" x1="460.7880" x2="465.4713" y1="651.5528" y2="648.0720"/>
		<line fill="none" id="t1 p1240" stroke="#7A7A7A" stroke-width="2" x1="465.4713" x2="470.7107" y1="648.0720" y2="648.4541"/>
		<line fill="none" id="t1 p1241" stroke="#7A7A7A" stroke-width="2" x1="470.7107" x2="473.5206" y1="648.4541" y2="647.3504"/>
		<line fill="none" id="t1 p1242" stroke="#7A7A7A" stroke-width="2" x1="473.5206" x2="473.2572" y1="647.3504" y2="646.2892"/>
		<line fill="none" id="t1 p1243" stroke="#7A7A7A" stroke-width="2" x1="473.2572" x2="471.2082" y1="646.2892" y2="640.8983"/>
		<line fill="none" id="t1 p1244" stroke="#7A7A7A" stroke-width="2" x1="471.2082" x2="470.5350" y1="640.8983" y2="639.1154"/>
		<line fill="none" id="t1 p1245" stroke="#7A7A7A" stroke-width="2" x1="470.5350" x2="466.9641" y1="639.1154" y2="638.5636"/>
		<line fill="none" id="t1 p1246" stroke="#7A7A7A" stroke-width="2" x1="466.9641" x2="464.2419" y1="638.5636" y2="638.6061"/>
		<line fill="none" id="t1 p1247" stroke="#7A7A7A" stroke-width="2" x1="464.2419" x2="460.5246" y1="638.6061" y2="637.9269"/>
		<line fill="none" id="t1 p1248" stroke="#7A7A7A" stroke-width="2" x1="460.5246" x2="457.8317" y1="637.9269" y2="638.9032"/>
		<line fill="none" id="t1 p1249" stroke="#7A7A7A" stroke-width="2" x1="457.8317" x2="454.7876" y1="638.9032" y2="639.0305"/>
		<line fill="none" id="t1 p1250" stroke="#7A7A7A" stroke-width="2" x1="454.7876" x2="453.4119" y1="639.0305" y2="639.2003"/>
		<line fill="none" id="t1 p1251" stroke="#7A7A7A" stroke-width="2" x1="453.4119" x2="451.2752" y1="639.2003" y2="639.5824"/>
		<line fill="none" id="t1 p1252" stroke="#7A7A7A" stroke-width="2" x1="451.2752" x2="449.0506" y1="639.5824" y2="638.5636"/>
		<line fill="none" id="t1 p1253" stroke="#7A7A7A" stroke-width="2" x1="449.0506" x2="447.2944" y1="638.5636" y2="638.1391"/>
		<line fill="none" id="t1 p1254" stroke="#7A7A7A" stroke-width="2" x1="447.2944" x2="444.6308" y1="638.1391" y2="639.5824"/>
		<line fill="none" id="t1 p1255" stroke="#7A7A7A" stroke-width="2" x1="444.6308" x2="444.6308" y1="639.5824" y2="641.5350"/>
		<line fill="none" id="t1 p1256" stroke="#7A7A7A" stroke-width="2" x1="444.6308" x2="444.0747" y1="641.5350" y2="642.6386"/>
		<line fill="none" id="t1 p1257" stroke="#7A7A7A" stroke-width="2" x1="444.0747" x2="441.0891" y1="642.6386" y2="643.5301"/>
		<line fill="none" id="t1 p1258" stroke="#7A7A7A" stroke-width="2" x1="441.0891" x2="440.0061" y1="643.5301" y2="641.9595"/>
		<line fill="none" id="t1 p1259" stroke="#7A7A7A" stroke-width="2" x1="440.0061" x2="438.6012" y1="641.9595" y2="638.6485"/>
		<line fill="none" id="t1 p1260" stroke="#7A7A7A" stroke-width="2" x1="438.6012" x2="435.4107" y1="638.6485" y2="638.9456"/>
		<line fill="none" id="t1 p1261" stroke="#7A7A7A" stroke-width="2" x1="435.4107" x2="434.5911" y1="638.9456" y2="639.2428"/>
		<line fill="none" id="t1 p1262" stroke="#7A7A7A" stroke-width="2" x1="434.5911" x2="430.2884" y1="639.2428" y2="639.7097"/>
		<line fill="none" id="t1 p1263" stroke="#7A7A7A" stroke-width="2" x1="430.2884" x2="426.9808" y1="639.7097" y2="638.1391"/>
		<line fill="none" id="t1 p1264" stroke="#7A7A7A" stroke-width="2" x1="426.9808" x2="425.3417" y1="638.1391" y2="636.2714"/>
		<line fill="none" id="t1 p1265" stroke="#7A7A7A" stroke-width="2" x1="425.3417" x2="423.9367" y1="636.2714" y2="633.4698"/>
		<line fill="none" id="t1 p1266" stroke="#7A7A7A" stroke-width="2" x1="423.9367" x2="425.1368" y1="633.4698" y2="628.7580"/>
		<line fill="none" id="t1 p1267" stroke="#7A7A7A" stroke-width="2" x1="425.1368" x2="425.9564" y1="628.7580" y2="626.3809"/>
		<line fill="none" id="t1 p1268" stroke="#7A7A7A" stroke-width="2" x1="425.9564" x2="428.4736" y1="626.3809" y2="622.2210"/>
		<line fill="none" id="t1 p1269" stroke="#7A7A7A" stroke-width="2" x1="428.4736" x2="433.8594" y1="622.2210" y2="618.9100"/>
		<line fill="none" id="t1 p1270" stroke="#7A7A7A" stroke-width="2" x1="433.8594" x2="436.8742" y1="618.9100" y2="618.6553"/>
		<line fill="none" id="t1 p1271" stroke="#7A7A7A" stroke-width="2" x1="436.8742" x2="441.0306" y1="618.6553" y2="618.4007"/>
		<line fill="none" id="t1 p1272" stroke="#7A7A7A" stroke-width="2" x1="441.0306" x2="441.6453" y1="618.4007" y2="618.9949"/>
		<line fill="none" id="t1 p1273" stroke="#7A7A7A" stroke-width="2" x1="441.6453" x2="446.1822" y1="618.9949" y2="622.6879"/>
		<line fill="none" id="t1 p1274" stroke="#7A7A7A" stroke-width="2" x1="446.1822" x2="454.0851" y1="622.6879" y2="623.3247"/>
		<line fill="none" id="t1 p1275" stroke="#7A7A7A" stroke-width="2" x1="454.0851" x2="461.4905" y1="623.3247" y2="626.3809"/>
		<line fill="none" id="t1 p1276" stroke="#7A7A7A" stroke-width="2" x1="461.4905" x2="464.5639" y1="626.3809" y2="627.6968"/>
		<line fill="none" id="t1 p1277" stroke="#7A7A7A" stroke-width="2" x1="464.5639" x2="468.9837" y1="627.6968" y2="624.3010"/>
		<line fill="none" id="t1 p1278" stroke="#7A7A7A" stroke-width="2" x1="468.9837" x2="469.3935" y1="624.3010" y2="622.4332"/>
		<line fill="none" id="t1 p1279" stroke="#7A7A7A" stroke-width="2" x1="469.3935" x2="466.6421" y1="622.4332" y2="618.0611"/>
		<line fill="none" id="t1 p1280" stroke="#7A7A7A" stroke-width="2" x1="466.6421" x2="466.7006" y1="618.0611" y2="615.6415"/>
		<line fill="none" id="t1 p1281" stroke="#7A7A7A" stroke-width="2" x1="466.7006" x2="467.7836" y1="615.6415" y2="614.1983"/>
		<line fill="none" id="t1 p1282" stroke="#7A7A7A" stroke-width="2" x1="467.7836" x2="472.9937" y1="614.1983" y2="611.0995"/>
		<line fill="none" id="t1 p1283" stroke="#7A7A7A" stroke-width="2" x1="472.9937" x2="475.7744" y1="611.0995" y2="603.6711"/>
		<line fill="none" id="t1 p1284" stroke="#7A7A7A" stroke-width="2" x1="475.7744" x2="479.1405" y1="603.6711" y2="598.7046"/>
		<line fill="none" id="t1 p1285" stroke="#7A7A7A" stroke-width="2" x1="479.1405" x2="484.0286" y1="598.7046" y2="599.2989"/>
		<line fill="none" id="t1 p1286" stroke="#7A7A7A" stroke-width="2" x1="484.0286" x2="489.9412" y1="599.2989" y2="597.0067"/>
		<line fill="none" id="t1 p1287" stroke="#7A7A7A" stroke-width="2" x1="489.9412" x2="492.2829" y1="597.0067" y2="596.1153"/>
		<line fill="none" id="t1 p1288" stroke="#7A7A7A" stroke-width="2" x1="492.2829" x2="497.3173" y1="596.1153" y2="600.6573"/>
		<line fill="none" id="t1 p1289" stroke="#7A7A7A" stroke-width="2" x1="497.3173" x2="504.1373" y1="600.6573" y2="602.1854"/>
		<line fill="none" id="t1 p1290" stroke="#7A7A7A" stroke-width="2" x1="504.1373" x2="506.5960" y1="602.1854" y2="600.2752"/>
		<line fill="none" id="t1 p1291" stroke="#7A7A7A" stroke-width="2" x1="506.5960" x2="511.6891" y1="600.2752" y2="595.5635"/>
		<line fill="none" id="t1 p1292" stroke="#7A7A7A" stroke-width="2" x1="511.6891" x2="518.6554" y1="595.5635" y2="589.4509"/>
		<line fill="none" id="t1 p1293" stroke="#7A7A7A" stroke-width="2" x1="518.6554" x2="520.0018" y1="589.4509" y2="588.9840"/>
		<line fill="none" id="t1 p1294" stroke="#7A7A7A" stroke-width="2" x1="520.0018" x2="527.3194" y1="588.9840" y2="589.9603"/>
		<line fill="none" id="t1 p1295" stroke="#7A7A7A" stroke-width="2" x1="527.3194" x2="528.9878" y1="589.9603" y2="591.1913"/>
		<line fill="none" id="t1 p1296" stroke="#7A7A7A" stroke-width="2" x1="528.9878" x2="529.1927" y1="591.1913" y2="591.1488"/>
		<line fill="none" id="t1 p1297" stroke="#7A7A7A" stroke-width="2" x1="529.1927" x2="530.1001" y1="591.1488" y2="589.3236"/>
		<line fill="none" id="t1 p1298" stroke="#7A7A7A" stroke-width="2" x1="530.1001" x2="530.1586" y1="589.3236" y2="588.6868"/>
		<line fill="none" id="t1 p1299" stroke="#7A7A7A" stroke-width="2" x1="530.1586" x2="528.9000" y1="588.6868" y2="586.0975"/>
		<line fill="none" id="t1 p1300" stroke="#7A7A7A" stroke-width="2" x1="528.9000" x2="528.8122" y1="586.0975" y2="582.4894"/>
		<line fill="none" id="t1 p1301" stroke="#7A7A7A" stroke-width="2" x1="528.8122" x2="528.9293" y1="582.4894" y2="578.5417"/>
		<line fill="none" id="t1 p1302" stroke="#7A7A7A" stroke-width="2" x1="528.9293" x2="527.2901" y1="578.5417" y2="574.2120"/>
		<line fill="none" id="t1 p1303" stroke="#7A7A7A" stroke-width="2" x1="527.2901" x2="525.7681" y1="574.2120" y2="572.5989"/>
		<line fill="none" id="t1 p1304" stroke="#7A7A7A" stroke-width="2" x1="525.7681" x2="523.4557" y1="572.5989" y2="568.2692"/>
		<line fill="none" id="t1 p1305" stroke="#7A7A7A" stroke-width="2" x1="523.4557" x2="523.2508" y1="568.2692" y2="562.0293"/>
		<line fill="none" id="t1 p1306" stroke="#7A7A7A" stroke-width="2" x1="523.2508" x2="521.7873" y1="562.0293" y2="554.5584"/>
		<line fill="none" id="t1 p1307" stroke="#7A7A7A" stroke-width="2" x1="521.7873" x2="518.5383" y1="554.5584" y2="548.0214"/>
		<line fill="none" id="t1 p1308" stroke="#7A7A7A" stroke-width="2" x1="518.5383" x2="512.4208" y1="548.0214" y2="543.1823"/>
		<line fill="none" id="t1 p1309" stroke="#7A7A7A" stroke-width="2" x1="512.4208" x2="504.0202" y1="543.1823" y2="538.5129"/>
		<line fill="none" id="t1 p1310" stroke="#7A7A7A" stroke-width="2" x1="504.0202" x2="496.9954" y1="538.5129" y2="536.5603"/>
		<line fill="none" id="t1 p1311" stroke="#7A7A7A" stroke-width="2" x1="496.9954" x2="494.3025" y1="536.5603" y2="531.7637"/>
		<line fill="none" id="t1 p1312" stroke="#7A7A7A" stroke-width="2" x1="494.3025" x2="494.1269" y1="531.7637" y2="525.9907"/>
		<line fill="none" id="t1 p1313" stroke="#7A7A7A" stroke-width="2" x1="494.1269" x2="494.8586" y1="525.9907" y2="521.2365"/>
		<line fill="none" id="t1 p1314" stroke="#7A7A7A" stroke-width="2" x1="494.8586" x2="496.4685" y1="521.2365" y2="513.6382"/>
		<line fill="none" id="t1 p1315" stroke="#7A7A7A" stroke-width="2" x1="496.4685" x2="494.7123" y1="513.6382" y2="508.7142"/>
		<line fill="none" id="t1 p1316" stroke="#7A7A7A" stroke-width="2" x1="494.7123" x2="491.1999" y1="508.7142" y2="502.3894"/>
		<line fill="none" id="t1 p1317" stroke="#7A7A7A" stroke-width="2" x1="491.1999" x2="490.8486" y1="502.3894" y2="496.8711"/>
		<line fill="none" id="t1 p1318" stroke="#7A7A7A" stroke-width="2" x1="490.8486" x2="493.9513" y1="496.8711" y2="495.6826"/>
		<line fill="none" id="t1 p1319" stroke="#7A7A7A" stroke-width="2" x1="493.9513" x2="497.9027" y1="495.6826" y2="494.5365"/>
		<line fill="none" id="t1 p1320" stroke="#7A7A7A" stroke-width="2" x1="497.9027" x2="504.8983" y1="494.5365" y2="493.4753"/>
		<line fill="none" id="t1 p1321" stroke="#7A7A7A" stroke-width="2" x1="504.8983" x2="508.9669" y1="493.4753" y2="493.8998"/>
		<line fill="none" id="t1 p1322" stroke="#7A7A7A" stroke-width="2" x1="508.9669" x2="513.8551" y1="493.8998" y2="494.4091"/>
		<line fill="none" id="t1 p1323" stroke="#7A7A7A" stroke-width="2" x1="513.8551" x2="515.4357" y1="494.4091" y2="494.7912"/>
		<line fill="none" id="t1 p1324" stroke="#7A7A7A" stroke-width="2" x1="515.4357" x2="516.8114" y1="494.7912" y2="495.4704"/>
		<line fill="none" id="t1 p1325" stroke="#7A7A7A" stroke-width="2" x1="516.8114" x2="517.9529" y1="495.4704" y2="495.1308"/>
		<line fill="none" id="t1 p1326" stroke="#7A7A7A" stroke-width="2" x1="517.9529" x2="519.1530" y1="495.1308" y2="492.5839"/>
		<line fill="none" id="t1 p1327" stroke="#7A7A7A" stroke-width="2" x1="519.1530" x2="520.0018" y1="492.5839" y2="488.6362"/>
		<line fill="none" id="t1 p1328" stroke="#7A7A7A" stroke-width="2" x1="520.0018" x2="523.6606" y1="488.6362" y2="483.1603"/>
		<line fill="none" id="t1 p1329" stroke="#7A7A7A" stroke-width="2" x1="523.6606" x2="528.4609" y1="483.1603" y2="480.0616"/>
		<line fill="none" id="t1 p1330" stroke="#7A7A7A" stroke-width="2" x1="528.4609" x2="531.3880" y1="480.0616" y2="477.7270"/>
		<line fill="none" id="t1 p1331" stroke="#7A7A7A" stroke-width="2" x1="531.3880" x2="532.5002" y1="477.7270" y2="477.0478"/>
		<line fill="none" id="t1 p1332" stroke="#7A7A7A" stroke-width="2" x1="532.5002" x2="532.5295" y1="477.0478" y2="476.9629"/>
		<line fill="none" id="t1 p1333" stroke="#7A7A7A" stroke-width="2" x1="532.5295" x2="532.5588" y1="476.9629" y2="473.8642"/>
		<line fill="none" id="t1 p1334" stroke="#7A7A7A" stroke-width="2" x1="532.5588" x2="530.0415" y1="473.8642" y2="468.3883"/>
		<line fill="none" id="t1 p1335" stroke="#7A7A7A" stroke-width="2" x1="530.0415" x2="531.8856" y1="468.3883" y2="462.8701"/>
		<line fill="none" id="t1 p1336" stroke="#7A7A7A" stroke-width="2" x1="531.8856" x2="532.7344" y1="462.8701" y2="461.8088"/>
		<line fill="none" id="t1 p1337" stroke="#7A7A7A" stroke-width="2" x1="532.7344" x2="532.3539" y1="461.8088" y2="458.4554"/>
		<line fill="none" id="t1 p1338" stroke="#7A7A7A" stroke-width="2" x1="532.3539" x2="533.2613" y1="458.4554" y2="457.3942"/>
		<line fill="none" id="t1 p1339" stroke="#7A7A7A" stroke-width="2" x1="533.2613" x2="535.0760" y1="457.3942" y2="455.9934"/>
		<line fill="none" id="t1 p1340" stroke="#7A7A7A" stroke-width="2" x1="535.0760" x2="535.9541" y1="455.9934" y2="454.6775"/>
		<line fill="none" id="t1 p1341" stroke="#7A7A7A" stroke-width="2" x1="535.9541" x2="536.2761" y1="454.6775" y2="455.6963"/>
	</g>
	<g id="19-FEB-10 (t2) track" opacity="0.9">
		<line fill="none" id="t2 p1" stroke="#1800CC" stroke-width="2" x1="524.5972" x2="522.1678" y1="455.6538" y2="453.9135"/>
		<line fill="none" id="t2 p2" stroke="#00CC20" stroke-width="2" x1="522.1678" x2="516.2552" y1="453.9135" y2="452.5551"/>
		<line fill="none" id="t2 p3" stroke="#10CC00" stroke-width="2" x1="516.2552" x2="509.7865" y1="452.5551" y2="449.7111"/>
		<line fill="none" id="t2 p4" stroke="#30CC00" stroke-width="2" x1="509.7865" x2="505.2789" y1="449.7111" y2="445.2965"/>
		<line fill="none" id="t2 p5" stroke="#44CC00" stroke-width="2" x1="505.2789" x2="502.9080" y1="445.2965" y2="438.6321"/>
		<line fill="none" id="t2 p6" stroke="#60CC00" stroke-width="2" x1="502.9080" x2="501.0054" y1="438.6321" y2="431.7979"/>
		<line fill="none" id="t2 p7" stroke="#80CC00" stroke-width="2" x1="501.0054" x2="500.4493" y1="431.7979" y2="424.7939"/>
		<line fill="none" id="t2 p8" stroke="#9CCC00" stroke-width="2" x1="500.4493" x2="502.0884" y1="424.7939" y2="418.9785"/>
		<line fill="none" id="t2 p9" stroke="#88CC00" stroke-width="2" x1="502.0884" x2="501.4152" y1="418.9785" y2="411.9321"/>
		<line fill="none" id="t2 p10" stroke="#9CCC00" stroke-width="2" x1="501.4152" x2="498.8394" y1="411.9321" y2="406.3289"/>
		<line fill="none" id="t2 p11" stroke="#9CCC00" stroke-width="2" x1="498.8394" x2="494.1269" y1="406.3289" y2="401.6596"/>
		<line fill="none" id="t2 p12" stroke="#9CCC00" stroke-width="2" x1="494.1269" x2="487.9801" y1="401.6596" y2="398.9005"/>
		<line fill="none" id="t2 p13" stroke="#9CCC00" stroke-width="2" x1="487.9801" x2="482.1261" y1="398.9005" y2="397.5421"/>
		<line fill="none" id="t2 p14" stroke="#BCCC00" stroke-width="2" x1="482.1261" x2="477.3843" y1="397.5421" y2="400.4286"/>
		<line fill="none" id="t2 p15" stroke="#C8CC00" stroke-width="2" x1="477.3843" x2="473.1694" y1="400.4286" y2="405.9044"/>
		<line fill="none" id="t2 p16" stroke="#CCC000" stroke-width="2" x1="473.1694" x2="469.1008" y1="405.9044" y2="411.0407"/>
		<line fill="none" id="t2 p17" stroke="#CCB400" stroke-width="2" x1="469.1008" x2="466.2323" y1="411.0407" y2="416.5165"/>
		<line fill="none" id="t2 p18" stroke="#C8CC00" stroke-width="2" x1="466.2323" x2="464.8859" y1="416.5165" y2="423.0111"/>
		<line fill="none" id="t2 p19" stroke="#B0CC00" stroke-width="2" x1="464.8859" x2="463.2175" y1="423.0111" y2="429.2085"/>
		<line fill="none" id="t2 p20" stroke="#B0CC00" stroke-width="2" x1="463.2175" x2="460.9929" y1="429.2085" y2="435.3635"/>
		<line fill="none" id="t2 p21" stroke="#9CCC00" stroke-width="2" x1="460.9929" x2="458.3001" y1="435.3635" y2="441.6035"/>
		<line fill="none" id="t2 p22" stroke="#94CC00" stroke-width="2" x1="458.3001" x2="454.9925" y1="441.6035" y2="446.9519"/>
		<line fill="none" id="t2 p23" stroke="#88CC00" stroke-width="2" x1="454.9925" x2="455.5486" y1="446.9519" y2="453.3616"/>
		<line fill="none" id="t2 p24" stroke="#88CC00" stroke-width="2" x1="455.5486" x2="458.6806" y1="453.3616" y2="458.4554"/>
		<line fill="none" id="t2 p25" stroke="#94CC00" stroke-width="2" x1="458.6806" x2="461.6954" y1="458.4554" y2="462.7003"/>
		<line fill="none" id="t2 p26" stroke="#94CC00" stroke-width="2" x1="461.6954" x2="465.6469" y1="462.7003" y2="466.9451"/>
		<line fill="none" id="t2 p27" stroke="#94CC00" stroke-width="2" x1="465.6469" x2="472.0571" y1="466.9451" y2="469.1949"/>
		<line fill="none" id="t2 p28" stroke="#88CC00" stroke-width="2" x1="472.0571" x2="478.4380" y1="469.1949" y2="470.5532"/>
		<line fill="none" id="t2 p29" stroke="#80CC00" stroke-width="2" x1="478.4380" x2="484.5848" y1="470.5532" y2="472.5058"/>
		<line fill="none" id="t2 p30" stroke="#80CC00" stroke-width="2" x1="484.5848" x2="490.4681" y1="472.5058" y2="474.1613"/>
		<line fill="none" id="t2 p31" stroke="#6CCC00" stroke-width="2" x1="490.4681" x2="494.6245" y1="474.1613" y2="478.4910"/>
		<line fill="none" id="t2 p32" stroke="#6CCC00" stroke-width="2" x1="494.6245" x2="497.3466" y1="478.4910" y2="485.5799"/>
		<line fill="none" id="t2 p33" stroke="#60CC00" stroke-width="2" x1="497.3466" x2="493.5415" y1="485.5799" y2="491.7349"/>
		<line fill="none" id="t2 p34" stroke="#60CC00" stroke-width="2" x1="493.5415" x2="489.7656" y1="491.7349" y2="497.6352"/>
		<line fill="none" id="t2 p35" stroke="#78CC00" stroke-width="2" x1="489.7656" x2="490.9364" y1="497.6352" y2="506.0824"/>
		<line fill="none" id="t2 p36" stroke="#78CC00" stroke-width="2" x1="490.9364" x2="495.3270" y1="506.0824" y2="515.3362"/>
		<line fill="none" id="t2 p37" stroke="#50CC00" stroke-width="2" x1="495.3270" x2="494.1269" y1="515.3362" y2="530.1931"/>
		<line fill="none" id="t2 p38" stroke="#58CC00" stroke-width="2" x1="494.1269" x2="495.5904" y1="530.1931" y2="536.3481"/>
		<line fill="none" id="t2 p39" stroke="#58CC00" stroke-width="2" x1="495.5904" x2="502.1177" y1="536.3481" y2="540.0835"/>
		<line fill="none" id="t2 p40" stroke="#50CC00" stroke-width="2" x1="502.1177" x2="508.4401" y1="540.0835" y2="542.6729"/>
		<line fill="none" id="t2 p41" stroke="#6CCC00" stroke-width="2" x1="508.4401" x2="515.0844" y1="542.6729" y2="545.8140"/>
		<line fill="none" id="t2 p42" stroke="#58CC00" stroke-width="2" x1="515.0844" x2="520.2067" y1="545.8140" y2="553.0303"/>
		<line fill="none" id="t2 p43" stroke="#50CC00" stroke-width="2" x1="520.2067" x2="523.2801" y1="553.0303" y2="567.2080"/>
		<line fill="none" id="t2 p44" stroke="#38CC00" stroke-width="2" x1="523.2801" x2="527.5243" y1="567.2080" y2="574.8062"/>
		<line fill="none" id="t2 p45" stroke="#30CC00" stroke-width="2" x1="527.5243" x2="528.9585" y1="574.8062" y2="595.3088"/>
		<line fill="none" id="t2 p46" stroke="#30CC00" stroke-width="2" x1="528.9585" x2="504.4008" y1="595.3088" y2="611.7363"/>
		<line fill="none" id="t2 p47" stroke="#44CC00" stroke-width="2" x1="504.4008" x2="499.4248" y1="611.7363" y2="617.2970"/>
		<line fill="none" id="t2 p48" stroke="#44CC00" stroke-width="2" x1="499.4248" x2="478.5551" y1="617.2970" y2="633.7245"/>
		<line fill="none" id="t2 p49" stroke="#44CC00" stroke-width="2" x1="478.5551" x2="456.8365" y1="633.7245" y2="639.5824"/>
		<line fill="none" id="t2 p50" stroke="#58CC00" stroke-width="2" x1="456.8365" x2="450.1044" y1="639.5824" y2="638.5636"/>
		<line fill="none" id="t2 p51" stroke="#28CC00" stroke-width="2" x1="450.1044" x2="445.8602" y1="638.5636" y2="632.4935"/>
		<line fill="none" id="t2 p52" stroke="#10CC00" stroke-width="2" x1="445.8602" x2="445.4797" y1="632.4935" y2="624.0887"/>
		<line fill="none" id="t2 p53" stroke="#00CC48" stroke-width="2" x1="445.4797" x2="445.7431" y1="624.0887" y2="618.1035"/>
		<line fill="none" id="t2 p54" stroke="#00CC5C" stroke-width="2" x1="445.7431" x2="443.7820" y1="618.1035" y2="611.6938"/>
		<line fill="none" id="t2 p55" stroke="#00CC70" stroke-width="2" x1="443.7820" x2="441.7916" y1="611.6938" y2="605.5388"/>
		<line fill="none" id="t2 p56" stroke="#00CC5C" stroke-width="2" x1="441.7916" x2="441.2062" y1="605.5388" y2="599.4263"/>
		<line fill="none" id="t2 p57" stroke="#00CC48" stroke-width="2" x1="441.2062" x2="441.0599" y1="599.4263" y2="592.0827"/>
		<line fill="none" id="t2 p58" stroke="#00CC40" stroke-width="2" x1="441.0599" x2="441.4111" y1="592.0827" y2="585.2485"/>
		<line fill="none" id="t2 p59" stroke="#00CC28" stroke-width="2" x1="441.4111" x2="442.8161" y1="585.2485" y2="578.6690"/>
		<line fill="none" id="t2 p60" stroke="#00CC34" stroke-width="2" x1="442.8161" x2="444.3381" y1="578.6690" y2="572.0471"/>
		<line fill="none" id="t2 p61" stroke="#00CC20" stroke-width="2" x1="444.3381" x2="445.5968" y1="572.0471" y2="565.5101"/>
		<line fill="none" id="t2 p62" stroke="#00CC28" stroke-width="2" x1="445.5968" x2="446.8846" y1="565.5101" y2="558.9730"/>
		<line fill="none" id="t2 p63" stroke="#00CC28" stroke-width="2" x1="446.8846" x2="447.1773" y1="558.9730" y2="552.3935"/>
		<line fill="none" id="t2 p64" stroke="#00CC40" stroke-width="2" x1="447.1773" x2="445.8016" y1="552.3935" y2="546.0687"/>
		<line fill="none" id="t2 p65" stroke="#00CC28" stroke-width="2" x1="445.8016" x2="441.7623" y1="546.0687" y2="541.2296"/>
		<line fill="none" id="t2 p66" stroke="#00CC34" stroke-width="2" x1="441.7623" x2="440.9135" y1="541.2296" y2="534.5652"/>
		<line fill="none" id="t2 p67" stroke="#10CC00" stroke-width="2" x1="440.9135" x2="444.3089" y1="534.5652" y2="528.7074"/>
		<line fill="none" id="t2 p68" stroke="#28CC00" stroke-width="2" x1="444.3089" x2="443.8405" y1="528.7074" y2="522.9769"/>
		<line fill="none" id="t2 p69" stroke="#10CC00" stroke-width="2" x1="443.8405" x2="441.2355" y1="522.9769" y2="515.8031"/>
		<line fill="none" id="t2 p70" stroke="#00CC0C" stroke-width="2" x1="441.2355" x2="438.4548" y1="515.8031" y2="508.6718"/>
		<line fill="none" id="t2 p71" stroke="#00CC18" stroke-width="2" x1="438.4548" x2="433.9472" y1="508.6718" y2="502.9413"/>
		<line fill="none" id="t2 p72" stroke="#00CC04" stroke-width="2" x1="433.9472" x2="429.1761" y1="502.9413" y2="498.4417"/>
		<line fill="none" id="t2 p73" stroke="#08CC00" stroke-width="2" x1="429.1761" x2="424.4343" y1="498.4417" y2="493.5602"/>
		<line fill="none" id="t2 p74" stroke="#00CC04" stroke-width="2" x1="424.4343" x2="419.6340" y1="493.5602" y2="488.4239"/>
		<line fill="none" id="t2 p75" stroke="#1CCC00" stroke-width="2" x1="419.6340" x2="417.7314" y1="488.4239" y2="482.0991"/>
		<line fill="none" id="t2 p76" stroke="#08CC00" stroke-width="2" x1="417.7314" x2="417.3509" y1="482.0991" y2="474.7131"/>
		<line fill="none" id="t2 p77" stroke="#28CC00" stroke-width="2" x1="417.3509" x2="416.5021" y1="474.7131" y2="466.9875"/>
		<line fill="none" id="t2 p78" stroke="#30CC00" stroke-width="2" x1="416.5021" x2="416.2094" y1="466.9875" y2="460.1534"/>
		<line fill="none" id="t2 p79" stroke="#58CC00" stroke-width="2" x1="416.2094" x2="417.8778" y1="460.1534" y2="451.7910"/>
		<line fill="none" id="t2 p80" stroke="#50CC00" stroke-width="2" x1="417.8778" x2="419.7218" y1="451.7910" y2="446.7397"/>
		<line fill="none" id="t2 p81" stroke="#60CC00" stroke-width="2" x1="419.7218" x2="421.7707" y1="446.7397" y2="439.9055"/>
		<line fill="none" id="t2 p82" stroke="#60CC00" stroke-width="2" x1="421.7707" x2="423.8782" y1="439.9055" y2="433.0289"/>
		<line fill="none" id="t2 p83" stroke="#58CC00" stroke-width="2" x1="423.8782" x2="426.0735" y1="433.0289" y2="426.4070"/>
		<line fill="none" id="t2 p84" stroke="#6CCC00" stroke-width="2" x1="426.0735" x2="426.8052" y1="426.4070" y2="420.2520"/>
		<line fill="none" id="t2 p85" stroke="#60CC00" stroke-width="2" x1="426.8052" x2="425.6637" y1="420.2520" y2="413.9696"/>
		<line fill="none" id="t2 p86" stroke="#30CC00" stroke-width="2" x1="425.6637" x2="422.2098" y1="413.9696" y2="408.2391"/>
		<line fill="none" id="t2 p87" stroke="#28CC00" stroke-width="2" x1="422.2098" x2="418.4632" y1="408.2391" y2="402.5935"/>
		<line fill="none" id="t2 p88" stroke="#44CC00" stroke-width="2" x1="418.4632" x2="414.7166" y1="402.5935" y2="396.7780"/>
		<line fill="none" id="t2 p89" stroke="#58CC00" stroke-width="2" x1="414.7166" x2="410.2968" y1="396.7780" y2="391.3871"/>
		<line fill="none" id="t2 p90" stroke="#80CC00" stroke-width="2" x1="410.2968" x2="409.4772" y1="391.3871" y2="384.8501"/>
		<line fill="none" id="t2 p91" stroke="#60CC00" stroke-width="2" x1="409.4772" x2="409.2138" y1="384.8501" y2="375.8086"/>
		<line fill="none" id="t2 p92" stroke="#6CCC00" stroke-width="2" x1="409.2138" x2="410.7944" y1="375.8086" y2="367.3614"/>
		<line fill="none" id="t2 p93" stroke="#78CC00" stroke-width="2" x1="410.7944" x2="412.2579" y1="367.3614" y2="361.0366"/>
		<line fill="none" id="t2 p94" stroke="#94CC00" stroke-width="2" x1="412.2579" x2="414.8630" y1="361.0366" y2="355.9428"/>
		<line fill="none" id="t2 p95" stroke="#A8CC00" stroke-width="2" x1="414.8630" x2="417.7022" y1="355.9428" y2="350.2547"/>
		<line fill="none" id="t2 p96" stroke="#BCCC00" stroke-width="2" x1="417.7022" x2="419.8974" y1="350.2547" y2="344.0572"/>
		<line fill="none" id="t2 p97" stroke="#88CC00" stroke-width="2" x1="419.8974" x2="421.4488" y1="344.0572" y2="338.0296"/>
		<line fill="none" id="t2 p98" stroke="#B0CC00" stroke-width="2" x1="421.4488" x2="422.5025" y1="338.0296" y2="332.7660"/>
		<line fill="none" id="t2 p99" stroke="#9CCC00" stroke-width="2" x1="422.5025" x2="422.9123" y1="332.7660" y2="327.0779"/>
		<line fill="none" id="t2 p100" stroke="#94CC00" stroke-width="2" x1="422.9123" x2="421.5658" y1="327.0779" y2="321.6445"/>
		<line fill="none" id="t2 p101" stroke="#78CC00" stroke-width="2" x1="421.5658" x2="416.8241" y1="321.6445" y2="316.8054"/>
		<line fill="none" id="t2 p102" stroke="#6CCC00" stroke-width="2" x1="416.8241" x2="410.7651" y1="316.8054" y2="314.7679"/>
		<line fill="none" id="t2 p103" stroke="#58CC00" stroke-width="2" x1="410.7651" x2="404.4135" y1="314.7679" y2="313.7916"/>
		<line fill="none" id="t2 p104" stroke="#60CC00" stroke-width="2" x1="404.4135" x2="398.0911" y1="313.7916" y2="312.9426"/>
		<line fill="none" id="t2 p105" stroke="#60CC00" stroke-width="2" x1="398.0911" x2="391.5345" y1="312.9426" y2="312.5181"/>
		<line fill="none" id="t2 p106" stroke="#60CC00" stroke-width="2" x1="391.5345" x2="384.3926" y1="312.5181" y2="311.6692"/>
		<line fill="none" id="t2 p107" stroke="#6CCC00" stroke-width="2" x1="384.3926" x2="378.4214" y1="311.6692" y2="309.9712"/>
		<line fill="none" id="t2 p108" stroke="#88CC00" stroke-width="2" x1="378.4214" x2="372.5381" y1="309.9712" y2="306.7876"/>
		<line fill="none" id="t2 p109" stroke="#C8CC00" stroke-width="2" x1="372.5381" x2="366.1865" y1="306.7876" y2="303.8587"/>
		<line fill="none" id="t2 p110" stroke="#CCA000" stroke-width="2" x1="366.1865" x2="358.7225" y1="303.8587" y2="301.1420"/>
		<line fill="none" id="t2 p111" stroke="#CC8C00" stroke-width="2" x1="358.7225" x2="353.0148" y1="301.1420" y2="299.2743"/>
		<line fill="none" id="t2 p112" stroke="#CCA800" stroke-width="2" x1="353.0148" x2="345.1997" y1="299.2743" y2="297.7037"/>
		<line fill="none" id="t2 p113" stroke="#CC8C00" stroke-width="2" x1="345.1997" x2="337.9114" y1="297.7037" y2="297.2368"/>
		<line fill="none" id="t2 p114" stroke="#CC7800" stroke-width="2" x1="337.9114" x2="330.4182" y1="297.2368" y2="296.8123"/>
		<line fill="none" id="t2 p115" stroke="#CC7000" stroke-width="2" x1="330.4182" x2="323.3640" y1="296.8123" y2="296.4727"/>
		<line fill="none" id="t2 p116" stroke="#CC5800" stroke-width="2" x1="323.3640" x2="316.6904" y1="296.4727" y2="296.2604"/>
		<line fill="none" id="t2 p117" stroke="#CC7000" stroke-width="2" x1="316.6904" x2="309.6948" y1="296.2604" y2="294.6899"/>
		<line fill="none" id="t2 p118" stroke="#CC6400" stroke-width="2" x1="309.6948" x2="303.4602" y1="294.6899" y2="292.2279"/>
		<line fill="none" id="t2 p119" stroke="#CC4800" stroke-width="2" x1="303.4602" x2="299.3039" y1="292.2279" y2="286.7096"/>
		<line fill="none" id="t2 p120" stroke="#CC4800" stroke-width="2" x1="299.3039" x2="294.3279" y1="286.7096" y2="283.2288"/>
		<line fill="none" id="t2 p121" stroke="#CC4800" stroke-width="2" x1="294.3279" x2="289.4105" y1="283.2288" y2="279.1962"/>
		<line fill="none" id="t2 p122" stroke="#CC3000" stroke-width="2" x1="289.4105" x2="285.2249" y1="279.1962" y2="274.9514"/>
		<line fill="none" id="t2 p123" stroke="#CC4800" stroke-width="2" x1="285.2249" x2="283.6150" y1="274.9514" y2="269.1784"/>
		<line fill="none" id="t2 p124" stroke="#CC6400" stroke-width="2" x1="283.6150" x2="282.9710" y1="269.1784" y2="262.7263"/>
		<line fill="none" id="t2 p125" stroke="#CC6400" stroke-width="2" x1="282.9710" x2="281.8880" y1="262.7263" y2="255.8497"/>
		<line fill="none" id="t2 p126" stroke="#CC5800" stroke-width="2" x1="281.8880" x2="280.6002" y1="255.8497" y2="249.9493"/>
		<line fill="none" id="t2 p127" stroke="#CC5000" stroke-width="2" x1="280.6002" x2="279.4293" y1="249.9493" y2="243.1576"/>
		<line fill="none" id="t2 p128" stroke="#CC3C00" stroke-width="2" x1="279.4293" x2="277.3512" y1="243.1576" y2="236.6630"/>
		<line fill="none" id="t2 p129" stroke="#CC3C00" stroke-width="2" x1="277.3512" x2="272.7850" y1="236.6630" y2="232.0361"/>
		<line fill="none" id="t2 p130" stroke="#CC3C00" stroke-width="2" x1="272.7850" x2="267.5749" y1="232.0361" y2="228.6827"/>
		<line fill="none" id="t2 p131" stroke="#CC3000" stroke-width="2" x1="267.5749" x2="263.6527" y1="228.6827" y2="223.9285"/>
		<line fill="none" id="t2 p132" stroke="#CC2800" stroke-width="2" x1="263.6527" x2="258.6182" y1="223.9285" y2="218.8347"/>
		<line fill="none" id="t2 p133" stroke="#CC1400" stroke-width="2" x1="258.6182" x2="253.2324" y1="218.8347" y2="214.2079"/>
		<line fill="none" id="t2 p134" stroke="#CC0000" stroke-width="2" x1="253.2324" x2="247.7589" y1="214.2079" y2="211.1091"/>
		<line fill="none" id="t2 p135" stroke="#CC0000" stroke-width="2" x1="247.7589" x2="241.7292" y1="211.1091" y2="208.8594"/>
		<line fill="none" id="t2 p136" stroke="#CC2800" stroke-width="2" x1="241.7292" x2="236.4020" y1="208.8594" y2="205.6757"/>
		<line fill="none" id="t2 p137" stroke="#CC2800" stroke-width="2" x1="236.4020" x2="231.8651" y1="205.6757" y2="202.0252"/>
		<line fill="none" id="t2 p138" stroke="#CC6400" stroke-width="2" x1="231.8651" x2="228.5576" y1="202.0252" y2="198.5444"/>
		<line fill="none" id="t2 p139" stroke="#CC7800" stroke-width="2" x1="228.5576" x2="224.3427" y1="198.5444" y2="195.9975"/>
		<line fill="none" id="t2 p140" stroke="#C8CC00" stroke-width="2" x1="224.3427" x2="219.8350" y1="195.9975" y2="192.5168"/>
		<line fill="none" id="t2 p141" stroke="#C8CC00" stroke-width="2" x1="219.8350" x2="215.5030" y1="192.5168" y2="190.1821"/>
		<line fill="none" id="t2 p142" stroke="#94CC00" stroke-width="2" x1="215.5030" x2="210.1758" y1="190.1821" y2="189.3332"/>
		<line fill="none" id="t2 p143" stroke="#6CCC00" stroke-width="2" x1="210.1758" x2="203.8242" y1="189.3332" y2="191.0735"/>
		<line fill="none" id="t2 p144" stroke="#6CCC00" stroke-width="2" x1="203.8242" x2="197.6482" y1="191.0735" y2="190.3944"/>
		<line fill="none" id="t2 p145" stroke="#50CC00" stroke-width="2" x1="197.6482" x2="192.1161" y1="190.3944" y2="187.9324"/>
		<line fill="none" id="t2 p146" stroke="#50CC00" stroke-width="2" x1="192.1161" x2="191.0038" y1="187.9324" y2="185.2157"/>
		<line fill="none" id="t2 p147" stroke="#28CC00" stroke-width="2" x1="191.0038" x2="196.2139" y1="185.2157" y2="182.5414"/>
		<line fill="none" id="t2 p148" stroke="#38CC00" stroke-width="2" x1="196.2139" x2="201.8338" y1="182.5414" y2="180.2068"/>
		<line fill="none" id="t2 p149" stroke="#1CCC00" stroke-width="2" x1="201.8338" x2="208.6245" y1="180.2068" y2="177.7023"/>
		<line fill="none" id="t2 p150" stroke="#00CC04" stroke-width="2" x1="208.6245" x2="215.0347" y1="177.7023" y2="174.9432"/>
		<line fill="none" id="t2 p151" stroke="#1CCC00" stroke-width="2" x1="215.0347" x2="221.7376" y1="174.9432" y2="169.0004"/>
		<line fill="none" id="t2 p152" stroke="#28CC00" stroke-width="2" x1="221.7376" x2="224.1963" y1="169.0004" y2="162.6332"/>
		<line fill="none" id="t2 p153" stroke="#30CC00" stroke-width="2" x1="224.1963" x2="226.8306" y1="162.6332" y2="156.2659"/>
		<line fill="none" id="t2 p154" stroke="#08CC00" stroke-width="2" x1="226.8306" x2="229.2015" y1="156.2659" y2="149.8987"/>
		<line fill="none" id="t2 p155" stroke="#1CCC00" stroke-width="2" x1="229.2015" x2="231.7188" y1="149.8987" y2="145.0596"/>
		<line fill="none" id="t2 p156" stroke="#30CC00" stroke-width="2" x1="231.7188" x2="232.1286" y1="145.0596" y2="138.8621"/>
		<line fill="none" id="t2 p157" stroke="#1CCC00" stroke-width="2" x1="232.1286" x2="231.3090" y1="138.8621" y2="132.6222"/>
		<line fill="none" id="t2 p158" stroke="#78CC00" stroke-width="2" x1="231.3090" x2="230.6065" y1="132.6222" y2="129.8206"/>
		<line fill="none" id="t2 p159" stroke="#78CC00" stroke-width="2" x1="230.6065" x2="231.8944" y1="129.8206" y2="135.6785"/>
		<line fill="none" id="t2 p160" stroke="#30CC00" stroke-width="2" x1="231.8944" x2="232.0700" y1="135.6785" y2="141.0694"/>
		<line fill="none" id="t2 p161" stroke="#00CC04" stroke-width="2" x1="232.0700" x2="230.8699" y1="141.0694" y2="147.1395"/>
		<line fill="none" id="t2 p162" stroke="#00CC04" stroke-width="2" x1="230.8699" x2="228.2356" y1="147.1395" y2="152.5305"/>
		<line fill="none" id="t2 p163" stroke="#00CC04" stroke-width="2" x1="228.2356" x2="225.9525" y1="152.5305" y2="158.8977"/>
		<line fill="none" id="t2 p164" stroke="#00CC18" stroke-width="2" x1="225.9525" x2="223.4938" y1="158.8977" y2="164.6282"/>
		<line fill="none" id="t2 p165" stroke="#00CC20" stroke-width="2" x1="223.4938" x2="220.4497" y1="164.6282" y2="170.8681"/>
		<line fill="none" id="t2 p166" stroke="#00CC34" stroke-width="2" x1="220.4497" x2="214.7420" y1="170.8681" y2="175.1130"/>
		<line fill="none" id="t2 p167" stroke="#00CC48" stroke-width="2" x1="214.7420" x2="207.9220" y1="175.1130" y2="177.9146"/>
		<line fill="none" id="t2 p168" stroke="#00CC48" stroke-width="2" x1="207.9220" x2="199.8142" y1="177.9146" y2="181.0133"/>
		<line fill="none" id="t2 p169" stroke="#00CC28" stroke-width="2" x1="199.8142" x2="190.9453" y1="181.0133" y2="185.1732"/>
		<line fill="none" id="t2 p170" stroke="#00CC18" stroke-width="2" x1="190.9453" x2="191.8234" y1="185.1732" y2="187.3805"/>
		<line fill="none" id="t2 p171" stroke="#00CC20" stroke-width="2" x1="191.8234" x2="198.0287" y1="187.3805" y2="190.1397"/>
		<line fill="none" id="t2 p172" stroke="#C000CC" stroke-width="2" x1="198.0287" x2="199.7556" y1="190.1397" y2="190.8613"/>
		<line fill="none" id="t2 p173" stroke="#3800CC" stroke-width="2" x1="199.7556" x2="203.8242" y1="190.8613" y2="194.0449"/>
		<line fill="none" id="t2 p174" stroke="#009CCC" stroke-width="2" x1="203.8242" x2="208.6245" y1="194.0449" y2="208.9018"/>
		<line fill="none" id="t2 p175" stroke="#0080CC" stroke-width="2" x1="208.6245" x2="213.8054" y1="208.9018" y2="221.3392"/>
		<line fill="none" id="t2 p176" stroke="#0080CC" stroke-width="2" x1="213.8054" x2="231.5139" y1="221.3392" y2="255.2129"/>
		<line fill="none" id="t2 p177" stroke="#CC00CC" stroke-width="2" x1="231.5139" x2="232.6554" y1="255.2129" y2="265.4005"/>
		<line fill="none" id="t2 p178" stroke="#0400CC" stroke-width="2" x1="232.6554" x2="231.7188" y1="265.4005" y2="269.3058"/>
		<line fill="none" id="t2 p179" stroke="#0074CC" stroke-width="2" x1="231.7188" x2="232.0115" y1="269.3058" y2="297.1943"/>
		<line fill="none" id="t2 p180" stroke="#00CCC8" stroke-width="2" x1="232.0115" x2="231.9529" y1="297.1943" y2="303.7738"/>
		<line fill="none" id="t2 p181" stroke="#00CC70" stroke-width="2" x1="231.9529" x2="235.4068" y1="303.7738" y2="309.1647"/>
		<line fill="none" id="t2 p182" stroke="#00CC20" stroke-width="2" x1="235.4068" x2="240.5291" y1="309.1647" y2="312.6879"/>
		<line fill="none" id="t2 p183" stroke="#28CC00" stroke-width="2" x1="240.5291" x2="247.2613" y1="312.6879" y2="314.3859"/>
		<line fill="none" id="t2 p184" stroke="#58CC00" stroke-width="2" x1="247.2613" x2="253.4373" y1="314.3859" y2="316.5507"/>
		<line fill="none" id="t2 p185" stroke="#80CC00" stroke-width="2" x1="253.4373" x2="258.5596" y1="316.5507" y2="319.6495"/>
		<line fill="none" id="t2 p186" stroke="#9CCC00" stroke-width="2" x1="258.5596" x2="263.5356" y1="319.6495" y2="323.5972"/>
		<line fill="none" id="t2 p187" stroke="#A8CC00" stroke-width="2" x1="263.5356" x2="268.1603" y1="323.5972" y2="326.6959"/>
		<line fill="none" id="t2 p188" stroke="#A8CC00" stroke-width="2" x1="268.1603" x2="272.9899" y1="326.6959" y2="330.9407"/>
		<line fill="none" id="t2 p189" stroke="#A8CC00" stroke-width="2" x1="272.9899" x2="276.3852" y1="330.9407" y2="337.0533"/>
		<line fill="none" id="t2 p190" stroke="#78CC00" stroke-width="2" x1="276.3852" x2="278.6976" y1="337.0533" y2="340.9161"/>
		<line fill="none" id="t2 p191" stroke="#58CC00" stroke-width="2" x1="278.6976" x2="284.3760" y1="340.9161" y2="342.1046"/>
		<line fill="none" id="t2 p192" stroke="#50CC00" stroke-width="2" x1="284.3760" x2="290.4057" y1="342.1046" y2="345.1609"/>
		<line fill="none" id="t2 p193" stroke="#44CC00" stroke-width="2" x1="290.4057" x2="295.2646" y1="345.1609" y2="349.4906"/>
		<line fill="none" id="t2 p194" stroke="#44CC00" stroke-width="2" x1="295.2646" x2="300.0649" y1="349.4906" y2="354.0750"/>
		<line fill="none" id="t2 p195" stroke="#44CC00" stroke-width="2" x1="300.0649" x2="305.2457" y1="354.0750" y2="358.4897"/>
		<line fill="none" id="t2 p196" stroke="#44CC00" stroke-width="2" x1="305.2457" x2="309.4607" y1="358.4897" y2="363.1590"/>
		<line fill="none" id="t2 p197" stroke="#38CC00" stroke-width="2" x1="309.4607" x2="312.6218" y1="363.1590" y2="368.7197"/>
		<line fill="none" id="t2 p198" stroke="#50CC00" stroke-width="2" x1="312.6218" x2="317.1002" y1="368.7197" y2="372.4552"/>
		<line fill="none" id="t2 p199" stroke="#30CC00" stroke-width="2" x1="317.1002" x2="323.3933" y1="372.4552" y2="374.4502"/>
		<line fill="none" id="t2 p200" stroke="#38CC00" stroke-width="2" x1="323.3933" x2="329.9206" y1="374.4502" y2="374.4502"/>
		<line fill="none" id="t2 p201" stroke="#30CC00" stroke-width="2" x1="329.9206" x2="327.6960" y1="374.4502" y2="374.6200"/>
		<line fill="none" id="t2 p202" stroke="#28CC00" stroke-width="2" x1="327.6960" x2="321.8420" y1="374.6200" y2="374.5351"/>
		<line fill="none" id="t2 p203" stroke="#28CC00" stroke-width="2" x1="321.8420" x2="316.0757" y1="374.5351" y2="372.2429"/>
		<line fill="none" id="t2 p204" stroke="#1CCC00" stroke-width="2" x1="316.0757" x2="311.7437" y1="372.2429" y2="367.4463"/>
		<line fill="none" id="t2 p205" stroke="#30CC00" stroke-width="2" x1="311.7437" x2="308.5825" y1="367.4463" y2="362.2251"/>
		<line fill="none" id="t2 p206" stroke="#08CC00" stroke-width="2" x1="308.5825" x2="304.3676" y1="362.2251" y2="357.4285"/>
		<line fill="none" id="t2 p207" stroke="#00CC04" stroke-width="2" x1="304.3676" x2="299.1868" y1="357.4285" y2="353.0987"/>
		<line fill="none" id="t2 p208" stroke="#10CC00" stroke-width="2" x1="299.1868" x2="291.5765" y1="353.0987" y2="346.1797"/>
		<line fill="none" id="t2 p209" stroke="#10CC00" stroke-width="2" x1="291.5765" x2="286.7176" y1="346.1797" y2="343.2932"/>
		<line fill="none" id="t2 p210" stroke="#30CC00" stroke-width="2" x1="286.7176" x2="283.0296" y1="343.2932" y2="344.1421"/>
		<line fill="none" id="t2 p211" stroke="#38CC00" stroke-width="2" x1="283.0296" x2="281.7417" y1="344.1421" y2="346.7315"/>
		<line fill="none" id="t2 p212" stroke="#44CC00" stroke-width="2" x1="281.7417" x2="281.0392" y1="346.7315" y2="351.3583"/>
		<line fill="none" id="t2 p213" stroke="#44CC00" stroke-width="2" x1="281.0392" x2="282.0929" y1="351.3583" y2="360.3149"/>
		<line fill="none" id="t2 p214" stroke="#38CC00" stroke-width="2" x1="282.0929" x2="283.2930" y1="360.3149" y2="367.4887"/>
		<line fill="none" id="t2 p215" stroke="#38CC00" stroke-width="2" x1="283.2930" x2="287.0396" y1="367.4887" y2="372.5825"/>
		<line fill="none" id="t2 p216" stroke="#44CC00" stroke-width="2" x1="287.0396" x2="292.6010" y1="372.5825" y2="375.0445"/>
		<line fill="none" id="t2 p217" stroke="#44CC00" stroke-width="2" x1="292.6010" x2="296.3183" y1="375.0445" y2="380.1807"/>
		<line fill="none" id="t2 p218" stroke="#44CC00" stroke-width="2" x1="296.3183" x2="298.4843" y1="380.1807" y2="386.5904"/>
		<line fill="none" id="t2 p219" stroke="#50CC00" stroke-width="2" x1="298.4843" x2="301.1479" y1="386.5904" y2="392.4483"/>
		<line fill="none" id="t2 p220" stroke="#50CC00" stroke-width="2" x1="301.1479" x2="304.6603" y1="392.4483" y2="398.4335"/>
		<line fill="none" id="t2 p221" stroke="#58CC00" stroke-width="2" x1="304.6603" x2="308.0850" y1="398.4335" y2="403.6122"/>
		<line fill="none" id="t2 p222" stroke="#60CC00" stroke-width="2" x1="308.0850" x2="311.9194" y1="403.6122" y2="409.5550"/>
		<line fill="none" id="t2 p223" stroke="#6CCC00" stroke-width="2" x1="311.9194" x2="314.7878" y1="409.5550" y2="415.5826"/>
		<line fill="none" id="t2 p224" stroke="#78CC00" stroke-width="2" x1="314.7878" x2="317.5685" y1="415.5826" y2="421.7801"/>
		<line fill="none" id="t2 p225" stroke="#80CC00" stroke-width="2" x1="317.5685" x2="320.9931" y1="421.7801" y2="428.2747"/>
		<line fill="none" id="t2 p226" stroke="#94CC00" stroke-width="2" x1="320.9931" x2="324.3592" y1="428.2747" y2="434.5570"/>
		<line fill="none" id="t2 p227" stroke="#A8CC00" stroke-width="2" x1="324.3592" x2="327.4033" y1="434.5570" y2="440.4998"/>
		<line fill="none" id="t2 p228" stroke="#A8CC00" stroke-width="2" x1="327.4033" x2="329.9206" y1="440.4998" y2="446.7397"/>
		<line fill="none" id="t2 p229" stroke="#9CCC00" stroke-width="2" x1="329.9206" x2="332.5256" y1="446.7397" y2="452.3853"/>
		<line fill="none" id="t2 p230" stroke="#9CCC00" stroke-width="2" x1="332.5256" x2="334.8087" y1="452.3853" y2="458.5828"/>
		<line fill="none" id="t2 p231" stroke="#88CC00" stroke-width="2" x1="334.8087" x2="337.2089" y1="458.5828" y2="465.4594"/>
		<line fill="none" id="t2 p232" stroke="#9CCC00" stroke-width="2" x1="337.2089" x2="339.2285" y1="465.4594" y2="470.5956"/>
		<line fill="none" id="t2 p233" stroke="#9CCC00" stroke-width="2" x1="339.2285" x2="343.0044" y1="470.5956" y2="476.1564"/>
		<line fill="none" id="t2 p234" stroke="#A8CC00" stroke-width="2" x1="343.0044" x2="346.3119" y1="476.1564" y2="481.2926"/>
		<line fill="none" id="t2 p235" stroke="#A8CC00" stroke-width="2" x1="346.3119" x2="348.0096" y1="481.2926" y2="487.1505"/>
		<line fill="none" id="t2 p236" stroke="#9CCC00" stroke-width="2" x1="348.0096" x2="349.0926" y1="487.1505" y2="492.9235"/>
		<line fill="none" id="t2 p237" stroke="#6CCC00" stroke-width="2" x1="349.0926" x2="350.7610" y1="492.9235" y2="499.3756"/>
		<line fill="none" id="t2 p238" stroke="#30CC00" stroke-width="2" x1="350.7610" x2="351.1708" y1="499.3756" y2="506.2947"/>
		<line fill="none" id="t2 p239" stroke="#1CCC00" stroke-width="2" x1="351.1708" x2="349.6195" y1="506.2947" y2="512.6619"/>
		<line fill="none" id="t2 p240" stroke="#28CC00" stroke-width="2" x1="349.6195" x2="344.9948" y1="512.6619" y2="517.8831"/>
		<line fill="none" id="t2 p241" stroke="#08CC00" stroke-width="2" x1="344.9948" x2="340.3408" y1="517.8831" y2="522.3826"/>
		<line fill="none" id="t2 p242" stroke="#28CC00" stroke-width="2" x1="340.3408" x2="335.3941" y1="522.3826" y2="526.7972"/>
		<line fill="none" id="t2 p243" stroke="#1CCC00" stroke-width="2" x1="335.3941" x2="330.9450" y1="526.7972" y2="531.2543"/>
		<line fill="none" id="t2 p244" stroke="#28CC00" stroke-width="2" x1="330.9450" x2="326.8179" y1="531.2543" y2="535.6689"/>
		<line fill="none" id="t2 p245" stroke="#38CC00" stroke-width="2" x1="326.8179" x2="320.9931" y1="535.6689" y2="538.5129"/>
		<line fill="none" id="t2 p246" stroke="#38CC00" stroke-width="2" x1="320.9931" x2="315.4318" y1="538.5129" y2="541.6541"/>
		<line fill="none" id="t2 p247" stroke="#30CC00" stroke-width="2" x1="315.4318" x2="310.4266" y1="541.6541" y2="545.6867"/>
		<line fill="none" id="t2 p248" stroke="#28CC00" stroke-width="2" x1="310.4266" x2="305.1579" y1="545.6867" y2="549.8466"/>
		<line fill="none" id="t2 p249" stroke="#10CC00" stroke-width="2" x1="305.1579" x2="301.0308" y1="549.8466" y2="553.7094"/>
		<line fill="none" id="t2 p250" stroke="#00CC04" stroke-width="2" x1="301.0308" x2="301.6162" y1="553.7094" y2="562.4962"/>
		<line fill="none" id="t2 p251" stroke="#00CC04" stroke-width="2" x1="301.6162" x2="304.6311" y1="562.4962" y2="568.8210"/>
		<line fill="none" id="t2 p252" stroke="#00CC04" stroke-width="2" x1="304.6311" x2="307.7044" y1="568.8210" y2="573.7450"/>
		<line fill="none" id="t2 p253" stroke="#00CC04" stroke-width="2" x1="307.7044" x2="309.5485" y1="573.7450" y2="580.7490"/>
		<line fill="none" id="t2 p254" stroke="#00CC04" stroke-width="2" x1="309.5485" x2="311.9779" y1="580.7490" y2="586.6493"/>
		<line fill="none" id="t2 p255" stroke="#28CC00" stroke-width="2" x1="311.9779" x2="313.7341" y1="586.6493" y2="592.6345"/>
		<line fill="none" id="t2 p256" stroke="#38CC00" stroke-width="2" x1="313.7341" x2="316.4563" y1="592.6345" y2="599.2565"/>
		<line fill="none" id="t2 p257" stroke="#30CC00" stroke-width="2" x1="316.4563" x2="318.3881" y1="599.2565" y2="604.1805"/>
		<line fill="none" id="t2 p258" stroke="#30CC00" stroke-width="2" x1="318.3881" x2="317.4807" y1="604.1805" y2="609.2743"/>
		<line fill="none" id="t2 p259" stroke="#28CC00" stroke-width="2" x1="317.4807" x2="313.2365" y1="609.2743" y2="613.9860"/>
		<line fill="none" id="t2 p260" stroke="#1CCC00" stroke-width="2" x1="313.2365" x2="309.8704" y1="613.9860" y2="618.5280"/>
		<line fill="none" id="t2 p261" stroke="#00CC04" stroke-width="2" x1="309.8704" x2="305.7141" y1="618.5280" y2="622.8153"/>
		<line fill="none" id="t2 p262" stroke="#00CC18" stroke-width="2" x1="305.7141" x2="302.2309" y1="622.8153" y2="629.3099"/>
		<line fill="none" id="t2 p263" stroke="#00CC04" stroke-width="2" x1="302.2309" x2="302.8163" y1="629.3099" y2="635.9743"/>
		<line fill="none" id="t2 p264" stroke="#10CC00" stroke-width="2" x1="302.8163" x2="306.7385" y1="635.9743" y2="641.1954"/>
		<line fill="none" id="t2 p265" stroke="#10CC00" stroke-width="2" x1="306.7385" x2="313.4414" y1="641.1954" y2="645.6100"/>
		<line fill="none" id="t2 p266" stroke="#10CC00" stroke-width="2" x1="313.4414" x2="320.1736" y1="645.6100" y2="648.0296"/>
		<line fill="none" id="t2 p267" stroke="#00CC04" stroke-width="2" x1="320.1736" x2="324.8276" y1="648.0296" y2="647.0108"/>
		<line fill="none" id="t2 p268" stroke="#1CCC00" stroke-width="2" x1="324.8276" x2="329.3937" y1="647.0108" y2="644.2941"/>
		<line fill="none" id="t2 p269" stroke="#28CC00" stroke-width="2" x1="329.3937" x2="335.8917" y1="644.2941" y2="639.9219"/>
		<line fill="none" id="t2 p270" stroke="#38CC00" stroke-width="2" x1="335.8917" x2="341.2775" y1="639.9219" y2="636.4836"/>
		<line fill="none" id="t2 p271" stroke="#38CC00" stroke-width="2" x1="341.2775" x2="347.4242" y1="636.4836" y2="635.3375"/>
		<line fill="none" id="t2 p272" stroke="#38CC00" stroke-width="2" x1="347.4242" x2="353.0441" y1="635.3375" y2="637.7146"/>
		<line fill="none" id="t2 p273" stroke="#1CCC00" stroke-width="2" x1="353.0441" x2="359.1616" y1="637.7146" y2="641.0681"/>
		<line fill="none" id="t2 p274" stroke="#30CC00" stroke-width="2" x1="359.1616" x2="364.7230" y1="641.0681" y2="643.5725"/>
		<line fill="none" id="t2 p275" stroke="#44CC00" stroke-width="2" x1="364.7230" x2="371.2210" y1="643.5725" y2="646.5863"/>
		<line fill="none" id="t2 p276" stroke="#44CC00" stroke-width="2" x1="371.2210" x2="377.4555" y1="646.5863" y2="646.5014"/>
		<line fill="none" id="t2 p277" stroke="#30CC00" stroke-width="2" x1="377.4555" x2="383.7486" y1="646.5014" y2="645.4402"/>
		<line fill="none" id="t2 p278" stroke="#38CC00" stroke-width="2" x1="383.7486" x2="390.3637" y1="645.4402" y2="646.3316"/>
		<line fill="none" id="t2 p279" stroke="#28CC00" stroke-width="2" x1="390.3637" x2="397.0959" y1="646.3316" y2="647.7749"/>
		<line fill="none" id="t2 p280" stroke="#00CC18" stroke-width="2" x1="397.0959" x2="403.8281" y1="647.7749" y2="648.8785"/>
		<line fill="none" id="t2 p281" stroke="#00CC0C" stroke-width="2" x1="403.8281" x2="409.9455" y1="648.8785" y2="644.9309"/>
		<line fill="none" id="t2 p282" stroke="#00CC18" stroke-width="2" x1="409.9455" x2="415.5069" y1="644.9309" y2="641.1105"/>
		<line fill="none" id="t2 p283" stroke="#00CC0C" stroke-width="2" x1="415.5069" x2="421.8585" y1="641.1105" y2="637.4175"/>
		<line fill="none" id="t2 p284" stroke="#00CC04" stroke-width="2" x1="421.8585" x2="428.9712" y1="637.4175" y2="635.9318"/>
		<line fill="none" id="t2 p285" stroke="#00CC04" stroke-width="2" x1="428.9712" x2="435.3814" y1="635.9318" y2="633.3425"/>
		<line fill="none" id="t2 p286" stroke="#10CC00" stroke-width="2" x1="435.3814" x2="442.2014" y1="633.3425" y2="632.7482"/>
		<line fill="none" id="t2 p287" stroke="#08CC00" stroke-width="2" x1="442.2014" x2="445.9187" y1="632.7482" y2="632.9604"/>
		<line fill="none" id="t2 p288" stroke="#28CC00" stroke-width="2" x1="445.9187" x2="450.9825" y1="632.9604" y2="638.9456"/>
		<line fill="none" id="t2 p289" stroke="#38CC00" stroke-width="2" x1="450.9825" x2="457.6268" y1="638.9456" y2="639.1579"/>
		<line fill="none" id="t2 p290" stroke="#50CC00" stroke-width="2" x1="457.6268" x2="469.6277" y1="639.1579" y2="636.0592"/>
		<line fill="none" id="t2 p291" stroke="#58CC00" stroke-width="2" x1="469.6277" x2="476.3598" y1="636.0592" y2="634.5735"/>
		<line fill="none" id="t2 p292" stroke="#60CC00" stroke-width="2" x1="476.3598" x2="482.0090" y1="634.5735" y2="631.0078"/>
		<line fill="none" id="t2 p293" stroke="#94CC00" stroke-width="2" x1="482.0090" x2="487.0142" y1="631.0078" y2="627.6968"/>
		<line fill="none" id="t2 p294" stroke="#B0CC00" stroke-width="2" x1="487.0142" x2="492.3414" y1="627.6968" y2="623.5369"/>
		<line fill="none" id="t2 p295" stroke="#BCCC00" stroke-width="2" x1="492.3414" x2="497.0246" y1="623.5369" y2="618.6978"/>
		<line fill="none" id="t2 p296" stroke="#CCC800" stroke-width="2" x1="497.0246" x2="501.9128" y1="618.6978" y2="614.4954"/>
		<line fill="none" id="t2 p297" stroke="#C8CC00" stroke-width="2" x1="501.9128" x2="506.8595" y1="614.4954" y2="610.4628"/>
		<line fill="none" id="t2 p298" stroke="#CCC800" stroke-width="2" x1="506.8595" x2="512.3915" y1="610.4628" y2="606.3029"/>
		<line fill="none" id="t2 p299" stroke="#CCC000" stroke-width="2" x1="512.3915" x2="517.5724" y1="606.3029" y2="602.5250"/>
		<line fill="none" id="t2 p300" stroke="#CCC800" stroke-width="2" x1="517.5724" x2="523.7484" y1="602.5250" y2="598.7895"/>
		<line fill="none" id="t2 p301" stroke="#CC8000" stroke-width="2" x1="523.7484" x2="529.0463" y1="598.7895" y2="594.6296"/>
		<line fill="none" id="t2 p302" stroke="#CC8000" stroke-width="2" x1="529.0463" x2="528.3146" y1="594.6296" y2="587.7105"/>
		<line fill="none" id="t2 p303" stroke="#CC9800" stroke-width="2" x1="528.3146" x2="528.6365" y1="587.7105" y2="581.6829"/>
		<line fill="none" id="t2 p304" stroke="#CCA800" stroke-width="2" x1="528.6365" x2="527.5535" y1="581.6829" y2="574.5940"/>
		<line fill="none" id="t2 p305" stroke="#CCA800" stroke-width="2" x1="527.5535" x2="523.9826" y1="574.5940" y2="569.7549"/>
		<line fill="none" id="t2 p306" stroke="#CCA800" stroke-width="2" x1="523.9826" x2="522.1971" y1="569.7549" y2="564.7460"/>
		<line fill="none" id="t2 p307" stroke="#80CC00" stroke-width="2" x1="522.1971" x2="521.3775" y1="564.7460" y2="557.7420"/>
		<line fill="none" id="t2 p308" stroke="#9CCC00" stroke-width="2" x1="521.3775" x2="519.6213" y1="557.7420" y2="551.1201"/>
		<line fill="none" id="t2 p309" stroke="#BCCC00" stroke-width="2" x1="519.6213" x2="514.8210" y1="551.1201" y2="545.9838"/>
		<line fill="none" id="t2 p310" stroke="#BCCC00" stroke-width="2" x1="514.8210" x2="508.4401" y1="545.9838" y2="542.7578"/>
		<line fill="none" id="t2 p311" stroke="#CCC800" stroke-width="2" x1="508.4401" x2="502.1177" y1="542.7578" y2="540.2958"/>
		<line fill="none" id="t2 p312" stroke="#CCC000" stroke-width="2" x1="502.1177" x2="496.2929" y1="540.2958" y2="537.7489"/>
		<line fill="none" id="t2 p313" stroke="#CCB400" stroke-width="2" x1="496.2929" x2="494.1562" y1="537.7489" y2="532.9947"/>
		<line fill="none" id="t2 p314" stroke="#CCA800" stroke-width="2" x1="494.1562" x2="494.5367" y1="532.9947" y2="524.2079"/>
		<line fill="none" id="t2 p315" stroke="#CC9800" stroke-width="2" x1="494.5367" x2="495.1221" y1="524.2079" y2="521.1940"/>
		<line fill="none" id="t2 p316" stroke="#CC9800" stroke-width="2" x1="495.1221" x2="495.0928" y1="521.1940" y2="514.7419"/>
		<line fill="none" id="t2 p317" stroke="#CCA800" stroke-width="2" x1="495.0928" x2="491.4047" y1="514.7419" y2="507.2710"/>
		<line fill="none" id="t2 p318" stroke="#CCA000" stroke-width="2" x1="491.4047" x2="489.6485" y1="507.2710" y2="499.3756"/>
		<line fill="none" id="t2 p319" stroke="#CC8000" stroke-width="2" x1="489.6485" x2="491.9316" y1="499.3756" y2="494.1545"/>
		<line fill="none" id="t2 p320" stroke="#CC9800" stroke-width="2" x1="491.9316" x2="495.1806" y1="494.1545" y2="488.8060"/>
		<line fill="none" id="t2 p321" stroke="#CCA000" stroke-width="2" x1="495.1806" x2="498.9858" y1="488.8060" y2="484.7734"/>
		<line fill="none" id="t2 p322" stroke="#CCC800" stroke-width="2" x1="498.9858" x2="503.7861" y1="484.7734" y2="480.3163"/>
		<line fill="none" id="t2 p323" stroke="#CCC000" stroke-width="2" x1="503.7861" x2="509.1425" y1="480.3163" y2="475.9017"/>
		<line fill="none" id="t2 p324" stroke="#CCB400" stroke-width="2" x1="509.1425" x2="513.1233" y1="475.9017" y2="470.8503"/>
		<line fill="none" id="t2 p325" stroke="#CCC800" stroke-width="2" x1="513.1233" x2="517.6309" y1="470.8503" y2="465.0349"/>
		<line fill="none" id="t2 p326" stroke="#CCC000" stroke-width="2" x1="517.6309" x2="522.2849" y1="465.0349" y2="459.5166"/>
	</g>
	<g id="20-FEB-10 (t3) track" opacity="0.9">
		<line fill="none" id="t3 p1" stroke="#00CC0C" stroke-width="2" x1="524.7436" x2="523.7777" y1="455.8236" y2="454.9747"/>
		<line fill="none" id="t3 p2" stroke="#00CC04" stroke-width="2" x1="523.7777" x2="522.9288" y1="454.9747" y2="454.2955"/>
		<line fill="none" id="t3 p3" stroke="#50CC00" stroke-width="2" x1="522.9288" x2="520.2652" y1="454.2955" y2="453.5314"/>
		<line fill="none" id="t3 p4" stroke="#44CC00" stroke-width="2" x1="520.2652" x2="517.3675" y1="453.5314" y2="452.9796"/>
		<line fill="none" id="t3 p5" stroke="#50CC00" stroke-width="2" x1="517.3675" x2="512.6550" y1="452.9796" y2="451.1968"/>
		<line fill="none" id="t3 p6" stroke="#58CC00" stroke-width="2" x1="512.6550" x2="508.6157" y1="451.1968" y2="448.8197"/>
		<line fill="none" id="t3 p7" stroke="#60CC00" stroke-width="2" x1="508.6157" x2="506.9180" y1="448.8197" y2="446.6124"/>
		<line fill="none" id="t3 p8" stroke="#58CC00" stroke-width="2" x1="506.9180" x2="503.2299" y1="446.6124" y2="438.8019"/>
		<line fill="none" id="t3 p9" stroke="#78CC00" stroke-width="2" x1="503.2299" x2="500.0102" y1="438.8019" y2="426.4494"/>
		<line fill="none" id="t3 p10" stroke="#80CC00" stroke-width="2" x1="500.0102" x2="501.7664" y1="426.4494" y2="417.2381"/>
		<line fill="none" id="t3 p11" stroke="#9CCC00" stroke-width="2" x1="501.7664" x2="500.7420" y1="417.2381" y2="410.2766"/>
		<line fill="none" id="t3 p12" stroke="#94CC00" stroke-width="2" x1="500.7420" x2="496.2051" y1="410.2766" y2="403.1877"/>
		<line fill="none" id="t3 p13" stroke="#B0CC00" stroke-width="2" x1="496.2051" x2="488.5363" y1="403.1877" y2="398.7731"/>
		<line fill="none" id="t3 p14" stroke="#BCCC00" stroke-width="2" x1="488.5363" x2="481.9212" y1="398.7731" y2="396.6082"/>
		<line fill="none" id="t3 p15" stroke="#CCC800" stroke-width="2" x1="481.9212" x2="477.2965" y1="396.6082" y2="400.0466"/>
		<line fill="none" id="t3 p16" stroke="#A8CC00" stroke-width="2" x1="477.2965" x2="471.0619" y1="400.0466" y2="408.2815"/>
		<line fill="none" id="t3 p17" stroke="#9CCC00" stroke-width="2" x1="471.0619" x2="466.9348" y1="408.2815" y2="415.4553"/>
		<line fill="none" id="t3 p18" stroke="#88CC00" stroke-width="2" x1="466.9348" x2="464.1834" y1="415.4553" y2="426.2796"/>
		<line fill="none" id="t3 p19" stroke="#9CCC00" stroke-width="2" x1="464.1834" x2="460.3490" y1="426.2796" y2="436.8068"/>
		<line fill="none" id="t3 p20" stroke="#94CC00" stroke-width="2" x1="460.3490" x2="454.9632" y1="436.8068" y2="446.7397"/>
		<line fill="none" id="t3 p21" stroke="#C8CC00" stroke-width="2" x1="454.9632" x2="455.1096" y1="446.7397" y2="450.6449"/>
		<line fill="none" id="t3 p22" stroke="#B0CC00" stroke-width="2" x1="455.1096" x2="456.8658" y1="450.6449" y2="455.9510"/>
		<line fill="none" id="t3 p23" stroke="#B0CC00" stroke-width="2" x1="456.8658" x2="460.7588" y1="455.9510" y2="460.8750"/>
		<line fill="none" id="t3 p24" stroke="#88CC00" stroke-width="2" x1="460.7588" x2="466.2908" y1="460.8750" y2="467.1573"/>
		<line fill="none" id="t3 p25" stroke="#9CCC00" stroke-width="2" x1="466.2908" x2="474.3694" y1="467.1573" y2="469.6193"/>
		<line fill="none" id="t3 p26" stroke="#88CC00" stroke-width="2" x1="474.3694" x2="480.6626" y1="469.6193" y2="471.2748"/>
		<line fill="none" id="t3 p27" stroke="#80CC00" stroke-width="2" x1="480.6626" x2="486.6044" y1="471.2748" y2="473.2699"/>
		<line fill="none" id="t3 p28" stroke="#9CCC00" stroke-width="2" x1="486.6044" x2="488.5070" y1="473.2699" y2="473.7793"/>
		<line fill="none" id="t3 p29" stroke="#78CC00" stroke-width="2" x1="488.5070" x2="490.9072" y1="473.7793" y2="474.6707"/>
		<line fill="none" id="t3 p30" stroke="#78CC00" stroke-width="2" x1="490.9072" x2="493.8049" y1="474.6707" y2="477.7270"/>
		<line fill="none" id="t3 p31" stroke="#50CC00" stroke-width="2" x1="493.8049" x2="495.0928" y1="477.7270" y2="479.4673"/>
		<line fill="none" id="t3 p32" stroke="#6CCC00" stroke-width="2" x1="495.0928" x2="497.3173" y1="479.4673" y2="485.7072"/>
		<line fill="none" id="t3 p33" stroke="#58CC00" stroke-width="2" x1="497.3173" x2="494.6537" y1="485.7072" y2="489.6974"/>
		<line fill="none" id="t3 p34" stroke="#80CC00" stroke-width="2" x1="494.6537" x2="489.4144" y1="489.6974" y2="498.9087"/>
		<line fill="none" id="t3 p35" stroke="#88CC00" stroke-width="2" x1="489.4144" x2="491.5511" y1="498.9087" y2="507.3134"/>
		<line fill="none" id="t3 p36" stroke="#BCCC00" stroke-width="2" x1="491.5511" x2="495.1806" y1="507.3134" y2="514.1476"/>
		<line fill="none" id="t3 p37" stroke="#CCC800" stroke-width="2" x1="495.1806" x2="494.5952" y1="514.1476" y2="519.9206"/>
		<line fill="none" id="t3 p38" stroke="#BCCC00" stroke-width="2" x1="494.5952" x2="494.6245" y1="519.9206" y2="524.9719"/>
		<line fill="none" id="t3 p39" stroke="#B0CC00" stroke-width="2" x1="494.6245" x2="493.6586" y1="524.9719" y2="529.4290"/>
		<line fill="none" id="t3 p40" stroke="#B0CC00" stroke-width="2" x1="493.6586" x2="491.2291" y1="529.4290" y2="533.2069"/>
		<line fill="none" id="t3 p41" stroke="#B0CC00" stroke-width="2" x1="491.2291" x2="489.5900" y1="533.2069" y2="533.9710"/>
		<line fill="none" id="t3 p42" stroke="#B0CC00" stroke-width="2" x1="489.5900" x2="487.5411" y1="533.9710" y2="534.3106"/>
		<line fill="none" id="t3 p43" stroke="#78CC00" stroke-width="2" x1="487.5411" x2="484.7897" y1="534.3106" y2="534.6926"/>
		<line fill="none" id="t3 p44" stroke="#6CCC00" stroke-width="2" x1="484.7897" x2="479.9015" y1="534.6926" y2="537.7913"/>
		<line fill="none" id="t3 p45" stroke="#38CC00" stroke-width="2" x1="479.9015" x2="476.2135" y1="537.7913" y2="539.7015"/>
		<line fill="none" id="t3 p46" stroke="#28CC00" stroke-width="2" x1="476.2135" x2="470.5643" y1="539.7015" y2="540.4231"/>
		<line fill="none" id="t3 p47" stroke="#38CC00" stroke-width="2" x1="470.5643" x2="464.3590" y1="540.4231" y2="535.5416"/>
		<line fill="none" id="t3 p48" stroke="#58CC00" stroke-width="2" x1="464.3590" x2="456.5438" y1="535.5416" y2="531.1269"/>
		<line fill="none" id="t3 p49" stroke="#60CC00" stroke-width="2" x1="456.5438" x2="453.4997" y1="531.1269" y2="529.4715"/>
		<line fill="none" id="t3 p50" stroke="#58CC00" stroke-width="2" x1="453.4997" x2="449.1970" y1="529.4715" y2="527.2217"/>
		<line fill="none" id="t3 p51" stroke="#50CC00" stroke-width="2" x1="449.1970" x2="444.3381" y1="527.2217" y2="523.9532"/>
		<line fill="none" id="t3 p52" stroke="#38CC00" stroke-width="2" x1="444.3381" x2="442.0550" y1="523.9532" y2="517.6284"/>
		<line fill="none" id="t3 p53" stroke="#30CC00" stroke-width="2" x1="442.0550" x2="438.2499" y1="517.6284" y2="507.6530"/>
		<line fill="none" id="t3 p54" stroke="#50CC00" stroke-width="2" x1="438.2499" x2="433.9179" y1="507.6530" y2="502.6017"/>
		<line fill="none" id="t3 p55" stroke="#44CC00" stroke-width="2" x1="433.9179" x2="425.9271" y1="502.6017" y2="495.2157"/>
		<line fill="none" id="t3 p56" stroke="#58CC00" stroke-width="2" x1="425.9271" x2="418.7852" y1="495.2157" y2="486.8533"/>
		<line fill="none" id="t3 p57" stroke="#6CCC00" stroke-width="2" x1="418.7852" x2="417.2046" y1="486.8533" y2="476.7082"/>
		<line fill="none" id="t3 p58" stroke="#50CC00" stroke-width="2" x1="417.2046" x2="417.3802" y1="476.7082" y2="471.6144"/>
		<line fill="none" id="t3 p59" stroke="#58CC00" stroke-width="2" x1="417.3802" x2="415.8289" y1="471.6144" y2="461.3419"/>
		<line fill="none" id="t3 p60" stroke="#78CC00" stroke-width="2" x1="415.8289" x2="417.5851" y1="461.3419" y2="451.8759"/>
		<line fill="none" id="t3 p61" stroke="#88CC00" stroke-width="2" x1="417.5851" x2="421.3317" y1="451.8759" y2="441.1790"/>
		<line fill="none" id="t3 p62" stroke="#9CCC00" stroke-width="2" x1="421.3317" x2="424.6978" y1="441.1790" y2="431.1612"/>
		<line fill="none" id="t3 p63" stroke="#A8CC00" stroke-width="2" x1="424.6978" x2="426.8345" y1="431.1612" y2="420.4642"/>
		<line fill="none" id="t3 p64" stroke="#94CC00" stroke-width="2" x1="426.8345" x2="424.0831" y1="420.4642" y2="411.8047"/>
		<line fill="none" id="t3 p65" stroke="#C8CC00" stroke-width="2" x1="424.0831" x2="420.7755" y1="411.8047" y2="406.2440"/>
		<line fill="none" id="t3 p66" stroke="#C8CC00" stroke-width="2" x1="420.7755" x2="416.0338" y1="406.2440" y2="398.7307"/>
		<line fill="none" id="t3 p67" stroke="#C8CC00" stroke-width="2" x1="416.0338" x2="411.2920" y1="398.7307" y2="392.4059"/>
		<line fill="none" id="t3 p68" stroke="#C8CC00" stroke-width="2" x1="411.2920" x2="410.0041" y1="392.4059" y2="389.8165"/>
		<line fill="none" id="t3 p69" stroke="#CCB400" stroke-width="2" x1="410.0041" x2="409.7407" y1="389.8165" y2="389.4769"/>
		<line fill="none" id="t3 p70" stroke="#CCA800" stroke-width="2" x1="409.7407" x2="409.2723" y1="389.4769" y2="385.3170"/>
		<line fill="none" id="t3 p71" stroke="#CCA000" stroke-width="2" x1="409.2723" x2="409.1552" y1="385.3170" y2="376.1057"/>
		<line fill="none" id="t3 p72" stroke="#CC8000" stroke-width="2" x1="409.1552" x2="410.8822" y1="376.1057" y2="366.6822"/>
		<line fill="none" id="t3 p73" stroke="#CC7000" stroke-width="2" x1="410.8822" x2="414.0141" y1="366.6822" y2="357.0040"/>
		<line fill="none" id="t3 p74" stroke="#CC3C00" stroke-width="2" x1="414.0141" x2="417.3509" y1="357.0040" y2="350.4669"/>
		<line fill="none" id="t3 p75" stroke="#CC3C00" stroke-width="2" x1="417.3509" x2="420.5414" y1="350.4669" y2="342.1471"/>
		<line fill="none" id="t3 p76" stroke="#CC5000" stroke-width="2" x1="420.5414" x2="421.7707" y1="342.1471" y2="337.2231"/>
		<line fill="none" id="t3 p77" stroke="#CC7800" stroke-width="2" x1="421.7707" x2="422.0049" y1="337.2231" y2="335.9921"/>
		<line fill="none" id="t3 p78" stroke="#CC7800" stroke-width="2" x1="422.0049" x2="422.2683" y1="335.9921" y2="334.2517"/>
		<line fill="none" id="t3 p79" stroke="#CC8C00" stroke-width="2" x1="422.2683" x2="422.6196" y1="334.2517" y2="333.0207"/>
		<line fill="none" id="t3 p80" stroke="#CCA000" stroke-width="2" x1="422.6196" x2="422.7367" y1="333.0207" y2="331.9595"/>
		<line fill="none" id="t3 p81" stroke="#CCA800" stroke-width="2" x1="422.7367" x2="422.8245" y1="331.9595" y2="331.1530"/>
		<line fill="none" id="t3 p82" stroke="#CCB400" stroke-width="2" x1="422.8245" x2="422.7952" y1="331.1530" y2="330.1342"/>
		<line fill="none" id="t3 p83" stroke="#CCC000" stroke-width="2" x1="422.7952" x2="422.9123" y1="330.1342" y2="329.2428"/>
		<line fill="none" id="t3 p84" stroke="#CCC800" stroke-width="2" x1="422.9123" x2="422.9708" y1="329.2428" y2="327.9269"/>
		<line fill="none" id="t3 p85" stroke="#BCCC00" stroke-width="2" x1="422.9708" x2="422.7074" y1="327.9269" y2="326.6959"/>
		<line fill="none" id="t3 p86" stroke="#BCCC00" stroke-width="2" x1="422.7074" x2="422.5318" y1="326.6959" y2="325.4649"/>
		<line fill="none" id="t3 p87" stroke="#A8CC00" stroke-width="2" x1="422.5318" x2="422.4147" y1="325.4649" y2="324.2339"/>
		<line fill="none" id="t3 p88" stroke="#94CC00" stroke-width="2" x1="422.4147" x2="422.0634" y1="324.2339" y2="322.8755"/>
		<line fill="none" id="t3 p89" stroke="#88CC00" stroke-width="2" x1="422.0634" x2="421.5658" y1="322.8755" y2="321.6870"/>
		<line fill="none" id="t3 p90" stroke="#78CC00" stroke-width="2" x1="421.5658" x2="420.8048" y1="321.6870" y2="320.4135"/>
		<line fill="none" id="t3 p91" stroke="#6CCC00" stroke-width="2" x1="420.8048" x2="419.4291" y1="320.4135" y2="318.8005"/>
		<line fill="none" id="t3 p92" stroke="#60CC00" stroke-width="2" x1="419.4291" x2="414.1312" y1="318.8005" y2="315.8291"/>
		<line fill="none" id="t3 p93" stroke="#6CCC00" stroke-width="2" x1="414.1312" x2="408.3064" y1="315.8291" y2="314.6406"/>
		<line fill="none" id="t3 p94" stroke="#60CC00" stroke-width="2" x1="408.3064" x2="401.1937" y1="314.6406" y2="313.1973"/>
		<line fill="none" id="t3 p95" stroke="#6CCC00" stroke-width="2" x1="401.1937" x2="393.8176" y1="313.1973" y2="312.6455"/>
		<line fill="none" id="t3 p96" stroke="#6CCC00" stroke-width="2" x1="393.8176" x2="385.9146" y1="312.6455" y2="311.9663"/>
		<line fill="none" id="t3 p97" stroke="#80CC00" stroke-width="2" x1="385.9146" x2="377.7482" y1="311.9663" y2="310.0137"/>
		<line fill="none" id="t3 p98" stroke="#A8CC00" stroke-width="2" x1="377.7482" x2="368.4695" y1="310.0137" y2="304.9623"/>
		<line fill="none" id="t3 p99" stroke="#CCA800" stroke-width="2" x1="368.4695" x2="360.4495" y1="304.9623" y2="301.9910"/>
		<line fill="none" id="t3 p100" stroke="#CC7800" stroke-width="2" x1="360.4495" x2="356.4102" y1="301.9910" y2="300.8024"/>
		<line fill="none" id="t3 p101" stroke="#CC9800" stroke-width="2" x1="356.4102" x2="349.1219" y1="300.8024" y2="298.8073"/>
		<line fill="none" id="t3 p102" stroke="#CC8C00" stroke-width="2" x1="349.1219" x2="339.7261" y1="298.8073" y2="297.9584"/>
		<line fill="none" id="t3 p103" stroke="#CC6400" stroke-width="2" x1="339.7261" x2="328.4571" y1="297.9584" y2="297.3641"/>
		<line fill="none" id="t3 p104" stroke="#CC5800" stroke-width="2" x1="328.4571" x2="315.4903" y1="297.3641" y2="296.3453"/>
		<line fill="none" id="t3 p105" stroke="#CC3C00" stroke-width="2" x1="315.4903" x2="303.0797" y1="296.3453" y2="292.0156"/>
		<line fill="none" id="t3 p106" stroke="#CC1400" stroke-width="2" x1="303.0797" x2="299.3039" y1="292.0156" y2="286.7945"/>
		<line fill="none" id="t3 p107" stroke="#CC2800" stroke-width="2" x1="299.3039" x2="291.8399" y1="286.7945" y2="281.4035"/>
		<line fill="none" id="t3 p108" stroke="#CC2000" stroke-width="2" x1="291.8399" x2="285.0200" y1="281.4035" y2="275.2485"/>
		<line fill="none" id="t3 p109" stroke="#CC2000" stroke-width="2" x1="285.0200" x2="283.2638" y1="275.2485" y2="267.8625"/>
		<line fill="none" id="t3 p110" stroke="#CC3000" stroke-width="2" x1="283.2638" x2="282.3856" y1="267.8625" y2="259.2031"/>
		<line fill="none" id="t3 p111" stroke="#CC3C00" stroke-width="2" x1="282.3856" x2="280.4245" y1="259.2031" y2="251.0105"/>
		<line fill="none" id="t3 p112" stroke="#CC3C00" stroke-width="2" x1="280.4245" x2="278.9025" y1="251.0105" y2="241.9691"/>
		<line fill="none" id="t3 p113" stroke="#CC5000" stroke-width="2" x1="278.9025" x2="275.7706" y1="241.9691" y2="234.2435"/>
		<line fill="none" id="t3 p114" stroke="#CC6400" stroke-width="2" x1="275.7706" x2="268.4237" y1="234.2435" y2="229.2346"/>
		<line fill="none" id="t3 p115" stroke="#CC5000" stroke-width="2" x1="268.4237" x2="263.7405" y1="229.2346" y2="223.8861"/>
		<line fill="none" id="t3 p116" stroke="#CC4800" stroke-width="2" x1="263.7405" x2="257.1254" y1="223.8861" y2="217.9009"/>
		<line fill="none" id="t3 p117" stroke="#CC4800" stroke-width="2" x1="257.1254" x2="250.6859" y1="217.9009" y2="212.8495"/>
		<line fill="none" id="t3 p118" stroke="#CC5000" stroke-width="2" x1="250.6859" x2="243.8952" y1="212.8495" y2="209.8357"/>
		<line fill="none" id="t3 p119" stroke="#CC7800" stroke-width="2" x1="243.8952" x2="236.6362" y1="209.8357" y2="205.9729"/>
		<line fill="none" id="t3 p120" stroke="#CC8C00" stroke-width="2" x1="236.6362" x2="231.6895" y1="205.9729" y2="201.5158"/>
		<line fill="none" id="t3 p121" stroke="#CC8C00" stroke-width="2" x1="231.6895" x2="228.5576" y1="201.5158" y2="198.6293"/>
		<line fill="none" id="t3 p122" stroke="#CCC800" stroke-width="2" x1="228.5576" x2="227.3868" y1="198.6293" y2="197.9077"/>
		<line fill="none" id="t3 p123" stroke="#CCC000" stroke-width="2" x1="227.3868" x2="226.4209" y1="197.9077" y2="197.5681"/>
		<line fill="none" id="t3 p124" stroke="#CCC800" stroke-width="2" x1="226.4209" x2="225.1037" y1="197.5681" y2="196.9738"/>
		<line fill="none" id="t3 p125" stroke="#BCCC00" stroke-width="2" x1="225.1037" x2="224.3427" y1="196.9738" y2="196.1249"/>
		<line fill="none" id="t3 p126" stroke="#BCCC00" stroke-width="2" x1="224.3427" x2="223.2889" y1="196.1249" y2="195.2759"/>
		<line fill="none" id="t3 p127" stroke="#CCC000" stroke-width="2" x1="223.2889" x2="222.4401" y1="195.2759" y2="194.3421"/>
		<line fill="none" id="t3 p128" stroke="#C8CC00" stroke-width="2" x1="222.4401" x2="221.6791" y1="194.3421" y2="193.6204"/>
		<line fill="none" id="t3 p129" stroke="#B0CC00" stroke-width="2" x1="221.6791" x2="220.9180" y1="193.6204" y2="192.9837"/>
		<line fill="none" id="t3 p130" stroke="#9CCC00" stroke-width="2" x1="220.9180" x2="219.6009" y1="192.9837" y2="192.6017"/>
		<line fill="none" id="t3 p131" stroke="#94CC00" stroke-width="2" x1="219.6009" x2="218.7228" y1="192.6017" y2="192.2196"/>
		<line fill="none" id="t3 p132" stroke="#94CC00" stroke-width="2" x1="218.7228" x2="217.6105" y1="192.2196" y2="191.6254"/>
		<line fill="none" id="t3 p133" stroke="#88CC00" stroke-width="2" x1="217.6105" x2="216.3811" y1="191.6254" y2="191.0735"/>
		<line fill="none" id="t3 p134" stroke="#80CC00" stroke-width="2" x1="216.3811" x2="214.7127" y1="191.0735" y2="190.3519"/>
		<line fill="none" id="t3 p135" stroke="#6CCC00" stroke-width="2" x1="214.7127" x2="212.9858" y1="190.3519" y2="189.8001"/>
		<line fill="none" id="t3 p136" stroke="#60CC00" stroke-width="2" x1="212.9858" x2="210.9954" y1="189.8001" y2="189.5029"/>
		<line fill="none" id="t3 p137" stroke="#6CCC00" stroke-width="2" x1="210.9954" x2="208.1562" y1="189.5029" y2="190.0123"/>
		<line fill="none" id="t3 p138" stroke="#50CC00" stroke-width="2" x1="208.1562" x2="206.4585" y1="190.0123" y2="190.4793"/>
		<line fill="none" id="t3 p139" stroke="#50CC00" stroke-width="2" x1="206.4585" x2="201.5997" y1="190.4793" y2="191.3707"/>
		<line fill="none" id="t3 p140" stroke="#50CC00" stroke-width="2" x1="201.5997" x2="195.3944" y1="191.3707" y2="190.0548"/>
		<line fill="none" id="t3 p141" stroke="#58CC00" stroke-width="2" x1="195.3944" x2="192.1454" y1="190.0548" y2="188.6540"/>
		<line fill="none" id="t3 p142" stroke="#44CC00" stroke-width="2" x1="192.1454" x2="190.1842" y1="188.6540" y2="185.2581"/>
		<line fill="none" id="t3 p143" stroke="#44CC00" stroke-width="2" x1="190.1842" x2="193.0527" y1="185.2581" y2="184.0271"/>
		<line fill="none" id="t3 p144" stroke="#50CC00" stroke-width="2" x1="193.0527" x2="197.8531" y1="184.0271" y2="182.2867"/>
		<line fill="none" id="t3 p145" stroke="#60CC00" stroke-width="2" x1="197.8531" x2="203.8242" y1="182.2867" y2="179.3578"/>
		<line fill="none" id="t3 p146" stroke="#58CC00" stroke-width="2" x1="203.8242" x2="212.6638" y1="179.3578" y2="176.4289"/>
		<line fill="none" id="t3 p147" stroke="#6CCC00" stroke-width="2" x1="212.6638" x2="220.8888" y1="176.4289" y2="170.3588"/>
		<line fill="none" id="t3 p148" stroke="#6CCC00" stroke-width="2" x1="220.8888" x2="222.6450" y1="170.3588" y2="166.3686"/>
		<line fill="none" id="t3 p149" stroke="#6CCC00" stroke-width="2" x1="222.6450" x2="225.9233" y1="166.3686" y2="158.0487"/>
		<line fill="none" id="t3 p150" stroke="#6CCC00" stroke-width="2" x1="225.9233" x2="228.1771" y1="158.0487" y2="151.8937"/>
		<line fill="none" id="t3 p151" stroke="#6CCC00" stroke-width="2" x1="228.1771" x2="231.7188" y1="151.8937" y2="145.0171"/>
		<line fill="none" id="t3 p152" stroke="#60CC00" stroke-width="2" x1="231.7188" x2="231.8359" y1="145.0171" y2="137.4613"/>
		<line fill="none" id="t3 p153" stroke="#58CC00" stroke-width="2" x1="231.8359" x2="231.8651" y1="137.4613" y2="135.2540"/>
		<line fill="none" id="t3 p154" stroke="#58CC00" stroke-width="2" x1="231.8651" x2="231.4846" y1="135.2540" y2="132.9193"/>
		<line fill="none" id="t3 p155" stroke="#58CC00" stroke-width="2" x1="231.4846" x2="230.9285" y1="132.9193" y2="130.5847"/>
		<line fill="none" id="t3 p156" stroke="#58CC00" stroke-width="2" x1="230.9285" x2="230.5480" y1="130.5847" y2="128.3349"/>
		<line fill="none" id="t3 p157" stroke="#6CCC00" stroke-width="2" x1="230.5480" x2="230.3138" y1="128.3349" y2="123.1987"/>
		<line fill="none" id="t3 p158" stroke="#88CC00" stroke-width="2" x1="230.3138" x2="231.4261" y1="123.1987" y2="115.2184"/>
		<line fill="none" id="t3 p159" stroke="#B0CC00" stroke-width="2" x1="231.4261" x2="234.1482" y1="115.2184" y2="103.9272"/>
		<line fill="none" id="t3 p160" stroke="#CCC000" stroke-width="2" x1="234.1482" x2="236.2264" y1="103.9272" y2="98.5362"/>
		<line fill="none" id="t3 p161" stroke="#CCC000" stroke-width="2" x1="236.2264" x2="239.5632" y1="98.5362" y2="89.5796"/>
		<line fill="none" id="t3 p162" stroke="#CC9800" stroke-width="2" x1="239.5632" x2="241.6414" y1="89.5796" y2="82.2785"/>
		<line fill="none" id="t3 p163" stroke="#CCA000" stroke-width="2" x1="241.6414" x2="241.8756" y1="82.2785" y2="74.4680"/>
		<line fill="none" id="t3 p164" stroke="#CC9800" stroke-width="2" x1="241.8756" x2="237.9241" y1="74.4680" y2="69.0346"/>
		<line fill="none" id="t3 p165" stroke="#CC9800" stroke-width="2" x1="237.9241" x2="234.0604" y1="69.0346" y2="64.0257"/>
		<line fill="none" id="t3 p166" stroke="#CCA800" stroke-width="2" x1="234.0604" x2="228.4112" y1="64.0257" y2="56.8944"/>
		<line fill="none" id="t3 p167" stroke="#CC8C00" stroke-width="2" x1="228.4112" x2="224.5183" y1="56.8944" y2="51.9280"/>
		<line fill="none" id="t3 p168" stroke="#CC9800" stroke-width="2" x1="224.5183" x2="218.6935" y1="51.9280" y2="43.9901"/>
		<line fill="none" id="t3 p169" stroke="#CC7800" stroke-width="2" x1="218.6935" x2="212.6346" y1="43.9901" y2="40.6792"/>
		<line fill="none" id="t3 p170" stroke="#CC7000" stroke-width="2" x1="212.6346" x2="206.5756" y1="40.6792" y2="40.1273"/>
		<line fill="none" id="t3 p171" stroke="#CC7800" stroke-width="2" x1="206.5756" x2="200.6337" y1="40.1273" y2="40.0000"/>
		<line fill="none" id="t3 p172" stroke="#CC7800" stroke-width="2" x1="200.6337" x2="194.8382" y1="40.0000" y2="40.4245"/>
		<line fill="none" id="t3 p173" stroke="#CC9800" stroke-width="2" x1="194.8382" x2="187.8134" y1="40.4245" y2="41.7828"/>
		<line fill="none" id="t3 p174" stroke="#CCC000" stroke-width="2" x1="187.8134" x2="181.6959" y1="41.7828" y2="43.6930"/>
		<line fill="none" id="t3 p175" stroke="#CCC000" stroke-width="2" x1="181.6959" x2="177.5980" y1="43.6930" y2="49.1264"/>
		<line fill="none" id="t3 p176" stroke="#CCC000" stroke-width="2" x1="177.5980" x2="173.2660" y1="49.1264" y2="56.1728"/>
		<line fill="none" id="t3 p177" stroke="#BCCC00" stroke-width="2" x1="173.2660" x2="167.5583" y1="56.1728" y2="60.4601"/>
		<line fill="none" id="t3 p178" stroke="#BCCC00" stroke-width="2" x1="167.5583" x2="164.8069" y1="60.4601" y2="62.1580"/>
		<line fill="none" id="t3 p179" stroke="#A8CC00" stroke-width="2" x1="164.8069" x2="157.8991" y1="62.1580" y2="60.7997"/>
		<line fill="none" id="t3 p180" stroke="#78CC00" stroke-width="2" x1="157.8991" x2="149.0010" y1="60.7997" y2="60.2054"/>
		<line fill="none" id="t3 p181" stroke="#88CC00" stroke-width="2" x1="149.0010" x2="145.1665" y1="60.2054" y2="64.5351"/>
		<line fill="none" id="t3 p182" stroke="#80CC00" stroke-width="2" x1="145.1665" x2="142.6200" y1="64.5351" y2="71.3693"/>
		<line fill="none" id="t3 p183" stroke="#60CC00" stroke-width="2" x1="142.6200" x2="139.3418" y1="71.3693" y2="78.5006"/>
		<line fill="none" id="t3 p184" stroke="#44CC00" stroke-width="2" x1="139.3418" x2="134.5707" y1="78.5006" y2="83.5095"/>
		<line fill="none" id="t3 p185" stroke="#38CC00" stroke-width="2" x1="134.5707" x2="128.6581" y1="83.5095" y2="86.7356"/>
		<line fill="none" id="t3 p186" stroke="#28CC00" stroke-width="2" x1="128.6581" x2="123.5943" y1="86.7356" y2="89.3249"/>
		<line fill="none" id="t3 p187" stroke="#28CC00" stroke-width="2" x1="123.5943" x2="119.7307" y1="89.3249" y2="97.4750"/>
		<line fill="none" id="t3 p188" stroke="#28CC00" stroke-width="2" x1="119.7307" x2="122.1308" y1="97.4750" y2="106.8985"/>
		<line fill="none" id="t3 p189" stroke="#50CC00" stroke-width="2" x1="122.1308" x2="124.0334" y1="106.8985" y2="113.2658"/>
		<line fill="none" id="t3 p190" stroke="#60CC00" stroke-width="2" x1="124.0334" x2="126.2579" y1="113.2658" y2="118.9114"/>
		<line fill="none" id="t3 p191" stroke="#50CC00" stroke-width="2" x1="126.2579" x2="127.7507" y1="118.9114" y2="124.1750"/>
		<line fill="none" id="t3 p192" stroke="#44CC00" stroke-width="2" x1="127.7507" x2="129.3021" y1="124.1750" y2="129.3112"/>
		<line fill="none" id="t3 p193" stroke="#28CC00" stroke-width="2" x1="129.3021" x2="131.1753" y1="129.3112" y2="133.4712"/>
		<line fill="none" id="t3 p194" stroke="#1CCC00" stroke-width="2" x1="131.1753" x2="132.3462" y1="133.4712" y2="134.3201"/>
		<line fill="none" id="t3 p195" stroke="#28CC00" stroke-width="2" x1="132.3462" x2="134.1902" y1="134.3201" y2="134.7871"/>
		<line fill="none" id="t3 p196" stroke="#1CCC00" stroke-width="2" x1="134.1902" x2="138.9612" y1="134.7871" y2="136.1030"/>
		<line fill="none" id="t3 p197" stroke="#30CC00" stroke-width="2" x1="138.9612" x2="142.3273" y1="136.1030" y2="138.9895"/>
		<line fill="none" id="t3 p198" stroke="#30CC00" stroke-width="2" x1="142.3273" x2="144.9031" y1="138.9895" y2="143.6588"/>
		<line fill="none" id="t3 p199" stroke="#08CC00" stroke-width="2" x1="144.9031" x2="148.6497" y1="143.6588" y2="145.9510"/>
		<line fill="none" id="t3 p200" stroke="#10CC00" stroke-width="2" x1="148.6497" x2="151.8109" y1="145.9510" y2="145.2294"/>
		<line fill="none" id="t3 p201" stroke="#10CC00" stroke-width="2" x1="151.8109" x2="153.3622" y1="145.2294" y2="144.5926"/>
		<line fill="none" id="t3 p202" stroke="#1CCC00" stroke-width="2" x1="153.3622" x2="154.4452" y1="144.5926" y2="144.1257"/>
		<line fill="none" id="t3 p203" stroke="#28CC00" stroke-width="2" x1="154.4452" x2="155.2648" y1="144.1257" y2="142.7249"/>
		<line fill="none" id="t3 p204" stroke="#28CC00" stroke-width="2" x1="155.2648" x2="155.7624" y1="142.7249" y2="136.9519"/>
		<line fill="none" id="t3 p205" stroke="#44CC00" stroke-width="2" x1="155.7624" x2="156.2893" y1="136.9519" y2="130.5847"/>
		<line fill="none" id="t3 p206" stroke="#44CC00" stroke-width="2" x1="156.2893" x2="157.4015" y1="130.5847" y2="119.8877"/>
		<line fill="none" id="t3 p207" stroke="#6CCC00" stroke-width="2" x1="157.4015" x2="160.5334" y1="119.8877" y2="110.6340"/>
		<line fill="none" id="t3 p208" stroke="#78CC00" stroke-width="2" x1="160.5334" x2="169.4609" y1="110.6340" y2="100.7860"/>
		<line fill="none" id="t3 p209" stroke="#9CCC00" stroke-width="2" x1="169.4609" x2="173.4709" y1="100.7860" y2="97.9844"/>
		<line fill="none" id="t3 p210" stroke="#B0CC00" stroke-width="2" x1="173.4709" x2="179.5884" y1="97.9844" y2="96.6260"/>
		<line fill="none" id="t3 p211" stroke="#C8CC00" stroke-width="2" x1="179.5884" x2="185.9986" y1="96.6260" y2="100.1493"/>
		<line fill="none" id="t3 p212" stroke="#CCA800" stroke-width="2" x1="185.9986" x2="191.3551" y1="100.1493" y2="103.4178"/>
		<line fill="none" id="t3 p213" stroke="#CC8000" stroke-width="2" x1="191.3551" x2="195.4236" y1="103.4178" y2="109.1058"/>
		<line fill="none" id="t3 p214" stroke="#CC8C00" stroke-width="2" x1="195.4236" x2="196.3603" y1="109.1058" y2="117.0861"/>
		<line fill="none" id="t3 p215" stroke="#CCC800" stroke-width="2" x1="196.3603" x2="196.3310" y1="117.0861" y2="123.7930"/>
		<line fill="none" id="t3 p216" stroke="#C8CC00" stroke-width="2" x1="196.3310" x2="197.3847" y1="123.7930" y2="127.3162"/>
		<line fill="none" id="t3 p217" stroke="#58CC00" stroke-width="2" x1="197.3847" x2="197.9701" y1="127.3162" y2="131.1365"/>
		<line fill="none" id="t3 p218" stroke="#58CC00" stroke-width="2" x1="197.9701" x2="198.0287" y1="131.1365" y2="134.3201"/>
		<line fill="none" id="t3 p219" stroke="#60CC00" stroke-width="2" x1="198.0287" x2="197.9994" y1="134.3201" y2="136.7821"/>
		<line fill="none" id="t3 p220" stroke="#58CC00" stroke-width="2" x1="197.9994" x2="197.7945" y1="136.7821" y2="138.3952"/>
		<line fill="none" id="t3 p221" stroke="#44CC00" stroke-width="2" x1="197.7945" x2="197.4725" y1="138.3952" y2="139.2017"/>
		<line fill="none" id="t3 p222" stroke="#44CC00" stroke-width="2" x1="197.4725" x2="196.9457" y1="139.2017" y2="140.0507"/>
		<line fill="none" id="t3 p223" stroke="#30CC00" stroke-width="2" x1="196.9457" x2="196.1554" y1="140.0507" y2="141.2817"/>
		<line fill="none" id="t3 p224" stroke="#28CC00" stroke-width="2" x1="196.1554" x2="195.7163" y1="141.2817" y2="142.1306"/>
		<line fill="none" id="t3 p225" stroke="#1CCC00" stroke-width="2" x1="195.7163" x2="192.6137" y1="142.1306" y2="147.2244"/>
		<line fill="none" id="t3 p226" stroke="#00CC0C" stroke-width="2" x1="192.6137" x2="191.1502" y1="147.2244" y2="152.7003"/>
		<line fill="none" id="t3 p227" stroke="#00CC04" stroke-width="2" x1="191.1502" x2="190.0379" y1="152.7003" y2="158.5157"/>
		<line fill="none" id="t3 p228" stroke="#00CC18" stroke-width="2" x1="190.0379" x2="185.8815" y1="158.5157" y2="160.2136"/>
		<line fill="none" id="t3 p229" stroke="#10CC00" stroke-width="2" x1="185.8815" x2="180.7299" y1="160.2136" y2="161.1475"/>
		<line fill="none" id="t3 p230" stroke="#1CCC00" stroke-width="2" x1="180.7299" x2="172.7684" y1="161.1475" y2="161.0626"/>
		<line fill="none" id="t3 p231" stroke="#30CC00" stroke-width="2" x1="172.7684" x2="165.2752" y1="161.0626" y2="158.6006"/>
		<line fill="none" id="t3 p232" stroke="#38CC00" stroke-width="2" x1="165.2752" x2="158.9529" y1="158.6006" y2="154.1011"/>
		<line fill="none" id="t3 p233" stroke="#38CC00" stroke-width="2" x1="158.9529" x2="155.0306" y1="154.1011" y2="147.6489"/>
		<line fill="none" id="t3 p234" stroke="#38CC00" stroke-width="2" x1="155.0306" x2="154.9428" y1="147.6489" y2="144.8473"/>
		<line fill="none" id="t3 p235" stroke="#1CCC00" stroke-width="2" x1="154.9428" x2="155.3233" y1="144.8473" y2="141.8335"/>
		<line fill="none" id="t3 p236" stroke="#1CCC00" stroke-width="2" x1="155.3233" x2="155.9087" y1="141.8335" y2="135.0842"/>
		<line fill="none" id="t3 p237" stroke="#30CC00" stroke-width="2" x1="155.9087" x2="156.9625" y1="135.0842" y2="121.5856"/>
		<line fill="none" id="t3 p238" stroke="#44CC00" stroke-width="2" x1="156.9625" x2="161.0018" y1="121.5856" y2="109.8275"/>
		<line fill="none" id="t3 p239" stroke="#80CC00" stroke-width="2" x1="161.0018" x2="167.4705" y1="109.8275" y2="102.9508"/>
		<line fill="none" id="t3 p240" stroke="#9CCC00" stroke-width="2" x1="167.4705" x2="172.3294" y1="102.9508" y2="102.7386"/>
		<line fill="none" id="t3 p241" stroke="#A8CC00" stroke-width="2" x1="172.3294" x2="181.9300" y1="102.7386" y2="102.6962"/>
		<line fill="none" id="t3 p242" stroke="#C8CC00" stroke-width="2" x1="181.9300" x2="191.3258" y1="102.6962" y2="103.0782"/>
		<line fill="none" id="t3 p243" stroke="#CCA800" stroke-width="2" x1="191.3258" x2="192.7015" y1="103.0782" y2="105.1157"/>
		<line fill="none" id="t3 p244" stroke="#CC8C00" stroke-width="2" x1="192.7015" x2="193.8723" y1="105.1157" y2="106.7712"/>
		<line fill="none" id="t3 p245" stroke="#CC8C00" stroke-width="2" x1="193.8723" x2="195.8919" y1="106.7712" y2="110.4217"/>
		<line fill="none" id="t3 p246" stroke="#CCA000" stroke-width="2" x1="195.8919" x2="196.3895" y1="110.4217" y2="118.5294"/>
		<line fill="none" id="t3 p247" stroke="#CCC800" stroke-width="2" x1="196.3895" x2="196.4774" y1="118.5294" y2="123.6232"/>
		<line fill="none" id="t3 p248" stroke="#80CC00" stroke-width="2" x1="196.4774" x2="197.6189" y1="123.6232" y2="128.1651"/>
		<line fill="none" id="t3 p249" stroke="#60CC00" stroke-width="2" x1="197.6189" x2="197.9116" y1="128.1651" y2="130.0753"/>
		<line fill="none" id="t3 p250" stroke="#44CC00" stroke-width="2" x1="197.9116" x2="197.9701" y1="130.0753" y2="133.3863"/>
		<line fill="none" id="t3 p251" stroke="#38CC00" stroke-width="2" x1="197.9701" x2="197.9994" y1="133.3863" y2="135.8907"/>
		<line fill="none" id="t3 p252" stroke="#28CC00" stroke-width="2" x1="197.9994" x2="197.8531" y1="135.8907" y2="137.0368"/>
		<line fill="none" id="t3 p253" stroke="#28CC00" stroke-width="2" x1="197.8531" x2="197.7067" y1="137.0368" y2="138.3952"/>
		<line fill="none" id="t3 p254" stroke="#10CC00" stroke-width="2" x1="197.7067" x2="197.1506" y1="138.3952" y2="139.7111"/>
		<line fill="none" id="t3 p255" stroke="#10CC00" stroke-width="2" x1="197.1506" x2="196.3895" y1="139.7111" y2="140.7723"/>
		<line fill="none" id="t3 p256" stroke="#10CC00" stroke-width="2" x1="196.3895" x2="195.6285" y1="140.7723" y2="142.3004"/>
		<line fill="none" id="t3 p257" stroke="#08CC00" stroke-width="2" x1="195.6285" x2="192.7308" y1="142.3004" y2="146.8424"/>
		<line fill="none" id="t3 p258" stroke="#08CC00" stroke-width="2" x1="192.7308" x2="190.9160" y1="146.8424" y2="153.6341"/>
		<line fill="none" id="t3 p259" stroke="#00CC0C" stroke-width="2" x1="190.9160" x2="189.8915" y1="153.6341" y2="158.8977"/>
		<line fill="none" id="t3 p260" stroke="#00CC28" stroke-width="2" x1="189.8915" x2="190.6818" y1="158.8977" y2="164.2886"/>
		<line fill="none" id="t3 p261" stroke="#00CC34" stroke-width="2" x1="190.6818" x2="190.7989" y1="164.2886" y2="169.5947"/>
		<line fill="none" id="t3 p262" stroke="#00CC28" stroke-width="2" x1="190.7989" x2="190.4477" y1="169.5947" y2="178.5088"/>
		<line fill="none" id="t3 p263" stroke="#00CC18" stroke-width="2" x1="190.4477" x2="190.1842" y1="178.5088" y2="185.1732"/>
		<line fill="none" id="t3 p264" stroke="#00CC04" stroke-width="2" x1="190.1842" x2="193.0235" y1="185.1732" y2="189.1634"/>
		<line fill="none" id="t3 p265" stroke="#10CC00" stroke-width="2" x1="193.0235" x2="199.6971" y1="189.1634" y2="191.5829"/>
		<line fill="none" id="t3 p266" stroke="#38CC00" stroke-width="2" x1="199.6971" x2="202.5363" y1="191.5829" y2="192.6017"/>
		<line fill="none" id="t3 p267" stroke="#58CC00" stroke-width="2" x1="202.5363" x2="204.0291" y1="192.6017" y2="194.1723"/>
		<line fill="none" id="t3 p268" stroke="#50CC00" stroke-width="2" x1="204.0291" x2="207.3952" y1="194.1723" y2="204.8268"/>
		<line fill="none" id="t3 p269" stroke="#58CC00" stroke-width="2" x1="207.3952" x2="210.2929" y1="204.8268" y2="214.3352"/>
		<line fill="none" id="t3 p270" stroke="#B0CC00" stroke-width="2" x1="210.2929" x2="218.9277" y1="214.3352" y2="230.8900"/>
		<line fill="none" id="t3 p271" stroke="#CCB400" stroke-width="2" x1="218.9277" x2="221.2107" y1="230.8900" y2="235.1349"/>
		<line fill="none" id="t3 p272" stroke="#CCC000" stroke-width="2" x1="221.2107" x2="220.2741" y1="235.1349" y2="233.5218"/>
		<line fill="none" id="t3 p273" stroke="#CCA000" stroke-width="2" x1="220.2741" x2="219.5423" y1="233.5218" y2="232.1210"/>
		<line fill="none" id="t3 p274" stroke="#CC8C00" stroke-width="2" x1="219.5423" x2="220.4497" y1="232.1210" y2="229.8288"/>
		<line fill="none" id="t3 p275" stroke="#CC9800" stroke-width="2" x1="220.4497" x2="221.6498" y1="229.8288" y2="227.4093"/>
		<line fill="none" id="t3 p276" stroke="#CCA000" stroke-width="2" x1="221.6498" x2="223.1719" y1="227.4093" y2="223.8861"/>
		<line fill="none" id="t3 p277" stroke="#CCA800" stroke-width="2" x1="223.1719" x2="225.2500" y1="223.8861" y2="218.1980"/>
		<line fill="none" id="t3 p278" stroke="#CCA000" stroke-width="2" x1="225.2500" x2="229.2893" y1="218.1980" y2="212.9769"/>
		<line fill="none" id="t3 p279" stroke="#CCB400" stroke-width="2" x1="229.2893" x2="232.7432" y1="212.9769" y2="209.6234"/>
		<line fill="none" id="t3 p280" stroke="#CCA800" stroke-width="2" x1="232.7432" x2="234.3238" y1="209.6234" y2="207.6708"/>
		<line fill="none" id="t3 p281" stroke="#CC8C00" stroke-width="2" x1="234.3238" x2="234.4702" y1="207.6708" y2="207.3312"/>
		<line fill="none" id="t3 p282" stroke="#CC8000" stroke-width="2" x1="234.4702" x2="236.1679" y1="207.3312" y2="205.6333"/>
		<line fill="none" id="t3 p283" stroke="#CC7800" stroke-width="2" x1="236.1679" x2="233.8262" y1="205.6333" y2="208.3500"/>
		<line fill="none" id="t3 p284" stroke="#CC7000" stroke-width="2" x1="233.8262" x2="231.1334" y1="208.3500" y2="211.0667"/>
		<line fill="none" id="t3 p285" stroke="#CC8000" stroke-width="2" x1="231.1334" x2="227.0063" y1="211.0667" y2="215.5238"/>
		<line fill="none" id="t3 p286" stroke="#CC8C00" stroke-width="2" x1="227.0063" x2="224.2841" y1="215.5238" y2="220.7025"/>
		<line fill="none" id="t3 p287" stroke="#CCA000" stroke-width="2" x1="224.2841" x2="222.3230" y1="220.7025" y2="225.9236"/>
		<line fill="none" id="t3 p288" stroke="#CCB400" stroke-width="2" x1="222.3230" x2="220.7424" y1="225.9236" y2="229.0648"/>
		<line fill="none" id="t3 p289" stroke="#CCB400" stroke-width="2" x1="220.7424" x2="219.6009" y1="229.0648" y2="231.8664"/>
		<line fill="none" id="t3 p290" stroke="#CCC000" stroke-width="2" x1="219.6009" x2="223.1426" y1="231.8664" y2="238.9552"/>
		<line fill="none" id="t3 p291" stroke="#CC9800" stroke-width="2" x1="223.1426" x2="227.2404" y1="238.9552" y2="247.1902"/>
		<line fill="none" id="t3 p292" stroke="#CC7800" stroke-width="2" x1="227.2404" x2="231.5139" y1="247.1902" y2="255.1705"/>
		<line fill="none" id="t3 p293" stroke="#CC7000" stroke-width="2" x1="231.5139" x2="232.5676" y1="255.1705" y2="264.5940"/>
		<line fill="none" id="t3 p294" stroke="#CC7800" stroke-width="2" x1="232.5676" x2="232.5091" y1="264.5940" y2="265.3156"/>
		<line fill="none" id="t3 p295" stroke="#CC8000" stroke-width="2" x1="232.5091" x2="232.4798" y1="265.3156" y2="265.3156"/>
		<line fill="none" id="t3 p296" stroke="#CC6400" stroke-width="2" x1="232.4798" x2="231.8944" y1="265.3156" y2="266.9287"/>
		<line fill="none" id="t3 p297" stroke="#CC9800" stroke-width="2" x1="231.8944" x2="231.6017" y1="266.9287" y2="269.5180"/>
		<line fill="none" id="t3 p298" stroke="#CC9800" stroke-width="2" x1="231.6017" x2="231.8944" y1="269.5180" y2="276.8191"/>
		<line fill="none" id="t3 p299" stroke="#CCA000" stroke-width="2" x1="231.8944" x2="232.0993" y1="276.8191" y2="285.3937"/>
		<line fill="none" id="t3 p300" stroke="#CCA000" stroke-width="2" x1="232.0993" x2="232.3042" y1="285.3937" y2="292.1430"/>
		<line fill="none" id="t3 p301" stroke="#CCB400" stroke-width="2" x1="232.3042" x2="231.7188" y1="292.1430" y2="299.4441"/>
		<line fill="none" id="t3 p302" stroke="#C8CC00" stroke-width="2" x1="231.7188" x2="231.9822" y1="299.4441" y2="303.7313"/>
		<line fill="none" id="t3 p303" stroke="#B0CC00" stroke-width="2" x1="231.9822" x2="234.7043" y1="303.7313" y2="308.7827"/>
		<line fill="none" id="t3 p304" stroke="#B0CC00" stroke-width="2" x1="234.7043" x2="240.0608" y1="308.7827" y2="312.9851"/>
		<line fill="none" id="t3 p305" stroke="#C8CC00" stroke-width="2" x1="240.0608" x2="248.1979" y1="312.9851" y2="314.8104"/>
		<line fill="none" id="t3 p306" stroke="#CCA800" stroke-width="2" x1="248.1979" x2="256.0717" y1="314.8104" y2="317.8242"/>
		<line fill="none" id="t3 p307" stroke="#CCA000" stroke-width="2" x1="256.0717" x2="261.6330" y1="317.8242" y2="322.2388"/>
		<line fill="none" id="t3 p308" stroke="#CCA000" stroke-width="2" x1="261.6330" x2="268.6871" y1="322.2388" y2="327.0355"/>
		<line fill="none" id="t3 p309" stroke="#CCA000" stroke-width="2" x1="268.6871" x2="270.9410" y1="327.0355" y2="329.2003"/>
		<line fill="none" id="t3 p310" stroke="#CCA800" stroke-width="2" x1="270.9410" x2="272.1703" y1="329.2003" y2="330.1766"/>
		<line fill="none" id="t3 p311" stroke="#CCC000" stroke-width="2" x1="272.1703" x2="273.0484" y1="330.1766" y2="331.1530"/>
		<line fill="none" id="t3 p312" stroke="#C8CC00" stroke-width="2" x1="273.0484" x2="273.7216" y1="331.1530" y2="332.2991"/>
		<line fill="none" id="t3 p313" stroke="#B0CC00" stroke-width="2" x1="273.7216" x2="274.4241" y1="332.2991" y2="333.6150"/>
		<line fill="none" id="t3 p314" stroke="#A8CC00" stroke-width="2" x1="274.4241" x2="275.0681" y1="333.6150" y2="334.8460"/>
		<line fill="none" id="t3 p315" stroke="#9CCC00" stroke-width="2" x1="275.0681" x2="275.5657" y1="334.8460" y2="335.6525"/>
		<line fill="none" id="t3 p316" stroke="#94CC00" stroke-width="2" x1="275.5657" x2="277.2048" y1="335.6525" y2="338.3267"/>
		<line fill="none" id="t3 p317" stroke="#88CC00" stroke-width="2" x1="277.2048" x2="278.6390" y1="338.3267" y2="340.8736"/>
		<line fill="none" id="t3 p318" stroke="#78CC00" stroke-width="2" x1="278.6390" x2="279.6342" y1="340.8736" y2="343.8450"/>
		<line fill="none" id="t3 p319" stroke="#60CC00" stroke-width="2" x1="279.6342" x2="280.5416" y1="343.8450" y2="347.8351"/>
		<line fill="none" id="t3 p320" stroke="#50CC00" stroke-width="2" x1="280.5416" x2="281.2734" y1="347.8351" y2="352.6318"/>
		<line fill="none" id="t3 p321" stroke="#38CC00" stroke-width="2" x1="281.2734" x2="282.2100" y1="352.6318" y2="361.0366"/>
		<line fill="none" id="t3 p322" stroke="#30CC00" stroke-width="2" x1="282.2100" x2="283.3516" y1="361.0366" y2="368.2528"/>
		<line fill="none" id="t3 p323" stroke="#1CCC00" stroke-width="2" x1="283.3516" x2="287.0982" y1="368.2528" y2="373.0070"/>
		<line fill="none" id="t3 p324" stroke="#28CC00" stroke-width="2" x1="287.0982" x2="295.9085" y1="373.0070" y2="376.5726"/>
		<line fill="none" id="t3 p325" stroke="#38CC00" stroke-width="2" x1="295.9085" x2="308.0557" y1="376.5726" y2="380.7750"/>
		<line fill="none" id="t3 p326" stroke="#58CC00" stroke-width="2" x1="308.0557" x2="317.0417" y1="380.7750" y2="383.8738"/>
		<line fill="none" id="t3 p327" stroke="#6CCC00" stroke-width="2" x1="317.0417" x2="328.3107" y1="383.8738" y2="387.0149"/>
		<line fill="none" id="t3 p328" stroke="#78CC00" stroke-width="2" x1="328.3107" x2="341.9214" y1="387.0149" y2="389.4345"/>
		<line fill="none" id="t3 p329" stroke="#9CCC00" stroke-width="2" x1="341.9214" x2="354.5369" y1="389.4345" y2="392.2785"/>
		<line fill="none" id="t3 p330" stroke="#A8CC00" stroke-width="2" x1="354.5369" x2="364.1083" y1="392.2785" y2="393.6369"/>
		<line fill="none" id="t3 p331" stroke="#9CCC00" stroke-width="2" x1="364.1083" x2="375.5822" y1="393.6369" y2="393.9764"/>
		<line fill="none" id="t3 p332" stroke="#BCCC00" stroke-width="2" x1="375.5822" x2="386.4122" y1="393.9764" y2="391.0051"/>
		<line fill="none" id="t3 p333" stroke="#CCC800" stroke-width="2" x1="386.4122" x2="397.5349" y1="391.0051" y2="388.2459"/>
		<line fill="none" id="t3 p334" stroke="#CCA800" stroke-width="2" x1="397.5349" x2="404.6476" y1="388.2459" y2="388.2884"/>
		<line fill="none" id="t3 p335" stroke="#CCA000" stroke-width="2" x1="404.6476" x2="409.4187" y1="388.2884" y2="389.3920"/>
		<line fill="none" id="t3 p336" stroke="#CCB400" stroke-width="2" x1="409.4187" x2="409.5065" y1="389.3920" y2="384.2133"/>
		<line fill="none" id="t3 p337" stroke="#CCB400" stroke-width="2" x1="409.5065" x2="408.8625" y1="384.2133" y2="375.9784"/>
		<line fill="none" id="t3 p338" stroke="#CCC000" stroke-width="2" x1="408.8625" x2="410.7066" y1="375.9784" y2="366.0879"/>
		<line fill="none" id="t3 p339" stroke="#CC8C00" stroke-width="2" x1="410.7066" x2="411.9945" y1="366.0879" y2="362.6496"/>
		<line fill="none" id="t3 p340" stroke="#CC8C00" stroke-width="2" x1="411.9945" x2="412.7848" y1="362.6496" y2="359.8480"/>
		<line fill="none" id="t3 p341" stroke="#CC8C00" stroke-width="2" x1="412.7848" x2="411.2334" y1="359.8480" y2="358.7868"/>
		<line fill="none" id="t3 p342" stroke="#CC6400" stroke-width="2" x1="411.2334" x2="407.3405" y1="358.7868" y2="356.0277"/>
		<line fill="none" id="t3 p343" stroke="#CC6400" stroke-width="2" x1="407.3405" x2="399.8766" y1="356.0277" y2="354.2448"/>
		<line fill="none" id="t3 p344" stroke="#CC7000" stroke-width="2" x1="399.8766" x2="390.8028" y1="354.2448" y2="353.0987"/>
		<line fill="none" id="t3 p345" stroke="#CC8000" stroke-width="2" x1="390.8028" x2="383.3389" y1="353.0987" y2="354.2448"/>
		<line fill="none" id="t3 p346" stroke="#CCA000" stroke-width="2" x1="383.3389" x2="376.5481" y1="354.2448" y2="352.3347"/>
		<line fill="none" id="t3 p347" stroke="#CCA000" stroke-width="2" x1="376.5481" x2="370.2550" y1="352.3347" y2="353.8628"/>
		<line fill="none" id="t3 p348" stroke="#CCA000" stroke-width="2" x1="370.2550" x2="363.6107" y1="353.8628" y2="357.0889"/>
		<line fill="none" id="t3 p349" stroke="#CC9800" stroke-width="2" x1="363.6107" x2="360.5373" y1="357.0889" y2="361.3761"/>
		<line fill="none" id="t3 p350" stroke="#CCA800" stroke-width="2" x1="360.5373" x2="356.5858" y1="361.3761" y2="364.5598"/>
		<line fill="none" id="t3 p351" stroke="#CCB400" stroke-width="2" x1="356.5858" x2="354.3027" y1="364.5598" y2="365.8332"/>
		<line fill="none" id="t3 p352" stroke="#C8CC00" stroke-width="2" x1="354.3027" x2="353.5417" y1="365.8332" y2="366.2153"/>
		<line fill="none" id="t3 p353" stroke="#BCCC00" stroke-width="2" x1="353.5417" x2="352.8392" y1="366.2153" y2="366.4275"/>
		<line fill="none" id="t3 p354" stroke="#B0CC00" stroke-width="2" x1="352.8392" x2="352.1367" y1="366.4275" y2="367.0218"/>
		<line fill="none" id="t3 p355" stroke="#94CC00" stroke-width="2" x1="352.1367" x2="351.4928" y1="367.0218" y2="367.2340"/>
		<line fill="none" id="t3 p356" stroke="#88CC00" stroke-width="2" x1="351.4928" x2="350.9659" y1="367.2340" y2="367.7434"/>
		<line fill="none" id="t3 p357" stroke="#88CC00" stroke-width="2" x1="350.9659" x2="350.0293" y1="367.7434" y2="368.3801"/>
		<line fill="none" id="t3 p358" stroke="#6CCC00" stroke-width="2" x1="350.0293" x2="349.1219" y1="368.3801" y2="369.1442"/>
		<line fill="none" id="t3 p359" stroke="#58CC00" stroke-width="2" x1="349.1219" x2="346.5754" y1="369.1442" y2="371.0968"/>
		<line fill="none" id="t3 p360" stroke="#44CC00" stroke-width="2" x1="346.5754" x2="343.2386" y1="371.0968" y2="373.0070"/>
		<line fill="none" id="t3 p361" stroke="#28CC00" stroke-width="2" x1="343.2386" x2="341.7165" y1="373.0070" y2="373.9408"/>
		<line fill="none" id="t3 p362" stroke="#1CCC00" stroke-width="2" x1="341.7165" x2="339.7554" y1="373.9408" y2="374.7898"/>
		<line fill="none" id="t3 p363" stroke="#1CCC00" stroke-width="2" x1="339.7554" x2="337.1796" y1="374.7898" y2="374.8323"/>
		<line fill="none" id="t3 p364" stroke="#10CC00" stroke-width="2" x1="337.1796" x2="334.7795" y1="374.8323" y2="375.0870"/>
		<line fill="none" id="t3 p365" stroke="#1CCC00" stroke-width="2" x1="334.7795" x2="332.1159" y1="375.0870" y2="374.8323"/>
		<line fill="none" id="t3 p366" stroke="#10CC00" stroke-width="2" x1="332.1159" x2="329.9499" y1="374.8323" y2="374.4927"/>
	</g>
	<g id="21-Feb-CU-20-Feb 2 (t4) track" opacity="0.9">
		<line fill="none" id="t4 p1" stroke="#00CC40" stroke-width="2" x1="494.0976" x2="495.5611" y1="532.6975" y2="517.2888"/>
		<line fill="none" id="t4 p2" stroke="#00CC48" stroke-width="2" x1="495.5611" x2="491.0828" y1="517.2888" y2="506.6343"/>
		<line fill="none" id="t4 p3" stroke="#00CC34" stroke-width="2" x1="491.0828" x2="489.9705" y1="506.6343" y2="497.8050"/>
		<line fill="none" id="t4 p4" stroke="#00CC18" stroke-width="2" x1="489.9705" x2="496.7027" y1="497.8050" y2="486.6836"/>
		<line fill="none" id="t4 p5" stroke="#00CC20" stroke-width="2" x1="496.7027" x2="500.9761" y1="486.6836" y2="481.8869"/>
		<line fill="none" id="t4 p6" stroke="#00CC04" stroke-width="2" x1="500.9761" x2="505.7179" y1="481.8869" y2="478.4910"/>
		<line fill="none" id="t4 p7" stroke="#10CC00" stroke-width="2" x1="505.7179" x2="511.3671" y1="478.4910" y2="473.3123"/>
		<line fill="none" id="t4 p8" stroke="#44CC00" stroke-width="2" x1="511.3671" x2="517.2504" y1="473.3123" y2="465.9688"/>
		<line fill="none" id="t4 p9" stroke="#10CC00" stroke-width="2" x1="517.2504" x2="522.1093" y1="465.9688" y2="459.9411"/>
	</g>
	<g id="21-Feb-CU-20-Feb 3 (t5) track" opacity="0.9">
		<line fill="none" id="t5 p1" stroke="#08CC00" stroke-width="2" x1="309.7534" x2="307.9971" y1="381.5391" y2="381.5391"/>
		<line fill="none" id="t5 p2" stroke="#08CC00" stroke-width="2" x1="307.9971" x2="305.7433" y1="381.5391" y2="382.5579"/>
		<line fill="none" id="t5 p3" stroke="#08CC00" stroke-width="2" x1="305.7433" x2="304.1920" y1="382.5579" y2="383.7464"/>
		<line fill="none" id="t5 p4" stroke="#1CCC00" stroke-width="2" x1="304.1920" x2="302.7285" y1="383.7464" y2="385.5717"/>
		<line fill="none" id="t5 p5" stroke="#1CCC00" stroke-width="2" x1="302.7285" x2="302.0553" y1="385.5717" y2="388.4582"/>
		<line fill="none" id="t5 p6" stroke="#1CCC00" stroke-width="2" x1="302.0553" x2="302.5529" y1="388.4582" y2="391.0051"/>
		<line fill="none" id="t5 p7" stroke="#1CCC00" stroke-width="2" x1="302.5529" x2="304.7481" y1="391.0051" y2="398.3911"/>
		<line fill="none" id="t5 p8" stroke="#28CC00" stroke-width="2" x1="304.7481" x2="313.9390" y1="398.3911" y2="413.5876"/>
		<line fill="none" id="t5 p9" stroke="#38CC00" stroke-width="2" x1="313.9390" x2="319.3833" y1="413.5876" y2="424.8788"/>
		<line fill="none" id="t5 p10" stroke="#44CC00" stroke-width="2" x1="319.3833" x2="324.6227" y1="424.8788" y2="434.8117"/>
		<line fill="none" id="t5 p11" stroke="#60CC00" stroke-width="2" x1="324.6227" x2="329.2474" y1="434.8117" y2="444.0655"/>
		<line fill="none" id="t5 p12" stroke="#60CC00" stroke-width="2" x1="329.2474" x2="331.4719" y1="444.0655" y2="449.8809"/>
		<line fill="none" id="t5 p13" stroke="#60CC00" stroke-width="2" x1="331.4719" x2="335.6576" y1="449.8809" y2="460.3232"/>
		<line fill="none" id="t5 p14" stroke="#58CC00" stroke-width="2" x1="335.6576" x2="339.5798" y1="460.3232" y2="455.4840"/>
		<line fill="none" id="t5 p15" stroke="#60CC00" stroke-width="2" x1="339.5798" x2="341.3360" y1="455.4840" y2="451.2392"/>
		<line fill="none" id="t5 p16" stroke="#6CCC00" stroke-width="2" x1="341.3360" x2="343.4435" y1="451.2392" y2="445.4238"/>
		<line fill="none" id="t5 p17" stroke="#80CC00" stroke-width="2" x1="343.4435" x2="347.9804" y1="445.4238" y2="437.9104"/>
		<line fill="none" id="t5 p18" stroke="#88CC00" stroke-width="2" x1="347.9804" x2="351.6977" y1="437.9104" y2="430.0575"/>
		<line fill="none" id="t5 p19" stroke="#9CCC00" stroke-width="2" x1="351.6977" x2="353.6295" y1="430.0575" y2="424.5817"/>
		<line fill="none" id="t5 p20" stroke="#78CC00" stroke-width="2" x1="353.6295" x2="355.5614" y1="424.5817" y2="417.3655"/>
		<line fill="none" id="t5 p21" stroke="#60CC00" stroke-width="2" x1="355.5614" x2="357.6103" y1="417.3655" y2="410.8284"/>
		<line fill="none" id="t5 p22" stroke="#44CC00" stroke-width="2" x1="357.6103" x2="360.0690" y1="410.8284" y2="404.9706"/>
		<line fill="none" id="t5 p23" stroke="#38CC00" stroke-width="2" x1="360.0690" x2="361.7959" y1="404.9706" y2="397.4997"/>
		<line fill="none" id="t5 p24" stroke="#38CC00" stroke-width="2" x1="361.7959" x2="362.1764" y1="397.4997" y2="395.2499"/>
		<line fill="none" id="t5 p25" stroke="#38CC00" stroke-width="2" x1="362.1764" x2="362.8204" y1="395.2499" y2="393.5944"/>
		<line fill="none" id="t5 p26" stroke="#38CC00" stroke-width="2" x1="362.8204" x2="372.8308" y1="393.5944" y2="394.1038"/>
		<line fill="none" id="t5 p27" stroke="#60CC00" stroke-width="2" x1="372.8308" x2="381.8168" y1="394.1038" y2="392.1512"/>
		<line fill="none" id="t5 p28" stroke="#88CC00" stroke-width="2" x1="381.8168" x2="392.5590" y1="392.1512" y2="389.0100"/>
		<line fill="none" id="t5 p29" stroke="#B0CC00" stroke-width="2" x1="392.5590" x2="404.6476" y1="389.0100" y2="388.6280"/>
		<line fill="none" id="t5 p30" stroke="#CCB400" stroke-width="2" x1="404.6476" x2="409.5650" y1="388.6280" y2="389.4345"/>
		<line fill="none" id="t5 p31" stroke="#CCC000" stroke-width="2" x1="409.5650" x2="414.6581" y1="389.4345" y2="396.8205"/>
		<line fill="none" id="t5 p32" stroke="#BCCC00" stroke-width="2" x1="414.6581" x2="420.6877" y1="396.8205" y2="405.8620"/>
		<line fill="none" id="t5 p33" stroke="#CCC000" stroke-width="2" x1="420.6877" x2="424.1709" y1="405.8620" y2="411.9745"/>
		<line fill="none" id="t5 p34" stroke="#CCC000" stroke-width="2" x1="424.1709" x2="426.7467" y1="411.9745" y2="421.1434"/>
		<line fill="none" id="t5 p35" stroke="#CCC000" stroke-width="2" x1="426.7467" x2="424.8734" y1="421.1434" y2="430.4395"/>
		<line fill="none" id="t5 p36" stroke="#C8CC00" stroke-width="2" x1="424.8734" x2="423.1172" y1="430.4395" y2="436.2125"/>
		<line fill="none" id="t5 p37" stroke="#C8CC00" stroke-width="2" x1="423.1172" x2="420.6292" y1="436.2125" y2="443.3438"/>
		<line fill="none" id="t5 p38" stroke="#B0CC00" stroke-width="2" x1="420.6292" x2="417.9071" y1="443.3438" y2="451.4939"/>
		<line fill="none" id="t5 p39" stroke="#9CCC00" stroke-width="2" x1="417.9071" x2="416.9997" y1="451.4939" y2="454.9322"/>
		<line fill="none" id="t5 p40" stroke="#9CCC00" stroke-width="2" x1="416.9997" x2="414.2190" y1="454.9322" y2="454.7200"/>
		<line fill="none" id="t5 p41" stroke="#9CCC00" stroke-width="2" x1="414.2190" x2="409.5650" y1="454.7200" y2="454.5502"/>
		<line fill="none" id="t5 p42" stroke="#A8CC00" stroke-width="2" x1="409.5650" x2="402.8036" y1="454.5502" y2="454.2530"/>
		<line fill="none" id="t5 p43" stroke="#94CC00" stroke-width="2" x1="402.8036" x2="395.0470" y1="454.2530" y2="455.2718"/>
		<line fill="none" id="t5 p44" stroke="#78CC00" stroke-width="2" x1="395.0470" x2="389.5442" y1="455.2718" y2="455.9085"/>
		<line fill="none" id="t5 p45" stroke="#50CC00" stroke-width="2" x1="389.5442" x2="386.4122" y1="455.9085" y2="457.9885"/>
		<line fill="none" id="t5 p46" stroke="#38CC00" stroke-width="2" x1="386.4122" x2="386.5586" y1="457.9885" y2="464.9076"/>
		<line fill="none" id="t5 p47" stroke="#28CC00" stroke-width="2" x1="386.5586" x2="387.2903" y1="464.9076" y2="473.6944"/>
		<line fill="none" id="t5 p48" stroke="#1CCC00" stroke-width="2" x1="387.2903" x2="393.3786" y1="473.6944" y2="479.2975"/>
		<line fill="none" id="t5 p49" stroke="#38CC00" stroke-width="2" x1="393.3786" x2="396.8617" y1="479.2975" y2="485.2828"/>
		<line fill="none" id="t5 p50" stroke="#58CC00" stroke-width="2" x1="396.8617" x2="395.6909" y1="485.2828" y2="489.2305"/>
		<line fill="none" id="t5 p51" stroke="#58CC00" stroke-width="2" x1="395.6909" x2="391.6516" y1="489.2305" y2="489.9945"/>
		<line fill="none" id="t5 p52" stroke="#30CC00" stroke-width="2" x1="391.6516" x2="386.8806" y1="489.9945" y2="488.4239"/>
		<line fill="none" id="t5 p53" stroke="#10CC00" stroke-width="2" x1="386.8806" x2="380.6167" y1="488.4239" y2="485.7921"/>
		<line fill="none" id="t5 p54" stroke="#00CC18" stroke-width="2" x1="380.6167" x2="374.9676" y1="485.7921" y2="485.5375"/>
		<line fill="none" id="t5 p55" stroke="#00CC18" stroke-width="2" x1="374.9676" x2="366.0987" y1="485.5375" y2="484.6885"/>
		<line fill="none" id="t5 p56" stroke="#08CC00" stroke-width="2" x1="366.0987" x2="360.8007" y1="484.6885" y2="486.6836"/>
		<line fill="none" id="t5 p57" stroke="#28CC00" stroke-width="2" x1="360.8007" x2="356.7907" y1="486.6836" y2="489.4427"/>
		<line fill="none" id="t5 p58" stroke="#1CCC00" stroke-width="2" x1="356.7907" x2="352.7807" y1="489.4427" y2="493.0508"/>
		<line fill="none" id="t5 p59" stroke="#08CC00" stroke-width="2" x1="352.7807" x2="350.1171" y1="493.0508" y2="496.0646"/>
		<line fill="none" id="t5 p60" stroke="#28CC00" stroke-width="2" x1="350.1171" x2="351.2294" y1="496.0646" y2="506.6343"/>
		<line fill="none" id="t5 p61" stroke="#10CC00" stroke-width="2" x1="351.2294" x2="349.1512" y1="506.6343" y2="513.4684"/>
		<line fill="none" id="t5 p62" stroke="#28CC00" stroke-width="2" x1="349.1512" x2="340.7213" y1="513.4684" y2="522.0430"/>
		<line fill="none" id="t5 p63" stroke="#10CC00" stroke-width="2" x1="340.7213" x2="334.7502" y1="522.0430" y2="527.6886"/>
		<line fill="none" id="t5 p64" stroke="#1CCC00" stroke-width="2" x1="334.7502" x2="329.5986" y1="527.6886" y2="532.8673"/>
		<line fill="none" id="t5 p65" stroke="#30CC00" stroke-width="2" x1="329.5986" x2="322.4859" y1="532.8673" y2="537.9187"/>
		<line fill="none" id="t5 p66" stroke="#38CC00" stroke-width="2" x1="322.4859" x2="316.3977" y1="537.9187" y2="541.5692"/>
		<line fill="none" id="t5 p67" stroke="#10CC00" stroke-width="2" x1="316.3977" x2="308.9631" y1="541.5692" y2="547.5544"/>
		<line fill="none" id="t5 p68" stroke="#00CC04" stroke-width="2" x1="308.9631" x2="302.6992" y1="547.5544" y2="551.3323"/>
		<line fill="none" id="t5 p69" stroke="#1CCC00" stroke-width="2" x1="302.6992" x2="300.8845" y1="551.3323" y2="556.0016"/>
		<line fill="none" id="t5 p70" stroke="#1CCC00" stroke-width="2" x1="300.8845" x2="301.7040" y1="556.0016" y2="562.8358"/>
		<line fill="none" id="t5 p71" stroke="#10CC00" stroke-width="2" x1="301.7040" x2="304.7189" y1="562.8358" y2="569.8822"/>
		<line fill="none" id="t5 p72" stroke="#1CCC00" stroke-width="2" x1="304.7189" x2="307.5581" y1="569.8822" y2="574.1271"/>
		<line fill="none" id="t5 p73" stroke="#10CC00" stroke-width="2" x1="307.5581" x2="309.9290" y1="574.1271" y2="581.8527"/>
		<line fill="none" id="t5 p74" stroke="#10CC00" stroke-width="2" x1="309.9290" x2="313.2658" y1="581.8527" y2="590.7244"/>
		<line fill="none" id="t5 p75" stroke="#10CC00" stroke-width="2" x1="313.2658" x2="318.1247" y1="590.7244" y2="604.0531"/>
		<line fill="none" id="t5 p76" stroke="#10CC00" stroke-width="2" x1="318.1247" x2="317.4807" y1="604.0531" y2="609.1894"/>
		<line fill="none" id="t5 p77" stroke="#1CCC00" stroke-width="2" x1="317.4807" x2="310.8656" y1="609.1894" y2="616.6178"/>
		<line fill="none" id="t5 p78" stroke="#28CC00" stroke-width="2" x1="310.8656" x2="304.3676" y1="616.6178" y2="624.5557"/>
		<line fill="none" id="t5 p79" stroke="#30CC00" stroke-width="2" x1="304.3676" x2="301.9382" y1="624.5557" y2="630.8805"/>
		<line fill="none" id="t5 p80" stroke="#30CC00" stroke-width="2" x1="301.9382" x2="302.8748" y1="630.8805" y2="636.4412"/>
		<line fill="none" id="t5 p81" stroke="#28CC00" stroke-width="2" x1="302.8748" x2="306.9727" y1="636.4412" y2="641.3227"/>
		<line fill="none" id="t5 p82" stroke="#28CC00" stroke-width="2" x1="306.9727" x2="314.9342" y1="641.3227" y2="646.5014"/>
		<line fill="none" id="t5 p83" stroke="#38CC00" stroke-width="2" x1="314.9342" x2="320.9931" y1="646.5014" y2="648.1994"/>
		<line fill="none" id="t5 p84" stroke="#44CC00" stroke-width="2" x1="320.9931" x2="329.2474" y1="648.1994" y2="644.3790"/>
		<line fill="none" id="t5 p85" stroke="#50CC00" stroke-width="2" x1="329.2474" x2="338.6431" y1="644.3790" y2="637.8420"/>
		<line fill="none" id="t5 p86" stroke="#38CC00" stroke-width="2" x1="338.6431" x2="345.2289" y1="637.8420" y2="635.6771"/>
		<line fill="none" id="t5 p87" stroke="#1CCC00" stroke-width="2" x1="345.2289" x2="351.2294" y1="635.6771" y2="636.4836"/>
		<line fill="none" id="t5 p88" stroke="#08CC00" stroke-width="2" x1="351.2294" x2="359.6007" y1="636.4836" y2="641.1105"/>
		<line fill="none" id="t5 p89" stroke="#10CC00" stroke-width="2" x1="359.6007" x2="365.7474" y1="641.1105" y2="644.6337"/>
		<line fill="none" id="t5 p90" stroke="#10CC00" stroke-width="2" x1="365.7474" x2="372.1576" y1="644.6337" y2="647.3929"/>
		<line fill="none" id="t5 p91" stroke="#1CCC00" stroke-width="2" x1="372.1576" x2="380.0899" y1="647.3929" y2="646.2043"/>
		<line fill="none" id="t5 p92" stroke="#28CC00" stroke-width="2" x1="380.0899" x2="389.2515" y1="646.2043" y2="646.2467"/>
		<line fill="none" id="t5 p93" stroke="#28CC00" stroke-width="2" x1="389.2515" x2="397.1544" y1="646.2467" y2="647.6900"/>
		<line fill="none" id="t5 p94" stroke="#1CCC00" stroke-width="2" x1="397.1544" x2="404.1208" y1="647.6900" y2="648.3692"/>
		<line fill="none" id="t5 p95" stroke="#1CCC00" stroke-width="2" x1="404.1208" x2="412.4335" y1="648.3692" y2="642.8509"/>
		<line fill="none" id="t5 p96" stroke="#1CCC00" stroke-width="2" x1="412.4335" x2="422.7659" y1="642.8509" y2="637.1204"/>
		<line fill="none" id="t5 p97" stroke="#1CCC00" stroke-width="2" x1="422.7659" x2="430.6982" y1="637.1204" y2="635.2951"/>
		<line fill="none" id="t5 p98" stroke="#1CCC00" stroke-width="2" x1="430.6982" x2="436.5522" y1="635.2951" y2="633.3849"/>
		<line fill="none" id="t5 p99" stroke="#28CC00" stroke-width="2" x1="436.5522" x2="445.8309" y1="633.3849" y2="632.7482"/>
		<line fill="none" id="t5 p100" stroke="#10CC00" stroke-width="2" x1="445.8309" x2="445.7431" y1="632.7482" y2="617.9762"/>
		<line fill="none" id="t5 p101" stroke="#00CC20" stroke-width="2" x1="445.7431" x2="441.9965" y1="617.9762" y2="605.5813"/>
		<line fill="none" id="t5 p102" stroke="#00CC28" stroke-width="2" x1="441.9965" x2="441.0891" y1="605.5813" y2="592.1252"/>
		<line fill="none" id="t5 p103" stroke="#00CC48" stroke-width="2" x1="441.0891" x2="441.7623" y1="592.1252" y2="582.5743"/>
		<line fill="none" id="t5 p104" stroke="#00CC68" stroke-width="2" x1="441.7623" x2="446.9139" y1="582.5743" y2="558.5061"/>
		<line fill="none" id="t5 p105" stroke="#00CC68" stroke-width="2" x1="446.9139" x2="447.2652" y1="558.5061" y2="551.8842"/>
		<line fill="none" id="t5 p106" stroke="#00CC34" stroke-width="2" x1="447.2652" x2="445.6553" y1="551.8842" y2="545.9838"/>
	</g>
	
	<g id="21-Feb-CU-21-Feb 2 (t7) track" opacity="0.9">
		<line fill="none" id="t7 p1" stroke="#44CC00" stroke-width="2" x1="522.6654" x2="520.7628" y1="459.8138" y2="462.0635"/>
		<line fill="none" id="t7 p2" stroke="#60CC00" stroke-width="2" x1="520.7628" x2="513.9136" y1="462.0635" y2="470.6381"/>
		<line fill="none" id="t7 p3" stroke="#78CC00" stroke-width="2" x1="513.9136" x2="508.4108" y1="470.6381" y2="477.0053"/>
		<line fill="none" id="t7 p4" stroke="#6CCC00" stroke-width="2" x1="508.4108" x2="501.3566" y1="477.0053" y2="481.8020"/>
		<line fill="none" id="t7 p5" stroke="#80CC00" stroke-width="2" x1="501.3566" x2="494.7416" y1="481.8020" y2="489.6549"/>
		<line fill="none" id="t7 p6" stroke="#80CC00" stroke-width="2" x1="494.7416" x2="489.7071" y1="489.6549" y2="498.6115"/>
		<line fill="none" id="t7 p7" stroke="#88CC00" stroke-width="2" x1="489.7071" x2="490.2925" y1="498.6115" y2="505.4033"/>
		<line fill="none" id="t7 p8" stroke="#88CC00" stroke-width="2" x1="490.2925" x2="491.2291" y1="505.4033" y2="507.1436"/>
		<line fill="none" id="t7 p9" stroke="#9CCC00" stroke-width="2" x1="491.2291" x2="491.9609" y1="507.1436" y2="507.9077"/>
		<line fill="none" id="t7 p10" stroke="#B0CC00" stroke-width="2" x1="491.9609" x2="493.6000" y1="507.9077" y2="510.6668"/>
		<line fill="none" id="t7 p11" stroke="#C8CC00" stroke-width="2" x1="493.6000" x2="495.4148" y1="510.6668" y2="514.5296"/>
		<line fill="none" id="t7 p12" stroke="#BCCC00" stroke-width="2" x1="495.4148" x2="494.4489" y1="514.5296" y2="520.7695"/>
		<line fill="none" id="t7 p13" stroke="#9CCC00" stroke-width="2" x1="494.4489" x2="493.9805" y1="520.7695" y2="527.3490"/>
		<line fill="none" id="t7 p14" stroke="#94CC00" stroke-width="2" x1="493.9805" x2="494.3318" y1="527.3490" y2="533.4616"/>
		<line fill="none" id="t7 p15" stroke="#88CC00" stroke-width="2" x1="494.3318" x2="498.3711" y1="533.4616" y2="538.3856"/>
		<line fill="none" id="t7 p16" stroke="#88CC00" stroke-width="2" x1="498.3711" x2="504.3129" y1="538.3856" y2="540.8476"/>
		<line fill="none" id="t7 p17" stroke="#9CCC00" stroke-width="2" x1="504.3129" x2="510.7231" y1="540.8476" y2="543.5643"/>
		<line fill="none" id="t7 p18" stroke="#A8CC00" stroke-width="2" x1="510.7231" x2="516.4016" y1="543.5643" y2="547.0450"/>
		<line fill="none" id="t7 p19" stroke="#B0CC00" stroke-width="2" x1="516.4016" x2="519.7969" y1="547.0450" y2="552.6058"/>
		<line fill="none" id="t7 p20" stroke="#BCCC00" stroke-width="2" x1="519.7969" x2="521.3775" y1="552.6058" y2="557.5298"/>
		<line fill="none" id="t7 p21" stroke="#9CCC00" stroke-width="2" x1="521.3775" x2="522.3142" y1="557.5298" y2="564.8733"/>
		<line fill="none" id="t7 p22" stroke="#9CCC00" stroke-width="2" x1="522.3142" x2="524.5680" y1="564.8733" y2="570.7312"/>
		<line fill="none" id="t7 p23" stroke="#9CCC00" stroke-width="2" x1="524.5680" x2="527.6706" y1="570.7312" y2="575.0185"/>
		<line fill="none" id="t7 p24" stroke="#9CCC00" stroke-width="2" x1="527.6706" x2="528.2560" y1="575.0185" y2="583.6355"/>
		<line fill="none" id="t7 p25" stroke="#9CCC00" stroke-width="2" x1="528.2560" x2="528.7244" y1="583.6355" y2="591.5733"/>
		<line fill="none" id="t7 p26" stroke="#9CCC00" stroke-width="2" x1="528.7244" x2="528.4902" y1="591.5733" y2="595.6908"/>
		<line fill="none" id="t7 p27" stroke="#9CCC00" stroke-width="2" x1="528.4902" x2="522.5483" y1="595.6908" y2="599.4263"/>
		<line fill="none" id="t7 p28" stroke="#80CC00" stroke-width="2" x1="522.5483" x2="517.2211" y1="599.4263" y2="602.6523"/>
		<line fill="none" id="t7 p29" stroke="#94CC00" stroke-width="2" x1="517.2211" x2="512.3330" y1="602.6523" y2="606.0482"/>
		<line fill="none" id="t7 p30" stroke="#94CC00" stroke-width="2" x1="512.3330" x2="507.0351" y1="606.0482" y2="609.6563"/>
		<line fill="none" id="t7 p31" stroke="#9CCC00" stroke-width="2" x1="507.0351" x2="502.0006" y1="609.6563" y2="614.3256"/>
		<line fill="none" id="t7 p32" stroke="#9CCC00" stroke-width="2" x1="502.0006" x2="497.3173" y1="614.3256" y2="618.8251"/>
		<line fill="none" id="t7 p33" stroke="#9CCC00" stroke-width="2" x1="497.3173" x2="492.2243" y1="618.8251" y2="623.2398"/>
		<line fill="none" id="t7 p34" stroke="#A8CC00" stroke-width="2" x1="492.2243" x2="486.7508" y1="623.2398" y2="627.3573"/>
		<line fill="none" id="t7 p35" stroke="#B0CC00" stroke-width="2" x1="486.7508" x2="481.8041" y1="627.3573" y2="630.9654"/>
		<line fill="none" id="t7 p36" stroke="#BCCC00" stroke-width="2" x1="481.8041" x2="475.6866" y1="630.9654" y2="634.7433"/>
		<line fill="none" id="t7 p37" stroke="#B0CC00" stroke-width="2" x1="475.6866" x2="469.5984" y1="634.7433" y2="636.0592"/>
		<line fill="none" id="t7 p38" stroke="#B0CC00" stroke-width="2" x1="469.5984" x2="462.1930" y1="636.0592" y2="638.2665"/>
		<line fill="none" id="t7 p39" stroke="#A8CC00" stroke-width="2" x1="462.1930" x2="454.5242" y1="638.2665" y2="639.5399"/>
		<line fill="none" id="t7 p40" stroke="#80CC00" stroke-width="2" x1="454.5242" x2="448.7287" y1="639.5399" y2="636.9930"/>
		<line fill="none" id="t7 p41" stroke="#60CC00" stroke-width="2" x1="448.7287" x2="445.9187" y1="636.9930" y2="632.7057"/>
		<line fill="none" id="t7 p42" stroke="#30CC00" stroke-width="2" x1="445.9187" x2="439.0402" y1="632.7057" y2="632.7482"/>
		<line fill="none" id="t7 p43" stroke="#38CC00" stroke-width="2" x1="439.0402" x2="433.5081" y1="632.7482" y2="634.2763"/>
		<line fill="none" id="t7 p44" stroke="#1CCC00" stroke-width="2" x1="433.5081" x2="426.7174" y1="634.2763" y2="636.4836"/>
		<line fill="none" id="t7 p45" stroke="#38CC00" stroke-width="2" x1="426.7174" x2="421.9171" y1="636.4836" y2="637.5024"/>
		<line fill="none" id="t7 p46" stroke="#78CC00" stroke-width="2" x1="421.9171" x2="413.7800" y1="637.5024" y2="641.9595"/>
		<line fill="none" id="t7 p47" stroke="#28CC00" stroke-width="2" x1="413.7800" x2="408.2186" y1="641.9595" y2="645.6525"/>
		<line fill="none" id="t7 p48" stroke="#00CC0C" stroke-width="2" x1="408.2186" x2="403.0085" y1="645.6525" y2="648.5814"/>
		<line fill="none" id="t7 p49" stroke="#00CC5C" stroke-width="2" x1="403.0085" x2="395.5738" y1="648.5814" y2="647.6051"/>
		<line fill="none" id="t7 p50" stroke="#00CC78" stroke-width="2" x1="395.5738" x2="387.8172" y1="647.6051" y2="646.0770"/>
		<line fill="none" id="t7 p51" stroke="#00CC98" stroke-width="2" x1="387.8172" x2="380.1191" y1="646.0770" y2="646.2467"/>
		<line fill="none" id="t7 p52" stroke="#00CCB8" stroke-width="2" x1="380.1191" x2="371.8649" y1="646.2467" y2="646.7986"/>
		<line fill="none" id="t7 p53" stroke="#00CCAC" stroke-width="2" x1="371.8649" x2="365.3962" y1="646.7986" y2="643.8696"/>
		<line fill="none" id="t7 p54" stroke="#00CC84" stroke-width="2" x1="365.3962" x2="359.0738" y1="643.8696" y2="640.7709"/>
		<line fill="none" id="t7 p55" stroke="#00CC84" stroke-width="2" x1="359.0738" x2="352.4002" y1="640.7709" y2="637.4175"/>
		<line fill="none" id="t7 p56" stroke="#00CC68" stroke-width="2" x1="352.4002" x2="347.0730" y1="637.4175" y2="634.7857"/>
		<line fill="none" id="t7 p57" stroke="#00CC5C" stroke-width="2" x1="347.0730" x2="340.1652" y1="634.7857" y2="637.2477"/>
		<line fill="none" id="t7 p58" stroke="#00CC48" stroke-width="2" x1="340.1652" x2="333.7550" y1="637.2477" y2="641.0256"/>
		<line fill="none" id="t7 p59" stroke="#00CC48" stroke-width="2" x1="333.7550" x2="326.4082" y1="641.0256" y2="646.2467"/>
		<line fill="none" id="t7 p60" stroke="#00CC28" stroke-width="2" x1="326.4082" x2="320.6126" y1="646.2467" y2="648.1569"/>
		<line fill="none" id="t7 p61" stroke="#00CC68" stroke-width="2" x1="320.6126" x2="313.6463" y1="648.1569" y2="645.9496"/>
		<line fill="none" id="t7 p62" stroke="#00CC5C" stroke-width="2" x1="313.6463" x2="307.5288" y1="645.9496" y2="641.9170"/>
		<line fill="none" id="t7 p63" stroke="#00CC5C" stroke-width="2" x1="307.5288" x2="304.1627" y1="641.9170" y2="637.7146"/>
		<line fill="none" id="t7 p64" stroke="#00CC40" stroke-width="2" x1="304.1627" x2="301.9382" y1="637.7146" y2="632.7906"/>
		<line fill="none" id="t7 p65" stroke="#00CC20" stroke-width="2" x1="301.9382" x2="304.0164" y1="632.7906" y2="625.5320"/>
		<line fill="none" id="t7 p66" stroke="#00CC0C" stroke-width="2" x1="304.0164" x2="307.8508" y1="625.5320" y2="619.8439"/>
		<line fill="none" id="t7 p67" stroke="#00CC0C" stroke-width="2" x1="307.8508" x2="313.0609" y1="619.8439" y2="614.5379"/>
		<line fill="none" id="t7 p68" stroke="#00CC04" stroke-width="2" x1="313.0609" x2="317.1880" y1="614.5379" y2="609.1894"/>
		<line fill="none" id="t7 p69" stroke="#10CC00" stroke-width="2" x1="317.1880" x2="317.9783" y1="609.1894" y2="604.2654"/>
		<line fill="none" id="t7 p70" stroke="#08CC00" stroke-width="2" x1="317.9783" x2="314.9342" y1="604.2654" y2="595.8182"/>
		<line fill="none" id="t7 p71" stroke="#1CCC00" stroke-width="2" x1="314.9342" x2="312.5926" y1="595.8182" y2="589.2811"/>
		<line fill="none" id="t7 p72" stroke="#1CCC00" stroke-width="2" x1="312.5926" x2="310.4851" y1="589.2811" y2="583.2110"/>
		<line fill="none" id="t7 p73" stroke="#1CCC00" stroke-width="2" x1="310.4851" x2="308.0264" y1="583.2110" y2="575.4430"/>
		<line fill="none" id="t7 p74" stroke="#38CC00" stroke-width="2" x1="308.0264" x2="305.4214" y1="575.4430" y2="570.9859"/>
		<line fill="none" id="t7 p75" stroke="#28CC00" stroke-width="2" x1="305.4214" x2="302.5529" y1="570.9859" y2="564.8309"/>
		<line fill="none" id="t7 p76" stroke="#30CC00" stroke-width="2" x1="302.5529" x2="300.7088" y1="564.8309" y2="558.8032"/>
		<line fill="none" id="t7 p77" stroke="#30CC00" stroke-width="2" x1="300.7088" x2="301.1772" y1="558.8032" y2="552.4784"/>
		<line fill="none" id="t7 p78" stroke="#10CC00" stroke-width="2" x1="301.1772" x2="307.3532" y1="552.4784" y2="548.1487"/>
		<line fill="none" id="t7 p79" stroke="#00CC20" stroke-width="2" x1="307.3532" x2="312.8267" y1="548.1487" y2="544.2435"/>
		<line fill="none" id="t7 p80" stroke="#00CC40" stroke-width="2" x1="312.8267" x2="319.6174" y1="544.2435" y2="539.7864"/>
		<line fill="none" id="t7 p81" stroke="#00CC40" stroke-width="2" x1="319.6174" x2="325.5886" y1="539.7864" y2="536.4330"/>
		<line fill="none" id="t7 p82" stroke="#00CC28" stroke-width="2" x1="325.5886" x2="331.1499" y1="536.4330" y2="531.2543"/>
		<line fill="none" id="t7 p83" stroke="#00CC20" stroke-width="2" x1="331.1499" x2="335.9210" y1="531.2543" y2="526.2454"/>
		<line fill="none" id="t7 p84" stroke="#00CC0C" stroke-width="2" x1="335.9210" x2="340.9848" y1="526.2454" y2="522.1703"/>
		<line fill="none" id="t7 p85" stroke="#00CC18" stroke-width="2" x1="340.9848" x2="348.3901" y1="522.1703" y2="514.5721"/>
		<line fill="none" id="t7 p86" stroke="#00CC28" stroke-width="2" x1="348.3901" x2="350.1464" y1="514.5721" y2="510.9215"/>
		<line fill="none" id="t7 p87" stroke="#00CC20" stroke-width="2" x1="350.1464" x2="351.2586" y1="510.9215" y2="504.8090"/>
		<line fill="none" id="t7 p88" stroke="#08CC00" stroke-width="2" x1="351.2586" x2="350.2342" y1="504.8090" y2="497.9324"/>
		<line fill="none" id="t7 p89" stroke="#28CC00" stroke-width="2" x1="350.2342" x2="348.5072" y1="497.9324" y2="491.6925"/>
		<line fill="none" id="t7 p90" stroke="#50CC00" stroke-width="2" x1="348.5072" x2="347.3949" y1="491.6925" y2="485.7072"/>
		<line fill="none" id="t7 p91" stroke="#60CC00" stroke-width="2" x1="347.3949" x2="345.0826" y1="485.7072" y2="479.0853"/>
		<line fill="none" id="t7 p92" stroke="#78CC00" stroke-width="2" x1="345.0826" x2="341.1604" y1="479.0853" y2="473.8642"/>
		<line fill="none" id="t7 p93" stroke="#6CCC00" stroke-width="2" x1="341.1604" x2="338.2919" y1="473.8642" y2="468.3459"/>
		<line fill="none" id="t7 p94" stroke="#80CC00" stroke-width="2" x1="338.2919" x2="335.7746" y1="468.3459" y2="460.4505"/>
		<line fill="none" id="t7 p95" stroke="#60CC00" stroke-width="2" x1="335.7746" x2="339.9310" y1="460.4505" y2="455.4840"/>
		<line fill="none" id="t7 p96" stroke="#58CC00" stroke-width="2" x1="339.9310" x2="342.7117" y1="455.4840" y2="448.3527"/>
		<line fill="none" id="t7 p97" stroke="#10CC00" stroke-width="2" x1="342.7117" x2="345.1119" y1="448.3527" y2="442.6222"/>
		<line fill="none" id="t7 p98" stroke="#1CCC00" stroke-width="2" x1="345.1119" x2="348.4779" y1="442.6222" y2="437.1039"/>
		<line fill="none" id="t7 p99" stroke="#30CC00" stroke-width="2" x1="348.4779" x2="351.3757" y1="437.1039" y2="431.1612"/>
		<line fill="none" id="t7 p100" stroke="#38CC00" stroke-width="2" x1="351.3757" x2="353.6002" y1="431.1612" y2="425.4731"/>
		<line fill="none" id="t7 p101" stroke="#38CC00" stroke-width="2" x1="353.6002" x2="355.1516" y1="425.4731" y2="419.1058"/>
		<line fill="none" id="t7 p102" stroke="#30CC00" stroke-width="2" x1="355.1516" x2="357.1712" y1="419.1058" y2="412.5264"/>
		<line fill="none" id="t7 p103" stroke="#10CC00" stroke-width="2" x1="357.1712" x2="359.7763" y1="412.5264" y2="405.8620"/>
		<line fill="none" id="t7 p104" stroke="#1CCC00" stroke-width="2" x1="359.7763" x2="361.5325" y1="405.8620" y2="398.8156"/>
		<line fill="none" id="t7 p105" stroke="#10CC00" stroke-width="2" x1="361.5325" x2="362.7618" y1="398.8156" y2="393.6793"/>
		<line fill="none" id="t7 p106" stroke="#30CC00" stroke-width="2" x1="362.7618" x2="371.0453" y1="393.6793" y2="394.2736"/>
		<line fill="none" id="t7 p107" stroke="#30CC00" stroke-width="2" x1="371.0453" x2="377.6604" y1="394.2736" y2="393.7218"/>
		<line fill="none" id="t7 p108" stroke="#44CC00" stroke-width="2" x1="377.6604" x2="384.3340" y1="393.7218" y2="391.2598"/>
		<line fill="none" id="t7 p109" stroke="#6CCC00" stroke-width="2" x1="384.3340" x2="391.4467" y1="391.2598" y2="389.4345"/>
		<line fill="none" id="t7 p110" stroke="#88CC00" stroke-width="2" x1="391.4467" x2="397.6813" y1="389.4345" y2="388.7129"/>
		<line fill="none" id="t7 p111" stroke="#A8CC00" stroke-width="2" x1="397.6813" x2="405.3501" y1="388.7129" y2="388.2035"/>
		<line fill="none" id="t7 p112" stroke="#CCC800" stroke-width="2" x1="405.3501" x2="410.7651" y1="388.2035" y2="391.0475"/>
		<line fill="none" id="t7 p113" stroke="#CCC000" stroke-width="2" x1="410.7651" x2="414.9800" y1="391.0475" y2="396.4384"/>
		<line fill="none" id="t7 p114" stroke="#C8CC00" stroke-width="2" x1="414.9800" x2="419.0779" y1="396.4384" y2="402.8057"/>
		<line fill="none" id="t7 p115" stroke="#BCCC00" stroke-width="2" x1="419.0779" x2="422.7659" y1="402.8057" y2="409.3427"/>
		<line fill="none" id="t7 p116" stroke="#CCC800" stroke-width="2" x1="422.7659" x2="425.4881" y1="409.3427" y2="414.7337"/>
		<line fill="none" id="t7 p117" stroke="#C8CC00" stroke-width="2" x1="425.4881" x2="426.8345" y1="414.7337" y2="420.8038"/>
		<line fill="none" id="t7 p118" stroke="#C8CC00" stroke-width="2" x1="426.8345" x2="425.6051" y1="420.8038" y2="427.2559"/>
		<line fill="none" id="t7 p119" stroke="#BCCC00" stroke-width="2" x1="425.6051" x2="424.3173" y1="427.2559" y2="432.4771"/>
		<line fill="none" id="t7 p120" stroke="#9CCC00" stroke-width="2" x1="424.3173" x2="421.8878" y1="432.4771" y2="439.2263"/>
		<line fill="none" id="t7 p121" stroke="#9CCC00" stroke-width="2" x1="421.8878" x2="419.7511" y1="439.2263" y2="445.5087"/>
		<line fill="none" id="t7 p122" stroke="#9CCC00" stroke-width="2" x1="419.7511" x2="416.8826" y1="445.5087" y2="455.2718"/>
		<line fill="none" id="t7 p123" stroke="#94CC00" stroke-width="2" x1="416.8826" x2="411.4969" y1="455.2718" y2="454.3379"/>
		<line fill="none" id="t7 p124" stroke="#88CC00" stroke-width="2" x1="411.4969" x2="405.5257" y1="454.3379" y2="453.9984"/>
		<line fill="none" id="t7 p125" stroke="#78CC00" stroke-width="2" x1="405.5257" x2="399.4668" y1="453.9984" y2="454.1257"/>
		<line fill="none" id="t7 p126" stroke="#6CCC00" stroke-width="2" x1="399.4668" x2="393.2615" y1="454.1257" y2="455.4840"/>
		<line fill="none" id="t7 p127" stroke="#38CC00" stroke-width="2" x1="393.2615" x2="387.0855" y1="455.4840" y2="456.5453"/>
		<line fill="none" id="t7 p128" stroke="#28CC00" stroke-width="2" x1="387.0855" x2="386.2366" y1="456.5453" y2="462.2333"/>
		<line fill="none" id="t7 p129" stroke="#28CC00" stroke-width="2" x1="386.2366" x2="386.7049" y1="462.2333" y2="468.4308"/>
		<line fill="none" id="t7 p130" stroke="#28CC00" stroke-width="2" x1="386.7049" x2="387.9636" y1="468.4308" y2="474.5858"/>
		<line fill="none" id="t7 p131" stroke="#28CC00" stroke-width="2" x1="387.9636" x2="393.2908" y1="474.5858" y2="479.4249"/>
		<line fill="none" id="t7 p132" stroke="#44CC00" stroke-width="2" x1="393.2908" x2="396.7739" y1="479.4249" y2="484.5611"/>
		<line fill="none" id="t7 p133" stroke="#6CCC00" stroke-width="2" x1="396.7739" x2="394.9884" y1="484.5611" y2="489.8672"/>
		<line fill="none" id="t7 p134" stroke="#6CCC00" stroke-width="2" x1="394.9884" x2="388.8709" y1="489.8672" y2="489.1880"/>
		<line fill="none" id="t7 p135" stroke="#50CC00" stroke-width="2" x1="388.8709" x2="383.4852" y1="489.1880" y2="486.9382"/>
		<line fill="none" id="t7 p136" stroke="#30CC00" stroke-width="2" x1="383.4852" x2="377.8068" y1="486.9382" y2="485.0705"/>
		<line fill="none" id="t7 p137" stroke="#38CC00" stroke-width="2" x1="377.8068" x2="371.2795" y1="485.0705" y2="485.1979"/>
		<line fill="none" id="t7 p138" stroke="#38CC00" stroke-width="2" x1="371.2795" x2="364.3132" y1="485.1979" y2="484.6885"/>
		<line fill="none" id="t7 p139" stroke="#50CC00" stroke-width="2" x1="364.3132" x2="358.9567" y1="484.6885" y2="487.5325"/>
		<line fill="none" id="t7 p140" stroke="#44CC00" stroke-width="2" x1="358.9567" x2="354.2149" y1="487.5325" y2="491.4378"/>
		<line fill="none" id="t7 p141" stroke="#38CC00" stroke-width="2" x1="354.2149" x2="349.9415" y1="491.4378" y2="495.8099"/>
		<line fill="none" id="t7 p142" stroke="#08CC00" stroke-width="2" x1="349.9415" x2="347.8340" y1="495.8099" y2="486.8109"/>
		<line fill="none" id="t7 p143" stroke="#28CC00" stroke-width="2" x1="347.8340" x2="345.5802" y1="486.8109" y2="479.2127"/>
		<line fill="none" id="t7 p144" stroke="#58CC00" stroke-width="2" x1="345.5802" x2="341.7165" y1="479.2127" y2="474.1189"/>
		<line fill="none" id="t7 p145" stroke="#58CC00" stroke-width="2" x1="341.7165" x2="338.8188" y1="474.1189" y2="468.3034"/>
		<line fill="none" id="t7 p146" stroke="#6CCC00" stroke-width="2" x1="338.8188" x2="336.4479" y1="468.3034" y2="462.7427"/>
		<line fill="none" id="t7 p147" stroke="#60CC00" stroke-width="2" x1="336.4479" x2="333.9892" y1="462.7427" y2="456.4604"/>
		<line fill="none" id="t7 p148" stroke="#58CC00" stroke-width="2" x1="333.9892" x2="331.3256" y1="456.4604" y2="449.6686"/>
		<line fill="none" id="t7 p149" stroke="#6CCC00" stroke-width="2" x1="331.3256" x2="328.7498" y1="449.6686" y2="443.2589"/>
		<line fill="none" id="t7 p150" stroke="#6CCC00" stroke-width="2" x1="328.7498" x2="326.0569" y1="443.2589" y2="437.6982"/>
		<line fill="none" id="t7 p151" stroke="#78CC00" stroke-width="2" x1="326.0569" x2="323.0421" y1="437.6982" y2="432.0526"/>
		<line fill="none" id="t7 p152" stroke="#80CC00" stroke-width="2" x1="323.0421" x2="320.1443" y1="432.0526" y2="426.3645"/>
		<line fill="none" id="t7 p153" stroke="#78CC00" stroke-width="2" x1="320.1443" x2="317.3051" y1="426.3645" y2="420.6340"/>
		<line fill="none" id="t7 p154" stroke="#58CC00" stroke-width="2" x1="317.3051" x2="314.4951" y1="420.6340" y2="414.6912"/>
		<line fill="none" id="t7 p155" stroke="#50CC00" stroke-width="2" x1="314.4951" x2="311.5681" y1="414.6912" y2="409.2578"/>
		<line fill="none" id="t7 p156" stroke="#44CC00" stroke-width="2" x1="311.5681" x2="308.2020" y1="409.2578" y2="403.8245"/>
		<line fill="none" id="t7 p157" stroke="#44CC00" stroke-width="2" x1="308.2020" x2="304.6018" y1="403.8245" y2="398.0939"/>
		<line fill="none" id="t7 p158" stroke="#44CC00" stroke-width="2" x1="304.6018" x2="302.5821" y1="398.0939" y2="392.0663"/>
		<line fill="none" id="t7 p159" stroke="#44CC00" stroke-width="2" x1="302.5821" x2="301.9382" y1="392.0663" y2="386.5904"/>
		<line fill="none" id="t7 p160" stroke="#44CC00" stroke-width="2" x1="301.9382" x2="305.1579" y1="386.5904" y2="383.0248"/>
		<line fill="none" id="t7 p161" stroke="#44CC00" stroke-width="2" x1="305.1579" x2="309.4021" y1="383.0248" y2="381.4542"/>
		<line fill="none" id="t7 p162" stroke="#44CC00" stroke-width="2" x1="309.4021" x2="319.2955" y1="381.4542" y2="384.9774"/>
		<line fill="none" id="t7 p163" stroke="#38CC00" stroke-width="2" x1="319.2955" x2="325.5593" y1="384.9774" y2="386.6753"/>
		<line fill="none" id="t7 p164" stroke="#44CC00" stroke-width="2" x1="325.5593" x2="332.2329" y1="386.6753" y2="387.9488"/>
		<line fill="none" id="t7 p165" stroke="#58CC00" stroke-width="2" x1="332.2329" x2="339.0822" y1="387.9488" y2="389.2222"/>
		<line fill="none" id="t7 p166" stroke="#60CC00" stroke-width="2" x1="339.0822" x2="345.9607" y1="389.2222" y2="390.7079"/>
		<line fill="none" id="t7 p167" stroke="#6CCC00" stroke-width="2" x1="345.9607" x2="352.2538" y1="390.7079" y2="391.9814"/>
		<line fill="none" id="t7 p168" stroke="#78CC00" stroke-width="2" x1="352.2538" x2="358.3128" y1="391.9814" y2="393.2124"/>
		<line fill="none" id="t7 p169" stroke="#80CC00" stroke-width="2" x1="358.3128" x2="364.6059" y1="393.2124" y2="393.8916"/>
		<line fill="none" id="t7 p170" stroke="#80CC00" stroke-width="2" x1="364.6059" x2="371.7186" y1="393.8916" y2="394.1887"/>
		<line fill="none" id="t7 p171" stroke="#58CC00" stroke-width="2" x1="371.7186" x2="378.8898" y1="394.1887" y2="392.8303"/>
		<line fill="none" id="t7 p172" stroke="#78CC00" stroke-width="2" x1="378.8898" x2="386.3537" y1="392.8303" y2="390.1137"/>
		<line fill="none" id="t7 p173" stroke="#88CC00" stroke-width="2" x1="386.3537" x2="392.9980" y1="390.1137" y2="388.8402"/>
		<line fill="none" id="t7 p174" stroke="#A8CC00" stroke-width="2" x1="392.9980" x2="399.3790" y1="388.8402" y2="388.5431"/>
		<line fill="none" id="t7 p175" stroke="#BCCC00" stroke-width="2" x1="399.3790" x2="405.5843" y1="388.5431" y2="388.8402"/>
		<line fill="none" id="t7 p176" stroke="#A8CC00" stroke-width="2" x1="405.5843" x2="410.0334" y1="388.8402" y2="390.3259"/>
		<line fill="none" id="t7 p177" stroke="#A8CC00" stroke-width="2" x1="410.0334" x2="415.3605" y1="390.3259" y2="398.0515"/>
		<line fill="none" id="t7 p178" stroke="#B0CC00" stroke-width="2" x1="415.3605" x2="419.4291" y1="398.0515" y2="403.9942"/>
		<line fill="none" id="t7 p179" stroke="#A8CC00" stroke-width="2" x1="419.4291" x2="422.8537" y1="403.9942" y2="409.6399"/>
		<line fill="none" id="t7 p180" stroke="#A8CC00" stroke-width="2" x1="422.8537" x2="425.8393" y1="409.6399" y2="415.2855"/>
		<line fill="none" id="t7 p181" stroke="#A8CC00" stroke-width="2" x1="425.8393" x2="426.7760" y1="415.2855" y2="421.6527"/>
		<line fill="none" id="t7 p182" stroke="#9CCC00" stroke-width="2" x1="426.7760" x2="425.2539" y1="421.6527" y2="429.1236"/>
		<line fill="none" id="t7 p183" stroke="#9CCC00" stroke-width="2" x1="425.2539" x2="423.6440" y1="429.1236" y2="434.8542"/>
		<line fill="none" id="t7 p184" stroke="#9CCC00" stroke-width="2" x1="423.6440" x2="421.2731" y1="434.8542" y2="441.6883"/>
		<line fill="none" id="t7 p185" stroke="#9CCC00" stroke-width="2" x1="421.2731" x2="419.3998" y1="441.6883" y2="446.5275"/>
		<line fill="none" id="t7 p186" stroke="#94CC00" stroke-width="2" x1="419.3998" x2="417.0290" y1="446.5275" y2="454.2955"/>
		<line fill="none" id="t7 p187" stroke="#94CC00" stroke-width="2" x1="417.0290" x2="415.9752" y1="454.2955" y2="460.3232"/>
		<line fill="none" id="t7 p188" stroke="#94CC00" stroke-width="2" x1="415.9752" x2="416.2972" y1="460.3232" y2="467.1998"/>
		<line fill="none" id="t7 p189" stroke="#9CCC00" stroke-width="2" x1="416.2972" x2="417.2631" y1="467.1998" y2="473.9491"/>
		<line fill="none" id="t7 p190" stroke="#94CC00" stroke-width="2" x1="417.2631" x2="417.2046" y1="473.9491" y2="480.3163"/>
		<line fill="none" id="t7 p191" stroke="#94CC00" stroke-width="2" x1="417.2046" x2="418.6388" y1="480.3163" y2="486.2166"/>
		<line fill="none" id="t7 p192" stroke="#88CC00" stroke-width="2" x1="418.6388" x2="422.0049" y1="486.2166" y2="490.8435"/>
		<line fill="none" id="t7 p193" stroke="#50CC00" stroke-width="2" x1="422.0049" x2="427.0687" y1="490.8435" y2="495.4279"/>
		<line fill="none" id="t7 p194" stroke="#30CC00" stroke-width="2" x1="427.0687" x2="431.4592" y1="495.4279" y2="500.4793"/>
		<line fill="none" id="t7 p195" stroke="#28CC00" stroke-width="2" x1="431.4592" x2="436.4644" y1="500.4793" y2="505.4882"/>
		<line fill="none" id="t7 p196" stroke="#30CC00" stroke-width="2" x1="436.4644" x2="439.4207" y1="505.4882" y2="511.6432"/>
		<line fill="none" id="t7 p197" stroke="#28CC00" stroke-width="2" x1="439.4207" x2="442.0258" y1="511.6432" y2="517.9255"/>
		<line fill="none" id="t7 p198" stroke="#1CCC00" stroke-width="2" x1="442.0258" x2="444.3674" y1="517.9255" y2="524.0381"/>
		<line fill="none" id="t7 p199" stroke="#10CC00" stroke-width="2" x1="444.3674" x2="450.1336" y1="524.0381" y2="527.6886"/>
		<line fill="none" id="t7 p200" stroke="#10CC00" stroke-width="2" x1="450.1336" x2="456.2804" y1="527.6886" y2="531.1694"/>
		<line fill="none" id="t7 p201" stroke="#1CCC00" stroke-width="2" x1="456.2804" x2="462.4564" y1="531.1694" y2="534.7775"/>
		<line fill="none" id="t7 p202" stroke="#00CC18" stroke-width="2" x1="462.4564" x2="470.3887" y1="534.7775" y2="540.1260"/>
		<line fill="none" id="t7 p203" stroke="#00CC28" stroke-width="2" x1="470.3887" x2="477.2087" y1="540.1260" y2="539.4468"/>
		<line fill="none" id="t7 p204" stroke="#10CC00" stroke-width="2" x1="477.2087" x2="483.8530" y1="539.4468" y2="535.1171"/>
		<line fill="none" id="t7 p205" stroke="#28CC00" stroke-width="2" x1="483.8530" x2="491.1413" y1="535.1171" y2="533.1220"/>
		<line fill="none" id="t7 p206" stroke="#44CC00" stroke-width="2" x1="491.1413" x2="493.9513" y1="533.1220" y2="528.6649"/>
		<line fill="none" id="t7 p207" stroke="#58CC00" stroke-width="2" x1="493.9513" x2="495.0928" y1="528.6649" y2="516.3974"/>
		<line fill="none" id="t7 p208" stroke="#80CC00" stroke-width="2" x1="495.0928" x2="493.4829" y1="516.3974" y2="511.1762"/>
		<line fill="none" id="t7 p209" stroke="#60CC00" stroke-width="2" x1="493.4829" x2="490.0876" y1="511.1762" y2="504.6392"/>
		<line fill="none" id="t7 p210" stroke="#78CC00" stroke-width="2" x1="490.0876" x2="489.5900" y1="504.6392" y2="499.3332"/>
		<line fill="none" id="t7 p211" stroke="#80CC00" stroke-width="2" x1="489.5900" x2="491.9023" y1="499.3332" y2="493.5602"/>
		<line fill="none" id="t7 p212" stroke="#94CC00" stroke-width="2" x1="491.9023" x2="495.5319" y1="493.5602" y2="488.2117"/>
		<line fill="none" id="t7 p213" stroke="#88CC00" stroke-width="2" x1="495.5319" x2="500.0395" y1="488.2117" y2="483.2877"/>
		<line fill="none" id="t7 p214" stroke="#9CCC00" stroke-width="2" x1="500.0395" x2="505.6594" y1="483.2877" y2="478.9155"/>
		<line fill="none" id="t7 p215" stroke="#88CC00" stroke-width="2" x1="505.6594" x2="510.3719" y1="478.9155" y2="474.8405"/>
		<line fill="none" id="t7 p216" stroke="#A8CC00" stroke-width="2" x1="510.3719" x2="514.9088" y1="474.8405" y2="469.4495"/>
		<line fill="none" id="t7 p217" stroke="#A8CC00" stroke-width="2" x1="514.9088" x2="518.7432" y1="469.4495" y2="464.3133"/>
		<line fill="none" id="t7 p218" stroke="#6CCC00" stroke-width="2" x1="518.7432" x2="522.4020" y1="464.3133" y2="459.5166"/>
	</g>
	
	<g id="Waypoints"/>
	
	<rect fill="none" height="699" id="image_boundary" opacity="0" stroke="#000000" stroke-width="1" width="699" x="0.5" y="0.5"/>
	<a id="modified_source_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/map?format=svg&amp;local_input=convert/display/1289918140-14799-208.123.41.2-modified.svg"/>
	<a id="localized_jpeg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/map?format=svg&amp;local_input=convert/localize?localize_mode=rasterize_jpg&amp;local_input=/1289918140-14799-208.123.41.2-modified.svg"/>
	<a id="localized_png_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/map?format=svg&amp;local_input=convert/localize?localize_mode=rasterize_png&amp;local_input=/1289918140-14799-208.123.41.2-modified.svg"/>
	<a id="localized_svg_link" target="_blank" xlink:href="http://www.gpsvisualizer.com/map?format=svg&amp;local_input=convert/localize?localize_mode=embed&amp;local_input=/1289918140-14799-208.123.41.2-modified.svg"/>	<script type="text/ecmascript"><![CDATA[
	function saveModifiedSource() {
		var okay_to_continue;
		if (document.URL.substr(0,4) == 'http') {
			okay_to_continue = confirm('After you click "OK" or "Yes" in this box, please wait a few moments while your updated SVG file is sent to the server.')
		} else {
			alert('Sorry.  For security reasons, you can only save modifications to a file that resides on gpsvisualizer.com.');
			return;
		}
		if (SVGDoc.getElementById('modified_source_link text') != null) {
			var theThingToDelete = SVGDoc.getElementById('modified_source_link text');
			theThingToDelete.getParentNode().removeChild(theThingToDelete);
		}
		if (SVGDoc.getElementById('localized_jpeg_link text') != null) {
			var theThingToDelete2 = SVGDoc.getElementById('localized_jpeg_link text');
			theThingToDelete2.getParentNode().removeChild(theThingToDelete2);
		}
		if (SVGDoc.getElementById('localized_png_link text') != null) {
			var theThingToDelete3 = SVGDoc.getElementById('localized_png_link text');
			theThingToDelete3.getParentNode().removeChild(theThingToDelete3);
		}
		if (okay_to_continue) {
			showSaver(0);
			var theSource = printNode(document.rootElement);
			showSaver(1);
			postURL('http://www.gpsvisualizer.com/map?format=svg&local_input=convert/save_modified.cgi?/1289918140-14799-208.123.41.2.svg',theSource,postIsDone,"image/svg-xml");
		}
	}
	function postIsDone() {
		if (SVGDoc.getElementById('modified_source_link') != null) {
			
			var theExistingModifiedLink = SVGDoc.getElementById('modified_source_link');
			var newModLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newModLinkLabel.setAttributeNS(null, 'id', 'modified_source_link text');
			newModLinkLabel.setAttributeNS(null, 'x', 3); newModLinkLabel.setAttributeNS(null, 'y', 14);
			newModLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newModLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newModLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newModLinkText = document.createTextNode('Retrieve modified SVG');
			newModLinkLabel.appendChild(newModLinkText);
			theExistingModifiedLink.appendChild(newModLinkLabel);

			var theExistingJPEGLink = SVGDoc.getElementById('localized_jpeg_link');
			var newJPEGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newJPEGLinkLabel.setAttributeNS(null, 'id', 'localized_jpeg_link text');
			newJPEGLinkLabel.setAttributeNS(null, 'x', 3); newJPEGLinkLabel.setAttributeNS(null, 'y', 28);
			newJPEGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newJPEGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newJPEGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newJPEGLinkText = document.createTextNode('Convert modified SVG to JPEG');
			newJPEGLinkLabel.appendChild(newJPEGLinkText);
			theExistingJPEGLink.appendChild(newJPEGLinkLabel);

			var theExistingPNGLink = SVGDoc.getElementById('localized_png_link');
			var newPNGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newPNGLinkLabel.setAttributeNS(null, 'id', 'localized_png_link text');
			newPNGLinkLabel.setAttributeNS(null, 'x', 3); newPNGLinkLabel.setAttributeNS(null, 'y', 42);
			newPNGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newPNGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newPNGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newPNGLinkText = document.createTextNode('Convert modified SVG to PNG');
			newPNGLinkLabel.appendChild(newPNGLinkText);
			theExistingPNGLink.appendChild(newPNGLinkLabel);

			var theExistingSVGLink = SVGDoc.getElementById('localized_svg_link');
			var newSVGLinkLabel = SVGDoc.createElementNS(svgns,'text');
			newSVGLinkLabel.setAttributeNS(null, 'id', 'localized_svg_link text');
			newSVGLinkLabel.setAttributeNS(null, 'x', 3); newSVGLinkLabel.setAttributeNS(null, 'y', 56);
			newSVGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newSVGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana');  newSVGLinkLabel.setAttributeNS(null, 'font-size', '12');
			var newSVGLinkText = document.createTextNode('Localize modified SVG (embed background)');
			newSVGLinkLabel.appendChild(newSVGLinkText);
			theExistingSVGLink.appendChild(newSVGLinkLabel);

			alert('The modified data has been recorded.  Click "Retrieve modified SVG" to open your new file, or click "Convert modified SVG to JPEG/PNG" or "Localize modified SVG" to create a flat graphic or simplified SVG of your drawing.')
		}
	}
	function saverMouseDown(evt,id) {
		var theSaver = SVGDoc.getElementById('Saver');
		if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
		tracking = 1;
		findGroupClickOffset(evt,id);
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
	}
	function saverMouseUp(evt,id) {
		var theSaver = SVGDoc.getElementById('Saver');
		if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
		// Any time the mouse is lifted off the saver, clear the blue highlights
		var theGroupTags = SVGDoc.getElementsByTagName('g');
		for(g=0; g < theGroupTags.length; g++){
			theGroupTags.item(g).setAttributeNS(null, 'stroke','none');
			theGroupTags.item(g).setAttributeNS(null, 'stroke-width',0);
		}
		tracking = 0;
		var scale = SVGRoot.getCurrentScale();
		var pan = SVGRoot.getCurrentTranslate();
		var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
		var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
		if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
			saveModifiedSource();
		}
	}
	]]>
	</script>
	<g id="Saver" onmousedown="saverMouseDown(evt,'Saver')" onmousemove="moveGroup(evt,'Saver')" onmouseup="saverMouseUp(evt,'Saver')" opacity="0" transform="translate(682, 2)" x="682" y="2">
		<rect fill="#CC0000" height="16" id="saver 1" rx="1.5" ry="1.5" width="16" x="0" y="0"/>
		<rect fill="#FFFFFF" height="8.5" id="saver 2" width="12" x="2" y="0.5"/>
		<rect fill="#999999" height="1" id="saver 3a" width="11" x="2.5" y="2"/>
		<rect fill="#999999" height="1" id="saver 3b" width="11" x="2.5" y="4"/>
		<rect fill="#999999" height="1" id="saver 3c" width="11" x="2.5" y="6"/>
		<rect fill="#CCCCCC" height="5.5" id="saver 4" width="8" x="4" y="10.5"/>
		<rect fill="#CC0000" height="4.5" id="saver 5" width="2" x="5.5" y="11"/>
	</g><!-- debugging stuff:
 --><!-- key = 1289918140-14799
 --><!-- min. altitude = 404.371704
 --><!-- max. altitude = 453.398926
 --><!-- colorize min = 404.371704
 --><!-- colorize max = 453.398926
 --><!-- colorize range = 49.027222
 --><!-- upper left (data) = 46.463134,-95.213616
 --><!-- lower right (data) = 46.448528,-95.197882
 --><!-- upper left (drawing) = 46.4640763225806,-95.2177065193959
 --><!-- lower right (drawing) = 46.4475856774194,-95.1937914806041
 --><!-- center = 46.455831,-95.205749
 --><!-- width,height (pixels) = 700,700
 --><!-- width,height (degrees) = 0.0239150387917419,0.0164906451612765
 --><!-- scale = 7434, resolution = 2.622 m/pixel
 --><!-- map = http://www2.demis.nl/wms/wms.asp?version=1.1.0&wms=WorldMap&request=GetMap&srs=EPSG:4326&bbox=-95.2177065,46.4475857,-95.1937915,46.4640763&WIDTH=700&HEIGHT=700&format=PNG&transparent=FALSE&exceptions=INIMAGE&wrapdateline=TRUE&layers=Bathymetry,Countries,Topography,Builtup+areas,Coastlines,Waterbodies,Rivers,Streams,Highways,Roads,Railroads,Trails,Hillshading,Borders,Settlements,Cities,Airports
 --><!-- backgrounds = http://www.gpsvisualizer.com/backgrounds?max_dimension=700&margin=0&mw=-95.2177065193959&me=-95.1937914806041&ms=46.4475856774194&mn=46.4640763225806&submitted=1
 --><!-- e-mail = 
 --><!-- 
	Generated using the Perl SVG Module V2.49
	by Ronan Oger
	Info: http://www.roitsystems.com/
 -->
</svg>