comparison svg/ski.svg @ 0:fd3d8ada71ad

Inital Commit
author tschulz <>
date Wed, 17 Nov 2010 22:27:29 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:fd3d8ada71ad
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
3 <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[
4 var SVGDoc; var SVGRoot;
5 function init(evt) {
6 SVGDoc = evt.getTarget().getOwnerDocument();
7 SVGRoot = SVGDoc.getDocumentElement();
8 }]]>
9 </script> <script type="text/ecmascript"><![CDATA[
10 var svgns = "http://www.w3.org/2000/svg";
11 var tracking;
12 var x_offset = 0; var y_offset = 0; // how far off the mouse was from a group's coordinates
13 var global_mouse_x; var global_mouse_y; // for seeing if the mouse moved
14
15 function toggle_item_opacity(id,op1,op2) {
16 if (SVGDoc.getElementById(id) != null) {
17 var item = SVGDoc.getElementById(id);
18 var new_op = (parseFloat(item.getAttributeNS(null, 'opacity')) == op1) ? op2 : op1;
19 item.setAttributeNS(null, 'opacity',new_op.toString());
20 }
21 }
22 function showSaver(op) {
23 if (SVGDoc.getElementById('Saver') != null) {
24 var theSaver = SVGDoc.getElementById('Saver');
25 theSaver.setAttributeNS(null, 'opacity',op);
26 }
27 }
28 function trackGroup(evt,id,onoff){
29 tracking = onoff;
30 if (onoff) {
31 findGroupClickOffset(evt,id);
32 showSaver(1);
33 }
34 }
35 function findGroupClickOffset(evt,name_of_group) {
36 var theClickedThing = SVGDoc.getElementById(name_of_group);
37 var scale = SVGRoot.getCurrentScale();
38 var pan = SVGRoot.getCurrentTranslate();
39 var mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
40 var mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
41 var group_coords = findGroupCoordinates(name_of_group);
42 x_offset = mouse_x - group_coords.x; // global variable
43 y_offset = mouse_y - group_coords.y; // global variable
44 }
45 function findGroupCoordinates(name_of_group) {
46 var theGroup = SVGDoc.getElementById(name_of_group);
47 var old_transform = theGroup.getAttributeNS(null, 'transform');
48 var regex = /([0-9e.-]+),([0-9e.-]+)/;
49 var numbers = regex.exec(old_transform);
50 var group_x = eval(numbers[1]) + parseFloat(theGroup.getAttributeNS(null, 'x'));
51 var group_y = eval(numbers[2]) + parseFloat(theGroup.getAttributeNS(null, 'y'));
52 return { x: group_x, y: group_y };
53 }
54 function moveGroup(evt,name_of_group) {
55 if (tracking) {
56 var theGroup = SVGDoc.getElementById(name_of_group);
57 // Find out where the mouse is, and use x and y offset values
58 var scale = SVGRoot.getCurrentScale();
59 var pan = SVGRoot.getCurrentTranslate();
60 var new_x = evt.getClientX()/scale + (( 0.0 - pan.x ) / scale) - x_offset;
61 var new_y = evt.getClientY()/scale + (( 0.0 - pan.y ) / scale) - y_offset;
62 // Calculate new translation based on difference between mouse position and origin
63 var new_x_transform = new_x - parseFloat(theGroup.getAttributeNS(null, 'x'));
64 var new_y_transform = new_y - parseFloat(theGroup.getAttributeNS(null, 'y'));
65 // Plug new translation values into old transform attribute
66 var old_transform = theGroup.getAttributeNS(null, 'transform');
67 var regex = /([0-9e.-]+),([0-9e.-]+)/;
68 var new_transform = old_transform.replace(regex,new_x_transform+','+new_y_transform);
69 theGroup.setAttributeNS(null, 'transform',new_transform);
70 }
71 }
72 var original_stroke_color = new Object;
73 var original_stroke_width = new Object;
74 function highlight(name_of_thing,onoff) {
75 var highlight_color = '#0000FF';
76 var highlight_width = '1';
77 var theThing = SVGDoc.getElementById(name_of_thing);
78 if (onoff) {
79 original_stroke_color[name_of_thing] = theThing.getAttributeNS(null, 'stroke');
80 original_stroke_width[name_of_thing] = theThing.getAttributeNS(null, 'stroke-width');
81 theThing.setAttributeNS(null, 'stroke',highlight_color);
82 theThing.setAttributeNS(null, 'stroke-width',highlight_width);
83 } else {
84 theThing.setAttributeNS(null, 'stroke',original_stroke_color[name_of_thing]);
85 theThing.setAttributeNS(null, 'stroke-width',original_stroke_width[name_of_thing]);
86 }
87 }
88 ]]>
89 </script> <script type="text/ecmascript"><![CDATA[
90 function toggle_track_opacity(id,track_op,label_op) {
91 toggle_item_opacity(id+' track',track_op,1);
92 toggle_item_opacity(id+' label',label_op,1);
93 }
94 function toggle_track_opacity_from_legend(id,legend_id,track_op,label_op) {
95 toggle_item_opacity(id+' track',track_op,1);
96 toggle_item_opacity(id+' label',label_op,1);
97 toggle_item_opacity(legend_id,label_op,1);
98 }
99 function trackLabelMouseDown(evt,id) {
100 tracking = 1;
101 showSaver(1);
102 findGroupClickOffset(evt,id+' label');
103 var scale = SVGRoot.getCurrentScale();
104 var pan = SVGRoot.getCurrentTranslate();
105 global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
106 global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
107 }
108 function trackLabelMouseUp(evt,id) {
109 tracking = 0;
110 var scale = SVGRoot.getCurrentScale();
111 var pan = SVGRoot.getCurrentTranslate();
112 var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
113 var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
114 if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
115 toggle_track_opacity(id,0,0.25);
116 }
117 }
118 ]]>
119 </script>
120 <g id="19-FEB-10 (t2) track" opacity="0.9">
121 <line fill="none" id="t2 p1" stroke="#1800CC" stroke-width="1" x1="524.5972" x2="522.1678" y1="455.6538" y2="453.9135"/>
122 <line fill="none" id="t2 p2" stroke="#00CC20" stroke-width="1" x1="522.1678" x2="516.2552" y1="453.9135" y2="452.5551"/>
123 <line fill="none" id="t2 p3" stroke="#10CC00" stroke-width="1" x1="516.2552" x2="509.7865" y1="452.5551" y2="449.7111"/>
124 <line fill="none" id="t2 p4" stroke="#30CC00" stroke-width="1" x1="509.7865" x2="505.2789" y1="449.7111" y2="445.2965"/>
125 <line fill="none" id="t2 p5" stroke="#44CC00" stroke-width="1" x1="505.2789" x2="502.9080" y1="445.2965" y2="438.6321"/>
126 <line fill="none" id="t2 p6" stroke="#60CC00" stroke-width="1" x1="502.9080" x2="501.0054" y1="438.6321" y2="431.7979"/>
127 <line fill="none" id="t2 p7" stroke="#80CC00" stroke-width="1" x1="501.0054" x2="500.4493" y1="431.7979" y2="424.7939"/>
128 <line fill="none" id="t2 p8" stroke="#9CCC00" stroke-width="1" x1="500.4493" x2="502.0884" y1="424.7939" y2="418.9785"/>
129 <line fill="none" id="t2 p9" stroke="#88CC00" stroke-width="1" x1="502.0884" x2="501.4152" y1="418.9785" y2="411.9321"/>
130 <line fill="none" id="t2 p10" stroke="#9CCC00" stroke-width="1" x1="501.4152" x2="498.8394" y1="411.9321" y2="406.3289"/>
131 <line fill="none" id="t2 p11" stroke="#9CCC00" stroke-width="1" x1="498.8394" x2="494.1269" y1="406.3289" y2="401.6596"/>
132 <line fill="none" id="t2 p12" stroke="#9CCC00" stroke-width="1" x1="494.1269" x2="487.9801" y1="401.6596" y2="398.9005"/>
133 <line fill="none" id="t2 p13" stroke="#9CCC00" stroke-width="1" x1="487.9801" x2="482.1261" y1="398.9005" y2="397.5421"/>
134 <line fill="none" id="t2 p14" stroke="#BCCC00" stroke-width="1" x1="482.1261" x2="477.3843" y1="397.5421" y2="400.4286"/>
135 <line fill="none" id="t2 p15" stroke="#C8CC00" stroke-width="1" x1="477.3843" x2="473.1694" y1="400.4286" y2="405.9044"/>
136 <line fill="none" id="t2 p16" stroke="#CCC000" stroke-width="1" x1="473.1694" x2="469.1008" y1="405.9044" y2="411.0407"/>
137 <line fill="none" id="t2 p17" stroke="#CCB400" stroke-width="1" x1="469.1008" x2="466.2323" y1="411.0407" y2="416.5165"/>
138 <line fill="none" id="t2 p18" stroke="#C8CC00" stroke-width="1" x1="466.2323" x2="464.8859" y1="416.5165" y2="423.0111"/>
139 <line fill="none" id="t2 p19" stroke="#B0CC00" stroke-width="1" x1="464.8859" x2="463.2175" y1="423.0111" y2="429.2085"/>
140 <line fill="none" id="t2 p20" stroke="#B0CC00" stroke-width="1" x1="463.2175" x2="460.9929" y1="429.2085" y2="435.3635"/>
141 <line fill="none" id="t2 p21" stroke="#9CCC00" stroke-width="1" x1="460.9929" x2="458.3001" y1="435.3635" y2="441.6035"/>
142 <line fill="none" id="t2 p22" stroke="#94CC00" stroke-width="1" x1="458.3001" x2="454.9925" y1="441.6035" y2="446.9519"/>
143 <line fill="none" id="t2 p23" stroke="#88CC00" stroke-width="1" x1="454.9925" x2="455.5486" y1="446.9519" y2="453.3616"/>
144 <line fill="none" id="t2 p24" stroke="#88CC00" stroke-width="1" x1="455.5486" x2="458.6806" y1="453.3616" y2="458.4554"/>
145 <line fill="none" id="t2 p25" stroke="#94CC00" stroke-width="1" x1="458.6806" x2="461.6954" y1="458.4554" y2="462.7003"/>
146 <line fill="none" id="t2 p26" stroke="#94CC00" stroke-width="1" x1="461.6954" x2="465.6469" y1="462.7003" y2="466.9451"/>
147 <line fill="none" id="t2 p27" stroke="#94CC00" stroke-width="1" x1="465.6469" x2="472.0571" y1="466.9451" y2="469.1949"/>
148 <line fill="none" id="t2 p28" stroke="#88CC00" stroke-width="1" x1="472.0571" x2="478.4380" y1="469.1949" y2="470.5532"/>
149 <line fill="none" id="t2 p29" stroke="#80CC00" stroke-width="1" x1="478.4380" x2="484.5848" y1="470.5532" y2="472.5058"/>
150 <line fill="none" id="t2 p30" stroke="#80CC00" stroke-width="1" x1="484.5848" x2="490.4681" y1="472.5058" y2="474.1613"/>
151 <line fill="none" id="t2 p31" stroke="#6CCC00" stroke-width="1" x1="490.4681" x2="494.6245" y1="474.1613" y2="478.4910"/>
152 <line fill="none" id="t2 p32" stroke="#6CCC00" stroke-width="1" x1="494.6245" x2="497.3466" y1="478.4910" y2="485.5799"/>
153 <line fill="none" id="t2 p33" stroke="#60CC00" stroke-width="1" x1="497.3466" x2="493.5415" y1="485.5799" y2="491.7349"/>
154 <line fill="none" id="t2 p34" stroke="#60CC00" stroke-width="1" x1="493.5415" x2="489.7656" y1="491.7349" y2="497.6352"/>
155 <line fill="none" id="t2 p35" stroke="#78CC00" stroke-width="1" x1="489.7656" x2="490.9364" y1="497.6352" y2="506.0824"/>
156 <line fill="none" id="t2 p36" stroke="#78CC00" stroke-width="1" x1="490.9364" x2="495.3270" y1="506.0824" y2="515.3362"/>
157 <line fill="none" id="t2 p37" stroke="#50CC00" stroke-width="1" x1="495.3270" x2="494.1269" y1="515.3362" y2="530.1931"/>
158 <line fill="none" id="t2 p38" stroke="#58CC00" stroke-width="1" x1="494.1269" x2="495.5904" y1="530.1931" y2="536.3481"/>
159 <line fill="none" id="t2 p39" stroke="#58CC00" stroke-width="1" x1="495.5904" x2="502.1177" y1="536.3481" y2="540.0835"/>
160 <line fill="none" id="t2 p40" stroke="#50CC00" stroke-width="1" x1="502.1177" x2="508.4401" y1="540.0835" y2="542.6729"/>
161 <line fill="none" id="t2 p41" stroke="#6CCC00" stroke-width="1" x1="508.4401" x2="515.0844" y1="542.6729" y2="545.8140"/>
162 <line fill="none" id="t2 p42" stroke="#58CC00" stroke-width="1" x1="515.0844" x2="520.2067" y1="545.8140" y2="553.0303"/>
163 <line fill="none" id="t2 p43" stroke="#50CC00" stroke-width="1" x1="520.2067" x2="523.2801" y1="553.0303" y2="567.2080"/>
164 <line fill="none" id="t2 p44" stroke="#38CC00" stroke-width="1" x1="523.2801" x2="527.5243" y1="567.2080" y2="574.8062"/>
165 <line fill="none" id="t2 p45" stroke="#30CC00" stroke-width="1" x1="527.5243" x2="528.9585" y1="574.8062" y2="595.3088"/>
166 <line fill="none" id="t2 p46" stroke="#30CC00" stroke-width="1" x1="528.9585" x2="504.4008" y1="595.3088" y2="611.7363"/>
167 <line fill="none" id="t2 p47" stroke="#44CC00" stroke-width="1" x1="504.4008" x2="499.4248" y1="611.7363" y2="617.2970"/>
168 <line fill="none" id="t2 p48" stroke="#44CC00" stroke-width="1" x1="499.4248" x2="478.5551" y1="617.2970" y2="633.7245"/>
169 <line fill="none" id="t2 p49" stroke="#44CC00" stroke-width="1" x1="478.5551" x2="456.8365" y1="633.7245" y2="639.5824"/>
170 <line fill="none" id="t2 p50" stroke="#58CC00" stroke-width="1" x1="456.8365" x2="450.1044" y1="639.5824" y2="638.5636"/>
171 <line fill="none" id="t2 p51" stroke="#28CC00" stroke-width="1" x1="450.1044" x2="445.8602" y1="638.5636" y2="632.4935"/>
172 <line fill="none" id="t2 p52" stroke="#10CC00" stroke-width="1" x1="445.8602" x2="445.4797" y1="632.4935" y2="624.0887"/>
173 <line fill="none" id="t2 p53" stroke="#00CC48" stroke-width="1" x1="445.4797" x2="445.7431" y1="624.0887" y2="618.1035"/>
174 <line fill="none" id="t2 p54" stroke="#00CC5C" stroke-width="1" x1="445.7431" x2="443.7820" y1="618.1035" y2="611.6938"/>
175 <line fill="none" id="t2 p55" stroke="#00CC70" stroke-width="1" x1="443.7820" x2="441.7916" y1="611.6938" y2="605.5388"/>
176 <line fill="none" id="t2 p56" stroke="#00CC5C" stroke-width="1" x1="441.7916" x2="441.2062" y1="605.5388" y2="599.4263"/>
177 <line fill="none" id="t2 p57" stroke="#00CC48" stroke-width="1" x1="441.2062" x2="441.0599" y1="599.4263" y2="592.0827"/>
178 <line fill="none" id="t2 p58" stroke="#00CC40" stroke-width="1" x1="441.0599" x2="441.4111" y1="592.0827" y2="585.2485"/>
179 <line fill="none" id="t2 p59" stroke="#00CC28" stroke-width="1" x1="441.4111" x2="442.8161" y1="585.2485" y2="578.6690"/>
180 <line fill="none" id="t2 p60" stroke="#00CC34" stroke-width="1" x1="442.8161" x2="444.3381" y1="578.6690" y2="572.0471"/>
181 <line fill="none" id="t2 p61" stroke="#00CC20" stroke-width="1" x1="444.3381" x2="445.5968" y1="572.0471" y2="565.5101"/>
182 <line fill="none" id="t2 p62" stroke="#00CC28" stroke-width="1" x1="445.5968" x2="446.8846" y1="565.5101" y2="558.9730"/>
183 <line fill="none" id="t2 p63" stroke="#00CC28" stroke-width="1" x1="446.8846" x2="447.1773" y1="558.9730" y2="552.3935"/>
184 <line fill="none" id="t2 p64" stroke="#00CC40" stroke-width="1" x1="447.1773" x2="445.8016" y1="552.3935" y2="546.0687"/>
185 <line fill="none" id="t2 p65" stroke="#00CC28" stroke-width="1" x1="445.8016" x2="441.7623" y1="546.0687" y2="541.2296"/>
186 <line fill="none" id="t2 p66" stroke="#00CC34" stroke-width="1" x1="441.7623" x2="440.9135" y1="541.2296" y2="534.5652"/>
187 <line fill="none" id="t2 p67" stroke="#10CC00" stroke-width="1" x1="440.9135" x2="444.3089" y1="534.5652" y2="528.7074"/>
188 <line fill="none" id="t2 p68" stroke="#28CC00" stroke-width="1" x1="444.3089" x2="443.8405" y1="528.7074" y2="522.9769"/>
189 <line fill="none" id="t2 p69" stroke="#10CC00" stroke-width="1" x1="443.8405" x2="441.2355" y1="522.9769" y2="515.8031"/>
190 <line fill="none" id="t2 p70" stroke="#00CC0C" stroke-width="1" x1="441.2355" x2="438.4548" y1="515.8031" y2="508.6718"/>
191 <line fill="none" id="t2 p71" stroke="#00CC18" stroke-width="1" x1="438.4548" x2="433.9472" y1="508.6718" y2="502.9413"/>
192 <line fill="none" id="t2 p72" stroke="#00CC04" stroke-width="1" x1="433.9472" x2="429.1761" y1="502.9413" y2="498.4417"/>
193 <line fill="none" id="t2 p73" stroke="#08CC00" stroke-width="1" x1="429.1761" x2="424.4343" y1="498.4417" y2="493.5602"/>
194 <line fill="none" id="t2 p74" stroke="#00CC04" stroke-width="1" x1="424.4343" x2="419.6340" y1="493.5602" y2="488.4239"/>
195 <line fill="none" id="t2 p75" stroke="#1CCC00" stroke-width="1" x1="419.6340" x2="417.7314" y1="488.4239" y2="482.0991"/>
196 <line fill="none" id="t2 p76" stroke="#08CC00" stroke-width="1" x1="417.7314" x2="417.3509" y1="482.0991" y2="474.7131"/>
197 <line fill="none" id="t2 p77" stroke="#28CC00" stroke-width="1" x1="417.3509" x2="416.5021" y1="474.7131" y2="466.9875"/>
198 <line fill="none" id="t2 p78" stroke="#30CC00" stroke-width="1" x1="416.5021" x2="416.2094" y1="466.9875" y2="460.1534"/>
199 <line fill="none" id="t2 p79" stroke="#58CC00" stroke-width="1" x1="416.2094" x2="417.8778" y1="460.1534" y2="451.7910"/>
200 <line fill="none" id="t2 p80" stroke="#50CC00" stroke-width="1" x1="417.8778" x2="419.7218" y1="451.7910" y2="446.7397"/>
201 <line fill="none" id="t2 p81" stroke="#60CC00" stroke-width="1" x1="419.7218" x2="421.7707" y1="446.7397" y2="439.9055"/>
202 <line fill="none" id="t2 p82" stroke="#60CC00" stroke-width="1" x1="421.7707" x2="423.8782" y1="439.9055" y2="433.0289"/>
203 <line fill="none" id="t2 p83" stroke="#58CC00" stroke-width="1" x1="423.8782" x2="426.0735" y1="433.0289" y2="426.4070"/>
204 <line fill="none" id="t2 p84" stroke="#6CCC00" stroke-width="1" x1="426.0735" x2="426.8052" y1="426.4070" y2="420.2520"/>
205 <line fill="none" id="t2 p85" stroke="#60CC00" stroke-width="1" x1="426.8052" x2="425.6637" y1="420.2520" y2="413.9696"/>
206 <line fill="none" id="t2 p86" stroke="#30CC00" stroke-width="1" x1="425.6637" x2="422.2098" y1="413.9696" y2="408.2391"/>
207 <line fill="none" id="t2 p87" stroke="#28CC00" stroke-width="1" x1="422.2098" x2="418.4632" y1="408.2391" y2="402.5935"/>
208 <line fill="none" id="t2 p88" stroke="#44CC00" stroke-width="1" x1="418.4632" x2="414.7166" y1="402.5935" y2="396.7780"/>
209 <line fill="none" id="t2 p89" stroke="#58CC00" stroke-width="1" x1="414.7166" x2="410.2968" y1="396.7780" y2="391.3871"/>
210 <line fill="none" id="t2 p90" stroke="#80CC00" stroke-width="1" x1="410.2968" x2="409.4772" y1="391.3871" y2="384.8501"/>
211 <line fill="none" id="t2 p91" stroke="#60CC00" stroke-width="1" x1="409.4772" x2="409.2138" y1="384.8501" y2="375.8086"/>
212 <line fill="none" id="t2 p92" stroke="#6CCC00" stroke-width="1" x1="409.2138" x2="410.7944" y1="375.8086" y2="367.3614"/>
213 <line fill="none" id="t2 p93" stroke="#78CC00" stroke-width="1" x1="410.7944" x2="412.2579" y1="367.3614" y2="361.0366"/>
214 <line fill="none" id="t2 p94" stroke="#94CC00" stroke-width="1" x1="412.2579" x2="414.8630" y1="361.0366" y2="355.9428"/>
215 <line fill="none" id="t2 p95" stroke="#A8CC00" stroke-width="1" x1="414.8630" x2="417.7022" y1="355.9428" y2="350.2547"/>
216 <line fill="none" id="t2 p96" stroke="#BCCC00" stroke-width="1" x1="417.7022" x2="419.8974" y1="350.2547" y2="344.0572"/>
217 <line fill="none" id="t2 p97" stroke="#88CC00" stroke-width="1" x1="419.8974" x2="421.4488" y1="344.0572" y2="338.0296"/>
218 <line fill="none" id="t2 p98" stroke="#B0CC00" stroke-width="1" x1="421.4488" x2="422.5025" y1="338.0296" y2="332.7660"/>
219 <line fill="none" id="t2 p99" stroke="#9CCC00" stroke-width="1" x1="422.5025" x2="422.9123" y1="332.7660" y2="327.0779"/>
220 <line fill="none" id="t2 p100" stroke="#94CC00" stroke-width="1" x1="422.9123" x2="421.5658" y1="327.0779" y2="321.6445"/>
221 <line fill="none" id="t2 p101" stroke="#78CC00" stroke-width="1" x1="421.5658" x2="416.8241" y1="321.6445" y2="316.8054"/>
222 <line fill="none" id="t2 p102" stroke="#6CCC00" stroke-width="1" x1="416.8241" x2="410.7651" y1="316.8054" y2="314.7679"/>
223 <line fill="none" id="t2 p103" stroke="#58CC00" stroke-width="1" x1="410.7651" x2="404.4135" y1="314.7679" y2="313.7916"/>
224 <line fill="none" id="t2 p104" stroke="#60CC00" stroke-width="1" x1="404.4135" x2="398.0911" y1="313.7916" y2="312.9426"/>
225 <line fill="none" id="t2 p105" stroke="#60CC00" stroke-width="1" x1="398.0911" x2="391.5345" y1="312.9426" y2="312.5181"/>
226 <line fill="none" id="t2 p106" stroke="#60CC00" stroke-width="1" x1="391.5345" x2="384.3926" y1="312.5181" y2="311.6692"/>
227 <line fill="none" id="t2 p107" stroke="#6CCC00" stroke-width="1" x1="384.3926" x2="378.4214" y1="311.6692" y2="309.9712"/>
228 <line fill="none" id="t2 p108" stroke="#88CC00" stroke-width="1" x1="378.4214" x2="372.5381" y1="309.9712" y2="306.7876"/>
229 <line fill="none" id="t2 p109" stroke="#C8CC00" stroke-width="1" x1="372.5381" x2="366.1865" y1="306.7876" y2="303.8587"/>
230 <line fill="none" id="t2 p110" stroke="#CCA000" stroke-width="1" x1="366.1865" x2="358.7225" y1="303.8587" y2="301.1420"/>
231 <line fill="none" id="t2 p111" stroke="#CC8C00" stroke-width="1" x1="358.7225" x2="353.0148" y1="301.1420" y2="299.2743"/>
232 <line fill="none" id="t2 p112" stroke="#CCA800" stroke-width="1" x1="353.0148" x2="345.1997" y1="299.2743" y2="297.7037"/>
233 <line fill="none" id="t2 p113" stroke="#CC8C00" stroke-width="1" x1="345.1997" x2="337.9114" y1="297.7037" y2="297.2368"/>
234 <line fill="none" id="t2 p114" stroke="#CC7800" stroke-width="1" x1="337.9114" x2="330.4182" y1="297.2368" y2="296.8123"/>
235 <line fill="none" id="t2 p115" stroke="#CC7000" stroke-width="1" x1="330.4182" x2="323.3640" y1="296.8123" y2="296.4727"/>
236 <line fill="none" id="t2 p116" stroke="#CC5800" stroke-width="1" x1="323.3640" x2="316.6904" y1="296.4727" y2="296.2604"/>
237 <line fill="none" id="t2 p117" stroke="#CC7000" stroke-width="1" x1="316.6904" x2="309.6948" y1="296.2604" y2="294.6899"/>
238 <line fill="none" id="t2 p118" stroke="#CC6400" stroke-width="1" x1="309.6948" x2="303.4602" y1="294.6899" y2="292.2279"/>
239 <line fill="none" id="t2 p119" stroke="#CC4800" stroke-width="1" x1="303.4602" x2="299.3039" y1="292.2279" y2="286.7096"/>
240 <line fill="none" id="t2 p120" stroke="#CC4800" stroke-width="1" x1="299.3039" x2="294.3279" y1="286.7096" y2="283.2288"/>
241 <line fill="none" id="t2 p121" stroke="#CC4800" stroke-width="1" x1="294.3279" x2="289.4105" y1="283.2288" y2="279.1962"/>
242 <line fill="none" id="t2 p122" stroke="#CC3000" stroke-width="1" x1="289.4105" x2="285.2249" y1="279.1962" y2="274.9514"/>
243 <line fill="none" id="t2 p123" stroke="#CC4800" stroke-width="1" x1="285.2249" x2="283.6150" y1="274.9514" y2="269.1784"/>
244 <line fill="none" id="t2 p124" stroke="#CC6400" stroke-width="1" x1="283.6150" x2="282.9710" y1="269.1784" y2="262.7263"/>
245 <line fill="none" id="t2 p125" stroke="#CC6400" stroke-width="1" x1="282.9710" x2="281.8880" y1="262.7263" y2="255.8497"/>
246 <line fill="none" id="t2 p126" stroke="#CC5800" stroke-width="1" x1="281.8880" x2="280.6002" y1="255.8497" y2="249.9493"/>
247 <line fill="none" id="t2 p127" stroke="#CC5000" stroke-width="1" x1="280.6002" x2="279.4293" y1="249.9493" y2="243.1576"/>
248 <line fill="none" id="t2 p128" stroke="#CC3C00" stroke-width="1" x1="279.4293" x2="277.3512" y1="243.1576" y2="236.6630"/>
249 <line fill="none" id="t2 p129" stroke="#CC3C00" stroke-width="1" x1="277.3512" x2="272.7850" y1="236.6630" y2="232.0361"/>
250 <line fill="none" id="t2 p130" stroke="#CC3C00" stroke-width="1" x1="272.7850" x2="267.5749" y1="232.0361" y2="228.6827"/>
251 <line fill="none" id="t2 p131" stroke="#CC3000" stroke-width="1" x1="267.5749" x2="263.6527" y1="228.6827" y2="223.9285"/>
252 <line fill="none" id="t2 p132" stroke="#CC2800" stroke-width="1" x1="263.6527" x2="258.6182" y1="223.9285" y2="218.8347"/>
253 <line fill="none" id="t2 p133" stroke="#CC1400" stroke-width="1" x1="258.6182" x2="253.2324" y1="218.8347" y2="214.2079"/>
254 <line fill="none" id="t2 p134" stroke="#CC0000" stroke-width="1" x1="253.2324" x2="247.7589" y1="214.2079" y2="211.1091"/>
255 <line fill="none" id="t2 p135" stroke="#CC0000" stroke-width="1" x1="247.7589" x2="241.7292" y1="211.1091" y2="208.8594"/>
256 <line fill="none" id="t2 p136" stroke="#CC2800" stroke-width="1" x1="241.7292" x2="236.4020" y1="208.8594" y2="205.6757"/>
257 <line fill="none" id="t2 p137" stroke="#CC2800" stroke-width="1" x1="236.4020" x2="231.8651" y1="205.6757" y2="202.0252"/>
258 <line fill="none" id="t2 p138" stroke="#CC6400" stroke-width="1" x1="231.8651" x2="228.5576" y1="202.0252" y2="198.5444"/>
259 <line fill="none" id="t2 p139" stroke="#CC7800" stroke-width="1" x1="228.5576" x2="224.3427" y1="198.5444" y2="195.9975"/>
260 <line fill="none" id="t2 p140" stroke="#C8CC00" stroke-width="1" x1="224.3427" x2="219.8350" y1="195.9975" y2="192.5168"/>
261 <line fill="none" id="t2 p141" stroke="#C8CC00" stroke-width="1" x1="219.8350" x2="215.5030" y1="192.5168" y2="190.1821"/>
262 <line fill="none" id="t2 p142" stroke="#94CC00" stroke-width="1" x1="215.5030" x2="210.1758" y1="190.1821" y2="189.3332"/>
263 <line fill="none" id="t2 p143" stroke="#6CCC00" stroke-width="1" x1="210.1758" x2="203.8242" y1="189.3332" y2="191.0735"/>
264 <line fill="none" id="t2 p144" stroke="#6CCC00" stroke-width="1" x1="203.8242" x2="197.6482" y1="191.0735" y2="190.3944"/>
265 <line fill="none" id="t2 p145" stroke="#50CC00" stroke-width="1" x1="197.6482" x2="192.1161" y1="190.3944" y2="187.9324"/>
266 <line fill="none" id="t2 p146" stroke="#50CC00" stroke-width="1" x1="192.1161" x2="191.0038" y1="187.9324" y2="185.2157"/>
267 <line fill="none" id="t2 p147" stroke="#28CC00" stroke-width="1" x1="191.0038" x2="196.2139" y1="185.2157" y2="182.5414"/>
268 <line fill="none" id="t2 p148" stroke="#38CC00" stroke-width="1" x1="196.2139" x2="201.8338" y1="182.5414" y2="180.2068"/>
269 <line fill="none" id="t2 p149" stroke="#1CCC00" stroke-width="1" x1="201.8338" x2="208.6245" y1="180.2068" y2="177.7023"/>
270 <line fill="none" id="t2 p150" stroke="#00CC04" stroke-width="1" x1="208.6245" x2="215.0347" y1="177.7023" y2="174.9432"/>
271 <line fill="none" id="t2 p151" stroke="#1CCC00" stroke-width="1" x1="215.0347" x2="221.7376" y1="174.9432" y2="169.0004"/>
272 <line fill="none" id="t2 p152" stroke="#28CC00" stroke-width="1" x1="221.7376" x2="224.1963" y1="169.0004" y2="162.6332"/>
273 <line fill="none" id="t2 p153" stroke="#30CC00" stroke-width="1" x1="224.1963" x2="226.8306" y1="162.6332" y2="156.2659"/>
274 <line fill="none" id="t2 p154" stroke="#08CC00" stroke-width="1" x1="226.8306" x2="229.2015" y1="156.2659" y2="149.8987"/>
275 <line fill="none" id="t2 p155" stroke="#1CCC00" stroke-width="1" x1="229.2015" x2="231.7188" y1="149.8987" y2="145.0596"/>
276 <line fill="none" id="t2 p156" stroke="#30CC00" stroke-width="1" x1="231.7188" x2="232.1286" y1="145.0596" y2="138.8621"/>
277 <line fill="none" id="t2 p157" stroke="#1CCC00" stroke-width="1" x1="232.1286" x2="231.3090" y1="138.8621" y2="132.6222"/>
278 <line fill="none" id="t2 p158" stroke="#78CC00" stroke-width="1" x1="231.3090" x2="230.6065" y1="132.6222" y2="129.8206"/>
279 <line fill="none" id="t2 p159" stroke="#78CC00" stroke-width="1" x1="230.6065" x2="231.8944" y1="129.8206" y2="135.6785"/>
280 <line fill="none" id="t2 p160" stroke="#30CC00" stroke-width="1" x1="231.8944" x2="232.0700" y1="135.6785" y2="141.0694"/>
281 <line fill="none" id="t2 p161" stroke="#00CC04" stroke-width="1" x1="232.0700" x2="230.8699" y1="141.0694" y2="147.1395"/>
282 <line fill="none" id="t2 p162" stroke="#00CC04" stroke-width="1" x1="230.8699" x2="228.2356" y1="147.1395" y2="152.5305"/>
283 <line fill="none" id="t2 p163" stroke="#00CC04" stroke-width="1" x1="228.2356" x2="225.9525" y1="152.5305" y2="158.8977"/>
284 <line fill="none" id="t2 p164" stroke="#00CC18" stroke-width="1" x1="225.9525" x2="223.4938" y1="158.8977" y2="164.6282"/>
285 <line fill="none" id="t2 p165" stroke="#00CC20" stroke-width="1" x1="223.4938" x2="220.4497" y1="164.6282" y2="170.8681"/>
286 <line fill="none" id="t2 p166" stroke="#00CC34" stroke-width="1" x1="220.4497" x2="214.7420" y1="170.8681" y2="175.1130"/>
287 <line fill="none" id="t2 p167" stroke="#00CC48" stroke-width="1" x1="214.7420" x2="207.9220" y1="175.1130" y2="177.9146"/>
288 <line fill="none" id="t2 p168" stroke="#00CC48" stroke-width="1" x1="207.9220" x2="199.8142" y1="177.9146" y2="181.0133"/>
289 <line fill="none" id="t2 p169" stroke="#00CC28" stroke-width="1" x1="199.8142" x2="190.9453" y1="181.0133" y2="185.1732"/>
290 <line fill="none" id="t2 p170" stroke="#00CC18" stroke-width="1" x1="190.9453" x2="191.8234" y1="185.1732" y2="187.3805"/>
291 <line fill="none" id="t2 p171" stroke="#00CC20" stroke-width="1" x1="191.8234" x2="198.0287" y1="187.3805" y2="190.1397"/>
292 <line fill="none" id="t2 p172" stroke="#C000CC" stroke-width="1" x1="198.0287" x2="199.7556" y1="190.1397" y2="190.8613"/>
293 <line fill="none" id="t2 p173" stroke="#3800CC" stroke-width="1" x1="199.7556" x2="203.8242" y1="190.8613" y2="194.0449"/>
294 <line fill="none" id="t2 p174" stroke="#009CCC" stroke-width="1" x1="203.8242" x2="208.6245" y1="194.0449" y2="208.9018"/>
295 <line fill="none" id="t2 p175" stroke="#0080CC" stroke-width="1" x1="208.6245" x2="213.8054" y1="208.9018" y2="221.3392"/>
296 <line fill="none" id="t2 p176" stroke="#0080CC" stroke-width="1" x1="213.8054" x2="231.5139" y1="221.3392" y2="255.2129"/>
297 <line fill="none" id="t2 p177" stroke="#CC00CC" stroke-width="1" x1="231.5139" x2="232.6554" y1="255.2129" y2="265.4005"/>
298 <line fill="none" id="t2 p178" stroke="#0400CC" stroke-width="1" x1="232.6554" x2="231.7188" y1="265.4005" y2="269.3058"/>
299 <line fill="none" id="t2 p179" stroke="#0074CC" stroke-width="1" x1="231.7188" x2="232.0115" y1="269.3058" y2="297.1943"/>
300 <line fill="none" id="t2 p180" stroke="#00CCC8" stroke-width="1" x1="232.0115" x2="231.9529" y1="297.1943" y2="303.7738"/>
301 <line fill="none" id="t2 p181" stroke="#00CC70" stroke-width="1" x1="231.9529" x2="235.4068" y1="303.7738" y2="309.1647"/>
302 <line fill="none" id="t2 p182" stroke="#00CC20" stroke-width="1" x1="235.4068" x2="240.5291" y1="309.1647" y2="312.6879"/>
303 <line fill="none" id="t2 p183" stroke="#28CC00" stroke-width="1" x1="240.5291" x2="247.2613" y1="312.6879" y2="314.3859"/>
304 <line fill="none" id="t2 p184" stroke="#58CC00" stroke-width="1" x1="247.2613" x2="253.4373" y1="314.3859" y2="316.5507"/>
305 <line fill="none" id="t2 p185" stroke="#80CC00" stroke-width="1" x1="253.4373" x2="258.5596" y1="316.5507" y2="319.6495"/>
306 <line fill="none" id="t2 p186" stroke="#9CCC00" stroke-width="1" x1="258.5596" x2="263.5356" y1="319.6495" y2="323.5972"/>
307 <line fill="none" id="t2 p187" stroke="#A8CC00" stroke-width="1" x1="263.5356" x2="268.1603" y1="323.5972" y2="326.6959"/>
308 <line fill="none" id="t2 p188" stroke="#A8CC00" stroke-width="1" x1="268.1603" x2="272.9899" y1="326.6959" y2="330.9407"/>
309 <line fill="none" id="t2 p189" stroke="#A8CC00" stroke-width="1" x1="272.9899" x2="276.3852" y1="330.9407" y2="337.0533"/>
310 <line fill="none" id="t2 p190" stroke="#78CC00" stroke-width="1" x1="276.3852" x2="278.6976" y1="337.0533" y2="340.9161"/>
311 <line fill="none" id="t2 p191" stroke="#58CC00" stroke-width="1" x1="278.6976" x2="284.3760" y1="340.9161" y2="342.1046"/>
312 <line fill="none" id="t2 p192" stroke="#50CC00" stroke-width="1" x1="284.3760" x2="290.4057" y1="342.1046" y2="345.1609"/>
313 <line fill="none" id="t2 p193" stroke="#44CC00" stroke-width="1" x1="290.4057" x2="295.2646" y1="345.1609" y2="349.4906"/>
314 <line fill="none" id="t2 p194" stroke="#44CC00" stroke-width="1" x1="295.2646" x2="300.0649" y1="349.4906" y2="354.0750"/>
315 <line fill="none" id="t2 p195" stroke="#44CC00" stroke-width="1" x1="300.0649" x2="305.2457" y1="354.0750" y2="358.4897"/>
316 <line fill="none" id="t2 p196" stroke="#44CC00" stroke-width="1" x1="305.2457" x2="309.4607" y1="358.4897" y2="363.1590"/>
317 <line fill="none" id="t2 p197" stroke="#38CC00" stroke-width="1" x1="309.4607" x2="312.6218" y1="363.1590" y2="368.7197"/>
318 <line fill="none" id="t2 p198" stroke="#50CC00" stroke-width="1" x1="312.6218" x2="317.1002" y1="368.7197" y2="372.4552"/>
319 <line fill="none" id="t2 p199" stroke="#30CC00" stroke-width="1" x1="317.1002" x2="323.3933" y1="372.4552" y2="374.4502"/>
320 <line fill="none" id="t2 p200" stroke="#38CC00" stroke-width="1" x1="323.3933" x2="329.9206" y1="374.4502" y2="374.4502"/>
321 <line fill="none" id="t2 p201" stroke="#30CC00" stroke-width="1" x1="329.9206" x2="327.6960" y1="374.4502" y2="374.6200"/>
322 <line fill="none" id="t2 p202" stroke="#28CC00" stroke-width="1" x1="327.6960" x2="321.8420" y1="374.6200" y2="374.5351"/>
323 <line fill="none" id="t2 p203" stroke="#28CC00" stroke-width="1" x1="321.8420" x2="316.0757" y1="374.5351" y2="372.2429"/>
324 <line fill="none" id="t2 p204" stroke="#1CCC00" stroke-width="1" x1="316.0757" x2="311.7437" y1="372.2429" y2="367.4463"/>
325 <line fill="none" id="t2 p205" stroke="#30CC00" stroke-width="1" x1="311.7437" x2="308.5825" y1="367.4463" y2="362.2251"/>
326 <line fill="none" id="t2 p206" stroke="#08CC00" stroke-width="1" x1="308.5825" x2="304.3676" y1="362.2251" y2="357.4285"/>
327 <line fill="none" id="t2 p207" stroke="#00CC04" stroke-width="1" x1="304.3676" x2="299.1868" y1="357.4285" y2="353.0987"/>
328 <line fill="none" id="t2 p208" stroke="#10CC00" stroke-width="1" x1="299.1868" x2="291.5765" y1="353.0987" y2="346.1797"/>
329 <line fill="none" id="t2 p209" stroke="#10CC00" stroke-width="1" x1="291.5765" x2="286.7176" y1="346.1797" y2="343.2932"/>
330 <line fill="none" id="t2 p210" stroke="#30CC00" stroke-width="1" x1="286.7176" x2="283.0296" y1="343.2932" y2="344.1421"/>
331 <line fill="none" id="t2 p211" stroke="#38CC00" stroke-width="1" x1="283.0296" x2="281.7417" y1="344.1421" y2="346.7315"/>
332 <line fill="none" id="t2 p212" stroke="#44CC00" stroke-width="1" x1="281.7417" x2="281.0392" y1="346.7315" y2="351.3583"/>
333 <line fill="none" id="t2 p213" stroke="#44CC00" stroke-width="1" x1="281.0392" x2="282.0929" y1="351.3583" y2="360.3149"/>
334 <line fill="none" id="t2 p214" stroke="#38CC00" stroke-width="1" x1="282.0929" x2="283.2930" y1="360.3149" y2="367.4887"/>
335 <line fill="none" id="t2 p215" stroke="#38CC00" stroke-width="1" x1="283.2930" x2="287.0396" y1="367.4887" y2="372.5825"/>
336 <line fill="none" id="t2 p216" stroke="#44CC00" stroke-width="1" x1="287.0396" x2="292.6010" y1="372.5825" y2="375.0445"/>
337 <line fill="none" id="t2 p217" stroke="#44CC00" stroke-width="1" x1="292.6010" x2="296.3183" y1="375.0445" y2="380.1807"/>
338 <line fill="none" id="t2 p218" stroke="#44CC00" stroke-width="1" x1="296.3183" x2="298.4843" y1="380.1807" y2="386.5904"/>
339 <line fill="none" id="t2 p219" stroke="#50CC00" stroke-width="1" x1="298.4843" x2="301.1479" y1="386.5904" y2="392.4483"/>
340 <line fill="none" id="t2 p220" stroke="#50CC00" stroke-width="1" x1="301.1479" x2="304.6603" y1="392.4483" y2="398.4335"/>
341 <line fill="none" id="t2 p221" stroke="#58CC00" stroke-width="1" x1="304.6603" x2="308.0850" y1="398.4335" y2="403.6122"/>
342 <line fill="none" id="t2 p222" stroke="#60CC00" stroke-width="1" x1="308.0850" x2="311.9194" y1="403.6122" y2="409.5550"/>
343 <line fill="none" id="t2 p223" stroke="#6CCC00" stroke-width="1" x1="311.9194" x2="314.7878" y1="409.5550" y2="415.5826"/>
344 <line fill="none" id="t2 p224" stroke="#78CC00" stroke-width="1" x1="314.7878" x2="317.5685" y1="415.5826" y2="421.7801"/>
345 <line fill="none" id="t2 p225" stroke="#80CC00" stroke-width="1" x1="317.5685" x2="320.9931" y1="421.7801" y2="428.2747"/>
346 <line fill="none" id="t2 p226" stroke="#94CC00" stroke-width="1" x1="320.9931" x2="324.3592" y1="428.2747" y2="434.5570"/>
347 <line fill="none" id="t2 p227" stroke="#A8CC00" stroke-width="1" x1="324.3592" x2="327.4033" y1="434.5570" y2="440.4998"/>
348 <line fill="none" id="t2 p228" stroke="#A8CC00" stroke-width="1" x1="327.4033" x2="329.9206" y1="440.4998" y2="446.7397"/>
349 <line fill="none" id="t2 p229" stroke="#9CCC00" stroke-width="1" x1="329.9206" x2="332.5256" y1="446.7397" y2="452.3853"/>
350 <line fill="none" id="t2 p230" stroke="#9CCC00" stroke-width="1" x1="332.5256" x2="334.8087" y1="452.3853" y2="458.5828"/>
351 <line fill="none" id="t2 p231" stroke="#88CC00" stroke-width="1" x1="334.8087" x2="337.2089" y1="458.5828" y2="465.4594"/>
352 <line fill="none" id="t2 p232" stroke="#9CCC00" stroke-width="1" x1="337.2089" x2="339.2285" y1="465.4594" y2="470.5956"/>
353 <line fill="none" id="t2 p233" stroke="#9CCC00" stroke-width="1" x1="339.2285" x2="343.0044" y1="470.5956" y2="476.1564"/>
354 <line fill="none" id="t2 p234" stroke="#A8CC00" stroke-width="1" x1="343.0044" x2="346.3119" y1="476.1564" y2="481.2926"/>
355 <line fill="none" id="t2 p235" stroke="#A8CC00" stroke-width="1" x1="346.3119" x2="348.0096" y1="481.2926" y2="487.1505"/>
356 <line fill="none" id="t2 p236" stroke="#9CCC00" stroke-width="1" x1="348.0096" x2="349.0926" y1="487.1505" y2="492.9235"/>
357 <line fill="none" id="t2 p237" stroke="#6CCC00" stroke-width="1" x1="349.0926" x2="350.7610" y1="492.9235" y2="499.3756"/>
358 <line fill="none" id="t2 p238" stroke="#30CC00" stroke-width="1" x1="350.7610" x2="351.1708" y1="499.3756" y2="506.2947"/>
359 <line fill="none" id="t2 p239" stroke="#1CCC00" stroke-width="1" x1="351.1708" x2="349.6195" y1="506.2947" y2="512.6619"/>
360 <line fill="none" id="t2 p240" stroke="#28CC00" stroke-width="1" x1="349.6195" x2="344.9948" y1="512.6619" y2="517.8831"/>
361 <line fill="none" id="t2 p241" stroke="#08CC00" stroke-width="1" x1="344.9948" x2="340.3408" y1="517.8831" y2="522.3826"/>
362 <line fill="none" id="t2 p242" stroke="#28CC00" stroke-width="1" x1="340.3408" x2="335.3941" y1="522.3826" y2="526.7972"/>
363 <line fill="none" id="t2 p243" stroke="#1CCC00" stroke-width="1" x1="335.3941" x2="330.9450" y1="526.7972" y2="531.2543"/>
364 <line fill="none" id="t2 p244" stroke="#28CC00" stroke-width="1" x1="330.9450" x2="326.8179" y1="531.2543" y2="535.6689"/>
365 <line fill="none" id="t2 p245" stroke="#38CC00" stroke-width="1" x1="326.8179" x2="320.9931" y1="535.6689" y2="538.5129"/>
366 <line fill="none" id="t2 p246" stroke="#38CC00" stroke-width="1" x1="320.9931" x2="315.4318" y1="538.5129" y2="541.6541"/>
367 <line fill="none" id="t2 p247" stroke="#30CC00" stroke-width="1" x1="315.4318" x2="310.4266" y1="541.6541" y2="545.6867"/>
368 <line fill="none" id="t2 p248" stroke="#28CC00" stroke-width="1" x1="310.4266" x2="305.1579" y1="545.6867" y2="549.8466"/>
369 <line fill="none" id="t2 p249" stroke="#10CC00" stroke-width="1" x1="305.1579" x2="301.0308" y1="549.8466" y2="553.7094"/>
370 <line fill="none" id="t2 p250" stroke="#00CC04" stroke-width="1" x1="301.0308" x2="301.6162" y1="553.7094" y2="562.4962"/>
371 <line fill="none" id="t2 p251" stroke="#00CC04" stroke-width="1" x1="301.6162" x2="304.6311" y1="562.4962" y2="568.8210"/>
372 <line fill="none" id="t2 p252" stroke="#00CC04" stroke-width="1" x1="304.6311" x2="307.7044" y1="568.8210" y2="573.7450"/>
373 <line fill="none" id="t2 p253" stroke="#00CC04" stroke-width="1" x1="307.7044" x2="309.5485" y1="573.7450" y2="580.7490"/>
374 <line fill="none" id="t2 p254" stroke="#00CC04" stroke-width="1" x1="309.5485" x2="311.9779" y1="580.7490" y2="586.6493"/>
375 <line fill="none" id="t2 p255" stroke="#28CC00" stroke-width="1" x1="311.9779" x2="313.7341" y1="586.6493" y2="592.6345"/>
376 <line fill="none" id="t2 p256" stroke="#38CC00" stroke-width="1" x1="313.7341" x2="316.4563" y1="592.6345" y2="599.2565"/>
377 <line fill="none" id="t2 p257" stroke="#30CC00" stroke-width="1" x1="316.4563" x2="318.3881" y1="599.2565" y2="604.1805"/>
378 <line fill="none" id="t2 p258" stroke="#30CC00" stroke-width="1" x1="318.3881" x2="317.4807" y1="604.1805" y2="609.2743"/>
379 <line fill="none" id="t2 p259" stroke="#28CC00" stroke-width="1" x1="317.4807" x2="313.2365" y1="609.2743" y2="613.9860"/>
380 <line fill="none" id="t2 p260" stroke="#1CCC00" stroke-width="1" x1="313.2365" x2="309.8704" y1="613.9860" y2="618.5280"/>
381 <line fill="none" id="t2 p261" stroke="#00CC04" stroke-width="1" x1="309.8704" x2="305.7141" y1="618.5280" y2="622.8153"/>
382 <line fill="none" id="t2 p262" stroke="#00CC18" stroke-width="1" x1="305.7141" x2="302.2309" y1="622.8153" y2="629.3099"/>
383 <line fill="none" id="t2 p263" stroke="#00CC04" stroke-width="1" x1="302.2309" x2="302.8163" y1="629.3099" y2="635.9743"/>
384 <line fill="none" id="t2 p264" stroke="#10CC00" stroke-width="1" x1="302.8163" x2="306.7385" y1="635.9743" y2="641.1954"/>
385 <line fill="none" id="t2 p265" stroke="#10CC00" stroke-width="1" x1="306.7385" x2="313.4414" y1="641.1954" y2="645.6100"/>
386 <line fill="none" id="t2 p266" stroke="#10CC00" stroke-width="1" x1="313.4414" x2="320.1736" y1="645.6100" y2="648.0296"/>
387 <line fill="none" id="t2 p267" stroke="#00CC04" stroke-width="1" x1="320.1736" x2="324.8276" y1="648.0296" y2="647.0108"/>
388 <line fill="none" id="t2 p268" stroke="#1CCC00" stroke-width="1" x1="324.8276" x2="329.3937" y1="647.0108" y2="644.2941"/>
389 <line fill="none" id="t2 p269" stroke="#28CC00" stroke-width="1" x1="329.3937" x2="335.8917" y1="644.2941" y2="639.9219"/>
390 <line fill="none" id="t2 p270" stroke="#38CC00" stroke-width="1" x1="335.8917" x2="341.2775" y1="639.9219" y2="636.4836"/>
391 <line fill="none" id="t2 p271" stroke="#38CC00" stroke-width="1" x1="341.2775" x2="347.4242" y1="636.4836" y2="635.3375"/>
392 <line fill="none" id="t2 p272" stroke="#38CC00" stroke-width="1" x1="347.4242" x2="353.0441" y1="635.3375" y2="637.7146"/>
393 <line fill="none" id="t2 p273" stroke="#1CCC00" stroke-width="1" x1="353.0441" x2="359.1616" y1="637.7146" y2="641.0681"/>
394 <line fill="none" id="t2 p274" stroke="#30CC00" stroke-width="1" x1="359.1616" x2="364.7230" y1="641.0681" y2="643.5725"/>
395 <line fill="none" id="t2 p275" stroke="#44CC00" stroke-width="1" x1="364.7230" x2="371.2210" y1="643.5725" y2="646.5863"/>
396 <line fill="none" id="t2 p276" stroke="#44CC00" stroke-width="1" x1="371.2210" x2="377.4555" y1="646.5863" y2="646.5014"/>
397 <line fill="none" id="t2 p277" stroke="#30CC00" stroke-width="1" x1="377.4555" x2="383.7486" y1="646.5014" y2="645.4402"/>
398 <line fill="none" id="t2 p278" stroke="#38CC00" stroke-width="1" x1="383.7486" x2="390.3637" y1="645.4402" y2="646.3316"/>
399 <line fill="none" id="t2 p279" stroke="#28CC00" stroke-width="1" x1="390.3637" x2="397.0959" y1="646.3316" y2="647.7749"/>
400 <line fill="none" id="t2 p280" stroke="#00CC18" stroke-width="1" x1="397.0959" x2="403.8281" y1="647.7749" y2="648.8785"/>
401 <line fill="none" id="t2 p281" stroke="#00CC0C" stroke-width="1" x1="403.8281" x2="409.9455" y1="648.8785" y2="644.9309"/>
402 <line fill="none" id="t2 p282" stroke="#00CC18" stroke-width="1" x1="409.9455" x2="415.5069" y1="644.9309" y2="641.1105"/>
403 <line fill="none" id="t2 p283" stroke="#00CC0C" stroke-width="1" x1="415.5069" x2="421.8585" y1="641.1105" y2="637.4175"/>
404 <line fill="none" id="t2 p284" stroke="#00CC04" stroke-width="1" x1="421.8585" x2="428.9712" y1="637.4175" y2="635.9318"/>
405 <line fill="none" id="t2 p285" stroke="#00CC04" stroke-width="1" x1="428.9712" x2="435.3814" y1="635.9318" y2="633.3425"/>
406 <line fill="none" id="t2 p286" stroke="#10CC00" stroke-width="1" x1="435.3814" x2="442.2014" y1="633.3425" y2="632.7482"/>
407 <line fill="none" id="t2 p287" stroke="#08CC00" stroke-width="1" x1="442.2014" x2="445.9187" y1="632.7482" y2="632.9604"/>
408 <line fill="none" id="t2 p288" stroke="#28CC00" stroke-width="1" x1="445.9187" x2="450.9825" y1="632.9604" y2="638.9456"/>
409 <line fill="none" id="t2 p289" stroke="#38CC00" stroke-width="1" x1="450.9825" x2="457.6268" y1="638.9456" y2="639.1579"/>
410 <line fill="none" id="t2 p290" stroke="#50CC00" stroke-width="1" x1="457.6268" x2="469.6277" y1="639.1579" y2="636.0592"/>
411 <line fill="none" id="t2 p291" stroke="#58CC00" stroke-width="1" x1="469.6277" x2="476.3598" y1="636.0592" y2="634.5735"/>
412 <line fill="none" id="t2 p292" stroke="#60CC00" stroke-width="1" x1="476.3598" x2="482.0090" y1="634.5735" y2="631.0078"/>
413 <line fill="none" id="t2 p293" stroke="#94CC00" stroke-width="1" x1="482.0090" x2="487.0142" y1="631.0078" y2="627.6968"/>
414 <line fill="none" id="t2 p294" stroke="#B0CC00" stroke-width="1" x1="487.0142" x2="492.3414" y1="627.6968" y2="623.5369"/>
415 <line fill="none" id="t2 p295" stroke="#BCCC00" stroke-width="1" x1="492.3414" x2="497.0246" y1="623.5369" y2="618.6978"/>
416 <line fill="none" id="t2 p296" stroke="#CCC800" stroke-width="1" x1="497.0246" x2="501.9128" y1="618.6978" y2="614.4954"/>
417 <line fill="none" id="t2 p297" stroke="#C8CC00" stroke-width="1" x1="501.9128" x2="506.8595" y1="614.4954" y2="610.4628"/>
418 <line fill="none" id="t2 p298" stroke="#CCC800" stroke-width="1" x1="506.8595" x2="512.3915" y1="610.4628" y2="606.3029"/>
419 <line fill="none" id="t2 p299" stroke="#CCC000" stroke-width="1" x1="512.3915" x2="517.5724" y1="606.3029" y2="602.5250"/>
420 <line fill="none" id="t2 p300" stroke="#CCC800" stroke-width="1" x1="517.5724" x2="523.7484" y1="602.5250" y2="598.7895"/>
421 <line fill="none" id="t2 p301" stroke="#CC8000" stroke-width="1" x1="523.7484" x2="529.0463" y1="598.7895" y2="594.6296"/>
422 <line fill="none" id="t2 p302" stroke="#CC8000" stroke-width="1" x1="529.0463" x2="528.3146" y1="594.6296" y2="587.7105"/>
423 <line fill="none" id="t2 p303" stroke="#CC9800" stroke-width="1" x1="528.3146" x2="528.6365" y1="587.7105" y2="581.6829"/>
424 <line fill="none" id="t2 p304" stroke="#CCA800" stroke-width="1" x1="528.6365" x2="527.5535" y1="581.6829" y2="574.5940"/>
425 <line fill="none" id="t2 p305" stroke="#CCA800" stroke-width="1" x1="527.5535" x2="523.9826" y1="574.5940" y2="569.7549"/>
426 <line fill="none" id="t2 p306" stroke="#CCA800" stroke-width="1" x1="523.9826" x2="522.1971" y1="569.7549" y2="564.7460"/>
427 <line fill="none" id="t2 p307" stroke="#80CC00" stroke-width="1" x1="522.1971" x2="521.3775" y1="564.7460" y2="557.7420"/>
428 <line fill="none" id="t2 p308" stroke="#9CCC00" stroke-width="1" x1="521.3775" x2="519.6213" y1="557.7420" y2="551.1201"/>
429 <line fill="none" id="t2 p309" stroke="#BCCC00" stroke-width="1" x1="519.6213" x2="514.8210" y1="551.1201" y2="545.9838"/>
430 <line fill="none" id="t2 p310" stroke="#BCCC00" stroke-width="1" x1="514.8210" x2="508.4401" y1="545.9838" y2="542.7578"/>
431 <line fill="none" id="t2 p311" stroke="#CCC800" stroke-width="1" x1="508.4401" x2="502.1177" y1="542.7578" y2="540.2958"/>
432 <line fill="none" id="t2 p312" stroke="#CCC000" stroke-width="1" x1="502.1177" x2="496.2929" y1="540.2958" y2="537.7489"/>
433 <line fill="none" id="t2 p313" stroke="#CCB400" stroke-width="1" x1="496.2929" x2="494.1562" y1="537.7489" y2="532.9947"/>
434 <line fill="none" id="t2 p314" stroke="#CCA800" stroke-width="1" x1="494.1562" x2="494.5367" y1="532.9947" y2="524.2079"/>
435 <line fill="none" id="t2 p315" stroke="#CC9800" stroke-width="1" x1="494.5367" x2="495.1221" y1="524.2079" y2="521.1940"/>
436 <line fill="none" id="t2 p316" stroke="#CC9800" stroke-width="1" x1="495.1221" x2="495.0928" y1="521.1940" y2="514.7419"/>
437 <line fill="none" id="t2 p317" stroke="#CCA800" stroke-width="1" x1="495.0928" x2="491.4047" y1="514.7419" y2="507.2710"/>
438 <line fill="none" id="t2 p318" stroke="#CCA000" stroke-width="1" x1="491.4047" x2="489.6485" y1="507.2710" y2="499.3756"/>
439 <line fill="none" id="t2 p319" stroke="#CC8000" stroke-width="1" x1="489.6485" x2="491.9316" y1="499.3756" y2="494.1545"/>
440 <line fill="none" id="t2 p320" stroke="#CC9800" stroke-width="1" x1="491.9316" x2="495.1806" y1="494.1545" y2="488.8060"/>
441 <line fill="none" id="t2 p321" stroke="#CCA000" stroke-width="1" x1="495.1806" x2="498.9858" y1="488.8060" y2="484.7734"/>
442 <line fill="none" id="t2 p322" stroke="#CCC800" stroke-width="1" x1="498.9858" x2="503.7861" y1="484.7734" y2="480.3163"/>
443 <line fill="none" id="t2 p323" stroke="#CCC000" stroke-width="1" x1="503.7861" x2="509.1425" y1="480.3163" y2="475.9017"/>
444 <line fill="none" id="t2 p324" stroke="#CCB400" stroke-width="1" x1="509.1425" x2="513.1233" y1="475.9017" y2="470.8503"/>
445 <line fill="none" id="t2 p325" stroke="#CCC800" stroke-width="1" x1="513.1233" x2="517.6309" y1="470.8503" y2="465.0349"/>
446 <line fill="none" id="t2 p326" stroke="#CCC000" stroke-width="1" x1="517.6309" x2="522.2849" y1="465.0349" y2="459.5166"/>
447 </g>
448 <g id="20-FEB-10 (t3) track" opacity="0.9">
449 <line fill="none" id="t3 p1" stroke="#00CC0C" stroke-width="1" x1="524.7436" x2="523.7777" y1="455.8236" y2="454.9747"/>
450 <line fill="none" id="t3 p2" stroke="#00CC04" stroke-width="1" x1="523.7777" x2="522.9288" y1="454.9747" y2="454.2955"/>
451 <line fill="none" id="t3 p3" stroke="#50CC00" stroke-width="1" x1="522.9288" x2="520.2652" y1="454.2955" y2="453.5314"/>
452 <line fill="none" id="t3 p4" stroke="#44CC00" stroke-width="1" x1="520.2652" x2="517.3675" y1="453.5314" y2="452.9796"/>
453 <line fill="none" id="t3 p5" stroke="#50CC00" stroke-width="1" x1="517.3675" x2="512.6550" y1="452.9796" y2="451.1968"/>
454 <line fill="none" id="t3 p6" stroke="#58CC00" stroke-width="1" x1="512.6550" x2="508.6157" y1="451.1968" y2="448.8197"/>
455 <line fill="none" id="t3 p7" stroke="#60CC00" stroke-width="1" x1="508.6157" x2="506.9180" y1="448.8197" y2="446.6124"/>
456 <line fill="none" id="t3 p8" stroke="#58CC00" stroke-width="1" x1="506.9180" x2="503.2299" y1="446.6124" y2="438.8019"/>
457 <line fill="none" id="t3 p9" stroke="#78CC00" stroke-width="1" x1="503.2299" x2="500.0102" y1="438.8019" y2="426.4494"/>
458 <line fill="none" id="t3 p10" stroke="#80CC00" stroke-width="1" x1="500.0102" x2="501.7664" y1="426.4494" y2="417.2381"/>
459 <line fill="none" id="t3 p11" stroke="#9CCC00" stroke-width="1" x1="501.7664" x2="500.7420" y1="417.2381" y2="410.2766"/>
460 <line fill="none" id="t3 p12" stroke="#94CC00" stroke-width="1" x1="500.7420" x2="496.2051" y1="410.2766" y2="403.1877"/>
461 <line fill="none" id="t3 p13" stroke="#B0CC00" stroke-width="1" x1="496.2051" x2="488.5363" y1="403.1877" y2="398.7731"/>
462 <line fill="none" id="t3 p14" stroke="#BCCC00" stroke-width="1" x1="488.5363" x2="481.9212" y1="398.7731" y2="396.6082"/>
463 <line fill="none" id="t3 p15" stroke="#CCC800" stroke-width="1" x1="481.9212" x2="477.2965" y1="396.6082" y2="400.0466"/>
464 <line fill="none" id="t3 p16" stroke="#A8CC00" stroke-width="1" x1="477.2965" x2="471.0619" y1="400.0466" y2="408.2815"/>
465 <line fill="none" id="t3 p17" stroke="#9CCC00" stroke-width="1" x1="471.0619" x2="466.9348" y1="408.2815" y2="415.4553"/>
466 <line fill="none" id="t3 p18" stroke="#88CC00" stroke-width="1" x1="466.9348" x2="464.1834" y1="415.4553" y2="426.2796"/>
467 <line fill="none" id="t3 p19" stroke="#9CCC00" stroke-width="1" x1="464.1834" x2="460.3490" y1="426.2796" y2="436.8068"/>
468 <line fill="none" id="t3 p20" stroke="#94CC00" stroke-width="1" x1="460.3490" x2="454.9632" y1="436.8068" y2="446.7397"/>
469 <line fill="none" id="t3 p21" stroke="#C8CC00" stroke-width="1" x1="454.9632" x2="455.1096" y1="446.7397" y2="450.6449"/>
470 <line fill="none" id="t3 p22" stroke="#B0CC00" stroke-width="1" x1="455.1096" x2="456.8658" y1="450.6449" y2="455.9510"/>
471 <line fill="none" id="t3 p23" stroke="#B0CC00" stroke-width="1" x1="456.8658" x2="460.7588" y1="455.9510" y2="460.8750"/>
472 <line fill="none" id="t3 p24" stroke="#88CC00" stroke-width="1" x1="460.7588" x2="466.2908" y1="460.8750" y2="467.1573"/>
473 <line fill="none" id="t3 p25" stroke="#9CCC00" stroke-width="1" x1="466.2908" x2="474.3694" y1="467.1573" y2="469.6193"/>
474 <line fill="none" id="t3 p26" stroke="#88CC00" stroke-width="1" x1="474.3694" x2="480.6626" y1="469.6193" y2="471.2748"/>
475 <line fill="none" id="t3 p27" stroke="#80CC00" stroke-width="1" x1="480.6626" x2="486.6044" y1="471.2748" y2="473.2699"/>
476 <line fill="none" id="t3 p28" stroke="#9CCC00" stroke-width="1" x1="486.6044" x2="488.5070" y1="473.2699" y2="473.7793"/>
477 <line fill="none" id="t3 p29" stroke="#78CC00" stroke-width="1" x1="488.5070" x2="490.9072" y1="473.7793" y2="474.6707"/>
478 <line fill="none" id="t3 p30" stroke="#78CC00" stroke-width="1" x1="490.9072" x2="493.8049" y1="474.6707" y2="477.7270"/>
479 <line fill="none" id="t3 p31" stroke="#50CC00" stroke-width="1" x1="493.8049" x2="495.0928" y1="477.7270" y2="479.4673"/>
480 <line fill="none" id="t3 p32" stroke="#6CCC00" stroke-width="1" x1="495.0928" x2="497.3173" y1="479.4673" y2="485.7072"/>
481 <line fill="none" id="t3 p33" stroke="#58CC00" stroke-width="1" x1="497.3173" x2="494.6537" y1="485.7072" y2="489.6974"/>
482 <line fill="none" id="t3 p34" stroke="#80CC00" stroke-width="1" x1="494.6537" x2="489.4144" y1="489.6974" y2="498.9087"/>
483 <line fill="none" id="t3 p35" stroke="#88CC00" stroke-width="1" x1="489.4144" x2="491.5511" y1="498.9087" y2="507.3134"/>
484 <line fill="none" id="t3 p36" stroke="#BCCC00" stroke-width="1" x1="491.5511" x2="495.1806" y1="507.3134" y2="514.1476"/>
485 <line fill="none" id="t3 p37" stroke="#CCC800" stroke-width="1" x1="495.1806" x2="494.5952" y1="514.1476" y2="519.9206"/>
486 <line fill="none" id="t3 p38" stroke="#BCCC00" stroke-width="1" x1="494.5952" x2="494.6245" y1="519.9206" y2="524.9719"/>
487 <line fill="none" id="t3 p39" stroke="#B0CC00" stroke-width="1" x1="494.6245" x2="493.6586" y1="524.9719" y2="529.4290"/>
488 <line fill="none" id="t3 p40" stroke="#B0CC00" stroke-width="1" x1="493.6586" x2="491.2291" y1="529.4290" y2="533.2069"/>
489 <line fill="none" id="t3 p41" stroke="#B0CC00" stroke-width="1" x1="491.2291" x2="489.5900" y1="533.2069" y2="533.9710"/>
490 <line fill="none" id="t3 p42" stroke="#B0CC00" stroke-width="1" x1="489.5900" x2="487.5411" y1="533.9710" y2="534.3106"/>
491 <line fill="none" id="t3 p43" stroke="#78CC00" stroke-width="1" x1="487.5411" x2="484.7897" y1="534.3106" y2="534.6926"/>
492 <line fill="none" id="t3 p44" stroke="#6CCC00" stroke-width="1" x1="484.7897" x2="479.9015" y1="534.6926" y2="537.7913"/>
493 <line fill="none" id="t3 p45" stroke="#38CC00" stroke-width="1" x1="479.9015" x2="476.2135" y1="537.7913" y2="539.7015"/>
494 <line fill="none" id="t3 p46" stroke="#28CC00" stroke-width="1" x1="476.2135" x2="470.5643" y1="539.7015" y2="540.4231"/>
495 <line fill="none" id="t3 p47" stroke="#38CC00" stroke-width="1" x1="470.5643" x2="464.3590" y1="540.4231" y2="535.5416"/>
496 <line fill="none" id="t3 p48" stroke="#58CC00" stroke-width="1" x1="464.3590" x2="456.5438" y1="535.5416" y2="531.1269"/>
497 <line fill="none" id="t3 p49" stroke="#60CC00" stroke-width="1" x1="456.5438" x2="453.4997" y1="531.1269" y2="529.4715"/>
498 <line fill="none" id="t3 p50" stroke="#58CC00" stroke-width="1" x1="453.4997" x2="449.1970" y1="529.4715" y2="527.2217"/>
499 <line fill="none" id="t3 p51" stroke="#50CC00" stroke-width="1" x1="449.1970" x2="444.3381" y1="527.2217" y2="523.9532"/>
500 <line fill="none" id="t3 p52" stroke="#38CC00" stroke-width="1" x1="444.3381" x2="442.0550" y1="523.9532" y2="517.6284"/>
501 <line fill="none" id="t3 p53" stroke="#30CC00" stroke-width="1" x1="442.0550" x2="438.2499" y1="517.6284" y2="507.6530"/>
502 <line fill="none" id="t3 p54" stroke="#50CC00" stroke-width="1" x1="438.2499" x2="433.9179" y1="507.6530" y2="502.6017"/>
503 <line fill="none" id="t3 p55" stroke="#44CC00" stroke-width="1" x1="433.9179" x2="425.9271" y1="502.6017" y2="495.2157"/>
504 <line fill="none" id="t3 p56" stroke="#58CC00" stroke-width="1" x1="425.9271" x2="418.7852" y1="495.2157" y2="486.8533"/>
505 <line fill="none" id="t3 p57" stroke="#6CCC00" stroke-width="1" x1="418.7852" x2="417.2046" y1="486.8533" y2="476.7082"/>
506 <line fill="none" id="t3 p58" stroke="#50CC00" stroke-width="1" x1="417.2046" x2="417.3802" y1="476.7082" y2="471.6144"/>
507 <line fill="none" id="t3 p59" stroke="#58CC00" stroke-width="1" x1="417.3802" x2="415.8289" y1="471.6144" y2="461.3419"/>
508 <line fill="none" id="t3 p60" stroke="#78CC00" stroke-width="1" x1="415.8289" x2="417.5851" y1="461.3419" y2="451.8759"/>
509 <line fill="none" id="t3 p61" stroke="#88CC00" stroke-width="1" x1="417.5851" x2="421.3317" y1="451.8759" y2="441.1790"/>
510 <line fill="none" id="t3 p62" stroke="#9CCC00" stroke-width="1" x1="421.3317" x2="424.6978" y1="441.1790" y2="431.1612"/>
511 <line fill="none" id="t3 p63" stroke="#A8CC00" stroke-width="1" x1="424.6978" x2="426.8345" y1="431.1612" y2="420.4642"/>
512 <line fill="none" id="t3 p64" stroke="#94CC00" stroke-width="1" x1="426.8345" x2="424.0831" y1="420.4642" y2="411.8047"/>
513 <line fill="none" id="t3 p65" stroke="#C8CC00" stroke-width="1" x1="424.0831" x2="420.7755" y1="411.8047" y2="406.2440"/>
514 <line fill="none" id="t3 p66" stroke="#C8CC00" stroke-width="1" x1="420.7755" x2="416.0338" y1="406.2440" y2="398.7307"/>
515 <line fill="none" id="t3 p67" stroke="#C8CC00" stroke-width="1" x1="416.0338" x2="411.2920" y1="398.7307" y2="392.4059"/>
516 <line fill="none" id="t3 p68" stroke="#C8CC00" stroke-width="1" x1="411.2920" x2="410.0041" y1="392.4059" y2="389.8165"/>
517 <line fill="none" id="t3 p69" stroke="#CCB400" stroke-width="1" x1="410.0041" x2="409.7407" y1="389.8165" y2="389.4769"/>
518 <line fill="none" id="t3 p70" stroke="#CCA800" stroke-width="1" x1="409.7407" x2="409.2723" y1="389.4769" y2="385.3170"/>
519 <line fill="none" id="t3 p71" stroke="#CCA000" stroke-width="1" x1="409.2723" x2="409.1552" y1="385.3170" y2="376.1057"/>
520 <line fill="none" id="t3 p72" stroke="#CC8000" stroke-width="1" x1="409.1552" x2="410.8822" y1="376.1057" y2="366.6822"/>
521 <line fill="none" id="t3 p73" stroke="#CC7000" stroke-width="1" x1="410.8822" x2="414.0141" y1="366.6822" y2="357.0040"/>
522 <line fill="none" id="t3 p74" stroke="#CC3C00" stroke-width="1" x1="414.0141" x2="417.3509" y1="357.0040" y2="350.4669"/>
523 <line fill="none" id="t3 p75" stroke="#CC3C00" stroke-width="1" x1="417.3509" x2="420.5414" y1="350.4669" y2="342.1471"/>
524 <line fill="none" id="t3 p76" stroke="#CC5000" stroke-width="1" x1="420.5414" x2="421.7707" y1="342.1471" y2="337.2231"/>
525 <line fill="none" id="t3 p77" stroke="#CC7800" stroke-width="1" x1="421.7707" x2="422.0049" y1="337.2231" y2="335.9921"/>
526 <line fill="none" id="t3 p78" stroke="#CC7800" stroke-width="1" x1="422.0049" x2="422.2683" y1="335.9921" y2="334.2517"/>
527 <line fill="none" id="t3 p79" stroke="#CC8C00" stroke-width="1" x1="422.2683" x2="422.6196" y1="334.2517" y2="333.0207"/>
528 <line fill="none" id="t3 p80" stroke="#CCA000" stroke-width="1" x1="422.6196" x2="422.7367" y1="333.0207" y2="331.9595"/>
529 <line fill="none" id="t3 p81" stroke="#CCA800" stroke-width="1" x1="422.7367" x2="422.8245" y1="331.9595" y2="331.1530"/>
530 <line fill="none" id="t3 p82" stroke="#CCB400" stroke-width="1" x1="422.8245" x2="422.7952" y1="331.1530" y2="330.1342"/>
531 <line fill="none" id="t3 p83" stroke="#CCC000" stroke-width="1" x1="422.7952" x2="422.9123" y1="330.1342" y2="329.2428"/>
532 <line fill="none" id="t3 p84" stroke="#CCC800" stroke-width="1" x1="422.9123" x2="422.9708" y1="329.2428" y2="327.9269"/>
533 <line fill="none" id="t3 p85" stroke="#BCCC00" stroke-width="1" x1="422.9708" x2="422.7074" y1="327.9269" y2="326.6959"/>
534 <line fill="none" id="t3 p86" stroke="#BCCC00" stroke-width="1" x1="422.7074" x2="422.5318" y1="326.6959" y2="325.4649"/>
535 <line fill="none" id="t3 p87" stroke="#A8CC00" stroke-width="1" x1="422.5318" x2="422.4147" y1="325.4649" y2="324.2339"/>
536 <line fill="none" id="t3 p88" stroke="#94CC00" stroke-width="1" x1="422.4147" x2="422.0634" y1="324.2339" y2="322.8755"/>
537 <line fill="none" id="t3 p89" stroke="#88CC00" stroke-width="1" x1="422.0634" x2="421.5658" y1="322.8755" y2="321.6870"/>
538 <line fill="none" id="t3 p90" stroke="#78CC00" stroke-width="1" x1="421.5658" x2="420.8048" y1="321.6870" y2="320.4135"/>
539 <line fill="none" id="t3 p91" stroke="#6CCC00" stroke-width="1" x1="420.8048" x2="419.4291" y1="320.4135" y2="318.8005"/>
540 <line fill="none" id="t3 p92" stroke="#60CC00" stroke-width="1" x1="419.4291" x2="414.1312" y1="318.8005" y2="315.8291"/>
541 <line fill="none" id="t3 p93" stroke="#6CCC00" stroke-width="1" x1="414.1312" x2="408.3064" y1="315.8291" y2="314.6406"/>
542 <line fill="none" id="t3 p94" stroke="#60CC00" stroke-width="1" x1="408.3064" x2="401.1937" y1="314.6406" y2="313.1973"/>
543 <line fill="none" id="t3 p95" stroke="#6CCC00" stroke-width="1" x1="401.1937" x2="393.8176" y1="313.1973" y2="312.6455"/>
544 <line fill="none" id="t3 p96" stroke="#6CCC00" stroke-width="1" x1="393.8176" x2="385.9146" y1="312.6455" y2="311.9663"/>
545 <line fill="none" id="t3 p97" stroke="#80CC00" stroke-width="1" x1="385.9146" x2="377.7482" y1="311.9663" y2="310.0137"/>
546 <line fill="none" id="t3 p98" stroke="#A8CC00" stroke-width="1" x1="377.7482" x2="368.4695" y1="310.0137" y2="304.9623"/>
547 <line fill="none" id="t3 p99" stroke="#CCA800" stroke-width="1" x1="368.4695" x2="360.4495" y1="304.9623" y2="301.9910"/>
548 <line fill="none" id="t3 p100" stroke="#CC7800" stroke-width="1" x1="360.4495" x2="356.4102" y1="301.9910" y2="300.8024"/>
549 <line fill="none" id="t3 p101" stroke="#CC9800" stroke-width="1" x1="356.4102" x2="349.1219" y1="300.8024" y2="298.8073"/>
550 <line fill="none" id="t3 p102" stroke="#CC8C00" stroke-width="1" x1="349.1219" x2="339.7261" y1="298.8073" y2="297.9584"/>
551 <line fill="none" id="t3 p103" stroke="#CC6400" stroke-width="1" x1="339.7261" x2="328.4571" y1="297.9584" y2="297.3641"/>
552 <line fill="none" id="t3 p104" stroke="#CC5800" stroke-width="1" x1="328.4571" x2="315.4903" y1="297.3641" y2="296.3453"/>
553 <line fill="none" id="t3 p105" stroke="#CC3C00" stroke-width="1" x1="315.4903" x2="303.0797" y1="296.3453" y2="292.0156"/>
554 <line fill="none" id="t3 p106" stroke="#CC1400" stroke-width="1" x1="303.0797" x2="299.3039" y1="292.0156" y2="286.7945"/>
555 <line fill="none" id="t3 p107" stroke="#CC2800" stroke-width="1" x1="299.3039" x2="291.8399" y1="286.7945" y2="281.4035"/>
556 <line fill="none" id="t3 p108" stroke="#CC2000" stroke-width="1" x1="291.8399" x2="285.0200" y1="281.4035" y2="275.2485"/>
557 <line fill="none" id="t3 p109" stroke="#CC2000" stroke-width="1" x1="285.0200" x2="283.2638" y1="275.2485" y2="267.8625"/>
558 <line fill="none" id="t3 p110" stroke="#CC3000" stroke-width="1" x1="283.2638" x2="282.3856" y1="267.8625" y2="259.2031"/>
559 <line fill="none" id="t3 p111" stroke="#CC3C00" stroke-width="1" x1="282.3856" x2="280.4245" y1="259.2031" y2="251.0105"/>
560 <line fill="none" id="t3 p112" stroke="#CC3C00" stroke-width="1" x1="280.4245" x2="278.9025" y1="251.0105" y2="241.9691"/>
561 <line fill="none" id="t3 p113" stroke="#CC5000" stroke-width="1" x1="278.9025" x2="275.7706" y1="241.9691" y2="234.2435"/>
562 <line fill="none" id="t3 p114" stroke="#CC6400" stroke-width="1" x1="275.7706" x2="268.4237" y1="234.2435" y2="229.2346"/>
563 <line fill="none" id="t3 p115" stroke="#CC5000" stroke-width="1" x1="268.4237" x2="263.7405" y1="229.2346" y2="223.8861"/>
564 <line fill="none" id="t3 p116" stroke="#CC4800" stroke-width="1" x1="263.7405" x2="257.1254" y1="223.8861" y2="217.9009"/>
565 <line fill="none" id="t3 p117" stroke="#CC4800" stroke-width="1" x1="257.1254" x2="250.6859" y1="217.9009" y2="212.8495"/>
566 <line fill="none" id="t3 p118" stroke="#CC5000" stroke-width="1" x1="250.6859" x2="243.8952" y1="212.8495" y2="209.8357"/>
567 <line fill="none" id="t3 p119" stroke="#CC7800" stroke-width="1" x1="243.8952" x2="236.6362" y1="209.8357" y2="205.9729"/>
568 <line fill="none" id="t3 p120" stroke="#CC8C00" stroke-width="1" x1="236.6362" x2="231.6895" y1="205.9729" y2="201.5158"/>
569 <line fill="none" id="t3 p121" stroke="#CC8C00" stroke-width="1" x1="231.6895" x2="228.5576" y1="201.5158" y2="198.6293"/>
570 <line fill="none" id="t3 p122" stroke="#CCC800" stroke-width="1" x1="228.5576" x2="227.3868" y1="198.6293" y2="197.9077"/>
571 <line fill="none" id="t3 p123" stroke="#CCC000" stroke-width="1" x1="227.3868" x2="226.4209" y1="197.9077" y2="197.5681"/>
572 <line fill="none" id="t3 p124" stroke="#CCC800" stroke-width="1" x1="226.4209" x2="225.1037" y1="197.5681" y2="196.9738"/>
573 <line fill="none" id="t3 p125" stroke="#BCCC00" stroke-width="1" x1="225.1037" x2="224.3427" y1="196.9738" y2="196.1249"/>
574 <line fill="none" id="t3 p126" stroke="#BCCC00" stroke-width="1" x1="224.3427" x2="223.2889" y1="196.1249" y2="195.2759"/>
575 <line fill="none" id="t3 p127" stroke="#CCC000" stroke-width="1" x1="223.2889" x2="222.4401" y1="195.2759" y2="194.3421"/>
576 <line fill="none" id="t3 p128" stroke="#C8CC00" stroke-width="1" x1="222.4401" x2="221.6791" y1="194.3421" y2="193.6204"/>
577 <line fill="none" id="t3 p129" stroke="#B0CC00" stroke-width="1" x1="221.6791" x2="220.9180" y1="193.6204" y2="192.9837"/>
578 <line fill="none" id="t3 p130" stroke="#9CCC00" stroke-width="1" x1="220.9180" x2="219.6009" y1="192.9837" y2="192.6017"/>
579 <line fill="none" id="t3 p131" stroke="#94CC00" stroke-width="1" x1="219.6009" x2="218.7228" y1="192.6017" y2="192.2196"/>
580 <line fill="none" id="t3 p132" stroke="#94CC00" stroke-width="1" x1="218.7228" x2="217.6105" y1="192.2196" y2="191.6254"/>
581 <line fill="none" id="t3 p133" stroke="#88CC00" stroke-width="1" x1="217.6105" x2="216.3811" y1="191.6254" y2="191.0735"/>
582 <line fill="none" id="t3 p134" stroke="#80CC00" stroke-width="1" x1="216.3811" x2="214.7127" y1="191.0735" y2="190.3519"/>
583 <line fill="none" id="t3 p135" stroke="#6CCC00" stroke-width="1" x1="214.7127" x2="212.9858" y1="190.3519" y2="189.8001"/>
584 <line fill="none" id="t3 p136" stroke="#60CC00" stroke-width="1" x1="212.9858" x2="210.9954" y1="189.8001" y2="189.5029"/>
585 <line fill="none" id="t3 p137" stroke="#6CCC00" stroke-width="1" x1="210.9954" x2="208.1562" y1="189.5029" y2="190.0123"/>
586 <line fill="none" id="t3 p138" stroke="#50CC00" stroke-width="1" x1="208.1562" x2="206.4585" y1="190.0123" y2="190.4793"/>
587 <line fill="none" id="t3 p139" stroke="#50CC00" stroke-width="1" x1="206.4585" x2="201.5997" y1="190.4793" y2="191.3707"/>
588 <line fill="none" id="t3 p140" stroke="#50CC00" stroke-width="1" x1="201.5997" x2="195.3944" y1="191.3707" y2="190.0548"/>
589 <line fill="none" id="t3 p141" stroke="#58CC00" stroke-width="1" x1="195.3944" x2="192.1454" y1="190.0548" y2="188.6540"/>
590 <line fill="none" id="t3 p142" stroke="#44CC00" stroke-width="1" x1="192.1454" x2="190.1842" y1="188.6540" y2="185.2581"/>
591 <line fill="none" id="t3 p143" stroke="#44CC00" stroke-width="1" x1="190.1842" x2="193.0527" y1="185.2581" y2="184.0271"/>
592 <line fill="none" id="t3 p144" stroke="#50CC00" stroke-width="1" x1="193.0527" x2="197.8531" y1="184.0271" y2="182.2867"/>
593 <line fill="none" id="t3 p145" stroke="#60CC00" stroke-width="1" x1="197.8531" x2="203.8242" y1="182.2867" y2="179.3578"/>
594 <line fill="none" id="t3 p146" stroke="#58CC00" stroke-width="1" x1="203.8242" x2="212.6638" y1="179.3578" y2="176.4289"/>
595 <line fill="none" id="t3 p147" stroke="#6CCC00" stroke-width="1" x1="212.6638" x2="220.8888" y1="176.4289" y2="170.3588"/>
596 <line fill="none" id="t3 p148" stroke="#6CCC00" stroke-width="1" x1="220.8888" x2="222.6450" y1="170.3588" y2="166.3686"/>
597 <line fill="none" id="t3 p149" stroke="#6CCC00" stroke-width="1" x1="222.6450" x2="225.9233" y1="166.3686" y2="158.0487"/>
598 <line fill="none" id="t3 p150" stroke="#6CCC00" stroke-width="1" x1="225.9233" x2="228.1771" y1="158.0487" y2="151.8937"/>
599 <line fill="none" id="t3 p151" stroke="#6CCC00" stroke-width="1" x1="228.1771" x2="231.7188" y1="151.8937" y2="145.0171"/>
600 <line fill="none" id="t3 p152" stroke="#60CC00" stroke-width="1" x1="231.7188" x2="231.8359" y1="145.0171" y2="137.4613"/>
601 <line fill="none" id="t3 p153" stroke="#58CC00" stroke-width="1" x1="231.8359" x2="231.8651" y1="137.4613" y2="135.2540"/>
602 <line fill="none" id="t3 p154" stroke="#58CC00" stroke-width="1" x1="231.8651" x2="231.4846" y1="135.2540" y2="132.9193"/>
603 <line fill="none" id="t3 p155" stroke="#58CC00" stroke-width="1" x1="231.4846" x2="230.9285" y1="132.9193" y2="130.5847"/>
604 <line fill="none" id="t3 p156" stroke="#58CC00" stroke-width="1" x1="230.9285" x2="230.5480" y1="130.5847" y2="128.3349"/>
605 <line fill="none" id="t3 p157" stroke="#6CCC00" stroke-width="1" x1="230.5480" x2="230.3138" y1="128.3349" y2="123.1987"/>
606 <line fill="none" id="t3 p158" stroke="#88CC00" stroke-width="1" x1="230.3138" x2="231.4261" y1="123.1987" y2="115.2184"/>
607 <line fill="none" id="t3 p159" stroke="#B0CC00" stroke-width="1" x1="231.4261" x2="234.1482" y1="115.2184" y2="103.9272"/>
608 <line fill="none" id="t3 p160" stroke="#CCC000" stroke-width="1" x1="234.1482" x2="236.2264" y1="103.9272" y2="98.5362"/>
609 <line fill="none" id="t3 p161" stroke="#CCC000" stroke-width="1" x1="236.2264" x2="239.5632" y1="98.5362" y2="89.5796"/>
610 <line fill="none" id="t3 p162" stroke="#CC9800" stroke-width="1" x1="239.5632" x2="241.6414" y1="89.5796" y2="82.2785"/>
611 <line fill="none" id="t3 p163" stroke="#CCA000" stroke-width="1" x1="241.6414" x2="241.8756" y1="82.2785" y2="74.4680"/>
612 <line fill="none" id="t3 p164" stroke="#CC9800" stroke-width="1" x1="241.8756" x2="237.9241" y1="74.4680" y2="69.0346"/>
613 <line fill="none" id="t3 p165" stroke="#CC9800" stroke-width="1" x1="237.9241" x2="234.0604" y1="69.0346" y2="64.0257"/>
614 <line fill="none" id="t3 p166" stroke="#CCA800" stroke-width="1" x1="234.0604" x2="228.4112" y1="64.0257" y2="56.8944"/>
615 <line fill="none" id="t3 p167" stroke="#CC8C00" stroke-width="1" x1="228.4112" x2="224.5183" y1="56.8944" y2="51.9280"/>
616 <line fill="none" id="t3 p168" stroke="#CC9800" stroke-width="1" x1="224.5183" x2="218.6935" y1="51.9280" y2="43.9901"/>
617 <line fill="none" id="t3 p169" stroke="#CC7800" stroke-width="1" x1="218.6935" x2="212.6346" y1="43.9901" y2="40.6792"/>
618 <line fill="none" id="t3 p170" stroke="#CC7000" stroke-width="1" x1="212.6346" x2="206.5756" y1="40.6792" y2="40.1273"/>
619 <line fill="none" id="t3 p171" stroke="#CC7800" stroke-width="1" x1="206.5756" x2="200.6337" y1="40.1273" y2="40.0000"/>
620 <line fill="none" id="t3 p172" stroke="#CC7800" stroke-width="1" x1="200.6337" x2="194.8382" y1="40.0000" y2="40.4245"/>
621 <line fill="none" id="t3 p173" stroke="#CC9800" stroke-width="1" x1="194.8382" x2="187.8134" y1="40.4245" y2="41.7828"/>
622 <line fill="none" id="t3 p174" stroke="#CCC000" stroke-width="1" x1="187.8134" x2="181.6959" y1="41.7828" y2="43.6930"/>
623 <line fill="none" id="t3 p175" stroke="#CCC000" stroke-width="1" x1="181.6959" x2="177.5980" y1="43.6930" y2="49.1264"/>
624 <line fill="none" id="t3 p176" stroke="#CCC000" stroke-width="1" x1="177.5980" x2="173.2660" y1="49.1264" y2="56.1728"/>
625 <line fill="none" id="t3 p177" stroke="#BCCC00" stroke-width="1" x1="173.2660" x2="167.5583" y1="56.1728" y2="60.4601"/>
626 <line fill="none" id="t3 p178" stroke="#BCCC00" stroke-width="1" x1="167.5583" x2="164.8069" y1="60.4601" y2="62.1580"/>
627 <line fill="none" id="t3 p179" stroke="#A8CC00" stroke-width="1" x1="164.8069" x2="157.8991" y1="62.1580" y2="60.7997"/>
628 <line fill="none" id="t3 p180" stroke="#78CC00" stroke-width="1" x1="157.8991" x2="149.0010" y1="60.7997" y2="60.2054"/>
629 <line fill="none" id="t3 p181" stroke="#88CC00" stroke-width="1" x1="149.0010" x2="145.1665" y1="60.2054" y2="64.5351"/>
630 <line fill="none" id="t3 p182" stroke="#80CC00" stroke-width="1" x1="145.1665" x2="142.6200" y1="64.5351" y2="71.3693"/>
631 <line fill="none" id="t3 p183" stroke="#60CC00" stroke-width="1" x1="142.6200" x2="139.3418" y1="71.3693" y2="78.5006"/>
632 <line fill="none" id="t3 p184" stroke="#44CC00" stroke-width="1" x1="139.3418" x2="134.5707" y1="78.5006" y2="83.5095"/>
633 <line fill="none" id="t3 p185" stroke="#38CC00" stroke-width="1" x1="134.5707" x2="128.6581" y1="83.5095" y2="86.7356"/>
634 <line fill="none" id="t3 p186" stroke="#28CC00" stroke-width="1" x1="128.6581" x2="123.5943" y1="86.7356" y2="89.3249"/>
635 <line fill="none" id="t3 p187" stroke="#28CC00" stroke-width="1" x1="123.5943" x2="119.7307" y1="89.3249" y2="97.4750"/>
636 <line fill="none" id="t3 p188" stroke="#28CC00" stroke-width="1" x1="119.7307" x2="122.1308" y1="97.4750" y2="106.8985"/>
637 <line fill="none" id="t3 p189" stroke="#50CC00" stroke-width="1" x1="122.1308" x2="124.0334" y1="106.8985" y2="113.2658"/>
638 <line fill="none" id="t3 p190" stroke="#60CC00" stroke-width="1" x1="124.0334" x2="126.2579" y1="113.2658" y2="118.9114"/>
639 <line fill="none" id="t3 p191" stroke="#50CC00" stroke-width="1" x1="126.2579" x2="127.7507" y1="118.9114" y2="124.1750"/>
640 <line fill="none" id="t3 p192" stroke="#44CC00" stroke-width="1" x1="127.7507" x2="129.3021" y1="124.1750" y2="129.3112"/>
641 <line fill="none" id="t3 p193" stroke="#28CC00" stroke-width="1" x1="129.3021" x2="131.1753" y1="129.3112" y2="133.4712"/>
642 <line fill="none" id="t3 p194" stroke="#1CCC00" stroke-width="1" x1="131.1753" x2="132.3462" y1="133.4712" y2="134.3201"/>
643 <line fill="none" id="t3 p195" stroke="#28CC00" stroke-width="1" x1="132.3462" x2="134.1902" y1="134.3201" y2="134.7871"/>
644 <line fill="none" id="t3 p196" stroke="#1CCC00" stroke-width="1" x1="134.1902" x2="138.9612" y1="134.7871" y2="136.1030"/>
645 <line fill="none" id="t3 p197" stroke="#30CC00" stroke-width="1" x1="138.9612" x2="142.3273" y1="136.1030" y2="138.9895"/>
646 <line fill="none" id="t3 p198" stroke="#30CC00" stroke-width="1" x1="142.3273" x2="144.9031" y1="138.9895" y2="143.6588"/>
647 <line fill="none" id="t3 p199" stroke="#08CC00" stroke-width="1" x1="144.9031" x2="148.6497" y1="143.6588" y2="145.9510"/>
648 <line fill="none" id="t3 p200" stroke="#10CC00" stroke-width="1" x1="148.6497" x2="151.8109" y1="145.9510" y2="145.2294"/>
649 <line fill="none" id="t3 p201" stroke="#10CC00" stroke-width="1" x1="151.8109" x2="153.3622" y1="145.2294" y2="144.5926"/>
650 <line fill="none" id="t3 p202" stroke="#1CCC00" stroke-width="1" x1="153.3622" x2="154.4452" y1="144.5926" y2="144.1257"/>
651 <line fill="none" id="t3 p203" stroke="#28CC00" stroke-width="1" x1="154.4452" x2="155.2648" y1="144.1257" y2="142.7249"/>
652 <line fill="none" id="t3 p204" stroke="#28CC00" stroke-width="1" x1="155.2648" x2="155.7624" y1="142.7249" y2="136.9519"/>
653 <line fill="none" id="t3 p205" stroke="#44CC00" stroke-width="1" x1="155.7624" x2="156.2893" y1="136.9519" y2="130.5847"/>
654 <line fill="none" id="t3 p206" stroke="#44CC00" stroke-width="1" x1="156.2893" x2="157.4015" y1="130.5847" y2="119.8877"/>
655 <line fill="none" id="t3 p207" stroke="#6CCC00" stroke-width="1" x1="157.4015" x2="160.5334" y1="119.8877" y2="110.6340"/>
656 <line fill="none" id="t3 p208" stroke="#78CC00" stroke-width="1" x1="160.5334" x2="169.4609" y1="110.6340" y2="100.7860"/>
657 <line fill="none" id="t3 p209" stroke="#9CCC00" stroke-width="1" x1="169.4609" x2="173.4709" y1="100.7860" y2="97.9844"/>
658 <line fill="none" id="t3 p210" stroke="#B0CC00" stroke-width="1" x1="173.4709" x2="179.5884" y1="97.9844" y2="96.6260"/>
659 <line fill="none" id="t3 p211" stroke="#C8CC00" stroke-width="1" x1="179.5884" x2="185.9986" y1="96.6260" y2="100.1493"/>
660 <line fill="none" id="t3 p212" stroke="#CCA800" stroke-width="1" x1="185.9986" x2="191.3551" y1="100.1493" y2="103.4178"/>
661 <line fill="none" id="t3 p213" stroke="#CC8000" stroke-width="1" x1="191.3551" x2="195.4236" y1="103.4178" y2="109.1058"/>
662 <line fill="none" id="t3 p214" stroke="#CC8C00" stroke-width="1" x1="195.4236" x2="196.3603" y1="109.1058" y2="117.0861"/>
663 <line fill="none" id="t3 p215" stroke="#CCC800" stroke-width="1" x1="196.3603" x2="196.3310" y1="117.0861" y2="123.7930"/>
664 <line fill="none" id="t3 p216" stroke="#C8CC00" stroke-width="1" x1="196.3310" x2="197.3847" y1="123.7930" y2="127.3162"/>
665 <line fill="none" id="t3 p217" stroke="#58CC00" stroke-width="1" x1="197.3847" x2="197.9701" y1="127.3162" y2="131.1365"/>
666 <line fill="none" id="t3 p218" stroke="#58CC00" stroke-width="1" x1="197.9701" x2="198.0287" y1="131.1365" y2="134.3201"/>
667 <line fill="none" id="t3 p219" stroke="#60CC00" stroke-width="1" x1="198.0287" x2="197.9994" y1="134.3201" y2="136.7821"/>
668 <line fill="none" id="t3 p220" stroke="#58CC00" stroke-width="1" x1="197.9994" x2="197.7945" y1="136.7821" y2="138.3952"/>
669 <line fill="none" id="t3 p221" stroke="#44CC00" stroke-width="1" x1="197.7945" x2="197.4725" y1="138.3952" y2="139.2017"/>
670 <line fill="none" id="t3 p222" stroke="#44CC00" stroke-width="1" x1="197.4725" x2="196.9457" y1="139.2017" y2="140.0507"/>
671 <line fill="none" id="t3 p223" stroke="#30CC00" stroke-width="1" x1="196.9457" x2="196.1554" y1="140.0507" y2="141.2817"/>
672 <line fill="none" id="t3 p224" stroke="#28CC00" stroke-width="1" x1="196.1554" x2="195.7163" y1="141.2817" y2="142.1306"/>
673 <line fill="none" id="t3 p225" stroke="#1CCC00" stroke-width="1" x1="195.7163" x2="192.6137" y1="142.1306" y2="147.2244"/>
674 <line fill="none" id="t3 p226" stroke="#00CC0C" stroke-width="1" x1="192.6137" x2="191.1502" y1="147.2244" y2="152.7003"/>
675 <line fill="none" id="t3 p227" stroke="#00CC04" stroke-width="1" x1="191.1502" x2="190.0379" y1="152.7003" y2="158.5157"/>
676 <line fill="none" id="t3 p228" stroke="#00CC18" stroke-width="1" x1="190.0379" x2="185.8815" y1="158.5157" y2="160.2136"/>
677 <line fill="none" id="t3 p229" stroke="#10CC00" stroke-width="1" x1="185.8815" x2="180.7299" y1="160.2136" y2="161.1475"/>
678 <line fill="none" id="t3 p230" stroke="#1CCC00" stroke-width="1" x1="180.7299" x2="172.7684" y1="161.1475" y2="161.0626"/>
679 <line fill="none" id="t3 p231" stroke="#30CC00" stroke-width="1" x1="172.7684" x2="165.2752" y1="161.0626" y2="158.6006"/>
680 <line fill="none" id="t3 p232" stroke="#38CC00" stroke-width="1" x1="165.2752" x2="158.9529" y1="158.6006" y2="154.1011"/>
681 <line fill="none" id="t3 p233" stroke="#38CC00" stroke-width="1" x1="158.9529" x2="155.0306" y1="154.1011" y2="147.6489"/>
682 <line fill="none" id="t3 p234" stroke="#38CC00" stroke-width="1" x1="155.0306" x2="154.9428" y1="147.6489" y2="144.8473"/>
683 <line fill="none" id="t3 p235" stroke="#1CCC00" stroke-width="1" x1="154.9428" x2="155.3233" y1="144.8473" y2="141.8335"/>
684 <line fill="none" id="t3 p236" stroke="#1CCC00" stroke-width="1" x1="155.3233" x2="155.9087" y1="141.8335" y2="135.0842"/>
685 <line fill="none" id="t3 p237" stroke="#30CC00" stroke-width="1" x1="155.9087" x2="156.9625" y1="135.0842" y2="121.5856"/>
686 <line fill="none" id="t3 p238" stroke="#44CC00" stroke-width="1" x1="156.9625" x2="161.0018" y1="121.5856" y2="109.8275"/>
687 <line fill="none" id="t3 p239" stroke="#80CC00" stroke-width="1" x1="161.0018" x2="167.4705" y1="109.8275" y2="102.9508"/>
688 <line fill="none" id="t3 p240" stroke="#9CCC00" stroke-width="1" x1="167.4705" x2="172.3294" y1="102.9508" y2="102.7386"/>
689 <line fill="none" id="t3 p241" stroke="#A8CC00" stroke-width="1" x1="172.3294" x2="181.9300" y1="102.7386" y2="102.6962"/>
690 <line fill="none" id="t3 p242" stroke="#C8CC00" stroke-width="1" x1="181.9300" x2="191.3258" y1="102.6962" y2="103.0782"/>
691 <line fill="none" id="t3 p243" stroke="#CCA800" stroke-width="1" x1="191.3258" x2="192.7015" y1="103.0782" y2="105.1157"/>
692 <line fill="none" id="t3 p244" stroke="#CC8C00" stroke-width="1" x1="192.7015" x2="193.8723" y1="105.1157" y2="106.7712"/>
693 <line fill="none" id="t3 p245" stroke="#CC8C00" stroke-width="1" x1="193.8723" x2="195.8919" y1="106.7712" y2="110.4217"/>
694 <line fill="none" id="t3 p246" stroke="#CCA000" stroke-width="1" x1="195.8919" x2="196.3895" y1="110.4217" y2="118.5294"/>
695 <line fill="none" id="t3 p247" stroke="#CCC800" stroke-width="1" x1="196.3895" x2="196.4774" y1="118.5294" y2="123.6232"/>
696 <line fill="none" id="t3 p248" stroke="#80CC00" stroke-width="1" x1="196.4774" x2="197.6189" y1="123.6232" y2="128.1651"/>
697 <line fill="none" id="t3 p249" stroke="#60CC00" stroke-width="1" x1="197.6189" x2="197.9116" y1="128.1651" y2="130.0753"/>
698 <line fill="none" id="t3 p250" stroke="#44CC00" stroke-width="1" x1="197.9116" x2="197.9701" y1="130.0753" y2="133.3863"/>
699 <line fill="none" id="t3 p251" stroke="#38CC00" stroke-width="1" x1="197.9701" x2="197.9994" y1="133.3863" y2="135.8907"/>
700 <line fill="none" id="t3 p252" stroke="#28CC00" stroke-width="1" x1="197.9994" x2="197.8531" y1="135.8907" y2="137.0368"/>
701 <line fill="none" id="t3 p253" stroke="#28CC00" stroke-width="1" x1="197.8531" x2="197.7067" y1="137.0368" y2="138.3952"/>
702 <line fill="none" id="t3 p254" stroke="#10CC00" stroke-width="1" x1="197.7067" x2="197.1506" y1="138.3952" y2="139.7111"/>
703 <line fill="none" id="t3 p255" stroke="#10CC00" stroke-width="1" x1="197.1506" x2="196.3895" y1="139.7111" y2="140.7723"/>
704 <line fill="none" id="t3 p256" stroke="#10CC00" stroke-width="1" x1="196.3895" x2="195.6285" y1="140.7723" y2="142.3004"/>
705 <line fill="none" id="t3 p257" stroke="#08CC00" stroke-width="1" x1="195.6285" x2="192.7308" y1="142.3004" y2="146.8424"/>
706 <line fill="none" id="t3 p258" stroke="#08CC00" stroke-width="1" x1="192.7308" x2="190.9160" y1="146.8424" y2="153.6341"/>
707 <line fill="none" id="t3 p259" stroke="#00CC0C" stroke-width="1" x1="190.9160" x2="189.8915" y1="153.6341" y2="158.8977"/>
708 <line fill="none" id="t3 p260" stroke="#00CC28" stroke-width="1" x1="189.8915" x2="190.6818" y1="158.8977" y2="164.2886"/>
709 <line fill="none" id="t3 p261" stroke="#00CC34" stroke-width="1" x1="190.6818" x2="190.7989" y1="164.2886" y2="169.5947"/>
710 <line fill="none" id="t3 p262" stroke="#00CC28" stroke-width="1" x1="190.7989" x2="190.4477" y1="169.5947" y2="178.5088"/>
711 <line fill="none" id="t3 p263" stroke="#00CC18" stroke-width="1" x1="190.4477" x2="190.1842" y1="178.5088" y2="185.1732"/>
712 <line fill="none" id="t3 p264" stroke="#00CC04" stroke-width="1" x1="190.1842" x2="193.0235" y1="185.1732" y2="189.1634"/>
713 <line fill="none" id="t3 p265" stroke="#10CC00" stroke-width="1" x1="193.0235" x2="199.6971" y1="189.1634" y2="191.5829"/>
714 <line fill="none" id="t3 p266" stroke="#38CC00" stroke-width="1" x1="199.6971" x2="202.5363" y1="191.5829" y2="192.6017"/>
715 <line fill="none" id="t3 p267" stroke="#58CC00" stroke-width="1" x1="202.5363" x2="204.0291" y1="192.6017" y2="194.1723"/>
716 <line fill="none" id="t3 p268" stroke="#50CC00" stroke-width="1" x1="204.0291" x2="207.3952" y1="194.1723" y2="204.8268"/>
717 <line fill="none" id="t3 p269" stroke="#58CC00" stroke-width="1" x1="207.3952" x2="210.2929" y1="204.8268" y2="214.3352"/>
718 <line fill="none" id="t3 p270" stroke="#B0CC00" stroke-width="1" x1="210.2929" x2="218.9277" y1="214.3352" y2="230.8900"/>
719 <line fill="none" id="t3 p271" stroke="#CCB400" stroke-width="1" x1="218.9277" x2="221.2107" y1="230.8900" y2="235.1349"/>
720 <line fill="none" id="t3 p272" stroke="#CCC000" stroke-width="1" x1="221.2107" x2="220.2741" y1="235.1349" y2="233.5218"/>
721 <line fill="none" id="t3 p273" stroke="#CCA000" stroke-width="1" x1="220.2741" x2="219.5423" y1="233.5218" y2="232.1210"/>
722 <line fill="none" id="t3 p274" stroke="#CC8C00" stroke-width="1" x1="219.5423" x2="220.4497" y1="232.1210" y2="229.8288"/>
723 <line fill="none" id="t3 p275" stroke="#CC9800" stroke-width="1" x1="220.4497" x2="221.6498" y1="229.8288" y2="227.4093"/>
724 <line fill="none" id="t3 p276" stroke="#CCA000" stroke-width="1" x1="221.6498" x2="223.1719" y1="227.4093" y2="223.8861"/>
725 <line fill="none" id="t3 p277" stroke="#CCA800" stroke-width="1" x1="223.1719" x2="225.2500" y1="223.8861" y2="218.1980"/>
726 <line fill="none" id="t3 p278" stroke="#CCA000" stroke-width="1" x1="225.2500" x2="229.2893" y1="218.1980" y2="212.9769"/>
727 <line fill="none" id="t3 p279" stroke="#CCB400" stroke-width="1" x1="229.2893" x2="232.7432" y1="212.9769" y2="209.6234"/>
728 <line fill="none" id="t3 p280" stroke="#CCA800" stroke-width="1" x1="232.7432" x2="234.3238" y1="209.6234" y2="207.6708"/>
729 <line fill="none" id="t3 p281" stroke="#CC8C00" stroke-width="1" x1="234.3238" x2="234.4702" y1="207.6708" y2="207.3312"/>
730 <line fill="none" id="t3 p282" stroke="#CC8000" stroke-width="1" x1="234.4702" x2="236.1679" y1="207.3312" y2="205.6333"/>
731 <line fill="none" id="t3 p283" stroke="#CC7800" stroke-width="1" x1="236.1679" x2="233.8262" y1="205.6333" y2="208.3500"/>
732 <line fill="none" id="t3 p284" stroke="#CC7000" stroke-width="1" x1="233.8262" x2="231.1334" y1="208.3500" y2="211.0667"/>
733 <line fill="none" id="t3 p285" stroke="#CC8000" stroke-width="1" x1="231.1334" x2="227.0063" y1="211.0667" y2="215.5238"/>
734 <line fill="none" id="t3 p286" stroke="#CC8C00" stroke-width="1" x1="227.0063" x2="224.2841" y1="215.5238" y2="220.7025"/>
735 <line fill="none" id="t3 p287" stroke="#CCA000" stroke-width="1" x1="224.2841" x2="222.3230" y1="220.7025" y2="225.9236"/>
736 <line fill="none" id="t3 p288" stroke="#CCB400" stroke-width="1" x1="222.3230" x2="220.7424" y1="225.9236" y2="229.0648"/>
737 <line fill="none" id="t3 p289" stroke="#CCB400" stroke-width="1" x1="220.7424" x2="219.6009" y1="229.0648" y2="231.8664"/>
738 <line fill="none" id="t3 p290" stroke="#CCC000" stroke-width="1" x1="219.6009" x2="223.1426" y1="231.8664" y2="238.9552"/>
739 <line fill="none" id="t3 p291" stroke="#CC9800" stroke-width="1" x1="223.1426" x2="227.2404" y1="238.9552" y2="247.1902"/>
740 <line fill="none" id="t3 p292" stroke="#CC7800" stroke-width="1" x1="227.2404" x2="231.5139" y1="247.1902" y2="255.1705"/>
741 <line fill="none" id="t3 p293" stroke="#CC7000" stroke-width="1" x1="231.5139" x2="232.5676" y1="255.1705" y2="264.5940"/>
742 <line fill="none" id="t3 p294" stroke="#CC7800" stroke-width="1" x1="232.5676" x2="232.5091" y1="264.5940" y2="265.3156"/>
743 <line fill="none" id="t3 p295" stroke="#CC8000" stroke-width="1" x1="232.5091" x2="232.4798" y1="265.3156" y2="265.3156"/>
744 <line fill="none" id="t3 p296" stroke="#CC6400" stroke-width="1" x1="232.4798" x2="231.8944" y1="265.3156" y2="266.9287"/>
745 <line fill="none" id="t3 p297" stroke="#CC9800" stroke-width="1" x1="231.8944" x2="231.6017" y1="266.9287" y2="269.5180"/>
746 <line fill="none" id="t3 p298" stroke="#CC9800" stroke-width="1" x1="231.6017" x2="231.8944" y1="269.5180" y2="276.8191"/>
747 <line fill="none" id="t3 p299" stroke="#CCA000" stroke-width="1" x1="231.8944" x2="232.0993" y1="276.8191" y2="285.3937"/>
748 <line fill="none" id="t3 p300" stroke="#CCA000" stroke-width="1" x1="232.0993" x2="232.3042" y1="285.3937" y2="292.1430"/>
749 <line fill="none" id="t3 p301" stroke="#CCB400" stroke-width="1" x1="232.3042" x2="231.7188" y1="292.1430" y2="299.4441"/>
750 <line fill="none" id="t3 p302" stroke="#C8CC00" stroke-width="1" x1="231.7188" x2="231.9822" y1="299.4441" y2="303.7313"/>
751 <line fill="none" id="t3 p303" stroke="#B0CC00" stroke-width="1" x1="231.9822" x2="234.7043" y1="303.7313" y2="308.7827"/>
752 <line fill="none" id="t3 p304" stroke="#B0CC00" stroke-width="1" x1="234.7043" x2="240.0608" y1="308.7827" y2="312.9851"/>
753 <line fill="none" id="t3 p305" stroke="#C8CC00" stroke-width="1" x1="240.0608" x2="248.1979" y1="312.9851" y2="314.8104"/>
754 <line fill="none" id="t3 p306" stroke="#CCA800" stroke-width="1" x1="248.1979" x2="256.0717" y1="314.8104" y2="317.8242"/>
755 <line fill="none" id="t3 p307" stroke="#CCA000" stroke-width="1" x1="256.0717" x2="261.6330" y1="317.8242" y2="322.2388"/>
756 <line fill="none" id="t3 p308" stroke="#CCA000" stroke-width="1" x1="261.6330" x2="268.6871" y1="322.2388" y2="327.0355"/>
757 <line fill="none" id="t3 p309" stroke="#CCA000" stroke-width="1" x1="268.6871" x2="270.9410" y1="327.0355" y2="329.2003"/>
758 <line fill="none" id="t3 p310" stroke="#CCA800" stroke-width="1" x1="270.9410" x2="272.1703" y1="329.2003" y2="330.1766"/>
759 <line fill="none" id="t3 p311" stroke="#CCC000" stroke-width="1" x1="272.1703" x2="273.0484" y1="330.1766" y2="331.1530"/>
760 <line fill="none" id="t3 p312" stroke="#C8CC00" stroke-width="1" x1="273.0484" x2="273.7216" y1="331.1530" y2="332.2991"/>
761 <line fill="none" id="t3 p313" stroke="#B0CC00" stroke-width="1" x1="273.7216" x2="274.4241" y1="332.2991" y2="333.6150"/>
762 <line fill="none" id="t3 p314" stroke="#A8CC00" stroke-width="1" x1="274.4241" x2="275.0681" y1="333.6150" y2="334.8460"/>
763 <line fill="none" id="t3 p315" stroke="#9CCC00" stroke-width="1" x1="275.0681" x2="275.5657" y1="334.8460" y2="335.6525"/>
764 <line fill="none" id="t3 p316" stroke="#94CC00" stroke-width="1" x1="275.5657" x2="277.2048" y1="335.6525" y2="338.3267"/>
765 <line fill="none" id="t3 p317" stroke="#88CC00" stroke-width="1" x1="277.2048" x2="278.6390" y1="338.3267" y2="340.8736"/>
766 <line fill="none" id="t3 p318" stroke="#78CC00" stroke-width="1" x1="278.6390" x2="279.6342" y1="340.8736" y2="343.8450"/>
767 <line fill="none" id="t3 p319" stroke="#60CC00" stroke-width="1" x1="279.6342" x2="280.5416" y1="343.8450" y2="347.8351"/>
768 <line fill="none" id="t3 p320" stroke="#50CC00" stroke-width="1" x1="280.5416" x2="281.2734" y1="347.8351" y2="352.6318"/>
769 <line fill="none" id="t3 p321" stroke="#38CC00" stroke-width="1" x1="281.2734" x2="282.2100" y1="352.6318" y2="361.0366"/>
770 <line fill="none" id="t3 p322" stroke="#30CC00" stroke-width="1" x1="282.2100" x2="283.3516" y1="361.0366" y2="368.2528"/>
771 <line fill="none" id="t3 p323" stroke="#1CCC00" stroke-width="1" x1="283.3516" x2="287.0982" y1="368.2528" y2="373.0070"/>
772 <line fill="none" id="t3 p324" stroke="#28CC00" stroke-width="1" x1="287.0982" x2="295.9085" y1="373.0070" y2="376.5726"/>
773 <line fill="none" id="t3 p325" stroke="#38CC00" stroke-width="1" x1="295.9085" x2="308.0557" y1="376.5726" y2="380.7750"/>
774 <line fill="none" id="t3 p326" stroke="#58CC00" stroke-width="1" x1="308.0557" x2="317.0417" y1="380.7750" y2="383.8738"/>
775 <line fill="none" id="t3 p327" stroke="#6CCC00" stroke-width="1" x1="317.0417" x2="328.3107" y1="383.8738" y2="387.0149"/>
776 <line fill="none" id="t3 p328" stroke="#78CC00" stroke-width="1" x1="328.3107" x2="341.9214" y1="387.0149" y2="389.4345"/>
777 <line fill="none" id="t3 p329" stroke="#9CCC00" stroke-width="1" x1="341.9214" x2="354.5369" y1="389.4345" y2="392.2785"/>
778 <line fill="none" id="t3 p330" stroke="#A8CC00" stroke-width="1" x1="354.5369" x2="364.1083" y1="392.2785" y2="393.6369"/>
779 <line fill="none" id="t3 p331" stroke="#9CCC00" stroke-width="1" x1="364.1083" x2="375.5822" y1="393.6369" y2="393.9764"/>
780 <line fill="none" id="t3 p332" stroke="#BCCC00" stroke-width="1" x1="375.5822" x2="386.4122" y1="393.9764" y2="391.0051"/>
781 <line fill="none" id="t3 p333" stroke="#CCC800" stroke-width="1" x1="386.4122" x2="397.5349" y1="391.0051" y2="388.2459"/>
782 <line fill="none" id="t3 p334" stroke="#CCA800" stroke-width="1" x1="397.5349" x2="404.6476" y1="388.2459" y2="388.2884"/>
783 <line fill="none" id="t3 p335" stroke="#CCA000" stroke-width="1" x1="404.6476" x2="409.4187" y1="388.2884" y2="389.3920"/>
784 <line fill="none" id="t3 p336" stroke="#CCB400" stroke-width="1" x1="409.4187" x2="409.5065" y1="389.3920" y2="384.2133"/>
785 <line fill="none" id="t3 p337" stroke="#CCB400" stroke-width="1" x1="409.5065" x2="408.8625" y1="384.2133" y2="375.9784"/>
786 <line fill="none" id="t3 p338" stroke="#CCC000" stroke-width="1" x1="408.8625" x2="410.7066" y1="375.9784" y2="366.0879"/>
787 <line fill="none" id="t3 p339" stroke="#CC8C00" stroke-width="1" x1="410.7066" x2="411.9945" y1="366.0879" y2="362.6496"/>
788 <line fill="none" id="t3 p340" stroke="#CC8C00" stroke-width="1" x1="411.9945" x2="412.7848" y1="362.6496" y2="359.8480"/>
789 <line fill="none" id="t3 p341" stroke="#CC8C00" stroke-width="1" x1="412.7848" x2="411.2334" y1="359.8480" y2="358.7868"/>
790 <line fill="none" id="t3 p342" stroke="#CC6400" stroke-width="1" x1="411.2334" x2="407.3405" y1="358.7868" y2="356.0277"/>
791 <line fill="none" id="t3 p343" stroke="#CC6400" stroke-width="1" x1="407.3405" x2="399.8766" y1="356.0277" y2="354.2448"/>
792 <line fill="none" id="t3 p344" stroke="#CC7000" stroke-width="1" x1="399.8766" x2="390.8028" y1="354.2448" y2="353.0987"/>
793 <line fill="none" id="t3 p345" stroke="#CC8000" stroke-width="1" x1="390.8028" x2="383.3389" y1="353.0987" y2="354.2448"/>
794 <line fill="none" id="t3 p346" stroke="#CCA000" stroke-width="1" x1="383.3389" x2="376.5481" y1="354.2448" y2="352.3347"/>
795 <line fill="none" id="t3 p347" stroke="#CCA000" stroke-width="1" x1="376.5481" x2="370.2550" y1="352.3347" y2="353.8628"/>
796 <line fill="none" id="t3 p348" stroke="#CCA000" stroke-width="1" x1="370.2550" x2="363.6107" y1="353.8628" y2="357.0889"/>
797 <line fill="none" id="t3 p349" stroke="#CC9800" stroke-width="1" x1="363.6107" x2="360.5373" y1="357.0889" y2="361.3761"/>
798 <line fill="none" id="t3 p350" stroke="#CCA800" stroke-width="1" x1="360.5373" x2="356.5858" y1="361.3761" y2="364.5598"/>
799 <line fill="none" id="t3 p351" stroke="#CCB400" stroke-width="1" x1="356.5858" x2="354.3027" y1="364.5598" y2="365.8332"/>
800 <line fill="none" id="t3 p352" stroke="#C8CC00" stroke-width="1" x1="354.3027" x2="353.5417" y1="365.8332" y2="366.2153"/>
801 <line fill="none" id="t3 p353" stroke="#BCCC00" stroke-width="1" x1="353.5417" x2="352.8392" y1="366.2153" y2="366.4275"/>
802 <line fill="none" id="t3 p354" stroke="#B0CC00" stroke-width="1" x1="352.8392" x2="352.1367" y1="366.4275" y2="367.0218"/>
803 <line fill="none" id="t3 p355" stroke="#94CC00" stroke-width="1" x1="352.1367" x2="351.4928" y1="367.0218" y2="367.2340"/>
804 <line fill="none" id="t3 p356" stroke="#88CC00" stroke-width="1" x1="351.4928" x2="350.9659" y1="367.2340" y2="367.7434"/>
805 <line fill="none" id="t3 p357" stroke="#88CC00" stroke-width="1" x1="350.9659" x2="350.0293" y1="367.7434" y2="368.3801"/>
806 <line fill="none" id="t3 p358" stroke="#6CCC00" stroke-width="1" x1="350.0293" x2="349.1219" y1="368.3801" y2="369.1442"/>
807 <line fill="none" id="t3 p359" stroke="#58CC00" stroke-width="1" x1="349.1219" x2="346.5754" y1="369.1442" y2="371.0968"/>
808 <line fill="none" id="t3 p360" stroke="#44CC00" stroke-width="1" x1="346.5754" x2="343.2386" y1="371.0968" y2="373.0070"/>
809 <line fill="none" id="t3 p361" stroke="#28CC00" stroke-width="1" x1="343.2386" x2="341.7165" y1="373.0070" y2="373.9408"/>
810 <line fill="none" id="t3 p362" stroke="#1CCC00" stroke-width="1" x1="341.7165" x2="339.7554" y1="373.9408" y2="374.7898"/>
811 <line fill="none" id="t3 p363" stroke="#1CCC00" stroke-width="1" x1="339.7554" x2="337.1796" y1="374.7898" y2="374.8323"/>
812 <line fill="none" id="t3 p364" stroke="#10CC00" stroke-width="1" x1="337.1796" x2="334.7795" y1="374.8323" y2="375.0870"/>
813 <line fill="none" id="t3 p365" stroke="#1CCC00" stroke-width="1" x1="334.7795" x2="332.1159" y1="375.0870" y2="374.8323"/>
814 <line fill="none" id="t3 p366" stroke="#10CC00" stroke-width="1" x1="332.1159" x2="329.9499" y1="374.8323" y2="374.4927"/>
815 </g>
816 <g id="21-Feb-CU-20-Feb 2 (t4) track" opacity="0.9">
817 <line fill="none" id="t4 p1" stroke="#00CC40" stroke-width="1" x1="494.0976" x2="495.5611" y1="532.6975" y2="517.2888"/>
818 <line fill="none" id="t4 p2" stroke="#00CC48" stroke-width="1" x1="495.5611" x2="491.0828" y1="517.2888" y2="506.6343"/>
819 <line fill="none" id="t4 p3" stroke="#00CC34" stroke-width="1" x1="491.0828" x2="489.9705" y1="506.6343" y2="497.8050"/>
820 <line fill="none" id="t4 p4" stroke="#00CC18" stroke-width="1" x1="489.9705" x2="496.7027" y1="497.8050" y2="486.6836"/>
821 <line fill="none" id="t4 p5" stroke="#00CC20" stroke-width="1" x1="496.7027" x2="500.9761" y1="486.6836" y2="481.8869"/>
822 <line fill="none" id="t4 p6" stroke="#00CC04" stroke-width="1" x1="500.9761" x2="505.7179" y1="481.8869" y2="478.4910"/>
823 <line fill="none" id="t4 p7" stroke="#10CC00" stroke-width="1" x1="505.7179" x2="511.3671" y1="478.4910" y2="473.3123"/>
824 <line fill="none" id="t4 p8" stroke="#44CC00" stroke-width="1" x1="511.3671" x2="517.2504" y1="473.3123" y2="465.9688"/>
825 <line fill="none" id="t4 p9" stroke="#10CC00" stroke-width="1" x1="517.2504" x2="522.1093" y1="465.9688" y2="459.9411"/>
826 </g>
827 <g id="21-Feb-CU-20-Feb 3 (t5) track" opacity="0.9">
828 <line fill="none" id="t5 p1" stroke="#08CC00" stroke-width="1" x1="309.7534" x2="307.9971" y1="381.5391" y2="381.5391"/>
829 <line fill="none" id="t5 p2" stroke="#08CC00" stroke-width="1" x1="307.9971" x2="305.7433" y1="381.5391" y2="382.5579"/>
830 <line fill="none" id="t5 p3" stroke="#08CC00" stroke-width="1" x1="305.7433" x2="304.1920" y1="382.5579" y2="383.7464"/>
831 <line fill="none" id="t5 p4" stroke="#1CCC00" stroke-width="1" x1="304.1920" x2="302.7285" y1="383.7464" y2="385.5717"/>
832 <line fill="none" id="t5 p5" stroke="#1CCC00" stroke-width="1" x1="302.7285" x2="302.0553" y1="385.5717" y2="388.4582"/>
833 <line fill="none" id="t5 p6" stroke="#1CCC00" stroke-width="1" x1="302.0553" x2="302.5529" y1="388.4582" y2="391.0051"/>
834 <line fill="none" id="t5 p7" stroke="#1CCC00" stroke-width="1" x1="302.5529" x2="304.7481" y1="391.0051" y2="398.3911"/>
835 <line fill="none" id="t5 p8" stroke="#28CC00" stroke-width="1" x1="304.7481" x2="313.9390" y1="398.3911" y2="413.5876"/>
836 <line fill="none" id="t5 p9" stroke="#38CC00" stroke-width="1" x1="313.9390" x2="319.3833" y1="413.5876" y2="424.8788"/>
837 <line fill="none" id="t5 p10" stroke="#44CC00" stroke-width="1" x1="319.3833" x2="324.6227" y1="424.8788" y2="434.8117"/>
838 <line fill="none" id="t5 p11" stroke="#60CC00" stroke-width="1" x1="324.6227" x2="329.2474" y1="434.8117" y2="444.0655"/>
839 <line fill="none" id="t5 p12" stroke="#60CC00" stroke-width="1" x1="329.2474" x2="331.4719" y1="444.0655" y2="449.8809"/>
840 <line fill="none" id="t5 p13" stroke="#60CC00" stroke-width="1" x1="331.4719" x2="335.6576" y1="449.8809" y2="460.3232"/>
841 <line fill="none" id="t5 p14" stroke="#58CC00" stroke-width="1" x1="335.6576" x2="339.5798" y1="460.3232" y2="455.4840"/>
842 <line fill="none" id="t5 p15" stroke="#60CC00" stroke-width="1" x1="339.5798" x2="341.3360" y1="455.4840" y2="451.2392"/>
843 <line fill="none" id="t5 p16" stroke="#6CCC00" stroke-width="1" x1="341.3360" x2="343.4435" y1="451.2392" y2="445.4238"/>
844 <line fill="none" id="t5 p17" stroke="#80CC00" stroke-width="1" x1="343.4435" x2="347.9804" y1="445.4238" y2="437.9104"/>
845 <line fill="none" id="t5 p18" stroke="#88CC00" stroke-width="1" x1="347.9804" x2="351.6977" y1="437.9104" y2="430.0575"/>
846 <line fill="none" id="t5 p19" stroke="#9CCC00" stroke-width="1" x1="351.6977" x2="353.6295" y1="430.0575" y2="424.5817"/>
847 <line fill="none" id="t5 p20" stroke="#78CC00" stroke-width="1" x1="353.6295" x2="355.5614" y1="424.5817" y2="417.3655"/>
848 <line fill="none" id="t5 p21" stroke="#60CC00" stroke-width="1" x1="355.5614" x2="357.6103" y1="417.3655" y2="410.8284"/>
849 <line fill="none" id="t5 p22" stroke="#44CC00" stroke-width="1" x1="357.6103" x2="360.0690" y1="410.8284" y2="404.9706"/>
850 <line fill="none" id="t5 p23" stroke="#38CC00" stroke-width="1" x1="360.0690" x2="361.7959" y1="404.9706" y2="397.4997"/>
851 <line fill="none" id="t5 p24" stroke="#38CC00" stroke-width="1" x1="361.7959" x2="362.1764" y1="397.4997" y2="395.2499"/>
852 <line fill="none" id="t5 p25" stroke="#38CC00" stroke-width="1" x1="362.1764" x2="362.8204" y1="395.2499" y2="393.5944"/>
853 <line fill="none" id="t5 p26" stroke="#38CC00" stroke-width="1" x1="362.8204" x2="372.8308" y1="393.5944" y2="394.1038"/>
854 <line fill="none" id="t5 p27" stroke="#60CC00" stroke-width="1" x1="372.8308" x2="381.8168" y1="394.1038" y2="392.1512"/>
855 <line fill="none" id="t5 p28" stroke="#88CC00" stroke-width="1" x1="381.8168" x2="392.5590" y1="392.1512" y2="389.0100"/>
856 <line fill="none" id="t5 p29" stroke="#B0CC00" stroke-width="1" x1="392.5590" x2="404.6476" y1="389.0100" y2="388.6280"/>
857 <line fill="none" id="t5 p30" stroke="#CCB400" stroke-width="1" x1="404.6476" x2="409.5650" y1="388.6280" y2="389.4345"/>
858 <line fill="none" id="t5 p31" stroke="#CCC000" stroke-width="1" x1="409.5650" x2="414.6581" y1="389.4345" y2="396.8205"/>
859 <line fill="none" id="t5 p32" stroke="#BCCC00" stroke-width="1" x1="414.6581" x2="420.6877" y1="396.8205" y2="405.8620"/>
860 <line fill="none" id="t5 p33" stroke="#CCC000" stroke-width="1" x1="420.6877" x2="424.1709" y1="405.8620" y2="411.9745"/>
861 <line fill="none" id="t5 p34" stroke="#CCC000" stroke-width="1" x1="424.1709" x2="426.7467" y1="411.9745" y2="421.1434"/>
862 <line fill="none" id="t5 p35" stroke="#CCC000" stroke-width="1" x1="426.7467" x2="424.8734" y1="421.1434" y2="430.4395"/>
863 <line fill="none" id="t5 p36" stroke="#C8CC00" stroke-width="1" x1="424.8734" x2="423.1172" y1="430.4395" y2="436.2125"/>
864 <line fill="none" id="t5 p37" stroke="#C8CC00" stroke-width="1" x1="423.1172" x2="420.6292" y1="436.2125" y2="443.3438"/>
865 <line fill="none" id="t5 p38" stroke="#B0CC00" stroke-width="1" x1="420.6292" x2="417.9071" y1="443.3438" y2="451.4939"/>
866 <line fill="none" id="t5 p39" stroke="#9CCC00" stroke-width="1" x1="417.9071" x2="416.9997" y1="451.4939" y2="454.9322"/>
867 <line fill="none" id="t5 p40" stroke="#9CCC00" stroke-width="1" x1="416.9997" x2="414.2190" y1="454.9322" y2="454.7200"/>
868 <line fill="none" id="t5 p41" stroke="#9CCC00" stroke-width="1" x1="414.2190" x2="409.5650" y1="454.7200" y2="454.5502"/>
869 <line fill="none" id="t5 p42" stroke="#A8CC00" stroke-width="1" x1="409.5650" x2="402.8036" y1="454.5502" y2="454.2530"/>
870 <line fill="none" id="t5 p43" stroke="#94CC00" stroke-width="1" x1="402.8036" x2="395.0470" y1="454.2530" y2="455.2718"/>
871 <line fill="none" id="t5 p44" stroke="#78CC00" stroke-width="1" x1="395.0470" x2="389.5442" y1="455.2718" y2="455.9085"/>
872 <line fill="none" id="t5 p45" stroke="#50CC00" stroke-width="1" x1="389.5442" x2="386.4122" y1="455.9085" y2="457.9885"/>
873 <line fill="none" id="t5 p46" stroke="#38CC00" stroke-width="1" x1="386.4122" x2="386.5586" y1="457.9885" y2="464.9076"/>
874 <line fill="none" id="t5 p47" stroke="#28CC00" stroke-width="1" x1="386.5586" x2="387.2903" y1="464.9076" y2="473.6944"/>
875 <line fill="none" id="t5 p48" stroke="#1CCC00" stroke-width="1" x1="387.2903" x2="393.3786" y1="473.6944" y2="479.2975"/>
876 <line fill="none" id="t5 p49" stroke="#38CC00" stroke-width="1" x1="393.3786" x2="396.8617" y1="479.2975" y2="485.2828"/>
877 <line fill="none" id="t5 p50" stroke="#58CC00" stroke-width="1" x1="396.8617" x2="395.6909" y1="485.2828" y2="489.2305"/>
878 <line fill="none" id="t5 p51" stroke="#58CC00" stroke-width="1" x1="395.6909" x2="391.6516" y1="489.2305" y2="489.9945"/>
879 <line fill="none" id="t5 p52" stroke="#30CC00" stroke-width="1" x1="391.6516" x2="386.8806" y1="489.9945" y2="488.4239"/>
880 <line fill="none" id="t5 p53" stroke="#10CC00" stroke-width="1" x1="386.8806" x2="380.6167" y1="488.4239" y2="485.7921"/>
881 <line fill="none" id="t5 p54" stroke="#00CC18" stroke-width="1" x1="380.6167" x2="374.9676" y1="485.7921" y2="485.5375"/>
882 <line fill="none" id="t5 p55" stroke="#00CC18" stroke-width="1" x1="374.9676" x2="366.0987" y1="485.5375" y2="484.6885"/>
883 <line fill="none" id="t5 p56" stroke="#08CC00" stroke-width="1" x1="366.0987" x2="360.8007" y1="484.6885" y2="486.6836"/>
884 <line fill="none" id="t5 p57" stroke="#28CC00" stroke-width="1" x1="360.8007" x2="356.7907" y1="486.6836" y2="489.4427"/>
885 <line fill="none" id="t5 p58" stroke="#1CCC00" stroke-width="1" x1="356.7907" x2="352.7807" y1="489.4427" y2="493.0508"/>
886 <line fill="none" id="t5 p59" stroke="#08CC00" stroke-width="1" x1="352.7807" x2="350.1171" y1="493.0508" y2="496.0646"/>
887 <line fill="none" id="t5 p60" stroke="#28CC00" stroke-width="1" x1="350.1171" x2="351.2294" y1="496.0646" y2="506.6343"/>
888 <line fill="none" id="t5 p61" stroke="#10CC00" stroke-width="1" x1="351.2294" x2="349.1512" y1="506.6343" y2="513.4684"/>
889 <line fill="none" id="t5 p62" stroke="#28CC00" stroke-width="1" x1="349.1512" x2="340.7213" y1="513.4684" y2="522.0430"/>
890 <line fill="none" id="t5 p63" stroke="#10CC00" stroke-width="1" x1="340.7213" x2="334.7502" y1="522.0430" y2="527.6886"/>
891 <line fill="none" id="t5 p64" stroke="#1CCC00" stroke-width="1" x1="334.7502" x2="329.5986" y1="527.6886" y2="532.8673"/>
892 <line fill="none" id="t5 p65" stroke="#30CC00" stroke-width="1" x1="329.5986" x2="322.4859" y1="532.8673" y2="537.9187"/>
893 <line fill="none" id="t5 p66" stroke="#38CC00" stroke-width="1" x1="322.4859" x2="316.3977" y1="537.9187" y2="541.5692"/>
894 <line fill="none" id="t5 p67" stroke="#10CC00" stroke-width="1" x1="316.3977" x2="308.9631" y1="541.5692" y2="547.5544"/>
895 <line fill="none" id="t5 p68" stroke="#00CC04" stroke-width="1" x1="308.9631" x2="302.6992" y1="547.5544" y2="551.3323"/>
896 <line fill="none" id="t5 p69" stroke="#1CCC00" stroke-width="1" x1="302.6992" x2="300.8845" y1="551.3323" y2="556.0016"/>
897 <line fill="none" id="t5 p70" stroke="#1CCC00" stroke-width="1" x1="300.8845" x2="301.7040" y1="556.0016" y2="562.8358"/>
898 <line fill="none" id="t5 p71" stroke="#10CC00" stroke-width="1" x1="301.7040" x2="304.7189" y1="562.8358" y2="569.8822"/>
899 <line fill="none" id="t5 p72" stroke="#1CCC00" stroke-width="1" x1="304.7189" x2="307.5581" y1="569.8822" y2="574.1271"/>
900 <line fill="none" id="t5 p73" stroke="#10CC00" stroke-width="1" x1="307.5581" x2="309.9290" y1="574.1271" y2="581.8527"/>
901 <line fill="none" id="t5 p74" stroke="#10CC00" stroke-width="1" x1="309.9290" x2="313.2658" y1="581.8527" y2="590.7244"/>
902 <line fill="none" id="t5 p75" stroke="#10CC00" stroke-width="1" x1="313.2658" x2="318.1247" y1="590.7244" y2="604.0531"/>
903 <line fill="none" id="t5 p76" stroke="#10CC00" stroke-width="1" x1="318.1247" x2="317.4807" y1="604.0531" y2="609.1894"/>
904 <line fill="none" id="t5 p77" stroke="#1CCC00" stroke-width="1" x1="317.4807" x2="310.8656" y1="609.1894" y2="616.6178"/>
905 <line fill="none" id="t5 p78" stroke="#28CC00" stroke-width="1" x1="310.8656" x2="304.3676" y1="616.6178" y2="624.5557"/>
906 <line fill="none" id="t5 p79" stroke="#30CC00" stroke-width="1" x1="304.3676" x2="301.9382" y1="624.5557" y2="630.8805"/>
907 <line fill="none" id="t5 p80" stroke="#30CC00" stroke-width="1" x1="301.9382" x2="302.8748" y1="630.8805" y2="636.4412"/>
908 <line fill="none" id="t5 p81" stroke="#28CC00" stroke-width="1" x1="302.8748" x2="306.9727" y1="636.4412" y2="641.3227"/>
909 <line fill="none" id="t5 p82" stroke="#28CC00" stroke-width="1" x1="306.9727" x2="314.9342" y1="641.3227" y2="646.5014"/>
910 <line fill="none" id="t5 p83" stroke="#38CC00" stroke-width="1" x1="314.9342" x2="320.9931" y1="646.5014" y2="648.1994"/>
911 <line fill="none" id="t5 p84" stroke="#44CC00" stroke-width="1" x1="320.9931" x2="329.2474" y1="648.1994" y2="644.3790"/>
912 <line fill="none" id="t5 p85" stroke="#50CC00" stroke-width="1" x1="329.2474" x2="338.6431" y1="644.3790" y2="637.8420"/>
913 <line fill="none" id="t5 p86" stroke="#38CC00" stroke-width="1" x1="338.6431" x2="345.2289" y1="637.8420" y2="635.6771"/>
914 <line fill="none" id="t5 p87" stroke="#1CCC00" stroke-width="1" x1="345.2289" x2="351.2294" y1="635.6771" y2="636.4836"/>
915 <line fill="none" id="t5 p88" stroke="#08CC00" stroke-width="1" x1="351.2294" x2="359.6007" y1="636.4836" y2="641.1105"/>
916 <line fill="none" id="t5 p89" stroke="#10CC00" stroke-width="1" x1="359.6007" x2="365.7474" y1="641.1105" y2="644.6337"/>
917 <line fill="none" id="t5 p90" stroke="#10CC00" stroke-width="1" x1="365.7474" x2="372.1576" y1="644.6337" y2="647.3929"/>
918 <line fill="none" id="t5 p91" stroke="#1CCC00" stroke-width="1" x1="372.1576" x2="380.0899" y1="647.3929" y2="646.2043"/>
919 <line fill="none" id="t5 p92" stroke="#28CC00" stroke-width="1" x1="380.0899" x2="389.2515" y1="646.2043" y2="646.2467"/>
920 <line fill="none" id="t5 p93" stroke="#28CC00" stroke-width="1" x1="389.2515" x2="397.1544" y1="646.2467" y2="647.6900"/>
921 <line fill="none" id="t5 p94" stroke="#1CCC00" stroke-width="1" x1="397.1544" x2="404.1208" y1="647.6900" y2="648.3692"/>
922 <line fill="none" id="t5 p95" stroke="#1CCC00" stroke-width="1" x1="404.1208" x2="412.4335" y1="648.3692" y2="642.8509"/>
923 <line fill="none" id="t5 p96" stroke="#1CCC00" stroke-width="1" x1="412.4335" x2="422.7659" y1="642.8509" y2="637.1204"/>
924 <line fill="none" id="t5 p97" stroke="#1CCC00" stroke-width="1" x1="422.7659" x2="430.6982" y1="637.1204" y2="635.2951"/>
925 <line fill="none" id="t5 p98" stroke="#1CCC00" stroke-width="1" x1="430.6982" x2="436.5522" y1="635.2951" y2="633.3849"/>
926 <line fill="none" id="t5 p99" stroke="#28CC00" stroke-width="1" x1="436.5522" x2="445.8309" y1="633.3849" y2="632.7482"/>
927 <line fill="none" id="t5 p100" stroke="#10CC00" stroke-width="1" x1="445.8309" x2="445.7431" y1="632.7482" y2="617.9762"/>
928 <line fill="none" id="t5 p101" stroke="#00CC20" stroke-width="1" x1="445.7431" x2="441.9965" y1="617.9762" y2="605.5813"/>
929 <line fill="none" id="t5 p102" stroke="#00CC28" stroke-width="1" x1="441.9965" x2="441.0891" y1="605.5813" y2="592.1252"/>
930 <line fill="none" id="t5 p103" stroke="#00CC48" stroke-width="1" x1="441.0891" x2="441.7623" y1="592.1252" y2="582.5743"/>
931 <line fill="none" id="t5 p104" stroke="#00CC68" stroke-width="1" x1="441.7623" x2="446.9139" y1="582.5743" y2="558.5061"/>
932 <line fill="none" id="t5 p105" stroke="#00CC68" stroke-width="1" x1="446.9139" x2="447.2652" y1="558.5061" y2="551.8842"/>
933 <line fill="none" id="t5 p106" stroke="#00CC34" stroke-width="1" x1="447.2652" x2="445.6553" y1="551.8842" y2="545.9838"/>
934 </g>
935
936 <g id="21-Feb-CU-21-Feb 2 (t7) track" opacity="0.9">
937 <line fill="none" id="t7 p1" stroke="#44CC00" stroke-width="1" x1="522.6654" x2="520.7628" y1="459.8138" y2="462.0635"/>
938 <line fill="none" id="t7 p2" stroke="#60CC00" stroke-width="1" x1="520.7628" x2="513.9136" y1="462.0635" y2="470.6381"/>
939 <line fill="none" id="t7 p3" stroke="#78CC00" stroke-width="1" x1="513.9136" x2="508.4108" y1="470.6381" y2="477.0053"/>
940 <line fill="none" id="t7 p4" stroke="#6CCC00" stroke-width="1" x1="508.4108" x2="501.3566" y1="477.0053" y2="481.8020"/>
941 <line fill="none" id="t7 p5" stroke="#80CC00" stroke-width="1" x1="501.3566" x2="494.7416" y1="481.8020" y2="489.6549"/>
942 <line fill="none" id="t7 p6" stroke="#80CC00" stroke-width="1" x1="494.7416" x2="489.7071" y1="489.6549" y2="498.6115"/>
943 <line fill="none" id="t7 p7" stroke="#88CC00" stroke-width="1" x1="489.7071" x2="490.2925" y1="498.6115" y2="505.4033"/>
944 <line fill="none" id="t7 p8" stroke="#88CC00" stroke-width="1" x1="490.2925" x2="491.2291" y1="505.4033" y2="507.1436"/>
945 <line fill="none" id="t7 p9" stroke="#9CCC00" stroke-width="1" x1="491.2291" x2="491.9609" y1="507.1436" y2="507.9077"/>
946 <line fill="none" id="t7 p10" stroke="#B0CC00" stroke-width="1" x1="491.9609" x2="493.6000" y1="507.9077" y2="510.6668"/>
947 <line fill="none" id="t7 p11" stroke="#C8CC00" stroke-width="1" x1="493.6000" x2="495.4148" y1="510.6668" y2="514.5296"/>
948 <line fill="none" id="t7 p12" stroke="#BCCC00" stroke-width="1" x1="495.4148" x2="494.4489" y1="514.5296" y2="520.7695"/>
949 <line fill="none" id="t7 p13" stroke="#9CCC00" stroke-width="1" x1="494.4489" x2="493.9805" y1="520.7695" y2="527.3490"/>
950 <line fill="none" id="t7 p14" stroke="#94CC00" stroke-width="1" x1="493.9805" x2="494.3318" y1="527.3490" y2="533.4616"/>
951 <line fill="none" id="t7 p15" stroke="#88CC00" stroke-width="1" x1="494.3318" x2="498.3711" y1="533.4616" y2="538.3856"/>
952 <line fill="none" id="t7 p16" stroke="#88CC00" stroke-width="1" x1="498.3711" x2="504.3129" y1="538.3856" y2="540.8476"/>
953 <line fill="none" id="t7 p17" stroke="#9CCC00" stroke-width="1" x1="504.3129" x2="510.7231" y1="540.8476" y2="543.5643"/>
954 <line fill="none" id="t7 p18" stroke="#A8CC00" stroke-width="1" x1="510.7231" x2="516.4016" y1="543.5643" y2="547.0450"/>
955 <line fill="none" id="t7 p19" stroke="#B0CC00" stroke-width="1" x1="516.4016" x2="519.7969" y1="547.0450" y2="552.6058"/>
956 <line fill="none" id="t7 p20" stroke="#BCCC00" stroke-width="1" x1="519.7969" x2="521.3775" y1="552.6058" y2="557.5298"/>
957 <line fill="none" id="t7 p21" stroke="#9CCC00" stroke-width="1" x1="521.3775" x2="522.3142" y1="557.5298" y2="564.8733"/>
958 <line fill="none" id="t7 p22" stroke="#9CCC00" stroke-width="1" x1="522.3142" x2="524.5680" y1="564.8733" y2="570.7312"/>
959 <line fill="none" id="t7 p23" stroke="#9CCC00" stroke-width="1" x1="524.5680" x2="527.6706" y1="570.7312" y2="575.0185"/>
960 <line fill="none" id="t7 p24" stroke="#9CCC00" stroke-width="1" x1="527.6706" x2="528.2560" y1="575.0185" y2="583.6355"/>
961 <line fill="none" id="t7 p25" stroke="#9CCC00" stroke-width="1" x1="528.2560" x2="528.7244" y1="583.6355" y2="591.5733"/>
962 <line fill="none" id="t7 p26" stroke="#9CCC00" stroke-width="1" x1="528.7244" x2="528.4902" y1="591.5733" y2="595.6908"/>
963 <line fill="none" id="t7 p27" stroke="#9CCC00" stroke-width="1" x1="528.4902" x2="522.5483" y1="595.6908" y2="599.4263"/>
964 <line fill="none" id="t7 p28" stroke="#80CC00" stroke-width="1" x1="522.5483" x2="517.2211" y1="599.4263" y2="602.6523"/>
965 <line fill="none" id="t7 p29" stroke="#94CC00" stroke-width="1" x1="517.2211" x2="512.3330" y1="602.6523" y2="606.0482"/>
966 <line fill="none" id="t7 p30" stroke="#94CC00" stroke-width="1" x1="512.3330" x2="507.0351" y1="606.0482" y2="609.6563"/>
967 <line fill="none" id="t7 p31" stroke="#9CCC00" stroke-width="1" x1="507.0351" x2="502.0006" y1="609.6563" y2="614.3256"/>
968 <line fill="none" id="t7 p32" stroke="#9CCC00" stroke-width="1" x1="502.0006" x2="497.3173" y1="614.3256" y2="618.8251"/>
969 <line fill="none" id="t7 p33" stroke="#9CCC00" stroke-width="1" x1="497.3173" x2="492.2243" y1="618.8251" y2="623.2398"/>
970 <line fill="none" id="t7 p34" stroke="#A8CC00" stroke-width="1" x1="492.2243" x2="486.7508" y1="623.2398" y2="627.3573"/>
971 <line fill="none" id="t7 p35" stroke="#B0CC00" stroke-width="1" x1="486.7508" x2="481.8041" y1="627.3573" y2="630.9654"/>
972 <line fill="none" id="t7 p36" stroke="#BCCC00" stroke-width="1" x1="481.8041" x2="475.6866" y1="630.9654" y2="634.7433"/>
973 <line fill="none" id="t7 p37" stroke="#B0CC00" stroke-width="1" x1="475.6866" x2="469.5984" y1="634.7433" y2="636.0592"/>
974 <line fill="none" id="t7 p38" stroke="#B0CC00" stroke-width="1" x1="469.5984" x2="462.1930" y1="636.0592" y2="638.2665"/>
975 <line fill="none" id="t7 p39" stroke="#A8CC00" stroke-width="1" x1="462.1930" x2="454.5242" y1="638.2665" y2="639.5399"/>
976 <line fill="none" id="t7 p40" stroke="#80CC00" stroke-width="1" x1="454.5242" x2="448.7287" y1="639.5399" y2="636.9930"/>
977 <line fill="none" id="t7 p41" stroke="#60CC00" stroke-width="1" x1="448.7287" x2="445.9187" y1="636.9930" y2="632.7057"/>
978 <line fill="none" id="t7 p42" stroke="#30CC00" stroke-width="1" x1="445.9187" x2="439.0402" y1="632.7057" y2="632.7482"/>
979 <line fill="none" id="t7 p43" stroke="#38CC00" stroke-width="1" x1="439.0402" x2="433.5081" y1="632.7482" y2="634.2763"/>
980 <line fill="none" id="t7 p44" stroke="#1CCC00" stroke-width="1" x1="433.5081" x2="426.7174" y1="634.2763" y2="636.4836"/>
981 <line fill="none" id="t7 p45" stroke="#38CC00" stroke-width="1" x1="426.7174" x2="421.9171" y1="636.4836" y2="637.5024"/>
982 <line fill="none" id="t7 p46" stroke="#78CC00" stroke-width="1" x1="421.9171" x2="413.7800" y1="637.5024" y2="641.9595"/>
983 <line fill="none" id="t7 p47" stroke="#28CC00" stroke-width="1" x1="413.7800" x2="408.2186" y1="641.9595" y2="645.6525"/>
984 <line fill="none" id="t7 p48" stroke="#00CC0C" stroke-width="1" x1="408.2186" x2="403.0085" y1="645.6525" y2="648.5814"/>
985 <line fill="none" id="t7 p49" stroke="#00CC5C" stroke-width="1" x1="403.0085" x2="395.5738" y1="648.5814" y2="647.6051"/>
986 <line fill="none" id="t7 p50" stroke="#00CC78" stroke-width="1" x1="395.5738" x2="387.8172" y1="647.6051" y2="646.0770"/>
987 <line fill="none" id="t7 p51" stroke="#00CC98" stroke-width="1" x1="387.8172" x2="380.1191" y1="646.0770" y2="646.2467"/>
988 <line fill="none" id="t7 p52" stroke="#00CCB8" stroke-width="1" x1="380.1191" x2="371.8649" y1="646.2467" y2="646.7986"/>
989 <line fill="none" id="t7 p53" stroke="#00CCAC" stroke-width="1" x1="371.8649" x2="365.3962" y1="646.7986" y2="643.8696"/>
990 <line fill="none" id="t7 p54" stroke="#00CC84" stroke-width="1" x1="365.3962" x2="359.0738" y1="643.8696" y2="640.7709"/>
991 <line fill="none" id="t7 p55" stroke="#00CC84" stroke-width="1" x1="359.0738" x2="352.4002" y1="640.7709" y2="637.4175"/>
992 <line fill="none" id="t7 p56" stroke="#00CC68" stroke-width="1" x1="352.4002" x2="347.0730" y1="637.4175" y2="634.7857"/>
993 <line fill="none" id="t7 p57" stroke="#00CC5C" stroke-width="1" x1="347.0730" x2="340.1652" y1="634.7857" y2="637.2477"/>
994 <line fill="none" id="t7 p58" stroke="#00CC48" stroke-width="1" x1="340.1652" x2="333.7550" y1="637.2477" y2="641.0256"/>
995 <line fill="none" id="t7 p59" stroke="#00CC48" stroke-width="1" x1="333.7550" x2="326.4082" y1="641.0256" y2="646.2467"/>
996 <line fill="none" id="t7 p60" stroke="#00CC28" stroke-width="1" x1="326.4082" x2="320.6126" y1="646.2467" y2="648.1569"/>
997 <line fill="none" id="t7 p61" stroke="#00CC68" stroke-width="1" x1="320.6126" x2="313.6463" y1="648.1569" y2="645.9496"/>
998 <line fill="none" id="t7 p62" stroke="#00CC5C" stroke-width="1" x1="313.6463" x2="307.5288" y1="645.9496" y2="641.9170"/>
999 <line fill="none" id="t7 p63" stroke="#00CC5C" stroke-width="1" x1="307.5288" x2="304.1627" y1="641.9170" y2="637.7146"/>
1000 <line fill="none" id="t7 p64" stroke="#00CC40" stroke-width="1" x1="304.1627" x2="301.9382" y1="637.7146" y2="632.7906"/>
1001 <line fill="none" id="t7 p65" stroke="#00CC20" stroke-width="1" x1="301.9382" x2="304.0164" y1="632.7906" y2="625.5320"/>
1002 <line fill="none" id="t7 p66" stroke="#00CC0C" stroke-width="1" x1="304.0164" x2="307.8508" y1="625.5320" y2="619.8439"/>
1003 <line fill="none" id="t7 p67" stroke="#00CC0C" stroke-width="1" x1="307.8508" x2="313.0609" y1="619.8439" y2="614.5379"/>
1004 <line fill="none" id="t7 p68" stroke="#00CC04" stroke-width="1" x1="313.0609" x2="317.1880" y1="614.5379" y2="609.1894"/>
1005 <line fill="none" id="t7 p69" stroke="#10CC00" stroke-width="1" x1="317.1880" x2="317.9783" y1="609.1894" y2="604.2654"/>
1006 <line fill="none" id="t7 p70" stroke="#08CC00" stroke-width="1" x1="317.9783" x2="314.9342" y1="604.2654" y2="595.8182"/>
1007 <line fill="none" id="t7 p71" stroke="#1CCC00" stroke-width="1" x1="314.9342" x2="312.5926" y1="595.8182" y2="589.2811"/>
1008 <line fill="none" id="t7 p72" stroke="#1CCC00" stroke-width="1" x1="312.5926" x2="310.4851" y1="589.2811" y2="583.2110"/>
1009 <line fill="none" id="t7 p73" stroke="#1CCC00" stroke-width="1" x1="310.4851" x2="308.0264" y1="583.2110" y2="575.4430"/>
1010 <line fill="none" id="t7 p74" stroke="#38CC00" stroke-width="1" x1="308.0264" x2="305.4214" y1="575.4430" y2="570.9859"/>
1011 <line fill="none" id="t7 p75" stroke="#28CC00" stroke-width="1" x1="305.4214" x2="302.5529" y1="570.9859" y2="564.8309"/>
1012 <line fill="none" id="t7 p76" stroke="#30CC00" stroke-width="1" x1="302.5529" x2="300.7088" y1="564.8309" y2="558.8032"/>
1013 <line fill="none" id="t7 p77" stroke="#30CC00" stroke-width="1" x1="300.7088" x2="301.1772" y1="558.8032" y2="552.4784"/>
1014 <line fill="none" id="t7 p78" stroke="#10CC00" stroke-width="1" x1="301.1772" x2="307.3532" y1="552.4784" y2="548.1487"/>
1015 <line fill="none" id="t7 p79" stroke="#00CC20" stroke-width="1" x1="307.3532" x2="312.8267" y1="548.1487" y2="544.2435"/>
1016 <line fill="none" id="t7 p80" stroke="#00CC40" stroke-width="1" x1="312.8267" x2="319.6174" y1="544.2435" y2="539.7864"/>
1017 <line fill="none" id="t7 p81" stroke="#00CC40" stroke-width="1" x1="319.6174" x2="325.5886" y1="539.7864" y2="536.4330"/>
1018 <line fill="none" id="t7 p82" stroke="#00CC28" stroke-width="1" x1="325.5886" x2="331.1499" y1="536.4330" y2="531.2543"/>
1019 <line fill="none" id="t7 p83" stroke="#00CC20" stroke-width="1" x1="331.1499" x2="335.9210" y1="531.2543" y2="526.2454"/>
1020 <line fill="none" id="t7 p84" stroke="#00CC0C" stroke-width="1" x1="335.9210" x2="340.9848" y1="526.2454" y2="522.1703"/>
1021 <line fill="none" id="t7 p85" stroke="#00CC18" stroke-width="1" x1="340.9848" x2="348.3901" y1="522.1703" y2="514.5721"/>
1022 <line fill="none" id="t7 p86" stroke="#00CC28" stroke-width="1" x1="348.3901" x2="350.1464" y1="514.5721" y2="510.9215"/>
1023 <line fill="none" id="t7 p87" stroke="#00CC20" stroke-width="1" x1="350.1464" x2="351.2586" y1="510.9215" y2="504.8090"/>
1024 <line fill="none" id="t7 p88" stroke="#08CC00" stroke-width="1" x1="351.2586" x2="350.2342" y1="504.8090" y2="497.9324"/>
1025 <line fill="none" id="t7 p89" stroke="#28CC00" stroke-width="1" x1="350.2342" x2="348.5072" y1="497.9324" y2="491.6925"/>
1026 <line fill="none" id="t7 p90" stroke="#50CC00" stroke-width="1" x1="348.5072" x2="347.3949" y1="491.6925" y2="485.7072"/>
1027 <line fill="none" id="t7 p91" stroke="#60CC00" stroke-width="1" x1="347.3949" x2="345.0826" y1="485.7072" y2="479.0853"/>
1028 <line fill="none" id="t7 p92" stroke="#78CC00" stroke-width="1" x1="345.0826" x2="341.1604" y1="479.0853" y2="473.8642"/>
1029 <line fill="none" id="t7 p93" stroke="#6CCC00" stroke-width="1" x1="341.1604" x2="338.2919" y1="473.8642" y2="468.3459"/>
1030 <line fill="none" id="t7 p94" stroke="#80CC00" stroke-width="1" x1="338.2919" x2="335.7746" y1="468.3459" y2="460.4505"/>
1031 <line fill="none" id="t7 p95" stroke="#60CC00" stroke-width="1" x1="335.7746" x2="339.9310" y1="460.4505" y2="455.4840"/>
1032 <line fill="none" id="t7 p96" stroke="#58CC00" stroke-width="1" x1="339.9310" x2="342.7117" y1="455.4840" y2="448.3527"/>
1033 <line fill="none" id="t7 p97" stroke="#10CC00" stroke-width="1" x1="342.7117" x2="345.1119" y1="448.3527" y2="442.6222"/>
1034 <line fill="none" id="t7 p98" stroke="#1CCC00" stroke-width="1" x1="345.1119" x2="348.4779" y1="442.6222" y2="437.1039"/>
1035 <line fill="none" id="t7 p99" stroke="#30CC00" stroke-width="1" x1="348.4779" x2="351.3757" y1="437.1039" y2="431.1612"/>
1036 <line fill="none" id="t7 p100" stroke="#38CC00" stroke-width="1" x1="351.3757" x2="353.6002" y1="431.1612" y2="425.4731"/>
1037 <line fill="none" id="t7 p101" stroke="#38CC00" stroke-width="1" x1="353.6002" x2="355.1516" y1="425.4731" y2="419.1058"/>
1038 <line fill="none" id="t7 p102" stroke="#30CC00" stroke-width="1" x1="355.1516" x2="357.1712" y1="419.1058" y2="412.5264"/>
1039 <line fill="none" id="t7 p103" stroke="#10CC00" stroke-width="1" x1="357.1712" x2="359.7763" y1="412.5264" y2="405.8620"/>
1040 <line fill="none" id="t7 p104" stroke="#1CCC00" stroke-width="1" x1="359.7763" x2="361.5325" y1="405.8620" y2="398.8156"/>
1041 <line fill="none" id="t7 p105" stroke="#10CC00" stroke-width="1" x1="361.5325" x2="362.7618" y1="398.8156" y2="393.6793"/>
1042 <line fill="none" id="t7 p106" stroke="#30CC00" stroke-width="1" x1="362.7618" x2="371.0453" y1="393.6793" y2="394.2736"/>
1043 <line fill="none" id="t7 p107" stroke="#30CC00" stroke-width="1" x1="371.0453" x2="377.6604" y1="394.2736" y2="393.7218"/>
1044 <line fill="none" id="t7 p108" stroke="#44CC00" stroke-width="1" x1="377.6604" x2="384.3340" y1="393.7218" y2="391.2598"/>
1045 <line fill="none" id="t7 p109" stroke="#6CCC00" stroke-width="1" x1="384.3340" x2="391.4467" y1="391.2598" y2="389.4345"/>
1046 <line fill="none" id="t7 p110" stroke="#88CC00" stroke-width="1" x1="391.4467" x2="397.6813" y1="389.4345" y2="388.7129"/>
1047 <line fill="none" id="t7 p111" stroke="#A8CC00" stroke-width="1" x1="397.6813" x2="405.3501" y1="388.7129" y2="388.2035"/>
1048 <line fill="none" id="t7 p112" stroke="#CCC800" stroke-width="1" x1="405.3501" x2="410.7651" y1="388.2035" y2="391.0475"/>
1049 <line fill="none" id="t7 p113" stroke="#CCC000" stroke-width="1" x1="410.7651" x2="414.9800" y1="391.0475" y2="396.4384"/>
1050 <line fill="none" id="t7 p114" stroke="#C8CC00" stroke-width="1" x1="414.9800" x2="419.0779" y1="396.4384" y2="402.8057"/>
1051 <line fill="none" id="t7 p115" stroke="#BCCC00" stroke-width="1" x1="419.0779" x2="422.7659" y1="402.8057" y2="409.3427"/>
1052 <line fill="none" id="t7 p116" stroke="#CCC800" stroke-width="1" x1="422.7659" x2="425.4881" y1="409.3427" y2="414.7337"/>
1053 <line fill="none" id="t7 p117" stroke="#C8CC00" stroke-width="1" x1="425.4881" x2="426.8345" y1="414.7337" y2="420.8038"/>
1054 <line fill="none" id="t7 p118" stroke="#C8CC00" stroke-width="1" x1="426.8345" x2="425.6051" y1="420.8038" y2="427.2559"/>
1055 <line fill="none" id="t7 p119" stroke="#BCCC00" stroke-width="1" x1="425.6051" x2="424.3173" y1="427.2559" y2="432.4771"/>
1056 <line fill="none" id="t7 p120" stroke="#9CCC00" stroke-width="1" x1="424.3173" x2="421.8878" y1="432.4771" y2="439.2263"/>
1057 <line fill="none" id="t7 p121" stroke="#9CCC00" stroke-width="1" x1="421.8878" x2="419.7511" y1="439.2263" y2="445.5087"/>
1058 <line fill="none" id="t7 p122" stroke="#9CCC00" stroke-width="1" x1="419.7511" x2="416.8826" y1="445.5087" y2="455.2718"/>
1059 <line fill="none" id="t7 p123" stroke="#94CC00" stroke-width="1" x1="416.8826" x2="411.4969" y1="455.2718" y2="454.3379"/>
1060 <line fill="none" id="t7 p124" stroke="#88CC00" stroke-width="1" x1="411.4969" x2="405.5257" y1="454.3379" y2="453.9984"/>
1061 <line fill="none" id="t7 p125" stroke="#78CC00" stroke-width="1" x1="405.5257" x2="399.4668" y1="453.9984" y2="454.1257"/>
1062 <line fill="none" id="t7 p126" stroke="#6CCC00" stroke-width="1" x1="399.4668" x2="393.2615" y1="454.1257" y2="455.4840"/>
1063 <line fill="none" id="t7 p127" stroke="#38CC00" stroke-width="1" x1="393.2615" x2="387.0855" y1="455.4840" y2="456.5453"/>
1064 <line fill="none" id="t7 p128" stroke="#28CC00" stroke-width="1" x1="387.0855" x2="386.2366" y1="456.5453" y2="462.2333"/>
1065 <line fill="none" id="t7 p129" stroke="#28CC00" stroke-width="1" x1="386.2366" x2="386.7049" y1="462.2333" y2="468.4308"/>
1066 <line fill="none" id="t7 p130" stroke="#28CC00" stroke-width="1" x1="386.7049" x2="387.9636" y1="468.4308" y2="474.5858"/>
1067 <line fill="none" id="t7 p131" stroke="#28CC00" stroke-width="1" x1="387.9636" x2="393.2908" y1="474.5858" y2="479.4249"/>
1068 <line fill="none" id="t7 p132" stroke="#44CC00" stroke-width="1" x1="393.2908" x2="396.7739" y1="479.4249" y2="484.5611"/>
1069 <line fill="none" id="t7 p133" stroke="#6CCC00" stroke-width="1" x1="396.7739" x2="394.9884" y1="484.5611" y2="489.8672"/>
1070 <line fill="none" id="t7 p134" stroke="#6CCC00" stroke-width="1" x1="394.9884" x2="388.8709" y1="489.8672" y2="489.1880"/>
1071 <line fill="none" id="t7 p135" stroke="#50CC00" stroke-width="1" x1="388.8709" x2="383.4852" y1="489.1880" y2="486.9382"/>
1072 <line fill="none" id="t7 p136" stroke="#30CC00" stroke-width="1" x1="383.4852" x2="377.8068" y1="486.9382" y2="485.0705"/>
1073 <line fill="none" id="t7 p137" stroke="#38CC00" stroke-width="1" x1="377.8068" x2="371.2795" y1="485.0705" y2="485.1979"/>
1074 <line fill="none" id="t7 p138" stroke="#38CC00" stroke-width="1" x1="371.2795" x2="364.3132" y1="485.1979" y2="484.6885"/>
1075 <line fill="none" id="t7 p139" stroke="#50CC00" stroke-width="1" x1="364.3132" x2="358.9567" y1="484.6885" y2="487.5325"/>
1076 <line fill="none" id="t7 p140" stroke="#44CC00" stroke-width="1" x1="358.9567" x2="354.2149" y1="487.5325" y2="491.4378"/>
1077 <line fill="none" id="t7 p141" stroke="#38CC00" stroke-width="1" x1="354.2149" x2="349.9415" y1="491.4378" y2="495.8099"/>
1078 <line fill="none" id="t7 p142" stroke="#08CC00" stroke-width="1" x1="349.9415" x2="347.8340" y1="495.8099" y2="486.8109"/>
1079 <line fill="none" id="t7 p143" stroke="#28CC00" stroke-width="1" x1="347.8340" x2="345.5802" y1="486.8109" y2="479.2127"/>
1080 <line fill="none" id="t7 p144" stroke="#58CC00" stroke-width="1" x1="345.5802" x2="341.7165" y1="479.2127" y2="474.1189"/>
1081 <line fill="none" id="t7 p145" stroke="#58CC00" stroke-width="1" x1="341.7165" x2="338.8188" y1="474.1189" y2="468.3034"/>
1082 <line fill="none" id="t7 p146" stroke="#6CCC00" stroke-width="1" x1="338.8188" x2="336.4479" y1="468.3034" y2="462.7427"/>
1083 <line fill="none" id="t7 p147" stroke="#60CC00" stroke-width="1" x1="336.4479" x2="333.9892" y1="462.7427" y2="456.4604"/>
1084 <line fill="none" id="t7 p148" stroke="#58CC00" stroke-width="1" x1="333.9892" x2="331.3256" y1="456.4604" y2="449.6686"/>
1085 <line fill="none" id="t7 p149" stroke="#6CCC00" stroke-width="1" x1="331.3256" x2="328.7498" y1="449.6686" y2="443.2589"/>
1086 <line fill="none" id="t7 p150" stroke="#6CCC00" stroke-width="1" x1="328.7498" x2="326.0569" y1="443.2589" y2="437.6982"/>
1087 <line fill="none" id="t7 p151" stroke="#78CC00" stroke-width="1" x1="326.0569" x2="323.0421" y1="437.6982" y2="432.0526"/>
1088 <line fill="none" id="t7 p152" stroke="#80CC00" stroke-width="1" x1="323.0421" x2="320.1443" y1="432.0526" y2="426.3645"/>
1089 <line fill="none" id="t7 p153" stroke="#78CC00" stroke-width="1" x1="320.1443" x2="317.3051" y1="426.3645" y2="420.6340"/>
1090 <line fill="none" id="t7 p154" stroke="#58CC00" stroke-width="1" x1="317.3051" x2="314.4951" y1="420.6340" y2="414.6912"/>
1091 <line fill="none" id="t7 p155" stroke="#50CC00" stroke-width="1" x1="314.4951" x2="311.5681" y1="414.6912" y2="409.2578"/>
1092 <line fill="none" id="t7 p156" stroke="#44CC00" stroke-width="1" x1="311.5681" x2="308.2020" y1="409.2578" y2="403.8245"/>
1093 <line fill="none" id="t7 p157" stroke="#44CC00" stroke-width="1" x1="308.2020" x2="304.6018" y1="403.8245" y2="398.0939"/>
1094 <line fill="none" id="t7 p158" stroke="#44CC00" stroke-width="1" x1="304.6018" x2="302.5821" y1="398.0939" y2="392.0663"/>
1095 <line fill="none" id="t7 p159" stroke="#44CC00" stroke-width="1" x1="302.5821" x2="301.9382" y1="392.0663" y2="386.5904"/>
1096 <line fill="none" id="t7 p160" stroke="#44CC00" stroke-width="1" x1="301.9382" x2="305.1579" y1="386.5904" y2="383.0248"/>
1097 <line fill="none" id="t7 p161" stroke="#44CC00" stroke-width="1" x1="305.1579" x2="309.4021" y1="383.0248" y2="381.4542"/>
1098 <line fill="none" id="t7 p162" stroke="#44CC00" stroke-width="1" x1="309.4021" x2="319.2955" y1="381.4542" y2="384.9774"/>
1099 <line fill="none" id="t7 p163" stroke="#38CC00" stroke-width="1" x1="319.2955" x2="325.5593" y1="384.9774" y2="386.6753"/>
1100 <line fill="none" id="t7 p164" stroke="#44CC00" stroke-width="1" x1="325.5593" x2="332.2329" y1="386.6753" y2="387.9488"/>
1101 <line fill="none" id="t7 p165" stroke="#58CC00" stroke-width="1" x1="332.2329" x2="339.0822" y1="387.9488" y2="389.2222"/>
1102 <line fill="none" id="t7 p166" stroke="#60CC00" stroke-width="1" x1="339.0822" x2="345.9607" y1="389.2222" y2="390.7079"/>
1103 <line fill="none" id="t7 p167" stroke="#6CCC00" stroke-width="1" x1="345.9607" x2="352.2538" y1="390.7079" y2="391.9814"/>
1104 <line fill="none" id="t7 p168" stroke="#78CC00" stroke-width="1" x1="352.2538" x2="358.3128" y1="391.9814" y2="393.2124"/>
1105 <line fill="none" id="t7 p169" stroke="#80CC00" stroke-width="1" x1="358.3128" x2="364.6059" y1="393.2124" y2="393.8916"/>
1106 <line fill="none" id="t7 p170" stroke="#80CC00" stroke-width="1" x1="364.6059" x2="371.7186" y1="393.8916" y2="394.1887"/>
1107 <line fill="none" id="t7 p171" stroke="#58CC00" stroke-width="1" x1="371.7186" x2="378.8898" y1="394.1887" y2="392.8303"/>
1108 <line fill="none" id="t7 p172" stroke="#78CC00" stroke-width="1" x1="378.8898" x2="386.3537" y1="392.8303" y2="390.1137"/>
1109 <line fill="none" id="t7 p173" stroke="#88CC00" stroke-width="1" x1="386.3537" x2="392.9980" y1="390.1137" y2="388.8402"/>
1110 <line fill="none" id="t7 p174" stroke="#A8CC00" stroke-width="1" x1="392.9980" x2="399.3790" y1="388.8402" y2="388.5431"/>
1111 <line fill="none" id="t7 p175" stroke="#BCCC00" stroke-width="1" x1="399.3790" x2="405.5843" y1="388.5431" y2="388.8402"/>
1112 <line fill="none" id="t7 p176" stroke="#A8CC00" stroke-width="1" x1="405.5843" x2="410.0334" y1="388.8402" y2="390.3259"/>
1113 <line fill="none" id="t7 p177" stroke="#A8CC00" stroke-width="1" x1="410.0334" x2="415.3605" y1="390.3259" y2="398.0515"/>
1114 <line fill="none" id="t7 p178" stroke="#B0CC00" stroke-width="1" x1="415.3605" x2="419.4291" y1="398.0515" y2="403.9942"/>
1115 <line fill="none" id="t7 p179" stroke="#A8CC00" stroke-width="1" x1="419.4291" x2="422.8537" y1="403.9942" y2="409.6399"/>
1116 <line fill="none" id="t7 p180" stroke="#A8CC00" stroke-width="1" x1="422.8537" x2="425.8393" y1="409.6399" y2="415.2855"/>
1117 <line fill="none" id="t7 p181" stroke="#A8CC00" stroke-width="1" x1="425.8393" x2="426.7760" y1="415.2855" y2="421.6527"/>
1118 <line fill="none" id="t7 p182" stroke="#9CCC00" stroke-width="1" x1="426.7760" x2="425.2539" y1="421.6527" y2="429.1236"/>
1119 <line fill="none" id="t7 p183" stroke="#9CCC00" stroke-width="1" x1="425.2539" x2="423.6440" y1="429.1236" y2="434.8542"/>
1120 <line fill="none" id="t7 p184" stroke="#9CCC00" stroke-width="1" x1="423.6440" x2="421.2731" y1="434.8542" y2="441.6883"/>
1121 <line fill="none" id="t7 p185" stroke="#9CCC00" stroke-width="1" x1="421.2731" x2="419.3998" y1="441.6883" y2="446.5275"/>
1122 <line fill="none" id="t7 p186" stroke="#94CC00" stroke-width="1" x1="419.3998" x2="417.0290" y1="446.5275" y2="454.2955"/>
1123 <line fill="none" id="t7 p187" stroke="#94CC00" stroke-width="1" x1="417.0290" x2="415.9752" y1="454.2955" y2="460.3232"/>
1124 <line fill="none" id="t7 p188" stroke="#94CC00" stroke-width="1" x1="415.9752" x2="416.2972" y1="460.3232" y2="467.1998"/>
1125 <line fill="none" id="t7 p189" stroke="#9CCC00" stroke-width="1" x1="416.2972" x2="417.2631" y1="467.1998" y2="473.9491"/>
1126 <line fill="none" id="t7 p190" stroke="#94CC00" stroke-width="1" x1="417.2631" x2="417.2046" y1="473.9491" y2="480.3163"/>
1127 <line fill="none" id="t7 p191" stroke="#94CC00" stroke-width="1" x1="417.2046" x2="418.6388" y1="480.3163" y2="486.2166"/>
1128 <line fill="none" id="t7 p192" stroke="#88CC00" stroke-width="1" x1="418.6388" x2="422.0049" y1="486.2166" y2="490.8435"/>
1129 <line fill="none" id="t7 p193" stroke="#50CC00" stroke-width="1" x1="422.0049" x2="427.0687" y1="490.8435" y2="495.4279"/>
1130 <line fill="none" id="t7 p194" stroke="#30CC00" stroke-width="1" x1="427.0687" x2="431.4592" y1="495.4279" y2="500.4793"/>
1131 <line fill="none" id="t7 p195" stroke="#28CC00" stroke-width="1" x1="431.4592" x2="436.4644" y1="500.4793" y2="505.4882"/>
1132 <line fill="none" id="t7 p196" stroke="#30CC00" stroke-width="1" x1="436.4644" x2="439.4207" y1="505.4882" y2="511.6432"/>
1133 <line fill="none" id="t7 p197" stroke="#28CC00" stroke-width="1" x1="439.4207" x2="442.0258" y1="511.6432" y2="517.9255"/>
1134 <line fill="none" id="t7 p198" stroke="#1CCC00" stroke-width="1" x1="442.0258" x2="444.3674" y1="517.9255" y2="524.0381"/>
1135 <line fill="none" id="t7 p199" stroke="#10CC00" stroke-width="1" x1="444.3674" x2="450.1336" y1="524.0381" y2="527.6886"/>
1136 <line fill="none" id="t7 p200" stroke="#10CC00" stroke-width="1" x1="450.1336" x2="456.2804" y1="527.6886" y2="531.1694"/>
1137 <line fill="none" id="t7 p201" stroke="#1CCC00" stroke-width="1" x1="456.2804" x2="462.4564" y1="531.1694" y2="534.7775"/>
1138 <line fill="none" id="t7 p202" stroke="#00CC18" stroke-width="1" x1="462.4564" x2="470.3887" y1="534.7775" y2="540.1260"/>
1139 <line fill="none" id="t7 p203" stroke="#00CC28" stroke-width="1" x1="470.3887" x2="477.2087" y1="540.1260" y2="539.4468"/>
1140 <line fill="none" id="t7 p204" stroke="#10CC00" stroke-width="1" x1="477.2087" x2="483.8530" y1="539.4468" y2="535.1171"/>
1141 <line fill="none" id="t7 p205" stroke="#28CC00" stroke-width="1" x1="483.8530" x2="491.1413" y1="535.1171" y2="533.1220"/>
1142 <line fill="none" id="t7 p206" stroke="#44CC00" stroke-width="1" x1="491.1413" x2="493.9513" y1="533.1220" y2="528.6649"/>
1143 <line fill="none" id="t7 p207" stroke="#58CC00" stroke-width="1" x1="493.9513" x2="495.0928" y1="528.6649" y2="516.3974"/>
1144 <line fill="none" id="t7 p208" stroke="#80CC00" stroke-width="1" x1="495.0928" x2="493.4829" y1="516.3974" y2="511.1762"/>
1145 <line fill="none" id="t7 p209" stroke="#60CC00" stroke-width="1" x1="493.4829" x2="490.0876" y1="511.1762" y2="504.6392"/>
1146 <line fill="none" id="t7 p210" stroke="#78CC00" stroke-width="1" x1="490.0876" x2="489.5900" y1="504.6392" y2="499.3332"/>
1147 <line fill="none" id="t7 p211" stroke="#80CC00" stroke-width="1" x1="489.5900" x2="491.9023" y1="499.3332" y2="493.5602"/>
1148 <line fill="none" id="t7 p212" stroke="#94CC00" stroke-width="1" x1="491.9023" x2="495.5319" y1="493.5602" y2="488.2117"/>
1149 <line fill="none" id="t7 p213" stroke="#88CC00" stroke-width="1" x1="495.5319" x2="500.0395" y1="488.2117" y2="483.2877"/>
1150 <line fill="none" id="t7 p214" stroke="#9CCC00" stroke-width="1" x1="500.0395" x2="505.6594" y1="483.2877" y2="478.9155"/>
1151 <line fill="none" id="t7 p215" stroke="#88CC00" stroke-width="1" x1="505.6594" x2="510.3719" y1="478.9155" y2="474.8405"/>
1152 <line fill="none" id="t7 p216" stroke="#A8CC00" stroke-width="1" x1="510.3719" x2="514.9088" y1="474.8405" y2="469.4495"/>
1153 <line fill="none" id="t7 p217" stroke="#A8CC00" stroke-width="1" x1="514.9088" x2="518.7432" y1="469.4495" y2="464.3133"/>
1154 <line fill="none" id="t7 p218" stroke="#6CCC00" stroke-width="1" x1="518.7432" x2="522.4020" y1="464.3133" y2="459.5166"/>
1155 </g>
1156
1157 <g id="Waypoints"/>
1158
1159 <rect fill="none" height="699" id="image_boundary" opacity="0" stroke="#000000" stroke-width="1" width="699" x="0.5" y="0.5"/>
1160 <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"/>
1161 <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"/>
1162 <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"/>
1163 <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[
1164 function saveModifiedSource() {
1165 var okay_to_continue;
1166 if (document.URL.substr(0,4) == 'http') {
1167 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.')
1168 } else {
1169 alert('Sorry. For security reasons, you can only save modifications to a file that resides on gpsvisualizer.com.');
1170 return;
1171 }
1172 if (SVGDoc.getElementById('modified_source_link text') != null) {
1173 var theThingToDelete = SVGDoc.getElementById('modified_source_link text');
1174 theThingToDelete.getParentNode().removeChild(theThingToDelete);
1175 }
1176 if (SVGDoc.getElementById('localized_jpeg_link text') != null) {
1177 var theThingToDelete2 = SVGDoc.getElementById('localized_jpeg_link text');
1178 theThingToDelete2.getParentNode().removeChild(theThingToDelete2);
1179 }
1180 if (SVGDoc.getElementById('localized_png_link text') != null) {
1181 var theThingToDelete3 = SVGDoc.getElementById('localized_png_link text');
1182 theThingToDelete3.getParentNode().removeChild(theThingToDelete3);
1183 }
1184 if (okay_to_continue) {
1185 showSaver(0);
1186 var theSource = printNode(document.rootElement);
1187 showSaver(1);
1188 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");
1189 }
1190 }
1191 function postIsDone() {
1192 if (SVGDoc.getElementById('modified_source_link') != null) {
1193
1194 var theExistingModifiedLink = SVGDoc.getElementById('modified_source_link');
1195 var newModLinkLabel = SVGDoc.createElementNS(svgns,'text');
1196 newModLinkLabel.setAttributeNS(null, 'id', 'modified_source_link text');
1197 newModLinkLabel.setAttributeNS(null, 'x', 3); newModLinkLabel.setAttributeNS(null, 'y', 14);
1198 newModLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newModLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newModLinkLabel.setAttributeNS(null, 'font-size', '12');
1199 var newModLinkText = document.createTextNode('Retrieve modified SVG');
1200 newModLinkLabel.appendChild(newModLinkText);
1201 theExistingModifiedLink.appendChild(newModLinkLabel);
1202
1203 var theExistingJPEGLink = SVGDoc.getElementById('localized_jpeg_link');
1204 var newJPEGLinkLabel = SVGDoc.createElementNS(svgns,'text');
1205 newJPEGLinkLabel.setAttributeNS(null, 'id', 'localized_jpeg_link text');
1206 newJPEGLinkLabel.setAttributeNS(null, 'x', 3); newJPEGLinkLabel.setAttributeNS(null, 'y', 28);
1207 newJPEGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newJPEGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newJPEGLinkLabel.setAttributeNS(null, 'font-size', '12');
1208 var newJPEGLinkText = document.createTextNode('Convert modified SVG to JPEG');
1209 newJPEGLinkLabel.appendChild(newJPEGLinkText);
1210 theExistingJPEGLink.appendChild(newJPEGLinkLabel);
1211
1212 var theExistingPNGLink = SVGDoc.getElementById('localized_png_link');
1213 var newPNGLinkLabel = SVGDoc.createElementNS(svgns,'text');
1214 newPNGLinkLabel.setAttributeNS(null, 'id', 'localized_png_link text');
1215 newPNGLinkLabel.setAttributeNS(null, 'x', 3); newPNGLinkLabel.setAttributeNS(null, 'y', 42);
1216 newPNGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newPNGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newPNGLinkLabel.setAttributeNS(null, 'font-size', '12');
1217 var newPNGLinkText = document.createTextNode('Convert modified SVG to PNG');
1218 newPNGLinkLabel.appendChild(newPNGLinkText);
1219 theExistingPNGLink.appendChild(newPNGLinkLabel);
1220
1221 var theExistingSVGLink = SVGDoc.getElementById('localized_svg_link');
1222 var newSVGLinkLabel = SVGDoc.createElementNS(svgns,'text');
1223 newSVGLinkLabel.setAttributeNS(null, 'id', 'localized_svg_link text');
1224 newSVGLinkLabel.setAttributeNS(null, 'x', 3); newSVGLinkLabel.setAttributeNS(null, 'y', 56);
1225 newSVGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newSVGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newSVGLinkLabel.setAttributeNS(null, 'font-size', '12');
1226 var newSVGLinkText = document.createTextNode('Localize modified SVG (embed background)');
1227 newSVGLinkLabel.appendChild(newSVGLinkText);
1228 theExistingSVGLink.appendChild(newSVGLinkLabel);
1229
1230 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.')
1231 }
1232 }
1233 function saverMouseDown(evt,id) {
1234 var theSaver = SVGDoc.getElementById('Saver');
1235 if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
1236 tracking = 1;
1237 findGroupClickOffset(evt,id);
1238 var scale = SVGRoot.getCurrentScale();
1239 var pan = SVGRoot.getCurrentTranslate();
1240 global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
1241 global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
1242 }
1243 function saverMouseUp(evt,id) {
1244 var theSaver = SVGDoc.getElementById('Saver');
1245 if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
1246 // Any time the mouse is lifted off the saver, clear the blue highlights
1247 var theGroupTags = SVGDoc.getElementsByTagName('g');
1248 for(g=0; g < theGroupTags.length; g++){
1249 theGroupTags.item(g).setAttributeNS(null, 'stroke','none');
1250 theGroupTags.item(g).setAttributeNS(null, 'stroke-width',0);
1251 }
1252 tracking = 0;
1253 var scale = SVGRoot.getCurrentScale();
1254 var pan = SVGRoot.getCurrentTranslate();
1255 var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
1256 var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
1257 if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
1258 saveModifiedSource();
1259 }
1260 }
1261 ]]>
1262 </script>
1263 <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">
1264 <rect fill="#CC0000" height="16" id="saver 1" rx="1.5" ry="1.5" width="16" x="0" y="0"/>
1265 <rect fill="#FFFFFF" height="8.5" id="saver 2" width="12" x="2" y="0.5"/>
1266 <rect fill="#999999" height="1" id="saver 3a" width="11" x="2.5" y="2"/>
1267 <rect fill="#999999" height="1" id="saver 3b" width="11" x="2.5" y="4"/>
1268 <rect fill="#999999" height="1" id="saver 3c" width="11" x="2.5" y="6"/>
1269 <rect fill="#CCCCCC" height="5.5" id="saver 4" width="8" x="4" y="10.5"/>
1270 <rect fill="#CC0000" height="4.5" id="saver 5" width="2" x="5.5" y="11"/>
1271 </g><!-- debugging stuff:
1272 --><!-- key = 1289918140-14799
1273 --><!-- min. altitude = 404.371704
1274 --><!-- max. altitude = 453.398926
1275 --><!-- colorize min = 404.371704
1276 --><!-- colorize max = 453.398926
1277 --><!-- colorize range = 49.027222
1278 --><!-- upper left (data) = 46.463134,-95.213616
1279 --><!-- lower right (data) = 46.448528,-95.197882
1280 --><!-- upper left (drawing) = 46.4640763225806,-95.2177065193959
1281 --><!-- lower right (drawing) = 46.4475856774194,-95.1937914806041
1282 --><!-- center = 46.455831,-95.205749
1283 --><!-- width,height (pixels) = 700,700
1284 --><!-- width,height (degrees) = 0.0239150387917419,0.0164906451612765
1285 --><!-- scale = 7434, resolution = 2.622 m/pixel
1286 --><!-- 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
1287 --><!-- 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
1288 --><!-- e-mail =
1289 --><!--
1290 Generated using the Perl SVG Module V2.49
1291 by Ronan Oger
1292 Info: http://www.roitsystems.com/
1293 -->
1294 </svg>