annotate svg/bike.svg @ 0:fd3d8ada71ad

Inital Commit
author tschulz <>
date Wed, 17 Nov 2010 22:27:29 -0600
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
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[
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
4 var SVGDoc; var SVGRoot;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
5 function init(evt) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
6 SVGDoc = evt.getTarget().getOwnerDocument();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
7 SVGRoot = SVGDoc.getDocumentElement();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
8 }]]>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
9 </script> <script type="text/ecmascript"><![CDATA[
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
10 var svgns = "http://www.w3.org/2000/svg";
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
11 var tracking;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
12 var x_offset = 0; var y_offset = 0; // how far off the mouse was from a group's coordinates
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
13 var global_mouse_x; var global_mouse_y; // for seeing if the mouse moved
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
14
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
15 function toggle_item_opacity(id,op1,op2) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
16 if (SVGDoc.getElementById(id) != null) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
17 var item = SVGDoc.getElementById(id);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
18 var new_op = (parseFloat(item.getAttributeNS(null, 'opacity')) == op1) ? op2 : op1;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
19 item.setAttributeNS(null, 'opacity',new_op.toString());
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
20 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
21 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
22 function showSaver(op) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
23 if (SVGDoc.getElementById('Saver') != null) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
24 var theSaver = SVGDoc.getElementById('Saver');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
25 theSaver.setAttributeNS(null, 'opacity',op);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
26 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
27 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
28 function trackGroup(evt,id,onoff){
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
29 tracking = onoff;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
30 if (onoff) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
31 findGroupClickOffset(evt,id);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
32 showSaver(1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
33 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
34 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
35 function findGroupClickOffset(evt,name_of_group) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
36 var theClickedThing = SVGDoc.getElementById(name_of_group);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
37 var scale = SVGRoot.getCurrentScale();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
38 var pan = SVGRoot.getCurrentTranslate();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
39 var mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
40 var mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
41 var group_coords = findGroupCoordinates(name_of_group);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
42 x_offset = mouse_x - group_coords.x; // global variable
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
43 y_offset = mouse_y - group_coords.y; // global variable
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
44 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
45 function findGroupCoordinates(name_of_group) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
46 var theGroup = SVGDoc.getElementById(name_of_group);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
47 var old_transform = theGroup.getAttributeNS(null, 'transform');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
48 var regex = /([0-9e.-]+),([0-9e.-]+)/;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
49 var numbers = regex.exec(old_transform);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
50 var group_x = eval(numbers[1]) + parseFloat(theGroup.getAttributeNS(null, 'x'));
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
51 var group_y = eval(numbers[2]) + parseFloat(theGroup.getAttributeNS(null, 'y'));
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
52 return { x: group_x, y: group_y };
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
53 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
54 function moveGroup(evt,name_of_group) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
55 if (tracking) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
56 var theGroup = SVGDoc.getElementById(name_of_group);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
57 // Find out where the mouse is, and use x and y offset values
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
58 var scale = SVGRoot.getCurrentScale();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
59 var pan = SVGRoot.getCurrentTranslate();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
60 var new_x = evt.getClientX()/scale + (( 0.0 - pan.x ) / scale) - x_offset;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
61 var new_y = evt.getClientY()/scale + (( 0.0 - pan.y ) / scale) - y_offset;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
62 // Calculate new translation based on difference between mouse position and origin
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
63 var new_x_transform = new_x - parseFloat(theGroup.getAttributeNS(null, 'x'));
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
64 var new_y_transform = new_y - parseFloat(theGroup.getAttributeNS(null, 'y'));
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
65 // Plug new translation values into old transform attribute
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
66 var old_transform = theGroup.getAttributeNS(null, 'transform');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
67 var regex = /([0-9e.-]+),([0-9e.-]+)/;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
68 var new_transform = old_transform.replace(regex,new_x_transform+','+new_y_transform);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
69 theGroup.setAttributeNS(null, 'transform',new_transform);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
70 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
71 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
72 var original_stroke_color = new Object;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
73 var original_stroke_width = new Object;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
74 function highlight(name_of_thing,onoff) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
75 var highlight_color = '#0000FF';
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
76 var highlight_width = '1';
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
77 var theThing = SVGDoc.getElementById(name_of_thing);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
78 if (onoff) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
79 original_stroke_color[name_of_thing] = theThing.getAttributeNS(null, 'stroke');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
80 original_stroke_width[name_of_thing] = theThing.getAttributeNS(null, 'stroke-width');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
81 theThing.setAttributeNS(null, 'stroke',highlight_color);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
82 theThing.setAttributeNS(null, 'stroke-width',highlight_width);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
83 } else {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
84 theThing.setAttributeNS(null, 'stroke',original_stroke_color[name_of_thing]);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
85 theThing.setAttributeNS(null, 'stroke-width',original_stroke_width[name_of_thing]);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
86 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
87 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
88 ]]>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
89 </script> <script type="text/ecmascript"><![CDATA[
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
90 function toggle_track_opacity(id,track_op,label_op) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
91 toggle_item_opacity(id+' track',track_op,1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
92 toggle_item_opacity(id+' label',label_op,1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
93 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
94 function toggle_track_opacity_from_legend(id,legend_id,track_op,label_op) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
95 toggle_item_opacity(id+' track',track_op,1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
96 toggle_item_opacity(id+' label',label_op,1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
97 toggle_item_opacity(legend_id,label_op,1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
98 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
99 function trackLabelMouseDown(evt,id) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
100 tracking = 1;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
101 showSaver(1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
102 findGroupClickOffset(evt,id+' label');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
103 var scale = SVGRoot.getCurrentScale();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
104 var pan = SVGRoot.getCurrentTranslate();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
105 global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
106 global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
107 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
108 function trackLabelMouseUp(evt,id) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
109 tracking = 0;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
110 var scale = SVGRoot.getCurrentScale();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
111 var pan = SVGRoot.getCurrentTranslate();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
112 var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
113 var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
114 if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
115 toggle_track_opacity(id,0,0.25);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
116 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
117 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
118 ]]>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
119 </script>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
120 <g id="blacks_grove_gpx (t1) track" opacity="0.9">
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
121 <line fill="none" id="t1 p1" stroke="#7A7A7A" stroke-width="1" x1="531.0953" x2="531.4465" y1="477.1751" y2="477.1327"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
122 <line fill="none" id="t1 p2" stroke="#7A7A7A" stroke-width="1" x1="531.4465" x2="532.5295" y1="477.1327" y2="477.9817"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
123 <line fill="none" id="t1 p3" stroke="#7A7A7A" stroke-width="1" x1="532.5295" x2="534.4613" y1="477.9817" y2="480.7832"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
124 <line fill="none" id="t1 p4" stroke="#7A7A7A" stroke-width="1" x1="534.4613" x2="535.0760" y1="480.7832" y2="482.6934"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
125 <line fill="none" id="t1 p5" stroke="#7A7A7A" stroke-width="1" x1="535.0760" x2="535.6614" y1="482.6934" y2="485.4101"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
126 <line fill="none" id="t1 p6" stroke="#7A7A7A" stroke-width="1" x1="535.6614" x2="539.0275" y1="485.4101" y2="489.7398"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
127 <line fill="none" id="t1 p7" stroke="#7A7A7A" stroke-width="1" x1="539.0275" x2="548.4233" y1="489.7398" y2="493.3904"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
128 <line fill="none" id="t1 p8" stroke="#7A7A7A" stroke-width="1" x1="548.4233" x2="550.3258" y1="493.3904" y2="495.7675"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
129 <line fill="none" id="t1 p9" stroke="#7A7A7A" stroke-width="1" x1="550.3258" x2="550.8820" y1="495.7675" y2="497.2107"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
130 <line fill="none" id="t1 p10" stroke="#7A7A7A" stroke-width="1" x1="550.8820" x2="553.0480" y1="497.2107" y2="499.3332"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
131 <line fill="none" id="t1 p11" stroke="#7A7A7A" stroke-width="1" x1="553.0480" x2="554.2480" y1="499.3332" y2="499.9699"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
132 <line fill="none" id="t1 p12" stroke="#7A7A7A" stroke-width="1" x1="554.2480" x2="558.5215" y1="499.9699" y2="497.8475"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
133 <line fill="none" id="t1 p13" stroke="#7A7A7A" stroke-width="1" x1="558.5215" x2="561.4778" y1="497.8475" y2="498.5266"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
134 <line fill="none" id="t1 p14" stroke="#7A7A7A" stroke-width="1" x1="561.4778" x2="562.0632" y1="498.5266" y2="503.0262"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
135 <line fill="none" id="t1 p15" stroke="#7A7A7A" stroke-width="1" x1="562.0632" x2="562.2681" y1="503.0262" y2="504.6392"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
136 <line fill="none" id="t1 p16" stroke="#7A7A7A" stroke-width="1" x1="562.2681" x2="562.9121" y1="504.6392" y2="513.4684"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
137 <line fill="none" id="t1 p17" stroke="#7A7A7A" stroke-width="1" x1="562.9121" x2="562.4730" y1="513.4684" y2="520.4724"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
138 <line fill="none" id="t1 p18" stroke="#7A7A7A" stroke-width="1" x1="562.4730" x2="563.0291" y1="520.4724" y2="521.8308"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
139 <line fill="none" id="t1 p19" stroke="#7A7A7A" stroke-width="1" x1="563.0291" x2="562.8535" y1="521.8308" y2="528.9621"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
140 <line fill="none" id="t1 p20" stroke="#7A7A7A" stroke-width="1" x1="562.8535" x2="565.1951" y1="528.9621" y2="532.1457"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
141 <line fill="none" id="t1 p21" stroke="#7A7A7A" stroke-width="1" x1="565.1951" x2="566.7465" y1="532.1457" y2="534.8624"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
142 <line fill="none" id="t1 p22" stroke="#7A7A7A" stroke-width="1" x1="566.7465" x2="568.5319" y1="534.8624" y2="537.6215"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
143 <line fill="none" id="t1 p23" stroke="#7A7A7A" stroke-width="1" x1="568.5319" x2="567.2733" y1="537.6215" y2="544.7953"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
144 <line fill="none" id="t1 p24" stroke="#7A7A7A" stroke-width="1" x1="567.2733" x2="568.3271" y1="544.7953" y2="552.6482"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
145 <line fill="none" id="t1 p25" stroke="#7A7A7A" stroke-width="1" x1="568.3271" x2="570.2589" y1="552.6482" y2="557.4449"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
146 <line fill="none" id="t1 p26" stroke="#7A7A7A" stroke-width="1" x1="570.2589" x2="571.8395" y1="557.4449" y2="560.8832"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
147 <line fill="none" id="t1 p27" stroke="#7A7A7A" stroke-width="1" x1="571.8395" x2="573.2152" y1="560.8832" y2="564.6611"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
148 <line fill="none" id="t1 p28" stroke="#7A7A7A" stroke-width="1" x1="573.2152" x2="573.8299" y1="564.6611" y2="572.4291"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
149 <line fill="none" id="t1 p29" stroke="#7A7A7A" stroke-width="1" x1="573.8299" x2="573.8299" y1="572.4291" y2="574.4667"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
150 <line fill="none" id="t1 p30" stroke="#7A7A7A" stroke-width="1" x1="573.8299" x2="576.2886" y1="574.4667" y2="582.4045"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
151 <line fill="none" id="t1 p31" stroke="#7A7A7A" stroke-width="1" x1="576.2886" x2="580.2693" y1="582.4045" y2="585.7579"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
152 <line fill="none" id="t1 p32" stroke="#7A7A7A" stroke-width="1" x1="580.2693" x2="579.2741" y1="585.7579" y2="590.2574"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
153 <line fill="none" id="t1 p33" stroke="#7A7A7A" stroke-width="1" x1="579.2741" x2="577.3423" y1="590.2574" y2="592.6770"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
154 <line fill="none" id="t1 p34" stroke="#7A7A7A" stroke-width="1" x1="577.3423" x2="573.2445" y1="592.6770" y2="596.8794"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
155 <line fill="none" id="t1 p35" stroke="#7A7A7A" stroke-width="1" x1="573.2445" x2="573.5372" y1="596.8794" y2="601.2515"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
156 <line fill="none" id="t1 p36" stroke="#7A7A7A" stroke-width="1" x1="573.5372" x2="573.9470" y1="601.2515" y2="604.0956"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
157 <line fill="none" id="t1 p37" stroke="#7A7A7A" stroke-width="1" x1="573.9470" x2="574.3275" y1="604.0956" y2="612.3730"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
158 <line fill="none" id="t1 p38" stroke="#7A7A7A" stroke-width="1" x1="574.3275" x2="572.0444" y1="612.3730" y2="613.2644"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
159 <line fill="none" id="t1 p39" stroke="#7A7A7A" stroke-width="1" x1="572.0444" x2="571.2248" y1="613.2644" y2="612.0759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
160 <line fill="none" id="t1 p40" stroke="#7A7A7A" stroke-width="1" x1="571.2248" x2="566.6001" y1="612.0759" y2="604.8596"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
161 <line fill="none" id="t1 p41" stroke="#7A7A7A" stroke-width="1" x1="566.6001" x2="562.8242" y1="604.8596" y2="601.2091"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
162 <line fill="none" id="t1 p42" stroke="#7A7A7A" stroke-width="1" x1="562.8242" x2="556.2677" y1="601.2091" y2="597.0916"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
163 <line fill="none" id="t1 p43" stroke="#7A7A7A" stroke-width="1" x1="556.2677" x2="555.1262" y1="597.0916" y2="592.9741"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
164 <line fill="none" id="t1 p44" stroke="#7A7A7A" stroke-width="1" x1="555.1262" x2="555.7408" y1="592.9741" y2="585.7155"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
165 <line fill="none" id="t1 p45" stroke="#7A7A7A" stroke-width="1" x1="555.7408" x2="552.5211" y1="585.7155" y2="582.1498"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
166 <line fill="none" id="t1 p46" stroke="#7A7A7A" stroke-width="1" x1="552.5211" x2="549.8868" y1="582.1498" y2="578.3719"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
167 <line fill="none" id="t1 p47" stroke="#7A7A7A" stroke-width="1" x1="549.8868" x2="551.5845" y1="578.3719" y2="573.6177"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
168 <line fill="none" id="t1 p48" stroke="#7A7A7A" stroke-width="1" x1="551.5845" x2="552.5211" y1="573.6177" y2="572.5565"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
169 <line fill="none" id="t1 p49" stroke="#7A7A7A" stroke-width="1" x1="552.5211" x2="556.0043" y1="572.5565" y2="565.3827"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
170 <line fill="none" id="t1 p50" stroke="#7A7A7A" stroke-width="1" x1="556.0043" x2="557.2629" y1="565.3827" y2="558.7608"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
171 <line fill="none" id="t1 p51" stroke="#7A7A7A" stroke-width="1" x1="557.2629" x2="557.7312" y1="558.7608" y2="556.3412"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
172 <line fill="none" id="t1 p52" stroke="#7A7A7A" stroke-width="1" x1="557.7312" x2="554.7749" y1="556.3412" y2="555.3649"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
173 <line fill="none" id="t1 p53" stroke="#7A7A7A" stroke-width="1" x1="554.7749" x2="547.3110" y1="555.3649" y2="553.4972"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
174 <line fill="none" id="t1 p54" stroke="#7A7A7A" stroke-width="1" x1="547.3110" x2="546.5207" y1="553.4972" y2="550.1013"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
175 <line fill="none" id="t1 p55" stroke="#7A7A7A" stroke-width="1" x1="546.5207" x2="546.4622" y1="550.1013" y2="548.1487"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
176 <line fill="none" id="t1 p56" stroke="#7A7A7A" stroke-width="1" x1="546.4622" x2="546.5500" y1="548.1487" y2="548.1063"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
177 <line fill="none" id="t1 p57" stroke="#7A7A7A" stroke-width="1" x1="546.5500" x2="549.0379" y1="548.1063" y2="549.6344"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
178 <line fill="none" id="t1 p58" stroke="#7A7A7A" stroke-width="1" x1="549.0379" x2="549.4185" y1="549.6344" y2="550.8654"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
179 <line fill="none" id="t1 p59" stroke="#7A7A7A" stroke-width="1" x1="549.4185" x2="550.3258" y1="550.8654" y2="552.8605"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
180 <line fill="none" id="t1 p60" stroke="#7A7A7A" stroke-width="1" x1="550.3258" x2="551.9942" y1="552.8605" y2="552.9454"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
181 <line fill="none" id="t1 p61" stroke="#7A7A7A" stroke-width="1" x1="551.9942" x2="551.9650" y1="552.9454" y2="552.9029"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
182 <line fill="none" id="t1 p62" stroke="#7A7A7A" stroke-width="1" x1="551.9650" x2="554.8335" y1="552.9029" y2="549.6344"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
183 <line fill="none" id="t1 p63" stroke="#7A7A7A" stroke-width="1" x1="554.8335" x2="554.8335" y1="549.6344" y2="549.2948"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
184 <line fill="none" id="t1 p64" stroke="#7A7A7A" stroke-width="1" x1="554.8335" x2="552.2869" y1="549.2948" y2="548.3609"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
185 <line fill="none" id="t1 p65" stroke="#7A7A7A" stroke-width="1" x1="552.2869" x2="550.7942" y1="548.3609" y2="548.0638"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
186 <line fill="none" id="t1 p66" stroke="#7A7A7A" stroke-width="1" x1="550.7942" x2="549.0087" y1="548.0638" y2="546.4508"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
187 <line fill="none" id="t1 p67" stroke="#7A7A7A" stroke-width="1" x1="549.0087" x2="548.1891" y1="546.4508" y2="545.9414"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
188 <line fill="none" id="t1 p68" stroke="#7A7A7A" stroke-width="1" x1="548.1891" x2="547.5159" y1="545.9414" y2="544.0737"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
189 <line fill="none" id="t1 p69" stroke="#7A7A7A" stroke-width="1" x1="547.5159" x2="547.6622" y1="544.0737" y2="543.3945"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
190 <line fill="none" id="t1 p70" stroke="#7A7A7A" stroke-width="1" x1="547.6622" x2="548.0720" y1="543.3945" y2="543.7341"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
191 <line fill="none" id="t1 p71" stroke="#7A7A7A" stroke-width="1" x1="548.0720" x2="548.3647" y1="543.7341" y2="544.7953"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
192 <line fill="none" id="t1 p72" stroke="#7A7A7A" stroke-width="1" x1="548.3647" x2="549.5648" y1="544.7953" y2="544.2010"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
193 <line fill="none" id="t1 p73" stroke="#7A7A7A" stroke-width="1" x1="549.5648" x2="550.1209" y1="544.2010" y2="543.2672"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
194 <line fill="none" id="t1 p74" stroke="#7A7A7A" stroke-width="1" x1="550.1209" x2="549.3014" y1="543.2672" y2="538.9799"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
195 <line fill="none" id="t1 p75" stroke="#7A7A7A" stroke-width="1" x1="549.3014" x2="548.1598" y1="538.9799" y2="540.6354"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
196 <line fill="none" id="t1 p76" stroke="#7A7A7A" stroke-width="1" x1="548.1598" x2="548.1306" y1="540.6354" y2="542.0361"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
197 <line fill="none" id="t1 p77" stroke="#7A7A7A" stroke-width="1" x1="548.1306" x2="545.8182" y1="542.0361" y2="541.2721"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
198 <line fill="none" id="t1 p78" stroke="#7A7A7A" stroke-width="1" x1="545.8182" x2="541.7204" y1="541.2721" y2="539.5741"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
199 <line fill="none" id="t1 p79" stroke="#7A7A7A" stroke-width="1" x1="541.7204" x2="540.2276" y1="539.5741" y2="537.3244"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
200 <line fill="none" id="t1 p80" stroke="#7A7A7A" stroke-width="1" x1="540.2276" x2="541.0179" y1="537.3244" y2="533.6314"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
201 <line fill="none" id="t1 p81" stroke="#7A7A7A" stroke-width="1" x1="541.0179" x2="541.3399" y1="533.6314" y2="531.9759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
202 <line fill="none" id="t1 p82" stroke="#7A7A7A" stroke-width="1" x1="541.3399" x2="541.3106" y1="531.9759" y2="525.8209"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
203 <line fill="none" id="t1 p83" stroke="#7A7A7A" stroke-width="1" x1="541.3106" x2="541.0764" y1="525.8209" y2="523.6136"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
204 <line fill="none" id="t1 p84" stroke="#7A7A7A" stroke-width="1" x1="541.0764" x2="538.7055" y1="523.6136" y2="523.0618"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
205 <line fill="none" id="t1 p85" stroke="#7A7A7A" stroke-width="1" x1="538.7055" x2="538.5299" y1="523.0618" y2="523.5711"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
206 <line fill="none" id="t1 p86" stroke="#7A7A7A" stroke-width="1" x1="538.5299" x2="540.0812" y1="523.5711" y2="529.0045"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
207 <line fill="none" id="t1 p87" stroke="#7A7A7A" stroke-width="1" x1="540.0812" x2="539.7300" y1="529.0045" y2="529.7686"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
208 <line fill="none" id="t1 p88" stroke="#7A7A7A" stroke-width="1" x1="539.7300" x2="538.2079" y1="529.7686" y2="528.1980"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
209 <line fill="none" id="t1 p89" stroke="#7A7A7A" stroke-width="1" x1="538.2079" x2="537.3298" y1="528.1980" y2="526.1180"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
210 <line fill="none" id="t1 p90" stroke="#7A7A7A" stroke-width="1" x1="537.3298" x2="536.3346" y1="526.1180" y2="523.1467"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
211 <line fill="none" id="t1 p91" stroke="#7A7A7A" stroke-width="1" x1="536.3346" x2="535.6614" y1="523.1467" y2="520.2602"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
212 <line fill="none" id="t1 p92" stroke="#7A7A7A" stroke-width="1" x1="535.6614" x2="534.6955" y1="520.2602" y2="519.3263"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
213 <line fill="none" id="t1 p93" stroke="#7A7A7A" stroke-width="1" x1="534.6955" x2="533.9052" y1="519.3263" y2="517.2463"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
214 <line fill="none" id="t1 p94" stroke="#7A7A7A" stroke-width="1" x1="533.9052" x2="534.3443" y1="517.2463" y2="515.8455"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
215 <line fill="none" id="t1 p95" stroke="#7A7A7A" stroke-width="1" x1="534.3443" x2="534.4321" y1="515.8455" y2="515.4211"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
216 <line fill="none" id="t1 p96" stroke="#7A7A7A" stroke-width="1" x1="534.4321" x2="533.7881" y1="515.4211" y2="511.0064"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
217 <line fill="none" id="t1 p97" stroke="#7A7A7A" stroke-width="1" x1="533.7881" x2="532.0612" y1="511.0064" y2="509.2661"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
218 <line fill="none" id="t1 p98" stroke="#7A7A7A" stroke-width="1" x1="532.0612" x2="529.6610" y1="509.2661" y2="510.5820"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
219 <line fill="none" id="t1 p99" stroke="#7A7A7A" stroke-width="1" x1="529.6610" x2="528.8414" y1="510.5820" y2="512.2374"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
220 <line fill="none" id="t1 p100" stroke="#7A7A7A" stroke-width="1" x1="528.8414" x2="527.8170" y1="512.2374" y2="512.4497"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
221 <line fill="none" id="t1 p101" stroke="#7A7A7A" stroke-width="1" x1="527.8170" x2="524.4802" y1="512.4497" y2="509.4783"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
222 <line fill="none" id="t1 p102" stroke="#7A7A7A" stroke-width="1" x1="524.4802" x2="524.4216" y1="509.4783" y2="506.8465"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
223 <line fill="none" id="t1 p103" stroke="#7A7A7A" stroke-width="1" x1="524.4216" x2="524.7143" y1="506.8465" y2="505.4457"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
224 <line fill="none" id="t1 p104" stroke="#7A7A7A" stroke-width="1" x1="524.7143" x2="524.1875" y1="505.4457" y2="503.9600"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
225 <line fill="none" id="t1 p105" stroke="#7A7A7A" stroke-width="1" x1="524.1875" x2="523.9826" y1="503.9600" y2="503.7478"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
226 <line fill="none" id="t1 p106" stroke="#7A7A7A" stroke-width="1" x1="523.9826" x2="522.5191" y1="503.7478" y2="501.4556"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
227 <line fill="none" id="t1 p107" stroke="#7A7A7A" stroke-width="1" x1="522.5191" x2="520.5287" y1="501.4556" y2="500.0548"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
228 <line fill="none" id="t1 p108" stroke="#7A7A7A" stroke-width="1" x1="520.5287" x2="519.2115" y1="500.0548" y2="497.4654"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
229 <line fill="none" id="t1 p109" stroke="#7A7A7A" stroke-width="1" x1="519.2115" x2="519.2408" y1="497.4654" y2="496.9560"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
230 <line fill="none" id="t1 p110" stroke="#7A7A7A" stroke-width="1" x1="519.2408" x2="520.2360" y1="496.9560" y2="494.3667"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
231 <line fill="none" id="t1 p111" stroke="#7A7A7A" stroke-width="1" x1="520.2360" x2="520.7336" y1="494.3667" y2="492.4990"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
232 <line fill="none" id="t1 p112" stroke="#7A7A7A" stroke-width="1" x1="520.7336" x2="522.1385" y1="492.4990" y2="489.0182"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
233 <line fill="none" id="t1 p113" stroke="#7A7A7A" stroke-width="1" x1="522.1385" x2="522.9581" y1="489.0182" y2="483.8395"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
234 <line fill="none" id="t1 p114" stroke="#7A7A7A" stroke-width="1" x1="522.9581" x2="524.0118" y1="483.8395" y2="480.0192"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
235 <line fill="none" id="t1 p115" stroke="#7A7A7A" stroke-width="1" x1="524.0118" x2="525.9730" y1="480.0192" y2="477.1751"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
236 <line fill="none" id="t1 p116" stroke="#7A7A7A" stroke-width="1" x1="525.9730" x2="528.0219" y1="477.1751" y2="473.9915"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
237 <line fill="none" id="t1 p117" stroke="#7A7A7A" stroke-width="1" x1="528.0219" x2="530.1879" y1="473.9915" y2="469.1949"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
238 <line fill="none" id="t1 p118" stroke="#7A7A7A" stroke-width="1" x1="530.1879" x2="531.6514" y1="469.1949" y2="466.0537"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
239 <line fill="none" id="t1 p119" stroke="#7A7A7A" stroke-width="1" x1="531.6514" x2="533.5832" y1="466.0537" y2="465.0349"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
240 <line fill="none" id="t1 p120" stroke="#7A7A7A" stroke-width="1" x1="533.5832" x2="534.6370" y1="465.0349" y2="461.2146"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
241 <line fill="none" id="t1 p121" stroke="#7A7A7A" stroke-width="1" x1="534.6370" x2="536.0419" y1="461.2146" y2="457.4367"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
242 <line fill="none" id="t1 p122" stroke="#7A7A7A" stroke-width="1" x1="536.0419" x2="536.4810" y1="457.4367" y2="457.0971"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
243 <line fill="none" id="t1 p123" stroke="#7A7A7A" stroke-width="1" x1="536.4810" x2="539.4080" y1="457.0971" y2="457.1395"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
244 <line fill="none" id="t1 p124" stroke="#7A7A7A" stroke-width="1" x1="539.4080" x2="538.9690" y1="457.1395" y2="458.3281"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
245 <line fill="none" id="t1 p125" stroke="#7A7A7A" stroke-width="1" x1="538.9690" x2="538.7641" y1="458.3281" y2="456.4179"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
246 <line fill="none" id="t1 p126" stroke="#7A7A7A" stroke-width="1" x1="538.7641" x2="538.7641" y1="456.4179" y2="456.0359"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
247 <line fill="none" id="t1 p127" stroke="#7A7A7A" stroke-width="1" x1="538.7641" x2="538.7641" y1="456.0359" y2="455.9510"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
248 <line fill="none" id="t1 p128" stroke="#7A7A7A" stroke-width="1" x1="538.7641" x2="538.7933" y1="455.9510" y2="455.4840"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
249 <line fill="none" id="t1 p129" stroke="#7A7A7A" stroke-width="1" x1="538.7933" x2="538.4714" y1="455.4840" y2="455.6538"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
250 <line fill="none" id="t1 p130" stroke="#7A7A7A" stroke-width="1" x1="538.4714" x2="539.5251" y1="455.6538" y2="452.5976"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
251 <line fill="none" id="t1 p131" stroke="#7A7A7A" stroke-width="1" x1="539.5251" x2="539.6422" y1="452.5976" y2="452.5127"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
252 <line fill="none" id="t1 p132" stroke="#7A7A7A" stroke-width="1" x1="539.6422" x2="539.7885" y1="452.5127" y2="451.7061"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
253 <line fill="none" id="t1 p133" stroke="#7A7A7A" stroke-width="1" x1="539.7885" x2="539.5544" y1="451.7061" y2="452.3853"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
254 <line fill="none" id="t1 p134" stroke="#7A7A7A" stroke-width="1" x1="539.5544" x2="539.4958" y1="452.3853" y2="452.7674"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
255 <line fill="none" id="t1 p135" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="539.4958" y1="452.7674" y2="452.9796"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
256 <line fill="none" id="t1 p136" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="539.3202" y1="452.9796" y2="453.0220"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
257 <line fill="none" id="t1 p137" stroke="#7A7A7A" stroke-width="1" x1="539.3202" x2="538.9982" y1="453.0220" y2="452.3004"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
258 <line fill="none" id="t1 p138" stroke="#7A7A7A" stroke-width="1" x1="538.9982" x2="538.3250" y1="452.3004" y2="452.0882"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
259 <line fill="none" id="t1 p139" stroke="#7A7A7A" stroke-width="1" x1="538.3250" x2="536.2176" y1="452.0882" y2="453.7861"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
260 <line fill="none" id="t1 p140" stroke="#7A7A7A" stroke-width="1" x1="536.2176" x2="535.1638" y1="453.7861" y2="456.7150"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
261 <line fill="none" id="t1 p141" stroke="#7A7A7A" stroke-width="1" x1="535.1638" x2="537.3884" y1="456.7150" y2="458.0309"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
262 <line fill="none" id="t1 p142" stroke="#7A7A7A" stroke-width="1" x1="537.3884" x2="539.1739" y1="458.0309" y2="457.5640"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
263 <line fill="none" id="t1 p143" stroke="#7A7A7A" stroke-width="1" x1="539.1739" x2="540.0812" y1="457.5640" y2="456.7999"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
264 <line fill="none" id="t1 p144" stroke="#7A7A7A" stroke-width="1" x1="540.0812" x2="539.4373" y1="456.7999" y2="456.0359"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
265 <line fill="none" id="t1 p145" stroke="#7A7A7A" stroke-width="1" x1="539.4373" x2="537.1835" y1="456.0359" y2="456.3330"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
266 <line fill="none" id="t1 p146" stroke="#7A7A7A" stroke-width="1" x1="537.1835" x2="534.6955" y1="456.3330" y2="455.8236"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
267 <line fill="none" id="t1 p147" stroke="#7A7A7A" stroke-width="1" x1="534.6955" x2="533.6125" y1="455.8236" y2="455.7812"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
268 <line fill="none" id="t1 p148" stroke="#7A7A7A" stroke-width="1" x1="533.6125" x2="533.3198" y1="455.7812" y2="457.9460"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
269 <line fill="none" id="t1 p149" stroke="#7A7A7A" stroke-width="1" x1="533.3198" x2="535.0175" y1="457.9460" y2="457.9460"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
270 <line fill="none" id="t1 p150" stroke="#7A7A7A" stroke-width="1" x1="535.0175" x2="535.3687" y1="457.9460" y2="456.9697"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
271 <line fill="none" id="t1 p151" stroke="#7A7A7A" stroke-width="1" x1="535.3687" x2="535.4858" y1="456.9697" y2="455.2718"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
272 <line fill="none" id="t1 p152" stroke="#7A7A7A" stroke-width="1" x1="535.4858" x2="534.0223" y1="455.2718" y2="456.2057"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
273 <line fill="none" id="t1 p153" stroke="#7A7A7A" stroke-width="1" x1="534.0223" x2="533.8759" y1="456.2057" y2="457.0122"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
274 <line fill="none" id="t1 p154" stroke="#7A7A7A" stroke-width="1" x1="533.8759" x2="535.3102" y1="457.0122" y2="458.6677"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
275 <line fill="none" id="t1 p155" stroke="#7A7A7A" stroke-width="1" x1="535.3102" x2="536.6273" y1="458.6677" y2="458.7526"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
276 <line fill="none" id="t1 p156" stroke="#7A7A7A" stroke-width="1" x1="536.6273" x2="538.1787" y1="458.7526" y2="459.4317"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
277 <line fill="none" id="t1 p157" stroke="#7A7A7A" stroke-width="1" x1="538.1787" x2="540.0227" y1="459.4317" y2="458.2432"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
278 <line fill="none" id="t1 p158" stroke="#7A7A7A" stroke-width="1" x1="540.0227" x2="541.2228" y1="458.2432" y2="458.2432"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
279 <line fill="none" id="t1 p159" stroke="#7A7A7A" stroke-width="1" x1="541.2228" x2="543.2717" y1="458.2432" y2="457.6065"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
280 <line fill="none" id="t1 p160" stroke="#7A7A7A" stroke-width="1" x1="543.2717" x2="543.1546" y1="457.6065" y2="455.6963"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
281 <line fill="none" id="t1 p161" stroke="#7A7A7A" stroke-width="1" x1="543.1546" x2="543.0083" y1="455.6963" y2="455.2718"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
282 <line fill="none" id="t1 p162" stroke="#7A7A7A" stroke-width="1" x1="543.0083" x2="541.6326" y1="455.2718" y2="455.3567"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
283 <line fill="none" id="t1 p163" stroke="#7A7A7A" stroke-width="1" x1="541.6326" x2="539.4958" y1="455.3567" y2="457.8187"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
284 <line fill="none" id="t1 p164" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="537.7981" y1="457.8187" y2="458.5828"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
285 <line fill="none" id="t1 p165" stroke="#7A7A7A" stroke-width="1" x1="537.7981" x2="536.5395" y1="458.5828" y2="457.2669"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
286 <line fill="none" id="t1 p166" stroke="#7A7A7A" stroke-width="1" x1="536.5395" x2="538.2372" y1="457.2669" y2="457.9036"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
287 <line fill="none" id="t1 p167" stroke="#7A7A7A" stroke-width="1" x1="538.2372" x2="539.0860" y1="457.9036" y2="459.0073"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
288 <line fill="none" id="t1 p168" stroke="#7A7A7A" stroke-width="1" x1="539.0860" x2="541.4277" y1="459.0073" y2="460.5778"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
289 <line fill="none" id="t1 p169" stroke="#7A7A7A" stroke-width="1" x1="541.4277" x2="543.1546" y1="460.5778" y2="458.7101"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
290 <line fill="none" id="t1 p170" stroke="#7A7A7A" stroke-width="1" x1="543.1546" x2="540.5496" y1="458.7101" y2="456.6726"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
291 <line fill="none" id="t1 p171" stroke="#7A7A7A" stroke-width="1" x1="540.5496" x2="539.8471" y1="456.6726" y2="456.3755"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
292 <line fill="none" id="t1 p172" stroke="#7A7A7A" stroke-width="1" x1="539.8471" x2="538.0030" y1="456.3755" y2="455.3567"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
293 <line fill="none" id="t1 p173" stroke="#7A7A7A" stroke-width="1" x1="538.0030" x2="536.5688" y1="455.3567" y2="456.6302"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
294 <line fill="none" id="t1 p174" stroke="#7A7A7A" stroke-width="1" x1="536.5688" x2="536.6859" y1="456.6302" y2="457.1395"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
295 <line fill="none" id="t1 p175" stroke="#7A7A7A" stroke-width="1" x1="536.6859" x2="537.4176" y1="457.1395" y2="458.7950"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
296 <line fill="none" id="t1 p176" stroke="#7A7A7A" stroke-width="1" x1="537.4176" x2="540.6374" y1="458.7950" y2="458.1158"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
297 <line fill="none" id="t1 p177" stroke="#7A7A7A" stroke-width="1" x1="540.6374" x2="539.8763" y1="458.1158" y2="456.4179"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
298 <line fill="none" id="t1 p178" stroke="#7A7A7A" stroke-width="1" x1="539.8763" x2="536.4810" y1="456.4179" y2="455.5265"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
299 <line fill="none" id="t1 p179" stroke="#7A7A7A" stroke-width="1" x1="536.4810" x2="534.8126" y1="455.5265" y2="457.8187"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
300 <line fill="none" id="t1 p180" stroke="#7A7A7A" stroke-width="1" x1="534.8126" x2="532.8515" y1="457.8187" y2="460.4929"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
301 <line fill="none" id="t1 p181" stroke="#7A7A7A" stroke-width="1" x1="532.8515" x2="532.8515" y1="460.4929" y2="460.8325"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
302 <line fill="none" id="t1 p182" stroke="#7A7A7A" stroke-width="1" x1="532.8515" x2="532.9393" y1="460.8325" y2="464.1860"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
303 <line fill="none" id="t1 p183" stroke="#7A7A7A" stroke-width="1" x1="532.9393" x2="531.5636" y1="464.1860" y2="466.0961"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
304 <line fill="none" id="t1 p184" stroke="#7A7A7A" stroke-width="1" x1="531.5636" x2="529.7195" y1="466.0961" y2="471.8691"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
305 <line fill="none" id="t1 p185" stroke="#7A7A7A" stroke-width="1" x1="529.7195" x2="530.1293" y1="471.8691" y2="475.3074"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
306 <line fill="none" id="t1 p186" stroke="#7A7A7A" stroke-width="1" x1="530.1293" x2="530.5977" y1="475.3074" y2="475.9866"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
307 <line fill="none" id="t1 p187" stroke="#7A7A7A" stroke-width="1" x1="530.5977" x2="532.2368" y1="475.9866" y2="477.1751"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
308 <line fill="none" id="t1 p188" stroke="#7A7A7A" stroke-width="1" x1="532.2368" x2="532.0904" y1="477.1751" y2="477.3874"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
309 <line fill="none" id="t1 p189" stroke="#7A7A7A" stroke-width="1" x1="532.0904" x2="534.4028" y1="477.3874" y2="481.5473"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
310 <line fill="none" id="t1 p190" stroke="#7A7A7A" stroke-width="1" x1="534.4028" x2="536.4517" y1="481.5473" y2="487.2354"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
311 <line fill="none" id="t1 p191" stroke="#7A7A7A" stroke-width="1" x1="536.4517" x2="537.3006" y1="487.2354" y2="488.2966"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
312 <line fill="none" id="t1 p192" stroke="#7A7A7A" stroke-width="1" x1="537.3006" x2="541.2520" y1="488.2966" y2="491.4802"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
313 <line fill="none" id="t1 p193" stroke="#7A7A7A" stroke-width="1" x1="541.2520" x2="546.9305" y1="491.4802" y2="493.3479"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
314 <line fill="none" id="t1 p194" stroke="#7A7A7A" stroke-width="1" x1="546.9305" x2="550.3844" y1="493.3479" y2="497.2532"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
315 <line fill="none" id="t1 p195" stroke="#7A7A7A" stroke-width="1" x1="550.3844" x2="554.2188" y1="497.2532" y2="499.0785"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
316 <line fill="none" id="t1 p196" stroke="#7A7A7A" stroke-width="1" x1="554.2188" x2="556.6189" y1="499.0785" y2="498.6115"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
317 <line fill="none" id="t1 p197" stroke="#7A7A7A" stroke-width="1" x1="556.6189" x2="560.5997" y1="498.6115" y2="497.6352"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
318 <line fill="none" id="t1 p198" stroke="#7A7A7A" stroke-width="1" x1="560.5997" x2="561.7412" y1="497.6352" y2="500.0548"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
319 <line fill="none" id="t1 p199" stroke="#7A7A7A" stroke-width="1" x1="561.7412" x2="562.2974" y1="500.0548" y2="505.2759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
320 <line fill="none" id="t1 p200" stroke="#7A7A7A" stroke-width="1" x1="562.2974" x2="562.7657" y1="505.2759" y2="510.2848"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
321 <line fill="none" id="t1 p201" stroke="#7A7A7A" stroke-width="1" x1="562.7657" x2="562.3266" y1="510.2848" y2="517.2463"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
322 <line fill="none" id="t1 p202" stroke="#7A7A7A" stroke-width="1" x1="562.3266" x2="563.3511" y1="517.2463" y2="523.3164"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
323 <line fill="none" id="t1 p203" stroke="#7A7A7A" stroke-width="1" x1="563.3511" x2="562.7657" y1="523.3164" y2="527.9433"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
324 <line fill="none" id="t1 p204" stroke="#7A7A7A" stroke-width="1" x1="562.7657" x2="565.2537" y1="527.9433" y2="532.6551"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
325 <line fill="none" id="t1 p205" stroke="#7A7A7A" stroke-width="1" x1="565.2537" x2="566.8050" y1="532.6551" y2="535.4142"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
326 <line fill="none" id="t1 p206" stroke="#7A7A7A" stroke-width="1" x1="566.8050" x2="568.5027" y1="535.4142" y2="538.2158"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
327 <line fill="none" id="t1 p207" stroke="#7A7A7A" stroke-width="1" x1="568.5027" x2="566.7465" y1="538.2158" y2="546.9602"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
328 <line fill="none" id="t1 p208" stroke="#7A7A7A" stroke-width="1" x1="566.7465" x2="569.0588" y1="546.9602" y2="555.1102"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
329 <line fill="none" id="t1 p209" stroke="#7A7A7A" stroke-width="1" x1="569.0588" x2="571.8688" y1="555.1102" y2="561.2652"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
330 <line fill="none" id="t1 p210" stroke="#7A7A7A" stroke-width="1" x1="571.8688" x2="573.4201" y1="561.2652" y2="565.8072"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
331 <line fill="none" id="t1 p211" stroke="#7A7A7A" stroke-width="1" x1="573.4201" x2="574.0640" y1="565.8072" y2="568.0145"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
332 <line fill="none" id="t1 p212" stroke="#7A7A7A" stroke-width="1" x1="574.0640" x2="573.3030" y1="568.0145" y2="578.0748"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
333 <line fill="none" id="t1 p213" stroke="#7A7A7A" stroke-width="1" x1="573.3030" x2="576.6691" y1="578.0748" y2="583.5506"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
334 <line fill="none" id="t1 p214" stroke="#7A7A7A" stroke-width="1" x1="576.6691" x2="578.4546" y1="583.5506" y2="584.7391"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
335 <line fill="none" id="t1 p215" stroke="#7A7A7A" stroke-width="1" x1="578.4546" x2="580.0352" y1="584.7391" y2="587.4134"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
336 <line fill="none" id="t1 p216" stroke="#7A7A7A" stroke-width="1" x1="580.0352" x2="577.6935" y1="587.4134" y2="592.2101"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
337 <line fill="none" id="t1 p217" stroke="#7A7A7A" stroke-width="1" x1="577.6935" x2="573.0981" y1="592.2101" y2="597.4312"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
338 <line fill="none" id="t1 p218" stroke="#7A7A7A" stroke-width="1" x1="573.0981" x2="573.5664" y1="597.4312" y2="602.5674"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
339 <line fill="none" id="t1 p219" stroke="#7A7A7A" stroke-width="1" x1="573.5664" x2="573.7421" y1="602.5674" y2="604.3078"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
340 <line fill="none" id="t1 p220" stroke="#7A7A7A" stroke-width="1" x1="573.7421" x2="574.0640" y1="604.3078" y2="612.3730"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
341 <line fill="none" id="t1 p221" stroke="#7A7A7A" stroke-width="1" x1="574.0640" x2="571.8980" y1="612.3730" y2="613.5191"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
342 <line fill="none" id="t1 p222" stroke="#7A7A7A" stroke-width="1" x1="571.8980" x2="571.0199" y1="613.5191" y2="612.3305"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
343 <line fill="none" id="t1 p223" stroke="#7A7A7A" stroke-width="1" x1="571.0199" x2="566.3367" y1="612.3305" y2="604.9021"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
344 <line fill="none" id="t1 p224" stroke="#7A7A7A" stroke-width="1" x1="566.3367" x2="557.5556" y1="604.9021" y2="598.8320"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
345 <line fill="none" id="t1 p225" stroke="#7A7A7A" stroke-width="1" x1="557.5556" x2="554.9213" y1="598.8320" y2="594.6296"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
346 <line fill="none" id="t1 p226" stroke="#7A7A7A" stroke-width="1" x1="554.9213" x2="556.0628" y1="594.6296" y2="588.0926"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
347 <line fill="none" id="t1 p227" stroke="#7A7A7A" stroke-width="1" x1="556.0628" x2="553.5456" y1="588.0926" y2="583.3808"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
348 <line fill="none" id="t1 p228" stroke="#7A7A7A" stroke-width="1" x1="553.5456" x2="551.2625" y1="583.3808" y2="581.0886"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
349 <line fill="none" id="t1 p229" stroke="#7A7A7A" stroke-width="1" x1="551.2625" x2="549.5941" y1="581.0886" y2="578.3719"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
350 <line fill="none" id="t1 p230" stroke="#7A7A7A" stroke-width="1" x1="549.5941" x2="551.5845" y1="578.3719" y2="573.8299"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
351 <line fill="none" id="t1 p231" stroke="#7A7A7A" stroke-width="1" x1="551.5845" x2="554.8627" y1="573.8299" y2="569.3304"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
352 <line fill="none" id="t1 p232" stroke="#7A7A7A" stroke-width="1" x1="554.8627" x2="556.5019" y1="569.3304" y2="562.4113"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
353 <line fill="none" id="t1 p233" stroke="#7A7A7A" stroke-width="1" x1="556.5019" x2="557.0873" y1="562.4113" y2="559.7795"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
354 <line fill="none" id="t1 p234" stroke="#7A7A7A" stroke-width="1" x1="557.0873" x2="557.5263" y1="559.7795" y2="555.5347"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
355 <line fill="none" id="t1 p235" stroke="#7A7A7A" stroke-width="1" x1="557.5263" x2="557.2043" y1="555.5347" y2="555.3649"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
356 <line fill="none" id="t1 p236" stroke="#7A7A7A" stroke-width="1" x1="557.2043" x2="553.6334" y1="555.3649" y2="555.6621"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
357 <line fill="none" id="t1 p237" stroke="#7A7A7A" stroke-width="1" x1="553.6334" x2="551.6723" y1="555.6621" y2="555.7470"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
358 <line fill="none" id="t1 p238" stroke="#7A7A7A" stroke-width="1" x1="551.6723" x2="547.3695" y1="555.7470" y2="552.4784"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
359 <line fill="none" id="t1 p239" stroke="#7A7A7A" stroke-width="1" x1="547.3695" x2="547.3695" y1="552.4784" y2="549.8891"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
360 <line fill="none" id="t1 p240" stroke="#7A7A7A" stroke-width="1" x1="547.3695" x2="547.1646" y1="549.8891" y2="548.9552"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
361 <line fill="none" id="t1 p241" stroke="#7A7A7A" stroke-width="1" x1="547.1646" x2="548.0720" y1="548.9552" y2="548.0214"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
362 <line fill="none" id="t1 p242" stroke="#7A7A7A" stroke-width="1" x1="548.0720" x2="548.0720" y1="548.0214" y2="548.1912"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
363 <line fill="none" id="t1 p243" stroke="#7A7A7A" stroke-width="1" x1="548.0720" x2="549.0087" y1="548.1912" y2="549.0401"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
364 <line fill="none" id="t1 p244" stroke="#7A7A7A" stroke-width="1" x1="549.0087" x2="549.7990" y1="549.0401" y2="550.9078"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
365 <line fill="none" id="t1 p245" stroke="#7A7A7A" stroke-width="1" x1="549.7990" x2="552.0528" y1="550.9078" y2="553.4547"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
366 <line fill="none" id="t1 p246" stroke="#7A7A7A" stroke-width="1" x1="552.0528" x2="553.1065" y1="553.4547" y2="552.9454"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
367 <line fill="none" id="t1 p247" stroke="#7A7A7A" stroke-width="1" x1="553.1065" x2="553.5748" y1="552.9454" y2="552.0964"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
368 <line fill="none" id="t1 p248" stroke="#7A7A7A" stroke-width="1" x1="553.5748" x2="554.1017" y1="552.0964" y2="549.4222"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
369 <line fill="none" id="t1 p249" stroke="#7A7A7A" stroke-width="1" x1="554.1017" x2="551.6137" y1="549.4222" y2="548.7430"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
370 <line fill="none" id="t1 p250" stroke="#7A7A7A" stroke-width="1" x1="551.6137" x2="549.4770" y1="548.7430" y2="547.2148"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
371 <line fill="none" id="t1 p251" stroke="#7A7A7A" stroke-width="1" x1="549.4770" x2="547.3695" y1="547.2148" y2="544.5830"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
372 <line fill="none" id="t1 p252" stroke="#7A7A7A" stroke-width="1" x1="547.3695" x2="548.0135" y1="544.5830" y2="544.0312"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
373 <line fill="none" id="t1 p253" stroke="#7A7A7A" stroke-width="1" x1="548.0135" x2="548.9209" y1="544.0312" y2="545.0075"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
374 <line fill="none" id="t1 p254" stroke="#7A7A7A" stroke-width="1" x1="548.9209" x2="550.8820" y1="545.0075" y2="543.6916"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
375 <line fill="none" id="t1 p255" stroke="#7A7A7A" stroke-width="1" x1="550.8820" x2="550.9698" y1="543.6916" y2="542.8851"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
376 <line fill="none" id="t1 p256" stroke="#7A7A7A" stroke-width="1" x1="550.9698" x2="551.0576" y1="542.8851" y2="541.7390"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
377 <line fill="none" id="t1 p257" stroke="#7A7A7A" stroke-width="1" x1="551.0576" x2="550.0624" y1="541.7390" y2="539.5741"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
378 <line fill="none" id="t1 p258" stroke="#7A7A7A" stroke-width="1" x1="550.0624" x2="548.3940" y1="539.5741" y2="540.7627"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
379 <line fill="none" id="t1 p259" stroke="#7A7A7A" stroke-width="1" x1="548.3940" x2="546.6085" y1="540.7627" y2="541.7390"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
380 <line fill="none" id="t1 p260" stroke="#7A7A7A" stroke-width="1" x1="546.6085" x2="545.3499" y1="541.7390" y2="541.1023"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
381 <line fill="none" id="t1 p261" stroke="#7A7A7A" stroke-width="1" x1="545.3499" x2="541.1935" y1="541.1023" y2="539.4893"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
382 <line fill="none" id="t1 p262" stroke="#7A7A7A" stroke-width="1" x1="541.1935" x2="539.4958" y1="539.4893" y2="536.9424"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
383 <line fill="none" id="t1 p263" stroke="#7A7A7A" stroke-width="1" x1="539.4958" x2="540.0812" y1="536.9424" y2="536.0085"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
384 <line fill="none" id="t1 p264" stroke="#7A7A7A" stroke-width="1" x1="540.0812" x2="540.5203" y1="536.0085" y2="534.9473"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
385 <line fill="none" id="t1 p265" stroke="#7A7A7A" stroke-width="1" x1="540.5203" x2="541.3984" y1="534.9473" y2="531.9759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
386 <line fill="none" id="t1 p266" stroke="#7A7A7A" stroke-width="1" x1="541.3984" x2="542.0423" y1="531.9759" y2="528.7498"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
387 <line fill="none" id="t1 p267" stroke="#7A7A7A" stroke-width="1" x1="542.0423" x2="541.9545" y1="528.7498" y2="527.6886"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
388 <line fill="none" id="t1 p268" stroke="#7A7A7A" stroke-width="1" x1="541.9545" x2="540.6959" y1="527.6886" y2="523.7834"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
389 <line fill="none" id="t1 p269" stroke="#7A7A7A" stroke-width="1" x1="540.6959" x2="538.6177" y1="523.7834" y2="523.2740"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
390 <line fill="none" id="t1 p270" stroke="#7A7A7A" stroke-width="1" x1="538.6177" x2="538.5592" y1="523.2740" y2="524.6323"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
391 <line fill="none" id="t1 p271" stroke="#7A7A7A" stroke-width="1" x1="538.5592" x2="540.1105" y1="524.6323" y2="529.3441"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
392 <line fill="none" id="t1 p272" stroke="#7A7A7A" stroke-width="1" x1="540.1105" x2="537.8274" y1="529.3441" y2="528.0282"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
393 <line fill="none" id="t1 p273" stroke="#7A7A7A" stroke-width="1" x1="537.8274" x2="536.3932" y1="528.0282" y2="524.3777"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
394 <line fill="none" id="t1 p274" stroke="#7A7A7A" stroke-width="1" x1="536.3932" x2="535.6614" y1="524.3777" y2="520.0479"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
395 <line fill="none" id="t1 p275" stroke="#7A7A7A" stroke-width="1" x1="535.6614" x2="534.4321" y1="520.0479" y2="518.6047"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
396 <line fill="none" id="t1 p276" stroke="#7A7A7A" stroke-width="1" x1="534.4321" x2="533.8467" y1="518.6047" y2="516.5672"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
397 <line fill="none" id="t1 p277" stroke="#7A7A7A" stroke-width="1" x1="533.8467" x2="534.0516" y1="516.5672" y2="515.9729"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
398 <line fill="none" id="t1 p278" stroke="#7A7A7A" stroke-width="1" x1="534.0516" x2="534.1394" y1="515.9729" y2="512.1950"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
399 <line fill="none" id="t1 p279" stroke="#7A7A7A" stroke-width="1" x1="534.1394" x2="530.6562" y1="512.1950" y2="509.5632"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
400 <line fill="none" id="t1 p280" stroke="#7A7A7A" stroke-width="1" x1="530.6562" x2="529.5147" y1="509.5632" y2="511.2187"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
401 <line fill="none" id="t1 p281" stroke="#7A7A7A" stroke-width="1" x1="529.5147" x2="526.9681" y1="511.2187" y2="512.7044"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
402 <line fill="none" id="t1 p282" stroke="#7A7A7A" stroke-width="1" x1="526.9681" x2="523.8362" y1="512.7044" y2="509.9028"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
403 <line fill="none" id="t1 p283" stroke="#7A7A7A" stroke-width="1" x1="523.8362" x2="523.7191" y1="509.9028" y2="507.4832"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
404 <line fill="none" id="t1 p284" stroke="#7A7A7A" stroke-width="1" x1="523.7191" x2="523.9533" y1="507.4832" y2="505.9975"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
405 <line fill="none" id="t1 p285" stroke="#7A7A7A" stroke-width="1" x1="523.9533" x2="523.7191" y1="505.9975" y2="505.7004"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
406 <line fill="none" id="t1 p286" stroke="#7A7A7A" stroke-width="1" x1="523.7191" x2="523.7191" y1="505.7004" y2="504.5967"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
407 <line fill="none" id="t1 p287" stroke="#7A7A7A" stroke-width="1" x1="523.7191" x2="523.5435" y1="504.5967" y2="504.4269"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
408 <line fill="none" id="t1 p288" stroke="#7A7A7A" stroke-width="1" x1="523.5435" x2="521.5531" y1="504.4269" y2="501.4980"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
409 <line fill="none" id="t1 p289" stroke="#7A7A7A" stroke-width="1" x1="521.5531" x2="519.2701" y1="501.4980" y2="499.3756"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
410 <line fill="none" id="t1 p290" stroke="#7A7A7A" stroke-width="1" x1="519.2701" x2="519.0944" y1="499.3756" y2="498.9087"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
411 <line fill="none" id="t1 p291" stroke="#7A7A7A" stroke-width="1" x1="519.0944" x2="519.5042" y1="498.9087" y2="496.7863"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
412 <line fill="none" id="t1 p292" stroke="#7A7A7A" stroke-width="1" x1="519.5042" x2="519.5335" y1="496.7863" y2="496.4467"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
413 <line fill="none" id="t1 p293" stroke="#7A7A7A" stroke-width="1" x1="519.5335" x2="520.2360" y1="496.4467" y2="493.9847"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
414 <line fill="none" id="t1 p294" stroke="#7A7A7A" stroke-width="1" x1="520.2360" x2="520.5287" y1="493.9847" y2="492.6263"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
415 <line fill="none" id="t1 p295" stroke="#7A7A7A" stroke-width="1" x1="520.5287" x2="521.7288" y1="492.6263" y2="491.9047"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
416 <line fill="none" id="t1 p296" stroke="#7A7A7A" stroke-width="1" x1="521.7288" x2="522.2264" y1="491.9047" y2="493.3904"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
417 <line fill="none" id="t1 p297" stroke="#7A7A7A" stroke-width="1" x1="522.2264" x2="519.2701" y1="493.3904" y2="494.6214"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
418 <line fill="none" id="t1 p298" stroke="#7A7A7A" stroke-width="1" x1="519.2701" x2="519.0359" y1="494.6214" y2="495.9797"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
419 <line fill="none" id="t1 p299" stroke="#7A7A7A" stroke-width="1" x1="519.0359" x2="513.5038" y1="495.9797" y2="495.8524"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
420 <line fill="none" id="t1 p300" stroke="#7A7A7A" stroke-width="1" x1="513.5038" x2="510.1085" y1="495.8524" y2="495.2157"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
421 <line fill="none" id="t1 p301" stroke="#7A7A7A" stroke-width="1" x1="510.1085" x2="502.3226" y1="495.2157" y2="495.0883"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
422 <line fill="none" id="t1 p302" stroke="#7A7A7A" stroke-width="1" x1="502.3226" x2="492.7512" y1="495.0883" y2="497.3805"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
423 <line fill="none" id="t1 p303" stroke="#7A7A7A" stroke-width="1" x1="492.7512" x2="489.9120" y1="497.3805" y2="500.5642"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
424 <line fill="none" id="t1 p304" stroke="#7A7A7A" stroke-width="1" x1="489.9120" x2="490.6730" y1="500.5642" y2="503.7478"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
425 <line fill="none" id="t1 p305" stroke="#7A7A7A" stroke-width="1" x1="490.6730" x2="494.9757" y1="503.7478" y2="510.9215"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
426 <line fill="none" id="t1 p306" stroke="#7A7A7A" stroke-width="1" x1="494.9757" x2="496.9368" y1="510.9215" y2="515.0815"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
427 <line fill="none" id="t1 p307" stroke="#7A7A7A" stroke-width="1" x1="496.9368" x2="496.6149" y1="515.0815" y2="523.4013"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
428 <line fill="none" id="t1 p308" stroke="#7A7A7A" stroke-width="1" x1="496.6149" x2="495.2684" y1="523.4013" y2="526.9246"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
429 <line fill="none" id="t1 p309" stroke="#7A7A7A" stroke-width="1" x1="495.2684" x2="489.3266" y1="526.9246" y2="528.3253"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
430 <line fill="none" id="t1 p310" stroke="#7A7A7A" stroke-width="1" x1="489.3266" x2="485.7556" y1="528.3253" y2="530.2780"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
431 <line fill="none" id="t1 p311" stroke="#7A7A7A" stroke-width="1" x1="485.7556" x2="484.0286" y1="530.2780" y2="530.2780"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
432 <line fill="none" id="t1 p312" stroke="#7A7A7A" stroke-width="1" x1="484.0286" x2="482.8286" y1="530.2780" y2="531.9335"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
433 <line fill="none" id="t1 p313" stroke="#7A7A7A" stroke-width="1" x1="482.8286" x2="481.7456" y1="531.9335" y2="534.2681"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
434 <line fill="none" id="t1 p314" stroke="#7A7A7A" stroke-width="1" x1="481.7456" x2="481.1309" y1="534.2681" y2="535.1171"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
435 <line fill="none" id="t1 p315" stroke="#7A7A7A" stroke-width="1" x1="481.1309" x2="479.9601" y1="535.1171" y2="535.5416"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
436 <line fill="none" id="t1 p316" stroke="#7A7A7A" stroke-width="1" x1="479.9601" x2="478.5258" y1="535.5416" y2="538.0460"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
437 <line fill="none" id="t1 p317" stroke="#7A7A7A" stroke-width="1" x1="478.5258" x2="477.0330" y1="538.0460" y2="539.0648"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
438 <line fill="none" id="t1 p318" stroke="#7A7A7A" stroke-width="1" x1="477.0330" x2="474.5451" y1="539.0648" y2="539.1072"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
439 <line fill="none" id="t1 p319" stroke="#7A7A7A" stroke-width="1" x1="474.5451" x2="475.6281" y1="539.1072" y2="536.6028"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
440 <line fill="none" id="t1 p320" stroke="#7A7A7A" stroke-width="1" x1="475.6281" x2="477.4428" y1="536.6028" y2="534.2257"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
441 <line fill="none" id="t1 p321" stroke="#7A7A7A" stroke-width="1" x1="477.4428" x2="475.7744" y1="534.2257" y2="530.9147"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
442 <line fill="none" id="t1 p322" stroke="#7A7A7A" stroke-width="1" x1="475.7744" x2="477.2087" y1="530.9147" y2="527.2217"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
443 <line fill="none" id="t1 p323" stroke="#7A7A7A" stroke-width="1" x1="477.2087" x2="481.1309" y1="527.2217" y2="526.2029"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
444 <line fill="none" id="t1 p324" stroke="#7A7A7A" stroke-width="1" x1="481.1309" x2="482.0675" y1="526.2029" y2="524.5474"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
445 <line fill="none" id="t1 p325" stroke="#7A7A7A" stroke-width="1" x1="482.0675" x2="481.5699" y1="524.5474" y2="523.8258"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
446 <line fill="none" id="t1 p326" stroke="#7A7A7A" stroke-width="1" x1="481.5699" x2="480.1357" y1="523.8258" y2="523.0193"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
447 <line fill="none" id="t1 p327" stroke="#7A7A7A" stroke-width="1" x1="480.1357" x2="479.6088" y1="523.0193" y2="522.9344"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
448 <line fill="none" id="t1 p328" stroke="#7A7A7A" stroke-width="1" x1="479.6088" x2="476.5354" y1="522.9344" y2="519.6234"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
449 <line fill="none" id="t1 p329" stroke="#7A7A7A" stroke-width="1" x1="476.5354" x2="472.8474" y1="519.6234" y2="516.1427"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
450 <line fill="none" id="t1 p330" stroke="#7A7A7A" stroke-width="1" x1="472.8474" x2="469.3935" y1="516.1427" y2="514.7843"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
451 <line fill="none" id="t1 p331" stroke="#7A7A7A" stroke-width="1" x1="469.3935" x2="465.1200" y1="514.7843" y2="512.2374"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
452 <line fill="none" id="t1 p332" stroke="#7A7A7A" stroke-width="1" x1="465.1200" x2="462.3394" y1="512.2374" y2="510.9640"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
453 <line fill="none" id="t1 p333" stroke="#7A7A7A" stroke-width="1" x1="462.3394" x2="461.8710" y1="510.9640" y2="510.2424"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
454 <line fill="none" id="t1 p334" stroke="#7A7A7A" stroke-width="1" x1="461.8710" x2="460.0270" y1="510.2424" y2="507.1012"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
455 <line fill="none" id="t1 p335" stroke="#7A7A7A" stroke-width="1" x1="460.0270" x2="458.2415" y1="507.1012" y2="506.8465"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
456 <line fill="none" id="t1 p336" stroke="#7A7A7A" stroke-width="1" x1="458.2415" x2="458.0366" y1="506.8465" y2="507.2710"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
457 <line fill="none" id="t1 p337" stroke="#7A7A7A" stroke-width="1" x1="458.0366" x2="458.8562" y1="507.2710" y2="509.5207"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
458 <line fill="none" id="t1 p338" stroke="#7A7A7A" stroke-width="1" x1="458.8562" x2="459.2952" y1="509.5207" y2="510.8366"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
459 <line fill="none" id="t1 p339" stroke="#7A7A7A" stroke-width="1" x1="459.2952" x2="456.6902" y1="510.8366" y2="513.7231"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
460 <line fill="none" id="t1 p340" stroke="#7A7A7A" stroke-width="1" x1="456.6902" x2="455.8414" y1="513.7231" y2="514.1052"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
461 <line fill="none" id="t1 p341" stroke="#7A7A7A" stroke-width="1" x1="455.8414" x2="455.0218" y1="514.1052" y2="514.2325"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
462 <line fill="none" id="t1 p342" stroke="#7A7A7A" stroke-width="1" x1="455.0218" x2="453.5290" y1="514.2325" y2="513.8505"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
463 <line fill="none" id="t1 p343" stroke="#7A7A7A" stroke-width="1" x1="453.5290" x2="452.5631" y1="513.8505" y2="513.0015"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
464 <line fill="none" id="t1 p344" stroke="#7A7A7A" stroke-width="1" x1="452.5631" x2="450.2507" y1="513.0015" y2="508.5444"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
465 <line fill="none" id="t1 p345" stroke="#7A7A7A" stroke-width="1" x1="450.2507" x2="449.1677" y1="508.5444" y2="505.4033"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
466 <line fill="none" id="t1 p346" stroke="#7A7A7A" stroke-width="1" x1="449.1677" x2="448.2603" y1="505.4033" y2="504.4269"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
467 <line fill="none" id="t1 p347" stroke="#7A7A7A" stroke-width="1" x1="448.2603" x2="446.8261" y1="504.4269" y2="503.3233"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
468 <line fill="none" id="t1 p348" stroke="#7A7A7A" stroke-width="1" x1="446.8261" x2="445.8016" y1="503.3233" y2="503.7053"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
469 <line fill="none" id="t1 p349" stroke="#7A7A7A" stroke-width="1" x1="445.8016" x2="445.5382" y1="503.7053" y2="507.0587"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
470 <line fill="none" id="t1 p350" stroke="#7A7A7A" stroke-width="1" x1="445.5382" x2="445.4211" y1="507.0587" y2="508.5869"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
471 <line fill="none" id="t1 p351" stroke="#7A7A7A" stroke-width="1" x1="445.4211" x2="445.8895" y1="508.5869" y2="510.1999"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
472 <line fill="none" id="t1 p352" stroke="#7A7A7A" stroke-width="1" x1="445.8895" x2="446.7968" y1="510.1999" y2="513.1713"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
473 <line fill="none" id="t1 p353" stroke="#7A7A7A" stroke-width="1" x1="446.7968" x2="446.5919" y1="513.1713" y2="513.8929"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
474 <line fill="none" id="t1 p354" stroke="#7A7A7A" stroke-width="1" x1="446.5919" x2="444.8943" y1="513.8929" y2="519.1565"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
475 <line fill="none" id="t1 p355" stroke="#7A7A7A" stroke-width="1" x1="444.8943" x2="443.2551" y1="519.1565" y2="521.4912"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
476 <line fill="none" id="t1 p356" stroke="#7A7A7A" stroke-width="1" x1="443.2551" x2="441.2355" y1="521.4912" y2="525.2691"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
477 <line fill="none" id="t1 p357" stroke="#7A7A7A" stroke-width="1" x1="441.2355" x2="436.8157" y1="525.2691" y2="524.4625"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
478 <line fill="none" id="t1 p358" stroke="#7A7A7A" stroke-width="1" x1="436.8157" x2="433.6252" y1="524.4625" y2="521.7459"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
479 <line fill="none" id="t1 p359" stroke="#7A7A7A" stroke-width="1" x1="433.6252" x2="432.5715" y1="521.7459" y2="521.8308"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
480 <line fill="none" id="t1 p360" stroke="#7A7A7A" stroke-width="1" x1="432.5715" x2="430.7860" y1="521.8308" y2="522.4250"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
481 <line fill="none" id="t1 p361" stroke="#7A7A7A" stroke-width="1" x1="430.7860" x2="430.2591" y1="522.4250" y2="524.2928"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
482 <line fill="none" id="t1 p362" stroke="#7A7A7A" stroke-width="1" x1="430.2591" x2="431.8104" y1="524.2928" y2="528.2404"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
483 <line fill="none" id="t1 p363" stroke="#7A7A7A" stroke-width="1" x1="431.8104" x2="433.7423" y1="528.2404" y2="529.9808"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
484 <line fill="none" id="t1 p364" stroke="#7A7A7A" stroke-width="1" x1="433.7423" x2="439.3915" y1="529.9808" y2="533.5040"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
485 <line fill="none" id="t1 p365" stroke="#7A7A7A" stroke-width="1" x1="439.3915" x2="445.0992" y1="533.5040" y2="535.8811"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
486 <line fill="none" id="t1 p366" stroke="#7A7A7A" stroke-width="1" x1="445.0992" x2="446.0943" y1="535.8811" y2="536.1358"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
487 <line fill="none" id="t1 p367" stroke="#7A7A7A" stroke-width="1" x1="446.0943" x2="450.8361" y1="536.1358" y2="535.2020"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
488 <line fill="none" id="t1 p368" stroke="#7A7A7A" stroke-width="1" x1="450.8361" x2="454.1729" y1="535.2020" y2="534.6077"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
489 <line fill="none" id="t1 p369" stroke="#7A7A7A" stroke-width="1" x1="454.1729" x2="455.8121" y1="534.6077" y2="533.7587"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
490 <line fill="none" id="t1 p370" stroke="#7A7A7A" stroke-width="1" x1="455.8121" x2="456.4853" y1="533.7587" y2="532.6975"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
491 <line fill="none" id="t1 p371" stroke="#7A7A7A" stroke-width="1" x1="456.4853" x2="459.5294" y1="532.6975" y2="534.0983"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
492 <line fill="none" id="t1 p372" stroke="#7A7A7A" stroke-width="1" x1="459.5294" x2="463.0418" y1="534.0983" y2="536.6028"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
493 <line fill="none" id="t1 p373" stroke="#7A7A7A" stroke-width="1" x1="463.0418" x2="466.4079" y1="536.6028" y2="538.8101"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
494 <line fill="none" id="t1 p374" stroke="#7A7A7A" stroke-width="1" x1="466.4079" x2="468.6910" y1="538.8101" y2="540.2958"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
495 <line fill="none" id="t1 p375" stroke="#7A7A7A" stroke-width="1" x1="468.6910" x2="468.9252" y1="540.2958" y2="540.8051"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
496 <line fill="none" id="t1 p376" stroke="#7A7A7A" stroke-width="1" x1="468.9252" x2="466.2323" y1="540.8051" y2="543.9888"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
497 <line fill="none" id="t1 p377" stroke="#7A7A7A" stroke-width="1" x1="466.2323" x2="465.2957" y1="543.9888" y2="544.5830"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
498 <line fill="none" id="t1 p378" stroke="#7A7A7A" stroke-width="1" x1="465.2957" x2="458.0659" y1="544.5830" y2="548.8279"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
499 <line fill="none" id="t1 p379" stroke="#7A7A7A" stroke-width="1" x1="458.0659" x2="456.7487" y1="548.8279" y2="549.3373"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
500 <line fill="none" id="t1 p380" stroke="#7A7A7A" stroke-width="1" x1="456.7487" x2="454.3778" y1="549.3373" y2="554.0915"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
501 <line fill="none" id="t1 p381" stroke="#7A7A7A" stroke-width="1" x1="454.3778" x2="456.1926" y1="554.0915" y2="555.9592"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
502 <line fill="none" id="t1 p382" stroke="#7A7A7A" stroke-width="1" x1="456.1926" x2="458.0952" y1="555.9592" y2="557.6996"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
503 <line fill="none" id="t1 p383" stroke="#7A7A7A" stroke-width="1" x1="458.0952" x2="463.6565" y1="557.6996" y2="558.4636"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
504 <line fill="none" id="t1 p384" stroke="#7A7A7A" stroke-width="1" x1="463.6565" x2="468.3105" y1="558.4636" y2="557.4873"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
505 <line fill="none" id="t1 p385" stroke="#7A7A7A" stroke-width="1" x1="468.3105" x2="471.3546" y1="557.4873" y2="558.6759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
506 <line fill="none" id="t1 p386" stroke="#7A7A7A" stroke-width="1" x1="471.3546" x2="472.4961" y1="558.6759" y2="559.5673"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
507 <line fill="none" id="t1 p387" stroke="#7A7A7A" stroke-width="1" x1="472.4961" x2="474.6621" y1="559.5673" y2="560.4163"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
508 <line fill="none" id="t1 p388" stroke="#7A7A7A" stroke-width="1" x1="474.6621" x2="481.2187" y1="560.4163" y2="560.3314"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
509 <line fill="none" id="t1 p389" stroke="#7A7A7A" stroke-width="1" x1="481.2187" x2="482.6237" y1="560.3314" y2="560.2889"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
510 <line fill="none" id="t1 p390" stroke="#7A7A7A" stroke-width="1" x1="482.6237" x2="485.6092" y1="560.2889" y2="563.2179"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
511 <line fill="none" id="t1 p391" stroke="#7A7A7A" stroke-width="1" x1="485.6092" x2="484.9360" y1="563.2179" y2="565.1280"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
512 <line fill="none" id="t1 p392" stroke="#7A7A7A" stroke-width="1" x1="484.9360" x2="484.2628" y1="565.1280" y2="566.1468"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
513 <line fill="none" id="t1 p393" stroke="#7A7A7A" stroke-width="1" x1="484.2628" x2="484.0872" y1="566.1468" y2="566.6137"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
514 <line fill="none" id="t1 p394" stroke="#7A7A7A" stroke-width="1" x1="484.0872" x2="486.0190" y1="566.6137" y2="569.3729"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
515 <line fill="none" id="t1 p395" stroke="#7A7A7A" stroke-width="1" x1="486.0190" x2="489.9412" y1="569.3729" y2="570.6039"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
516 <line fill="none" id="t1 p396" stroke="#7A7A7A" stroke-width="1" x1="489.9412" x2="495.9416" y1="570.6039" y2="567.2080"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
517 <line fill="none" id="t1 p397" stroke="#7A7A7A" stroke-width="1" x1="495.9416" x2="496.4100" y1="567.2080" y2="562.2840"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
518 <line fill="none" id="t1 p398" stroke="#7A7A7A" stroke-width="1" x1="496.4100" x2="495.4148" y1="562.2840" y2="561.2228"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
519 <line fill="none" id="t1 p399" stroke="#7A7A7A" stroke-width="1" x1="495.4148" x2="491.1999" y1="561.2228" y2="555.7470"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
520 <line fill="none" id="t1 p400" stroke="#7A7A7A" stroke-width="1" x1="491.1999" x2="490.7023" y1="555.7470" y2="554.6433"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
521 <line fill="none" id="t1 p401" stroke="#7A7A7A" stroke-width="1" x1="490.7023" x2="492.0487" y1="554.6433" y2="550.8654"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
522 <line fill="none" id="t1 p402" stroke="#7A7A7A" stroke-width="1" x1="492.0487" x2="494.0976" y1="550.8654" y2="548.7854"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
523 <line fill="none" id="t1 p403" stroke="#7A7A7A" stroke-width="1" x1="494.0976" x2="498.9858" y1="548.7854" y2="544.9651"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
524 <line fill="none" id="t1 p404" stroke="#7A7A7A" stroke-width="1" x1="498.9858" x2="499.4248" y1="544.9651" y2="540.9749"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
525 <line fill="none" id="t1 p405" stroke="#7A7A7A" stroke-width="1" x1="499.4248" x2="502.8202" y1="540.9749" y2="540.5080"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
526 <line fill="none" id="t1 p406" stroke="#7A7A7A" stroke-width="1" x1="502.8202" x2="504.1959" y1="540.5080" y2="541.0174"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
527 <line fill="none" id="t1 p407" stroke="#7A7A7A" stroke-width="1" x1="504.1959" x2="510.1085" y1="541.0174" y2="541.4843"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
528 <line fill="none" id="t1 p408" stroke="#7A7A7A" stroke-width="1" x1="510.1085" x2="514.2648" y1="541.4843" y2="534.2681"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
529 <line fill="none" id="t1 p409" stroke="#7A7A7A" stroke-width="1" x1="514.2648" x2="513.7087" y1="534.2681" y2="530.2780"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
530 <line fill="none" id="t1 p410" stroke="#7A7A7A" stroke-width="1" x1="513.7087" x2="513.2111" y1="530.2780" y2="529.1319"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
531 <line fill="none" id="t1 p411" stroke="#7A7A7A" stroke-width="1" x1="513.2111" x2="512.3037" y1="529.1319" y2="526.3303"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
532 <line fill="none" id="t1 p412" stroke="#7A7A7A" stroke-width="1" x1="512.3037" x2="507.3571" y1="526.3303" y2="524.8870"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
533 <line fill="none" id="t1 p413" stroke="#7A7A7A" stroke-width="1" x1="507.3571" x2="504.5471" y1="524.8870" y2="522.5948"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
534 <line fill="none" id="t1 p414" stroke="#7A7A7A" stroke-width="1" x1="504.5471" x2="505.5423" y1="522.5948" y2="519.4961"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
535 <line fill="none" id="t1 p415" stroke="#7A7A7A" stroke-width="1" x1="505.5423" x2="509.0255" y1="519.4961" y2="517.9680"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
536 <line fill="none" id="t1 p416" stroke="#7A7A7A" stroke-width="1" x1="509.0255" x2="510.4304" y1="517.9680" y2="517.2463"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
537 <line fill="none" id="t1 p417" stroke="#7A7A7A" stroke-width="1" x1="510.4304" x2="511.3964" y1="517.2463" y2="516.9492"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
538 <line fill="none" id="t1 p418" stroke="#7A7A7A" stroke-width="1" x1="511.3964" x2="513.5038" y1="516.9492" y2="518.6471"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
539 <line fill="none" id="t1 p419" stroke="#7A7A7A" stroke-width="1" x1="513.5038" x2="516.0503" y1="518.6471" y2="520.2602"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
540 <line fill="none" id="t1 p420" stroke="#7A7A7A" stroke-width="1" x1="516.0503" x2="516.6943" y1="520.2602" y2="520.7695"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
541 <line fill="none" id="t1 p421" stroke="#7A7A7A" stroke-width="1" x1="516.6943" x2="518.0700" y1="520.7695" y2="521.4063"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
542 <line fill="none" id="t1 p422" stroke="#7A7A7A" stroke-width="1" x1="518.0700" x2="519.0652" y1="521.4063" y2="522.5524"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
543 <line fill="none" id="t1 p423" stroke="#7A7A7A" stroke-width="1" x1="519.0652" x2="520.9677" y1="522.5524" y2="526.7548"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
544 <line fill="none" id="t1 p424" stroke="#7A7A7A" stroke-width="1" x1="520.9677" x2="524.5094" y1="526.7548" y2="531.4241"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
545 <line fill="none" id="t1 p425" stroke="#7A7A7A" stroke-width="1" x1="524.5094" x2="524.6265" y1="531.4241" y2="533.6314"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
546 <line fill="none" id="t1 p426" stroke="#7A7A7A" stroke-width="1" x1="524.6265" x2="526.0608" y1="533.6314" y2="536.2207"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
547 <line fill="none" id="t1 p427" stroke="#7A7A7A" stroke-width="1" x1="526.0608" x2="526.2364" y1="536.2207" y2="538.5554"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
548 <line fill="none" id="t1 p428" stroke="#7A7A7A" stroke-width="1" x1="526.2364" x2="526.2071" y1="538.5554" y2="539.7439"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
549 <line fill="none" id="t1 p429" stroke="#7A7A7A" stroke-width="1" x1="526.2071" x2="525.6510" y1="539.7439" y2="540.5929"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
550 <line fill="none" id="t1 p430" stroke="#7A7A7A" stroke-width="1" x1="525.6510" x2="523.5142" y1="540.5929" y2="544.9651"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
551 <line fill="none" id="t1 p431" stroke="#7A7A7A" stroke-width="1" x1="523.5142" x2="523.1630" y1="544.9651" y2="546.1112"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
552 <line fill="none" id="t1 p432" stroke="#7A7A7A" stroke-width="1" x1="523.1630" x2="523.2508" y1="546.1112" y2="546.9602"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
553 <line fill="none" id="t1 p433" stroke="#7A7A7A" stroke-width="1" x1="523.2508" x2="525.3290" y1="546.9602" y2="549.3797"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
554 <line fill="none" id="t1 p434" stroke="#7A7A7A" stroke-width="1" x1="525.3290" x2="526.2657" y1="549.3797" y2="550.4409"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
555 <line fill="none" id="t1 p435" stroke="#7A7A7A" stroke-width="1" x1="526.2657" x2="527.5243" y1="550.4409" y2="552.9878"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
556 <line fill="none" id="t1 p436" stroke="#7A7A7A" stroke-width="1" x1="527.5243" x2="531.7685" y1="552.9878" y2="555.4074"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
557 <line fill="none" id="t1 p437" stroke="#7A7A7A" stroke-width="1" x1="531.7685" x2="532.8222" y1="555.4074" y2="561.0530"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
558 <line fill="none" id="t1 p438" stroke="#7A7A7A" stroke-width="1" x1="532.8222" x2="533.3491" y1="561.0530" y2="561.9869"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
559 <line fill="none" id="t1 p439" stroke="#7A7A7A" stroke-width="1" x1="533.3491" x2="533.9052" y1="561.9869" y2="565.5101"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
560 <line fill="none" id="t1 p440" stroke="#7A7A7A" stroke-width="1" x1="533.9052" x2="533.5540" y1="565.5101" y2="566.1468"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
561 <line fill="none" id="t1 p441" stroke="#7A7A7A" stroke-width="1" x1="533.5540" x2="533.3491" y1="566.1468" y2="566.4015"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
562 <line fill="none" id="t1 p442" stroke="#7A7A7A" stroke-width="1" x1="533.3491" x2="530.9782" y1="566.4015" y2="568.8635"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
563 <line fill="none" id="t1 p443" stroke="#7A7A7A" stroke-width="1" x1="530.9782" x2="527.5535" y1="568.8635" y2="573.1932"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
564 <line fill="none" id="t1 p444" stroke="#7A7A7A" stroke-width="1" x1="527.5535" x2="526.2657" y1="573.1932" y2="574.4242"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
565 <line fill="none" id="t1 p445" stroke="#7A7A7A" stroke-width="1" x1="526.2657" x2="524.0997" y1="574.4242" y2="575.3581"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
566 <line fill="none" id="t1 p446" stroke="#7A7A7A" stroke-width="1" x1="524.0997" x2="521.1434" y1="575.3581" y2="575.1458"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
567 <line fill="none" id="t1 p447" stroke="#7A7A7A" stroke-width="1" x1="521.1434" x2="520.0311" y1="575.1458" y2="574.2969"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
568 <line fill="none" id="t1 p448" stroke="#7A7A7A" stroke-width="1" x1="520.0311" x2="519.9433" y1="574.2969" y2="568.9908"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
569 <line fill="none" id="t1 p449" stroke="#7A7A7A" stroke-width="1" x1="519.9433" x2="516.0503" y1="568.9908" y2="564.8309"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
570 <line fill="none" id="t1 p450" stroke="#7A7A7A" stroke-width="1" x1="516.0503" x2="512.0988" y1="564.8309" y2="560.2889"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
571 <line fill="none" id="t1 p451" stroke="#7A7A7A" stroke-width="1" x1="512.0988" x2="510.4012" y1="560.2889" y2="558.9306"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
572 <line fill="none" id="t1 p452" stroke="#7A7A7A" stroke-width="1" x1="510.4012" x2="506.6253" y1="558.9306" y2="560.8832"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
573 <line fill="none" id="t1 p453" stroke="#7A7A7A" stroke-width="1" x1="506.6253" x2="509.2596" y1="560.8832" y2="564.1942"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
574 <line fill="none" id="t1 p454" stroke="#7A7A7A" stroke-width="1" x1="509.2596" x2="512.3037" y1="564.1942" y2="566.2741"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
575 <line fill="none" id="t1 p455" stroke="#7A7A7A" stroke-width="1" x1="512.3037" x2="514.1478" y1="566.2741" y2="570.5190"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
576 <line fill="none" id="t1 p456" stroke="#7A7A7A" stroke-width="1" x1="514.1478" x2="511.6891" y1="570.5190" y2="572.2169"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
577 <line fill="none" id="t1 p457" stroke="#7A7A7A" stroke-width="1" x1="511.6891" x2="509.8743" y1="572.2169" y2="573.9148"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
578 <line fill="none" id="t1 p458" stroke="#7A7A7A" stroke-width="1" x1="509.8743" x2="507.8839" y1="573.9148" y2="577.1833"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
579 <line fill="none" id="t1 p459" stroke="#7A7A7A" stroke-width="1" x1="507.8839" x2="505.2496" y1="577.1833" y2="582.1498"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
580 <line fill="none" id="t1 p460" stroke="#7A7A7A" stroke-width="1" x1="505.2496" x2="505.2496" y1="582.1498" y2="583.9751"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
581 <line fill="none" id="t1 p461" stroke="#7A7A7A" stroke-width="1" x1="505.2496" x2="507.2985" y1="583.9751" y2="585.4183"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
582 <line fill="none" id="t1 p462" stroke="#7A7A7A" stroke-width="1" x1="507.2985" x2="509.2596" y1="585.4183" y2="586.9040"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
583 <line fill="none" id="t1 p463" stroke="#7A7A7A" stroke-width="1" x1="509.2596" x2="510.3719" y1="586.9040" y2="587.6256"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
584 <line fill="none" id="t1 p464" stroke="#7A7A7A" stroke-width="1" x1="510.3719" x2="510.0206" y1="587.6256" y2="587.9228"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
585 <line fill="none" id="t1 p465" stroke="#7A7A7A" stroke-width="1" x1="510.0206" x2="507.6498" y1="587.9228" y2="588.6444"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
586 <line fill="none" id="t1 p466" stroke="#7A7A7A" stroke-width="1" x1="507.6498" x2="507.0351" y1="588.6444" y2="588.1775"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
587 <line fill="none" id="t1 p467" stroke="#7A7A7A" stroke-width="1" x1="507.0351" x2="503.5812" y1="588.1775" y2="585.9277"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
588 <line fill="none" id="t1 p468" stroke="#7A7A7A" stroke-width="1" x1="503.5812" x2="502.3226" y1="585.9277" y2="585.3334"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
589 <line fill="none" id="t1 p469" stroke="#7A7A7A" stroke-width="1" x1="502.3226" x2="498.5467" y1="585.3334" y2="587.2860"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
590 <line fill="none" id="t1 p470" stroke="#7A7A7A" stroke-width="1" x1="498.5467" x2="495.1221" y1="587.2860" y2="588.2199"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
591 <line fill="none" id="t1 p471" stroke="#7A7A7A" stroke-width="1" x1="495.1221" x2="488.6533" y1="588.2199" y2="591.1064"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
592 <line fill="none" id="t1 p472" stroke="#7A7A7A" stroke-width="1" x1="488.6533" x2="485.0531" y1="591.1064" y2="593.8655"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
593 <line fill="none" id="t1 p473" stroke="#7A7A7A" stroke-width="1" x1="485.0531" x2="481.6577" y1="593.8655" y2="593.3137"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
594 <line fill="none" id="t1 p474" stroke="#7A7A7A" stroke-width="1" x1="481.6577" x2="480.1357" y1="593.3137" y2="592.1676"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
595 <line fill="none" id="t1 p475" stroke="#7A7A7A" stroke-width="1" x1="480.1357" x2="479.6381" y1="592.1676" y2="590.3423"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
596 <line fill="none" id="t1 p476" stroke="#7A7A7A" stroke-width="1" x1="479.6381" x2="479.0820" y1="590.3423" y2="586.8616"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
597 <line fill="none" id="t1 p477" stroke="#7A7A7A" stroke-width="1" x1="479.0820" x2="477.2379" y1="586.8616" y2="586.9040"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
598 <line fill="none" id="t1 p478" stroke="#7A7A7A" stroke-width="1" x1="477.2379" x2="476.4476" y1="586.9040" y2="588.0926"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
599 <line fill="none" id="t1 p479" stroke="#7A7A7A" stroke-width="1" x1="476.4476" x2="475.0719" y1="588.0926" y2="589.9178"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
600 <line fill="none" id="t1 p480" stroke="#7A7A7A" stroke-width="1" x1="475.0719" x2="471.3839" y1="589.9178" y2="589.7905"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
601 <line fill="none" id="t1 p481" stroke="#7A7A7A" stroke-width="1" x1="471.3839" x2="470.0960" y1="589.7905" y2="592.5921"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
602 <line fill="none" id="t1 p482" stroke="#7A7A7A" stroke-width="1" x1="470.0960" x2="469.9204" y1="592.5921" y2="593.6108"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
603 <line fill="none" id="t1 p483" stroke="#7A7A7A" stroke-width="1" x1="469.9204" x2="469.5398" y1="593.6108" y2="595.2239"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
604 <line fill="none" id="t1 p484" stroke="#7A7A7A" stroke-width="1" x1="469.5398" x2="467.9885" y1="595.2239" y2="595.0965"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
605 <line fill="none" id="t1 p485" stroke="#7A7A7A" stroke-width="1" x1="467.9885" x2="465.7054" y1="595.0965" y2="596.0304"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
606 <line fill="none" id="t1 p486" stroke="#7A7A7A" stroke-width="1" x1="465.7054" x2="464.3883" y1="596.0304" y2="598.1104"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
607 <line fill="none" id="t1 p487" stroke="#7A7A7A" stroke-width="1" x1="464.3883" x2="460.1734" y1="598.1104" y2="600.1479"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
608 <line fill="none" id="t1 p488" stroke="#7A7A7A" stroke-width="1" x1="460.1734" x2="456.5438" y1="600.1479" y2="599.6385"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
609 <line fill="none" id="t1 p489" stroke="#7A7A7A" stroke-width="1" x1="456.5438" x2="457.3927" y1="599.6385" y2="597.8557"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
610 <line fill="none" id="t1 p490" stroke="#7A7A7A" stroke-width="1" x1="457.3927" x2="462.3686" y1="597.8557" y2="594.9692"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
611 <line fill="none" id="t1 p491" stroke="#7A7A7A" stroke-width="1" x1="462.3686" x2="462.1052" y1="594.9692" y2="591.9554"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
612 <line fill="none" id="t1 p492" stroke="#7A7A7A" stroke-width="1" x1="462.1052" x2="463.2467" y1="591.9554" y2="589.0264"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
613 <line fill="none" id="t1 p493" stroke="#7A7A7A" stroke-width="1" x1="463.2467" x2="463.6565" y1="589.0264" y2="586.6069"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
614 <line fill="none" id="t1 p494" stroke="#7A7A7A" stroke-width="1" x1="463.6565" x2="462.4272" y1="586.6069" y2="584.5694"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
615 <line fill="none" id="t1 p495" stroke="#7A7A7A" stroke-width="1" x1="462.4272" x2="462.2515" y1="584.5694" y2="582.8290"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
616 <line fill="none" id="t1 p496" stroke="#7A7A7A" stroke-width="1" x1="462.2515" x2="464.7395" y1="582.8290" y2="581.0461"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
617 <line fill="none" id="t1 p497" stroke="#7A7A7A" stroke-width="1" x1="464.7395" x2="467.6665" y1="581.0461" y2="584.5694"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
618 <line fill="none" id="t1 p498" stroke="#7A7A7A" stroke-width="1" x1="467.6665" x2="469.1593" y1="584.5694" y2="583.8053"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
619 <line fill="none" id="t1 p499" stroke="#7A7A7A" stroke-width="1" x1="469.1593" x2="469.2471" y1="583.8053" y2="578.1172"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
620 <line fill="none" id="t1 p500" stroke="#7A7A7A" stroke-width="1" x1="469.2471" x2="469.7740" y1="578.1172" y2="574.8487"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
621 <line fill="none" id="t1 p501" stroke="#7A7A7A" stroke-width="1" x1="469.7740" x2="467.4324" y1="574.8487" y2="569.1606"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
622 <line fill="none" id="t1 p502" stroke="#7A7A7A" stroke-width="1" x1="467.4324" x2="462.9248" y1="569.1606" y2="565.4252"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
623 <line fill="none" id="t1 p503" stroke="#7A7A7A" stroke-width="1" x1="462.9248" x2="458.2122" y1="565.4252" y2="562.1566"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
624 <line fill="none" id="t1 p504" stroke="#7A7A7A" stroke-width="1" x1="458.2122" x2="453.0607" y1="562.1566" y2="558.9306"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
625 <line fill="none" id="t1 p505" stroke="#7A7A7A" stroke-width="1" x1="453.0607" x2="446.9139" y1="558.9306" y2="556.6384"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
626 <line fill="none" id="t1 p506" stroke="#7A7A7A" stroke-width="1" x1="446.9139" x2="439.9769" y1="556.6384" y2="554.4311"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
627 <line fill="none" id="t1 p507" stroke="#7A7A7A" stroke-width="1" x1="439.9769" x2="431.3421" y1="554.4311" y2="551.1625"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
628 <line fill="none" id="t1 p508" stroke="#7A7A7A" stroke-width="1" x1="431.3421" x2="430.5226" y1="551.1625" y2="551.2474"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
629 <line fill="none" id="t1 p509" stroke="#7A7A7A" stroke-width="1" x1="430.5226" x2="429.1469" y1="551.2474" y2="550.8229"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
630 <line fill="none" id="t1 p510" stroke="#7A7A7A" stroke-width="1" x1="429.1469" x2="429.1761" y1="550.8229" y2="549.9740"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
631 <line fill="none" id="t1 p511" stroke="#7A7A7A" stroke-width="1" x1="429.1761" x2="425.0490" y1="549.9740" y2="545.6443"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
632 <line fill="none" id="t1 p512" stroke="#7A7A7A" stroke-width="1" x1="425.0490" x2="420.6877" y1="545.6443" y2="541.7390"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
633 <line fill="none" id="t1 p513" stroke="#7A7A7A" stroke-width="1" x1="420.6877" x2="417.8485" y1="541.7390" y2="537.8338"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
634 <line fill="none" id="t1 p514" stroke="#7A7A7A" stroke-width="1" x1="417.8485" x2="416.0338" y1="537.8338" y2="535.8811"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
635 <line fill="none" id="t1 p515" stroke="#7A7A7A" stroke-width="1" x1="416.0338" x2="410.3553" y1="535.8811" y2="531.8486"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
636 <line fill="none" id="t1 p516" stroke="#7A7A7A" stroke-width="1" x1="410.3553" x2="406.6380" y1="531.8486" y2="530.3629"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
637 <line fill="none" id="t1 p517" stroke="#7A7A7A" stroke-width="1" x1="406.6380" x2="402.5694" y1="530.3629" y2="529.6412"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
638 <line fill="none" id="t1 p518" stroke="#7A7A7A" stroke-width="1" x1="402.5694" x2="397.8569" y1="529.6412" y2="528.0707"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
639 <line fill="none" id="t1 p519" stroke="#7A7A7A" stroke-width="1" x1="397.8569" x2="393.3786" y1="528.0707" y2="525.0144"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
640 <line fill="none" id="t1 p520" stroke="#7A7A7A" stroke-width="1" x1="393.3786" x2="392.1492" y1="525.0144" y2="524.3352"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
641 <line fill="none" id="t1 p521" stroke="#7A7A7A" stroke-width="1" x1="392.1492" x2="388.0514" y1="524.3352" y2="523.2315"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
642 <line fill="none" id="t1 p522" stroke="#7A7A7A" stroke-width="1" x1="388.0514" x2="387.3782" y1="523.2315" y2="519.5810"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
643 <line fill="none" id="t1 p523" stroke="#7A7A7A" stroke-width="1" x1="387.3782" x2="385.6512" y1="519.5810" y2="516.9916"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
644 <line fill="none" id="t1 p524" stroke="#7A7A7A" stroke-width="1" x1="385.6512" x2="386.1488" y1="516.9916" y2="515.0815"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
645 <line fill="none" id="t1 p525" stroke="#7A7A7A" stroke-width="1" x1="386.1488" x2="386.3244" y1="515.0815" y2="513.0864"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
646 <line fill="none" id="t1 p526" stroke="#7A7A7A" stroke-width="1" x1="386.3244" x2="385.9439" y1="513.0864" y2="509.8179"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
647 <line fill="none" id="t1 p527" stroke="#7A7A7A" stroke-width="1" x1="385.9439" x2="383.4852" y1="509.8179" y2="504.8514"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
648 <line fill="none" id="t1 p528" stroke="#7A7A7A" stroke-width="1" x1="383.4852" x2="382.8413" y1="504.8514" y2="503.8327"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
649 <line fill="none" id="t1 p529" stroke="#7A7A7A" stroke-width="1" x1="382.8413" x2="380.6460" y1="503.8327" y2="499.9699"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
650 <line fill="none" id="t1 p530" stroke="#7A7A7A" stroke-width="1" x1="380.6460" x2="380.8509" y1="499.9699" y2="495.1732"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
651 <line fill="none" id="t1 p531" stroke="#7A7A7A" stroke-width="1" x1="380.8509" x2="382.8705" y1="495.1732" y2="494.9185"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
652 <line fill="none" id="t1 p532" stroke="#7A7A7A" stroke-width="1" x1="382.8705" x2="387.7587" y1="494.9185" y2="495.3430"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
653 <line fill="none" id="t1 p533" stroke="#7A7A7A" stroke-width="1" x1="387.7587" x2="392.4126" y1="495.3430" y2="497.0834"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
654 <line fill="none" id="t1 p534" stroke="#7A7A7A" stroke-width="1" x1="392.4126" x2="395.6031" y1="497.0834" y2="499.4180"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
655 <line fill="none" id="t1 p535" stroke="#7A7A7A" stroke-width="1" x1="395.6031" x2="398.5594" y1="499.4180" y2="500.6915"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
656 <line fill="none" id="t1 p536" stroke="#7A7A7A" stroke-width="1" x1="398.5594" x2="399.0863" y1="500.6915" y2="501.0735"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
657 <line fill="none" id="t1 p537" stroke="#7A7A7A" stroke-width="1" x1="399.0863" x2="402.4816" y1="501.0735" y2="501.2433"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
658 <line fill="none" id="t1 p538" stroke="#7A7A7A" stroke-width="1" x1="402.4816" x2="403.2719" y1="501.2433" y2="499.5029"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
659 <line fill="none" id="t1 p539" stroke="#7A7A7A" stroke-width="1" x1="403.2719" x2="401.9548" y1="499.5029" y2="495.7675"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
660 <line fill="none" id="t1 p540" stroke="#7A7A7A" stroke-width="1" x1="401.9548" x2="400.5498" y1="495.7675" y2="493.4328"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
661 <line fill="none" id="t1 p541" stroke="#7A7A7A" stroke-width="1" x1="400.5498" x2="397.6228" y1="493.4328" y2="495.0034"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
662 <line fill="none" id="t1 p542" stroke="#7A7A7A" stroke-width="1" x1="397.6228" x2="395.4568" y1="495.0034" y2="492.7961"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
663 <line fill="none" id="t1 p543" stroke="#7A7A7A" stroke-width="1" x1="395.4568" x2="393.9932" y1="492.7961" y2="489.4427"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
664 <line fill="none" id="t1 p544" stroke="#7A7A7A" stroke-width="1" x1="393.9932" x2="391.2711" y1="489.4427" y2="486.5138"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
665 <line fill="none" id="t1 p545" stroke="#7A7A7A" stroke-width="1" x1="391.2711" x2="388.5782" y1="486.5138" y2="483.8395"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
666 <line fill="none" id="t1 p546" stroke="#7A7A7A" stroke-width="1" x1="388.5782" x2="386.1195" y1="483.8395" y2="480.8257"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
667 <line fill="none" id="t1 p547" stroke="#7A7A7A" stroke-width="1" x1="386.1195" x2="380.2069" y1="480.8257" y2="477.8119"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
668 <line fill="none" id="t1 p548" stroke="#7A7A7A" stroke-width="1" x1="380.2069" x2="378.9776" y1="477.8119" y2="477.2600"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
669 <line fill="none" id="t1 p549" stroke="#7A7A7A" stroke-width="1" x1="378.9776" x2="373.6211" y1="477.2600" y2="476.2413"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
670 <line fill="none" id="t1 p550" stroke="#7A7A7A" stroke-width="1" x1="373.6211" x2="373.9724" y1="476.2413" y2="474.2462"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
671 <line fill="none" id="t1 p551" stroke="#7A7A7A" stroke-width="1" x1="373.9724" x2="377.3092" y1="474.2462" y2="473.4821"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
672 <line fill="none" id="t1 p552" stroke="#7A7A7A" stroke-width="1" x1="377.3092" x2="378.9483" y1="473.4821" y2="472.5907"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
673 <line fill="none" id="t1 p553" stroke="#7A7A7A" stroke-width="1" x1="378.9483" x2="378.2458" y1="472.5907" y2="469.4495"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
674 <line fill="none" id="t1 p554" stroke="#7A7A7A" stroke-width="1" x1="378.2458" x2="378.1580" y1="469.4495" y2="468.2610"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
675 <line fill="none" id="t1 p555" stroke="#7A7A7A" stroke-width="1" x1="378.1580" x2="377.9531" y1="468.2610" y2="461.5966"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
676 <line fill="none" id="t1 p556" stroke="#7A7A7A" stroke-width="1" x1="377.9531" x2="377.3092" y1="461.5966" y2="455.4416"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
677 <line fill="none" id="t1 p557" stroke="#7A7A7A" stroke-width="1" x1="377.3092" x2="379.1532" y1="455.4416" y2="450.3903"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
678 <line fill="none" id="t1 p558" stroke="#7A7A7A" stroke-width="1" x1="379.1532" x2="381.6412" y1="450.3903" y2="447.5887"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
679 <line fill="none" id="t1 p559" stroke="#7A7A7A" stroke-width="1" x1="381.6412" x2="382.9291" y1="447.5887" y2="448.1405"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
680 <line fill="none" id="t1 p560" stroke="#7A7A7A" stroke-width="1" x1="382.9291" x2="383.5730" y1="448.1405" y2="452.3429"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
681 <line fill="none" id="t1 p561" stroke="#7A7A7A" stroke-width="1" x1="383.5730" x2="383.8072" y1="452.3429" y2="454.8473"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
682 <line fill="none" id="t1 p562" stroke="#7A7A7A" stroke-width="1" x1="383.8072" x2="383.5145" y1="454.8473" y2="457.1395"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
683 <line fill="none" id="t1 p563" stroke="#7A7A7A" stroke-width="1" x1="383.5145" x2="384.2170" y1="457.1395" y2="457.9460"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
684 <line fill="none" id="t1 p564" stroke="#7A7A7A" stroke-width="1" x1="384.2170" x2="391.0662" y1="457.9460" y2="462.7427"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
685 <line fill="none" id="t1 p565" stroke="#7A7A7A" stroke-width="1" x1="391.0662" x2="395.4568" y1="462.7427" y2="466.4357"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
686 <line fill="none" id="t1 p566" stroke="#7A7A7A" stroke-width="1" x1="395.4568" x2="399.4375" y1="466.4357" y2="470.8928"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
687 <line fill="none" id="t1 p567" stroke="#7A7A7A" stroke-width="1" x1="399.4375" x2="402.8329" y1="470.8928" y2="476.4111"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
688 <line fill="none" id="t1 p568" stroke="#7A7A7A" stroke-width="1" x1="402.8329" x2="409.5650" y1="476.4111" y2="479.4673"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
689 <line fill="none" id="t1 p569" stroke="#7A7A7A" stroke-width="1" x1="409.5650" x2="412.5506" y1="479.4673" y2="483.1179"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
690 <line fill="none" id="t1 p570" stroke="#7A7A7A" stroke-width="1" x1="412.5506" x2="411.3798" y1="483.1179" y2="485.6648"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
691 <line fill="none" id="t1 p571" stroke="#7A7A7A" stroke-width="1" x1="411.3798" x2="409.9748" y1="485.6648" y2="487.5325"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
692 <line fill="none" id="t1 p572" stroke="#7A7A7A" stroke-width="1" x1="409.9748" x2="408.4235" y1="487.5325" y2="489.1031"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
693 <line fill="none" id="t1 p573" stroke="#7A7A7A" stroke-width="1" x1="408.4235" x2="409.5065" y1="489.1031" y2="492.5839"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
694 <line fill="none" id="t1 p574" stroke="#7A7A7A" stroke-width="1" x1="409.5065" x2="409.0089" y1="492.5839" y2="494.8336"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
695 <line fill="none" id="t1 p575" stroke="#7A7A7A" stroke-width="1" x1="409.0089" x2="410.3846" y1="494.8336" y2="499.0360"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
696 <line fill="none" id="t1 p576" stroke="#7A7A7A" stroke-width="1" x1="410.3846" x2="412.8433" y1="499.0360" y2="502.8988"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
697 <line fill="none" id="t1 p577" stroke="#7A7A7A" stroke-width="1" x1="412.8433" x2="413.3409" y1="502.8988" y2="503.4931"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
698 <line fill="none" id="t1 p578" stroke="#7A7A7A" stroke-width="1" x1="413.3409" x2="417.9363" y1="503.4931" y2="509.8603"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
699 <line fill="none" id="t1 p579" stroke="#7A7A7A" stroke-width="1" x1="417.9363" x2="420.1316" y1="509.8603" y2="511.8979"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
700 <line fill="none" id="t1 p580" stroke="#7A7A7A" stroke-width="1" x1="420.1316" x2="427.5663" y1="511.8979" y2="512.8317"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
701 <line fill="none" id="t1 p581" stroke="#7A7A7A" stroke-width="1" x1="427.5663" x2="430.7860" y1="512.8317" y2="512.5346"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
702 <line fill="none" id="t1 p582" stroke="#7A7A7A" stroke-width="1" x1="430.7860" x2="433.9472" y1="512.5346" y2="512.2799"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
703 <line fill="none" id="t1 p583" stroke="#7A7A7A" stroke-width="1" x1="433.9472" x2="437.6352" y1="512.2799" y2="513.7231"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
704 <line fill="none" id="t1 p584" stroke="#7A7A7A" stroke-width="1" x1="437.6352" x2="442.0843" y1="513.7231" y2="512.6195"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
705 <line fill="none" id="t1 p585" stroke="#7A7A7A" stroke-width="1" x1="442.0843" x2="442.9039" y1="512.6195" y2="511.6007"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
706 <line fill="none" id="t1 p586" stroke="#7A7A7A" stroke-width="1" x1="442.9039" x2="443.4015" y1="511.6007" y2="507.8653"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
707 <line fill="none" id="t1 p587" stroke="#7A7A7A" stroke-width="1" x1="443.4015" x2="443.1380" y1="507.8653" y2="506.9738"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
708 <line fill="none" id="t1 p588" stroke="#7A7A7A" stroke-width="1" x1="443.1380" x2="441.1769" y1="506.9738" y2="505.4882"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
709 <line fill="none" id="t1 p589" stroke="#7A7A7A" stroke-width="1" x1="441.1769" x2="439.2158" y1="505.4882" y2="505.4033"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
710 <line fill="none" id="t1 p590" stroke="#7A7A7A" stroke-width="1" x1="439.2158" x2="438.1328" y1="505.4033" y2="505.4033"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
711 <line fill="none" id="t1 p591" stroke="#7A7A7A" stroke-width="1" x1="438.1328" x2="436.4059" y1="505.4033" y2="505.2759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
712 <line fill="none" id="t1 p592" stroke="#7A7A7A" stroke-width="1" x1="436.4059" x2="435.4107" y1="505.2759" y2="504.8514"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
713 <line fill="none" id="t1 p593" stroke="#7A7A7A" stroke-width="1" x1="435.4107" x2="432.1910" y1="504.8514" y2="501.2009"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
714 <line fill="none" id="t1 p594" stroke="#7A7A7A" stroke-width="1" x1="432.1910" x2="431.5763" y1="501.2009" y2="500.5642"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
715 <line fill="none" id="t1 p595" stroke="#7A7A7A" stroke-width="1" x1="431.5763" x2="431.9275" y1="500.5642" y2="498.6540"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
716 <line fill="none" id="t1 p596" stroke="#7A7A7A" stroke-width="1" x1="431.9275" x2="432.3373" y1="498.6540" y2="497.5079"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
717 <line fill="none" id="t1 p597" stroke="#7A7A7A" stroke-width="1" x1="432.3373" x2="429.7323" y1="497.5079" y2="493.7300"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
718 <line fill="none" id="t1 p598" stroke="#7A7A7A" stroke-width="1" x1="429.7323" x2="428.2102" y1="493.7300" y2="492.3716"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
719 <line fill="none" id="t1 p599" stroke="#7A7A7A" stroke-width="1" x1="428.2102" x2="427.6833" y1="492.3716" y2="491.8198"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
720 <line fill="none" id="t1 p600" stroke="#7A7A7A" stroke-width="1" x1="427.6833" x2="426.9808" y1="491.8198" y2="490.8010"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
721 <line fill="none" id="t1 p601" stroke="#7A7A7A" stroke-width="1" x1="426.9808" x2="425.4003" y1="490.8010" y2="488.9758"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
722 <line fill="none" id="t1 p602" stroke="#7A7A7A" stroke-width="1" x1="425.4003" x2="426.5125" y1="488.9758" y2="484.8158"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
723 <line fill="none" id="t1 p603" stroke="#7A7A7A" stroke-width="1" x1="426.5125" x2="427.8590" y1="484.8158" y2="484.3913"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
724 <line fill="none" id="t1 p604" stroke="#7A7A7A" stroke-width="1" x1="427.8590" x2="429.5566" y1="484.3913" y2="481.2926"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
725 <line fill="none" id="t1 p605" stroke="#7A7A7A" stroke-width="1" x1="429.5566" x2="427.9468" y1="481.2926" y2="478.5759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
726 <line fill="none" id="t1 p606" stroke="#7A7A7A" stroke-width="1" x1="427.9468" x2="426.6003" y1="478.5759" y2="475.4348"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
727 <line fill="none" id="t1 p607" stroke="#7A7A7A" stroke-width="1" x1="426.6003" x2="429.0590" y1="475.4348" y2="471.2748"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
728 <line fill="none" id="t1 p608" stroke="#7A7A7A" stroke-width="1" x1="429.0590" x2="430.5518" y1="471.2748" y2="468.5581"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
729 <line fill="none" id="t1 p609" stroke="#7A7A7A" stroke-width="1" x1="430.5518" x2="430.4347" y1="468.5581" y2="467.6667"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
730 <line fill="none" id="t1 p610" stroke="#7A7A7A" stroke-width="1" x1="430.4347" x2="429.4981" y1="467.6667" y2="465.4170"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
731 <line fill="none" id="t1 p611" stroke="#7A7A7A" stroke-width="1" x1="429.4981" x2="429.1761" y1="465.4170" y2="464.6953"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
732 <line fill="none" id="t1 p612" stroke="#7A7A7A" stroke-width="1" x1="429.1761" x2="427.7711" y1="464.6953" y2="463.0823"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
733 <line fill="none" id="t1 p613" stroke="#7A7A7A" stroke-width="1" x1="427.7711" x2="426.3954" y1="463.0823" y2="462.4031"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
734 <line fill="none" id="t1 p614" stroke="#7A7A7A" stroke-width="1" x1="426.3954" x2="425.9271" y1="462.4031" y2="461.7239"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
735 <line fill="none" id="t1 p615" stroke="#7A7A7A" stroke-width="1" x1="425.9271" x2="423.9953" y1="461.7239" y2="460.4929"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
736 <line fill="none" id="t1 p616" stroke="#7A7A7A" stroke-width="1" x1="423.9953" x2="423.7904" y1="460.4929" y2="459.7289"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
737 <line fill="none" id="t1 p617" stroke="#7A7A7A" stroke-width="1" x1="423.7904" x2="423.0294" y1="459.7289" y2="459.5166"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
738 <line fill="none" id="t1 p618" stroke="#7A7A7A" stroke-width="1" x1="423.0294" x2="421.3902" y1="459.5166" y2="458.4554"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
739 <line fill="none" id="t1 p619" stroke="#7A7A7A" stroke-width="1" x1="421.3902" x2="420.7170" y1="458.4554" y2="456.7575"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
740 <line fill="none" id="t1 p620" stroke="#7A7A7A" stroke-width="1" x1="420.7170" x2="420.4243" y1="456.7575" y2="453.7861"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
741 <line fill="none" id="t1 p621" stroke="#7A7A7A" stroke-width="1" x1="420.4243" x2="418.9901" y1="453.7861" y2="452.0033"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
742 <line fill="none" id="t1 p622" stroke="#7A7A7A" stroke-width="1" x1="418.9901" x2="416.5899" y1="452.0033" y2="449.8384"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
743 <line fill="none" id="t1 p623" stroke="#7A7A7A" stroke-width="1" x1="416.5899" x2="411.4969" y1="449.8384" y2="448.1405"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
744 <line fill="none" id="t1 p624" stroke="#7A7A7A" stroke-width="1" x1="411.4969" x2="409.0674" y1="448.1405" y2="448.8621"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
745 <line fill="none" id="t1 p625" stroke="#7A7A7A" stroke-width="1" x1="409.0674" x2="408.0430" y1="448.8621" y2="451.7486"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
746 <line fill="none" id="t1 p626" stroke="#7A7A7A" stroke-width="1" x1="408.0430" x2="407.0771" y1="451.7486" y2="455.2718"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
747 <line fill="none" id="t1 p627" stroke="#7A7A7A" stroke-width="1" x1="407.0771" x2="406.3746" y1="455.2718" y2="457.1820"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
748 <line fill="none" id="t1 p628" stroke="#7A7A7A" stroke-width="1" x1="406.3746" x2="404.8818" y1="457.1820" y2="461.5542"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
749 <line fill="none" id="t1 p629" stroke="#7A7A7A" stroke-width="1" x1="404.8818" x2="404.4135" y1="461.5542" y2="462.2333"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
750 <line fill="none" id="t1 p630" stroke="#7A7A7A" stroke-width="1" x1="404.4135" x2="403.0378" y1="462.2333" y2="462.8701"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
751 <line fill="none" id="t1 p631" stroke="#7A7A7A" stroke-width="1" x1="403.0378" x2="398.3545" y1="462.8701" y2="461.4693"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
752 <line fill="none" id="t1 p632" stroke="#7A7A7A" stroke-width="1" x1="398.3545" x2="396.0422" y1="461.4693" y2="460.8750"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
753 <line fill="none" id="t1 p633" stroke="#7A7A7A" stroke-width="1" x1="396.0422" x2="391.7394" y1="460.8750" y2="459.2619"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
754 <line fill="none" id="t1 p634" stroke="#7A7A7A" stroke-width="1" x1="391.7394" x2="391.1540" y1="459.2619" y2="458.5828"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
755 <line fill="none" id="t1 p635" stroke="#7A7A7A" stroke-width="1" x1="391.1540" x2="390.0417" y1="458.5828" y2="457.4367"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
756 <line fill="none" id="t1 p636" stroke="#7A7A7A" stroke-width="1" x1="390.0417" x2="390.3052" y1="457.4367" y2="456.7575"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
757 <line fill="none" id="t1 p637" stroke="#7A7A7A" stroke-width="1" x1="390.3052" x2="392.6761" y1="456.7575" y2="456.2481"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
758 <line fill="none" id="t1 p638" stroke="#7A7A7A" stroke-width="1" x1="392.6761" x2="397.5935" y1="456.2481" y2="454.3804"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
759 <line fill="none" id="t1 p639" stroke="#7A7A7A" stroke-width="1" x1="397.5935" x2="400.8425" y1="454.3804" y2="452.9371"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
760 <line fill="none" id="t1 p640" stroke="#7A7A7A" stroke-width="1" x1="400.8425" x2="404.2086" y1="452.9371" y2="449.9233"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
761 <line fill="none" id="t1 p641" stroke="#7A7A7A" stroke-width="1" x1="404.2086" x2="406.2868" y1="449.9233" y2="446.2728"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
762 <line fill="none" id="t1 p642" stroke="#7A7A7A" stroke-width="1" x1="406.2868" x2="406.3160" y1="446.2728" y2="445.5087"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
763 <line fill="none" id="t1 p643" stroke="#7A7A7A" stroke-width="1" x1="406.3160" x2="409.2431" y1="445.5087" y2="442.9193"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
764 <line fill="none" id="t1 p644" stroke="#7A7A7A" stroke-width="1" x1="409.2431" x2="409.8870" y1="442.9193" y2="442.1128"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
765 <line fill="none" id="t1 p645" stroke="#7A7A7A" stroke-width="1" x1="409.8870" x2="412.7262" y1="442.1128" y2="438.3349"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
766 <line fill="none" id="t1 p646" stroke="#7A7A7A" stroke-width="1" x1="412.7262" x2="417.6729" y1="438.3349" y2="440.5847"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
767 <line fill="none" id="t1 p647" stroke="#7A7A7A" stroke-width="1" x1="417.6729" x2="421.0683" y1="440.5847" y2="445.1267"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
768 <line fill="none" id="t1 p648" stroke="#7A7A7A" stroke-width="1" x1="421.0683" x2="421.1853" y1="445.1267" y2="446.9095"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
769 <line fill="none" id="t1 p649" stroke="#7A7A7A" stroke-width="1" x1="421.1853" x2="421.5073" y1="446.9095" y2="451.7486"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
770 <line fill="none" id="t1 p650" stroke="#7A7A7A" stroke-width="1" x1="421.5073" x2="422.7659" y1="451.7486" y2="455.3143"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
771 <line fill="none" id="t1 p651" stroke="#7A7A7A" stroke-width="1" x1="422.7659" x2="423.4977" y1="455.3143" y2="454.8898"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
772 <line fill="none" id="t1 p652" stroke="#7A7A7A" stroke-width="1" x1="423.4977" x2="423.7318" y1="454.8898" y2="451.3241"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
773 <line fill="none" id="t1 p653" stroke="#7A7A7A" stroke-width="1" x1="423.7318" x2="424.9027" y1="451.3241" y2="448.9046"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
774 <line fill="none" id="t1 p654" stroke="#7A7A7A" stroke-width="1" x1="424.9027" x2="424.9612" y1="448.9046" y2="448.1405"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
775 <line fill="none" id="t1 p655" stroke="#7A7A7A" stroke-width="1" x1="424.9612" x2="425.1954" y1="448.1405" y2="446.2303"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
776 <line fill="none" id="t1 p656" stroke="#7A7A7A" stroke-width="1" x1="425.1954" x2="425.1368" y1="446.2303" y2="442.9193"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
777 <line fill="none" id="t1 p657" stroke="#7A7A7A" stroke-width="1" x1="425.1368" x2="423.9075" y1="442.9193" y2="439.8631"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
778 <line fill="none" id="t1 p658" stroke="#7A7A7A" stroke-width="1" x1="423.9075" x2="423.6733" y1="439.8631" y2="438.7170"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
779 <line fill="none" id="t1 p659" stroke="#7A7A7A" stroke-width="1" x1="423.6733" x2="424.9027" y1="438.7170" y2="434.3448"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
780 <line fill="none" id="t1 p660" stroke="#7A7A7A" stroke-width="1" x1="424.9027" x2="425.4588" y1="434.3448" y2="433.4958"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
781 <line fill="none" id="t1 p661" stroke="#7A7A7A" stroke-width="1" x1="425.4588" x2="426.2491" y1="433.4958" y2="432.2224"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
782 <line fill="none" id="t1 p662" stroke="#7A7A7A" stroke-width="1" x1="426.2491" x2="426.5125" y1="432.2224" y2="431.7130"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
783 <line fill="none" id="t1 p663" stroke="#7A7A7A" stroke-width="1" x1="426.5125" x2="429.3517" y1="431.7130" y2="429.3359"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
784 <line fill="none" id="t1 p664" stroke="#7A7A7A" stroke-width="1" x1="429.3517" x2="430.8153" y1="429.3359" y2="426.7041"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
785 <line fill="none" id="t1 p665" stroke="#7A7A7A" stroke-width="1" x1="430.8153" x2="432.0739" y1="426.7041" y2="425.6429"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
786 <line fill="none" id="t1 p666" stroke="#7A7A7A" stroke-width="1" x1="432.0739" x2="435.1473" y1="425.6429" y2="422.8413"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
787 <line fill="none" id="t1 p667" stroke="#7A7A7A" stroke-width="1" x1="435.1473" x2="436.2010" y1="422.8413" y2="421.3981"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
788 <line fill="none" id="t1 p668" stroke="#7A7A7A" stroke-width="1" x1="436.2010" x2="441.9380" y1="421.3981" y2="421.1858"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
789 <line fill="none" id="t1 p669" stroke="#7A7A7A" stroke-width="1" x1="441.9380" x2="449.0799" y1="421.1858" y2="422.0772"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
790 <line fill="none" id="t1 p670" stroke="#7A7A7A" stroke-width="1" x1="449.0799" x2="451.7142" y1="422.0772" y2="422.0348"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
791 <line fill="none" id="t1 p671" stroke="#7A7A7A" stroke-width="1" x1="451.7142" x2="453.2070" y1="422.0348" y2="422.2046"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
792 <line fill="none" id="t1 p672" stroke="#7A7A7A" stroke-width="1" x1="453.2070" x2="455.3438" y1="422.2046" y2="420.5915"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
793 <line fill="none" id="t1 p673" stroke="#7A7A7A" stroke-width="1" x1="455.3438" x2="455.4316" y1="420.5915" y2="420.3368"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
794 <line fill="none" id="t1 p674" stroke="#7A7A7A" stroke-width="1" x1="455.4316" x2="454.2900" y1="420.3368" y2="417.6626"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
795 <line fill="none" id="t1 p675" stroke="#7A7A7A" stroke-width="1" x1="454.2900" x2="453.8217" y1="417.6626" y2="413.3753"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
796 <line fill="none" id="t1 p676" stroke="#7A7A7A" stroke-width="1" x1="453.8217" x2="454.3486" y1="413.3753" y2="409.4701"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
797 <line fill="none" id="t1 p677" stroke="#7A7A7A" stroke-width="1" x1="454.3486" x2="455.6657" y1="409.4701" y2="405.6073"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
798 <line fill="none" id="t1 p678" stroke="#7A7A7A" stroke-width="1" x1="455.6657" x2="456.0755" y1="405.6073" y2="403.8669"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
799 <line fill="none" id="t1 p679" stroke="#7A7A7A" stroke-width="1" x1="456.0755" x2="456.1341" y1="403.8669" y2="402.9755"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
800 <line fill="none" id="t1 p680" stroke="#7A7A7A" stroke-width="1" x1="456.1341" x2="456.2511" y1="402.9755" y2="398.3911"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
801 <line fill="none" id="t1 p681" stroke="#7A7A7A" stroke-width="1" x1="456.2511" x2="455.1681" y1="398.3911" y2="396.7780"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
802 <line fill="none" id="t1 p682" stroke="#7A7A7A" stroke-width="1" x1="455.1681" x2="451.3337" y1="396.7780" y2="395.0377"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
803 <line fill="none" id="t1 p683" stroke="#7A7A7A" stroke-width="1" x1="451.3337" x2="448.3774" y1="395.0377" y2="392.4483"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
804 <line fill="none" id="t1 p684" stroke="#7A7A7A" stroke-width="1" x1="448.3774" x2="444.0454" y1="392.4483" y2="389.6043"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
805 <line fill="none" id="t1 p685" stroke="#7A7A7A" stroke-width="1" x1="444.0454" x2="438.9231" y1="389.6043" y2="389.5618"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
806 <line fill="none" id="t1 p686" stroke="#7A7A7A" stroke-width="1" x1="438.9231" x2="433.9764" y1="389.5618" y2="391.4720"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
807 <line fill="none" id="t1 p687" stroke="#7A7A7A" stroke-width="1" x1="433.9764" x2="432.1910" y1="391.4720" y2="391.9389"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
808 <line fill="none" id="t1 p688" stroke="#7A7A7A" stroke-width="1" x1="432.1910" x2="428.7078" y1="391.9389" y2="393.2124"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
809 <line fill="none" id="t1 p689" stroke="#7A7A7A" stroke-width="1" x1="428.7078" x2="426.1320" y1="393.2124" y2="395.9291"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
810 <line fill="none" id="t1 p690" stroke="#7A7A7A" stroke-width="1" x1="426.1320" x2="425.6051" y1="395.9291" y2="396.5233"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
811 <line fill="none" id="t1 p691" stroke="#7A7A7A" stroke-width="1" x1="425.6051" x2="422.4147" y1="396.5233" y2="398.1364"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
812 <line fill="none" id="t1 p692" stroke="#7A7A7A" stroke-width="1" x1="422.4147" x2="420.1316" y1="398.1364" y2="398.2637"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
813 <line fill="none" id="t1 p693" stroke="#7A7A7A" stroke-width="1" x1="420.1316" x2="416.7362" y1="398.2637" y2="400.5559"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
814 <line fill="none" id="t1 p694" stroke="#7A7A7A" stroke-width="1" x1="416.7362" x2="413.6043" y1="400.5559" y2="401.4898"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
815 <line fill="none" id="t1 p695" stroke="#7A7A7A" stroke-width="1" x1="413.6043" x2="410.5017" y1="401.4898" y2="403.4849"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
816 <line fill="none" id="t1 p696" stroke="#7A7A7A" stroke-width="1" x1="410.5017" x2="407.6332" y1="403.4849" y2="406.4138"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
817 <line fill="none" id="t1 p697" stroke="#7A7A7A" stroke-width="1" x1="407.6332" x2="405.2623" y1="406.4138" y2="410.6162"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
818 <line fill="none" id="t1 p698" stroke="#7A7A7A" stroke-width="1" x1="405.2623" x2="404.1500" y1="410.6162" y2="413.2904"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
819 <line fill="none" id="t1 p699" stroke="#7A7A7A" stroke-width="1" x1="404.1500" x2="403.0670" y1="413.2904" y2="414.6912"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
820 <line fill="none" id="t1 p700" stroke="#7A7A7A" stroke-width="1" x1="403.0670" x2="401.2815" y1="414.6912" y2="416.9410"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
821 <line fill="none" id="t1 p701" stroke="#7A7A7A" stroke-width="1" x1="401.2815" x2="399.7009" y1="416.9410" y2="417.9173"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
822 <line fill="none" id="t1 p702" stroke="#7A7A7A" stroke-width="1" x1="399.7009" x2="398.6179" y1="417.9173" y2="418.9785"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
823 <line fill="none" id="t1 p703" stroke="#7A7A7A" stroke-width="1" x1="398.6179" x2="395.7202" y1="418.9785" y2="420.3368"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
824 <line fill="none" id="t1 p704" stroke="#7A7A7A" stroke-width="1" x1="395.7202" x2="394.6372" y1="420.3368" y2="420.9311"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
825 <line fill="none" id="t1 p705" stroke="#7A7A7A" stroke-width="1" x1="394.6372" x2="392.6175" y1="420.9311" y2="423.3931"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
826 <line fill="none" id="t1 p706" stroke="#7A7A7A" stroke-width="1" x1="392.6175" x2="390.9784" y1="423.3931" y2="423.0960"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
827 <line fill="none" id="t1 p707" stroke="#7A7A7A" stroke-width="1" x1="390.9784" x2="390.8613" y1="423.0960" y2="422.9262"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
828 <line fill="none" id="t1 p708" stroke="#7A7A7A" stroke-width="1" x1="390.8613" x2="387.6416" y1="422.9262" y2="419.7426"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
829 <line fill="none" id="t1 p709" stroke="#7A7A7A" stroke-width="1" x1="387.6416" x2="384.6560" y1="419.7426" y2="417.1957"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
830 <line fill="none" id="t1 p710" stroke="#7A7A7A" stroke-width="1" x1="384.6560" x2="384.1877" y1="417.1957" y2="416.8561"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
831 <line fill="none" id="t1 p711" stroke="#7A7A7A" stroke-width="1" x1="384.1877" x2="382.0510" y1="416.8561" y2="415.6251"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
832 <line fill="none" id="t1 p712" stroke="#7A7A7A" stroke-width="1" x1="382.0510" x2="379.1239" y1="415.6251" y2="414.1394"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
833 <line fill="none" id="t1 p713" stroke="#7A7A7A" stroke-width="1" x1="379.1239" x2="375.8749" y1="414.1394" y2="412.1019"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
834 <line fill="none" id="t1 p714" stroke="#7A7A7A" stroke-width="1" x1="375.8749" x2="369.0257" y1="412.1019" y2="411.6774"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
835 <line fill="none" id="t1 p715" stroke="#7A7A7A" stroke-width="1" x1="369.0257" x2="367.0646" y1="411.6774" y2="409.2154"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
836 <line fill="none" id="t1 p716" stroke="#7A7A7A" stroke-width="1" x1="367.0646" x2="368.4695" y1="409.2154" y2="404.9706"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
837 <line fill="none" id="t1 p717" stroke="#7A7A7A" stroke-width="1" x1="368.4695" x2="367.3280" y1="404.9706" y2="401.2776"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
838 <line fill="none" id="t1 p718" stroke="#7A7A7A" stroke-width="1" x1="367.3280" x2="370.7234" y1="401.2776" y2="394.6132"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
839 <line fill="none" id="t1 p719" stroke="#7A7A7A" stroke-width="1" x1="370.7234" x2="368.4403" y1="394.6132" y2="391.4295"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
840 <line fill="none" id="t1 p720" stroke="#7A7A7A" stroke-width="1" x1="368.4403" x2="366.1572" y1="391.4295" y2="387.6092"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
841 <line fill="none" id="t1 p721" stroke="#7A7A7A" stroke-width="1" x1="366.1572" x2="365.4547" y1="387.6092" y2="385.1896"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
842 <line fill="none" id="t1 p722" stroke="#7A7A7A" stroke-width="1" x1="365.4547" x2="362.4106" y1="385.1896" y2="381.3693"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
843 <line fill="none" id="t1 p723" stroke="#7A7A7A" stroke-width="1" x1="362.4106" x2="363.8741" y1="381.3693" y2="376.4028"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
844 <line fill="none" id="t1 p724" stroke="#7A7A7A" stroke-width="1" x1="363.8741" x2="366.5377" y1="376.4028" y2="373.9408"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
845 <line fill="none" id="t1 p725" stroke="#7A7A7A" stroke-width="1" x1="366.5377" x2="370.5770" y1="373.9408" y2="374.8323"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
846 <line fill="none" id="t1 p726" stroke="#7A7A7A" stroke-width="1" x1="370.5770" x2="375.9335" y1="374.8323" y2="376.2755"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
847 <line fill="none" id="t1 p727" stroke="#7A7A7A" stroke-width="1" x1="375.9335" x2="376.5774" y1="376.2755" y2="376.9547"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
848 <line fill="none" id="t1 p728" stroke="#7A7A7A" stroke-width="1" x1="376.5774" x2="376.1091" y1="376.9547" y2="379.6289"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
849 <line fill="none" id="t1 p729" stroke="#7A7A7A" stroke-width="1" x1="376.1091" x2="375.6115" y1="379.6289" y2="381.7938"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
850 <line fill="none" id="t1 p730" stroke="#7A7A7A" stroke-width="1" x1="375.6115" x2="375.9335" y1="381.7938" y2="382.8550"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
851 <line fill="none" id="t1 p731" stroke="#7A7A7A" stroke-width="1" x1="375.9335" x2="379.3288" y1="382.8550" y2="383.4493"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
852 <line fill="none" id="t1 p732" stroke="#7A7A7A" stroke-width="1" x1="379.3288" x2="380.7338" y1="383.4493" y2="383.2370"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
853 <line fill="none" id="t1 p733" stroke="#7A7A7A" stroke-width="1" x1="380.7338" x2="383.3096" y1="383.2370" y2="380.0959"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
854 <line fill="none" id="t1 p734" stroke="#7A7A7A" stroke-width="1" x1="383.3096" x2="385.8268" y1="380.0959" y2="376.5302"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
855 <line fill="none" id="t1 p735" stroke="#7A7A7A" stroke-width="1" x1="385.8268" x2="388.8124" y1="376.5302" y2="376.7849"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
856 <line fill="none" id="t1 p736" stroke="#7A7A7A" stroke-width="1" x1="388.8124" x2="392.8810" y1="376.7849" y2="378.6951"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
857 <line fill="none" id="t1 p737" stroke="#7A7A7A" stroke-width="1" x1="392.8810" x2="396.9203" y1="378.6951" y2="377.5065"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
858 <line fill="none" id="t1 p738" stroke="#7A7A7A" stroke-width="1" x1="396.9203" x2="397.4471" y1="377.5065" y2="375.4690"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
859 <line fill="none" id="t1 p739" stroke="#7A7A7A" stroke-width="1" x1="397.4471" x2="396.5398" y1="375.4690" y2="373.0070"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
860 <line fill="none" id="t1 p740" stroke="#7A7A7A" stroke-width="1" x1="396.5398" x2="397.1837" y1="373.0070" y2="369.3989"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
861 <line fill="none" id="t1 p741" stroke="#7A7A7A" stroke-width="1" x1="397.1837" x2="397.5057" y1="369.3989" y2="365.4087"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
862 <line fill="none" id="t1 p742" stroke="#7A7A7A" stroke-width="1" x1="397.5057" x2="395.8665" y1="365.4087" y2="363.7533"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
863 <line fill="none" id="t1 p743" stroke="#7A7A7A" stroke-width="1" x1="395.8665" x2="393.1444" y1="363.7533" y2="361.8006"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
864 <line fill="none" id="t1 p744" stroke="#7A7A7A" stroke-width="1" x1="393.1444" x2="392.7932" y1="361.8006" y2="359.1264"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
865 <line fill="none" id="t1 p745" stroke="#7A7A7A" stroke-width="1" x1="392.7932" x2="392.3248" y1="359.1264" y2="357.3011"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
866 <line fill="none" id="t1 p746" stroke="#7A7A7A" stroke-width="1" x1="392.3248" x2="389.4271" y1="357.3011" y2="352.9714"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
867 <line fill="none" id="t1 p747" stroke="#7A7A7A" stroke-width="1" x1="389.4271" x2="388.1977" y1="352.9714" y2="350.9339"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
868 <line fill="none" id="t1 p748" stroke="#7A7A7A" stroke-width="1" x1="388.1977" x2="388.1685" y1="350.9339" y2="347.3258"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
869 <line fill="none" id="t1 p749" stroke="#7A7A7A" stroke-width="1" x1="388.1685" x2="386.1781" y1="347.3258" y2="346.6466"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
870 <line fill="none" id="t1 p750" stroke="#7A7A7A" stroke-width="1" x1="386.1781" x2="385.0365" y1="346.6466" y2="346.1797"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
871 <line fill="none" id="t1 p751" stroke="#7A7A7A" stroke-width="1" x1="385.0365" x2="382.2851" y1="346.1797" y2="345.9674"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
872 <line fill="none" id="t1 p752" stroke="#7A7A7A" stroke-width="1" x1="382.2851" x2="381.4070" y1="345.9674" y2="345.7976"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
873 <line fill="none" id="t1 p753" stroke="#7A7A7A" stroke-width="1" x1="381.4070" x2="378.8020" y1="345.7976" y2="345.4580"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
874 <line fill="none" id="t1 p754" stroke="#7A7A7A" stroke-width="1" x1="378.8020" x2="376.5189" y1="345.4580" y2="344.6091"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
875 <line fill="none" id="t1 p755" stroke="#7A7A7A" stroke-width="1" x1="376.5189" x2="375.4066" y1="344.6091" y2="344.5242"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
876 <line fill="none" id="t1 p756" stroke="#7A7A7A" stroke-width="1" x1="375.4066" x2="371.5429" y1="344.5242" y2="343.1234"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
877 <line fill="none" id="t1 p757" stroke="#7A7A7A" stroke-width="1" x1="371.5429" x2="367.5622" y1="343.1234" y2="343.3781"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
878 <line fill="none" id="t1 p758" stroke="#7A7A7A" stroke-width="1" x1="367.5622" x2="366.5963" y1="343.3781" y2="343.5479"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
879 <line fill="none" id="t1 p759" stroke="#7A7A7A" stroke-width="1" x1="366.5963" x2="362.6448" y1="343.5479" y2="343.5479"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
880 <line fill="none" id="t1 p760" stroke="#7A7A7A" stroke-width="1" x1="362.6448" x2="361.5325" y1="343.5479" y2="344.1846"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
881 <line fill="none" id="t1 p761" stroke="#7A7A7A" stroke-width="1" x1="361.5325" x2="357.9322" y1="344.1846" y2="345.2458"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
882 <line fill="none" id="t1 p762" stroke="#7A7A7A" stroke-width="1" x1="357.9322" x2="356.8200" y1="345.2458" y2="345.4156"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
883 <line fill="none" id="t1 p763" stroke="#7A7A7A" stroke-width="1" x1="356.8200" x2="354.5662" y1="345.4156" y2="346.8588"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
884 <line fill="none" id="t1 p764" stroke="#7A7A7A" stroke-width="1" x1="354.5662" x2="353.9222" y1="346.8588" y2="347.1560"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
885 <line fill="none" id="t1 p765" stroke="#7A7A7A" stroke-width="1" x1="353.9222" x2="350.9952" y1="347.1560" y2="349.1510"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
886 <line fill="none" id="t1 p766" stroke="#7A7A7A" stroke-width="1" x1="350.9952" x2="350.7610" y1="349.1510" y2="349.8302"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
887 <line fill="none" id="t1 p767" stroke="#7A7A7A" stroke-width="1" x1="350.7610" x2="350.5854" y1="349.8302" y2="352.0800"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
888 <line fill="none" id="t1 p768" stroke="#7A7A7A" stroke-width="1" x1="350.5854" x2="350.3805" y1="352.0800" y2="353.6081"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
889 <line fill="none" id="t1 p769" stroke="#7A7A7A" stroke-width="1" x1="350.3805" x2="347.1022" y1="353.6081" y2="356.3672"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
890 <line fill="none" id="t1 p770" stroke="#7A7A7A" stroke-width="1" x1="347.1022" x2="345.4631" y1="356.3672" y2="358.3199"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
891 <line fill="none" id="t1 p771" stroke="#7A7A7A" stroke-width="1" x1="345.4631" x2="344.7606" y1="358.3199" y2="358.5321"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
892 <line fill="none" id="t1 p772" stroke="#7A7A7A" stroke-width="1" x1="344.7606" x2="342.6824" y1="358.5321" y2="357.4285"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
893 <line fill="none" id="t1 p773" stroke="#7A7A7A" stroke-width="1" x1="342.6824" x2="338.2626" y1="357.4285" y2="355.6032"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
894 <line fill="none" id="t1 p774" stroke="#7A7A7A" stroke-width="1" x1="338.2626" x2="335.0136" y1="355.6032" y2="354.8391"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
895 <line fill="none" id="t1 p775" stroke="#7A7A7A" stroke-width="1" x1="335.0136" x2="334.3404" y1="354.8391" y2="355.5607"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
896 <line fill="none" id="t1 p776" stroke="#7A7A7A" stroke-width="1" x1="334.3404" x2="333.1696" y1="355.5607" y2="356.9615"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
897 <line fill="none" id="t1 p777" stroke="#7A7A7A" stroke-width="1" x1="333.1696" x2="332.9940" y1="356.9615" y2="357.1738"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
898 <line fill="none" id="t1 p778" stroke="#7A7A7A" stroke-width="1" x1="332.9940" x2="333.0232" y1="357.1738" y2="358.7444"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
899 <line fill="none" id="t1 p779" stroke="#7A7A7A" stroke-width="1" x1="333.0232" x2="334.1648" y1="358.7444" y2="359.7631"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
900 <line fill="none" id="t1 p780" stroke="#7A7A7A" stroke-width="1" x1="334.1648" x2="335.2770" y1="359.7631" y2="361.2064"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
901 <line fill="none" id="t1 p781" stroke="#7A7A7A" stroke-width="1" x1="335.2770" x2="335.5697" y1="361.2064" y2="362.2676"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
902 <line fill="none" id="t1 p782" stroke="#7A7A7A" stroke-width="1" x1="335.5697" x2="335.6868" y1="362.2676" y2="362.7345"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
903 <line fill="none" id="t1 p783" stroke="#7A7A7A" stroke-width="1" x1="335.6868" x2="334.9551" y1="362.7345" y2="365.0267"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
904 <line fill="none" id="t1 p784" stroke="#7A7A7A" stroke-width="1" x1="334.9551" x2="334.6331" y1="365.0267" y2="365.1965"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
905 <line fill="none" id="t1 p785" stroke="#7A7A7A" stroke-width="1" x1="334.6331" x2="331.2085" y1="365.1965" y2="364.7296"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
906 <line fill="none" id="t1 p786" stroke="#7A7A7A" stroke-width="1" x1="331.2085" x2="327.7253" y1="364.7296" y2="364.9843"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
907 <line fill="none" id="t1 p787" stroke="#7A7A7A" stroke-width="1" x1="327.7253" x2="325.2959" y1="364.9843" y2="367.9981"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
908 <line fill="none" id="t1 p788" stroke="#7A7A7A" stroke-width="1" x1="325.2959" x2="325.5886" y1="367.9981" y2="370.4176"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
909 <line fill="none" id="t1 p789" stroke="#7A7A7A" stroke-width="1" x1="325.5886" x2="329.6572" y1="370.4176" y2="371.1393"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
910 <line fill="none" id="t1 p790" stroke="#7A7A7A" stroke-width="1" x1="329.6572" x2="330.4182" y1="371.1393" y2="371.0119"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
911 <line fill="none" id="t1 p791" stroke="#7A7A7A" stroke-width="1" x1="330.4182" x2="333.5208" y1="371.0119" y2="371.0544"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
912 <line fill="none" id="t1 p792" stroke="#7A7A7A" stroke-width="1" x1="333.5208" x2="334.4282" y1="371.0544" y2="370.5874"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
913 <line fill="none" id="t1 p793" stroke="#7A7A7A" stroke-width="1" x1="334.4282" x2="337.5601" y1="370.5874" y2="368.5499"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
914 <line fill="none" id="t1 p794" stroke="#7A7A7A" stroke-width="1" x1="337.5601" x2="340.8969" y1="368.5499" y2="369.5687"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
915 <line fill="none" id="t1 p795" stroke="#7A7A7A" stroke-width="1" x1="340.8969" x2="341.6287" y1="369.5687" y2="369.0593"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
916 <line fill="none" id="t1 p796" stroke="#7A7A7A" stroke-width="1" x1="341.6287" x2="346.2241" y1="369.0593" y2="365.9181"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
917 <line fill="none" id="t1 p797" stroke="#7A7A7A" stroke-width="1" x1="346.2241" x2="348.5072" y1="365.9181" y2="364.1353"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
918 <line fill="none" id="t1 p798" stroke="#7A7A7A" stroke-width="1" x1="348.5072" x2="350.3805" y1="364.1353" y2="364.5598"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
919 <line fill="none" id="t1 p799" stroke="#7A7A7A" stroke-width="1" x1="350.3805" x2="355.4735" y1="364.5598" y2="365.0267"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
920 <line fill="none" id="t1 p800" stroke="#7A7A7A" stroke-width="1" x1="355.4735" x2="357.5517" y1="365.0267" y2="366.7246"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
921 <line fill="none" id="t1 p801" stroke="#7A7A7A" stroke-width="1" x1="357.5517" x2="357.6395" y1="366.7246" y2="367.1067"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
922 <line fill="none" id="t1 p802" stroke="#7A7A7A" stroke-width="1" x1="357.6395" x2="356.3224" y1="367.1067" y2="369.7809"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
923 <line fill="none" id="t1 p803" stroke="#7A7A7A" stroke-width="1" x1="356.3224" x2="354.6832" y1="369.7809" y2="371.2666"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
924 <line fill="none" id="t1 p804" stroke="#7A7A7A" stroke-width="1" x1="354.6832" x2="354.3613" y1="371.2666" y2="373.5164"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
925 <line fill="none" id="t1 p805" stroke="#7A7A7A" stroke-width="1" x1="354.3613" x2="352.4880" y1="373.5164" y2="375.1294"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
926 <line fill="none" id="t1 p806" stroke="#7A7A7A" stroke-width="1" x1="352.4880" x2="350.7610" y1="375.1294" y2="378.3555"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
927 <line fill="none" id="t1 p807" stroke="#7A7A7A" stroke-width="1" x1="350.7610" x2="350.6147" y1="378.3555" y2="379.6289"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
928 <line fill="none" id="t1 p808" stroke="#7A7A7A" stroke-width="1" x1="350.6147" x2="348.4487" y1="379.6289" y2="382.8125"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
929 <line fill="none" id="t1 p809" stroke="#7A7A7A" stroke-width="1" x1="348.4487" x2="345.8729" y1="382.8125" y2="382.3456"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
930 <line fill="none" id="t1 p810" stroke="#7A7A7A" stroke-width="1" x1="345.8729" x2="344.5850" y1="382.3456" y2="382.3032"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
931 <line fill="none" id="t1 p811" stroke="#7A7A7A" stroke-width="1" x1="344.5850" x2="341.4238" y1="382.3032" y2="382.0909"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
932 <line fill="none" id="t1 p812" stroke="#7A7A7A" stroke-width="1" x1="341.4238" x2="340.6628" y1="382.0909" y2="380.6901"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
933 <line fill="none" id="t1 p813" stroke="#7A7A7A" stroke-width="1" x1="340.6628" x2="339.3163" y1="380.6901" y2="376.7000"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
934 <line fill="none" id="t1 p814" stroke="#7A7A7A" stroke-width="1" x1="339.3163" x2="337.8821" y1="376.7000" y2="376.0633"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
935 <line fill="none" id="t1 p815" stroke="#7A7A7A" stroke-width="1" x1="337.8821" x2="332.1159" y1="376.0633" y2="375.2567"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
936 <line fill="none" id="t1 p816" stroke="#7A7A7A" stroke-width="1" x1="332.1159" x2="327.2277" y1="375.2567" y2="375.3416"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
937 <line fill="none" id="t1 p817" stroke="#7A7A7A" stroke-width="1" x1="327.2277" x2="321.6956" y1="375.3416" y2="374.3653"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
938 <line fill="none" id="t1 p818" stroke="#7A7A7A" stroke-width="1" x1="321.6956" x2="316.1928" y1="374.3653" y2="372.3703"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
939 <line fill="none" id="t1 p819" stroke="#7A7A7A" stroke-width="1" x1="316.1928" x2="313.0316" y1="372.3703" y2="369.1442"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
940 <line fill="none" id="t1 p820" stroke="#7A7A7A" stroke-width="1" x1="313.0316" x2="312.5926" y1="369.1442" y2="364.6022"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
941 <line fill="none" id="t1 p821" stroke="#7A7A7A" stroke-width="1" x1="312.5926" x2="313.3536" y1="364.6022" y2="363.5410"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
942 <line fill="none" id="t1 p822" stroke="#7A7A7A" stroke-width="1" x1="313.3536" x2="318.5052" y1="363.5410" y2="362.9467"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
943 <line fill="none" id="t1 p823" stroke="#7A7A7A" stroke-width="1" x1="318.5052" x2="323.4811" y1="362.9467" y2="359.5933"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
944 <line fill="none" id="t1 p824" stroke="#7A7A7A" stroke-width="1" x1="323.4811" x2="325.2666" y1="359.5933" y2="356.9191"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
945 <line fill="none" id="t1 p825" stroke="#7A7A7A" stroke-width="1" x1="325.2666" x2="325.3544" y1="356.9191" y2="354.7542"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
946 <line fill="none" id="t1 p826" stroke="#7A7A7A" stroke-width="1" x1="325.3544" x2="325.7642" y1="354.7542" y2="351.9951"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
947 <line fill="none" id="t1 p827" stroke="#7A7A7A" stroke-width="1" x1="325.7642" x2="321.1102" y1="351.9951" y2="349.5331"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
948 <line fill="none" id="t1 p828" stroke="#7A7A7A" stroke-width="1" x1="321.1102" x2="319.4126" y1="349.5331" y2="349.8302"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
949 <line fill="none" id="t1 p829" stroke="#7A7A7A" stroke-width="1" x1="319.4126" x2="318.0661" y1="349.8302" y2="348.8963"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
950 <line fill="none" id="t1 p830" stroke="#7A7A7A" stroke-width="1" x1="318.0661" x2="317.1587" y1="348.8963" y2="347.4955"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
951 <line fill="none" id="t1 p831" stroke="#7A7A7A" stroke-width="1" x1="317.1587" x2="316.4270" y1="347.4955" y2="347.7502"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
952 <line fill="none" id="t1 p832" stroke="#7A7A7A" stroke-width="1" x1="316.4270" x2="316.5733" y1="347.7502" y2="348.3021"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
953 <line fill="none" id="t1 p833" stroke="#7A7A7A" stroke-width="1" x1="316.5733" x2="316.8953" y1="348.3021" y2="348.6417"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
954 <line fill="none" id="t1 p834" stroke="#7A7A7A" stroke-width="1" x1="316.8953" x2="316.7490" y1="348.6417" y2="351.1037"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
955 <line fill="none" id="t1 p835" stroke="#7A7A7A" stroke-width="1" x1="316.7490" x2="317.0709" y1="351.1037" y2="352.0800"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
956 <line fill="none" id="t1 p836" stroke="#7A7A7A" stroke-width="1" x1="317.0709" x2="316.3392" y1="352.0800" y2="352.5893"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
957 <line fill="none" id="t1 p837" stroke="#7A7A7A" stroke-width="1" x1="316.3392" x2="312.7682" y1="352.5893" y2="352.2922"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
958 <line fill="none" id="t1 p838" stroke="#7A7A7A" stroke-width="1" x1="312.7682" x2="311.0413" y1="352.2922" y2="352.2922"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
959 <line fill="none" id="t1 p839" stroke="#7A7A7A" stroke-width="1" x1="311.0413" x2="308.7289" y1="352.2922" y2="350.2547"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
960 <line fill="none" id="t1 p840" stroke="#7A7A7A" stroke-width="1" x1="308.7289" x2="306.6800" y1="350.2547" y2="349.0237"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
961 <line fill="none" id="t1 p841" stroke="#7A7A7A" stroke-width="1" x1="306.6800" x2="305.9775" y1="349.0237" y2="347.7078"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
962 <line fill="none" id="t1 p842" stroke="#7A7A7A" stroke-width="1" x1="305.9775" x2="303.3432" y1="347.7078" y2="346.2645"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
963 <line fill="none" id="t1 p843" stroke="#7A7A7A" stroke-width="1" x1="303.3432" x2="302.4358" y1="346.2645" y2="346.0099"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
964 <line fill="none" id="t1 p844" stroke="#7A7A7A" stroke-width="1" x1="302.4358" x2="301.1772" y1="346.0099" y2="344.3544"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
965 <line fill="none" id="t1 p845" stroke="#7A7A7A" stroke-width="1" x1="301.1772" x2="300.0356" y1="344.3544" y2="343.8025"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
966 <line fill="none" id="t1 p846" stroke="#7A7A7A" stroke-width="1" x1="300.0356" x2="297.8696" y1="343.8025" y2="342.8262"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
967 <line fill="none" id="t1 p847" stroke="#7A7A7A" stroke-width="1" x1="297.8696" x2="300.7967" y1="342.8262" y2="341.9773"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
968 <line fill="none" id="t1 p848" stroke="#7A7A7A" stroke-width="1" x1="300.7967" x2="301.6162" y1="341.9773" y2="341.9348"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
969 <line fill="none" id="t1 p849" stroke="#7A7A7A" stroke-width="1" x1="301.6162" x2="303.5481" y1="341.9348" y2="341.4254"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
970 <line fill="none" id="t1 p850" stroke="#7A7A7A" stroke-width="1" x1="303.5481" x2="309.2265" y1="341.4254" y2="342.1895"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
971 <line fill="none" id="t1 p851" stroke="#7A7A7A" stroke-width="1" x1="309.2265" x2="311.5974" y1="342.1895" y2="343.9299"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
972 <line fill="none" id="t1 p852" stroke="#7A7A7A" stroke-width="1" x1="311.5974" x2="311.7437" y1="343.9299" y2="340.3642"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
973 <line fill="none" id="t1 p853" stroke="#7A7A7A" stroke-width="1" x1="311.7437" x2="311.4510" y1="340.3642" y2="339.9398"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
974 <line fill="none" id="t1 p854" stroke="#7A7A7A" stroke-width="1" x1="311.4510" x2="309.8997" y1="339.9398" y2="339.3455"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
975 <line fill="none" id="t1 p855" stroke="#7A7A7A" stroke-width="1" x1="309.8997" x2="308.2313" y1="339.3455" y2="339.4728"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
976 <line fill="none" id="t1 p856" stroke="#7A7A7A" stroke-width="1" x1="308.2313" x2="305.6555" y1="339.4728" y2="338.5390"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
977 <line fill="none" id="t1 p857" stroke="#7A7A7A" stroke-width="1" x1="305.6555" x2="304.2798" y1="338.5390" y2="338.1145"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
978 <line fill="none" id="t1 p858" stroke="#7A7A7A" stroke-width="1" x1="304.2798" x2="302.9041" y1="338.1145" y2="337.9871"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
979 <line fill="none" id="t1 p859" stroke="#7A7A7A" stroke-width="1" x1="302.9041" x2="302.2016" y1="337.9871" y2="338.8361"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
980 <line fill="none" id="t1 p860" stroke="#7A7A7A" stroke-width="1" x1="302.2016" x2="300.8552" y1="338.8361" y2="337.8173"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
981 <line fill="none" id="t1 p861" stroke="#7A7A7A" stroke-width="1" x1="300.8552" x2="299.9771" y1="337.8173" y2="337.5626"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
982 <line fill="none" id="t1 p862" stroke="#7A7A7A" stroke-width="1" x1="299.9771" x2="298.3672" y1="337.5626" y2="337.2655"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
983 <line fill="none" id="t1 p863" stroke="#7A7A7A" stroke-width="1" x1="298.3672" x2="297.1964" y1="337.2655" y2="337.9022"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
984 <line fill="none" id="t1 p864" stroke="#7A7A7A" stroke-width="1" x1="297.1964" x2="296.6988" y1="337.9022" y2="338.4116"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
985 <line fill="none" id="t1 p865" stroke="#7A7A7A" stroke-width="1" x1="296.6988" x2="294.7670" y1="338.4116" y2="339.3455"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
986 <line fill="none" id="t1 p866" stroke="#7A7A7A" stroke-width="1" x1="294.7670" x2="293.3327" y1="339.3455" y2="340.7463"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
987 <line fill="none" id="t1 p867" stroke="#7A7A7A" stroke-width="1" x1="293.3327" x2="292.8351" y1="340.7463" y2="341.2981"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
988 <line fill="none" id="t1 p868" stroke="#7A7A7A" stroke-width="1" x1="292.8351" x2="288.2397" y1="341.2981" y2="340.5765"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
989 <line fill="none" id="t1 p869" stroke="#7A7A7A" stroke-width="1" x1="288.2397" x2="284.6687" y1="340.5765" y2="339.4304"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
990 <line fill="none" id="t1 p870" stroke="#7A7A7A" stroke-width="1" x1="284.6687" x2="282.7076" y1="339.4304" y2="335.5676"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
991 <line fill="none" id="t1 p871" stroke="#7A7A7A" stroke-width="1" x1="282.7076" x2="282.1222" y1="335.5676" y2="333.7847"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
992 <line fill="none" id="t1 p872" stroke="#7A7A7A" stroke-width="1" x1="282.1222" x2="281.8295" y1="333.7847" y2="332.9358"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
993 <line fill="none" id="t1 p873" stroke="#7A7A7A" stroke-width="1" x1="281.8295" x2="279.6342" y1="332.9358" y2="330.6011"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
994 <line fill="none" id="t1 p874" stroke="#7A7A7A" stroke-width="1" x1="279.6342" x2="276.2974" y1="330.6011" y2="323.5972"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
995 <line fill="none" id="t1 p875" stroke="#7A7A7A" stroke-width="1" x1="276.2974" x2="274.8339" y1="323.5972" y2="315.9565"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
996 <line fill="none" id="t1 p876" stroke="#7A7A7A" stroke-width="1" x1="274.8339" x2="273.3704" y1="315.9565" y2="312.6455"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
997 <line fill="none" id="t1 p877" stroke="#7A7A7A" stroke-width="1" x1="273.3704" x2="268.4237" y1="312.6455" y2="306.2782"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
998 <line fill="none" id="t1 p878" stroke="#7A7A7A" stroke-width="1" x1="268.4237" x2="259.2328" y1="306.2782" y2="301.9061"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
999 <line fill="none" id="t1 p879" stroke="#7A7A7A" stroke-width="1" x1="259.2328" x2="257.5937" y1="301.9061" y2="301.1844"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1000 <line fill="none" id="t1 p880" stroke="#7A7A7A" stroke-width="1" x1="257.5937" x2="254.6667" y1="301.1844" y2="299.6563"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1001 <line fill="none" id="t1 p881" stroke="#7A7A7A" stroke-width="1" x1="254.6667" x2="250.7152" y1="299.6563" y2="299.0196"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1002 <line fill="none" id="t1 p882" stroke="#7A7A7A" stroke-width="1" x1="250.7152" x2="250.2469" y1="299.0196" y2="298.2131"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1003 <line fill="none" id="t1 p883" stroke="#7A7A7A" stroke-width="1" x1="250.2469" x2="246.5588" y1="298.2131" y2="295.3690"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1004 <line fill="none" id="t1 p884" stroke="#7A7A7A" stroke-width="1" x1="246.5588" x2="242.9293" y1="295.3690" y2="291.1242"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1005 <line fill="none" id="t1 p885" stroke="#7A7A7A" stroke-width="1" x1="242.9293" x2="238.2753" y1="291.1242" y2="287.3887"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1006 <line fill="none" id="t1 p886" stroke="#7A7A7A" stroke-width="1" x1="238.2753" x2="236.4898" y1="287.3887" y2="286.4973"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1007 <line fill="none" id="t1 p887" stroke="#7A7A7A" stroke-width="1" x1="236.4898" x2="234.4409" y1="286.4973" y2="283.9929"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1008 <line fill="none" id="t1 p888" stroke="#7A7A7A" stroke-width="1" x1="234.4409" x2="234.2653" y1="283.9929" y2="282.9317"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1009 <line fill="none" id="t1 p889" stroke="#7A7A7A" stroke-width="1" x1="234.2653" x2="233.7677" y1="282.9317" y2="275.6306"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1010 <line fill="none" id="t1 p890" stroke="#7A7A7A" stroke-width="1" x1="233.7677" x2="233.0652" y1="275.6306" y2="271.8951"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1011 <line fill="none" id="t1 p891" stroke="#7A7A7A" stroke-width="1" x1="233.0652" x2="233.4457" y1="271.8951" y2="267.9474"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1012 <line fill="none" id="t1 p892" stroke="#7A7A7A" stroke-width="1" x1="233.4457" x2="233.4457" y1="267.9474" y2="266.9711"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1013 <line fill="none" id="t1 p893" stroke="#7A7A7A" stroke-width="1" x1="233.4457" x2="232.5676" y1="266.9711" y2="266.2070"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1014 <line fill="none" id="t1 p894" stroke="#7A7A7A" stroke-width="1" x1="232.5676" x2="231.4261" y1="266.2070" y2="266.6315"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1015 <line fill="none" id="t1 p895" stroke="#7A7A7A" stroke-width="1" x1="231.4261" x2="230.8114" y1="266.6315" y2="266.7164"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1016 <line fill="none" id="t1 p896" stroke="#7A7A7A" stroke-width="1" x1="230.8114" x2="228.1478" y1="266.7164" y2="267.5654"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1017 <line fill="none" id="t1 p897" stroke="#7A7A7A" stroke-width="1" x1="228.1478" x2="226.4794" y1="267.5654" y2="270.6217"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1018 <line fill="none" id="t1 p898" stroke="#7A7A7A" stroke-width="1" x1="226.4794" x2="224.6646" y1="270.6217" y2="271.4706"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1019 <line fill="none" id="t1 p899" stroke="#7A7A7A" stroke-width="1" x1="224.6646" x2="224.3427" y1="271.4706" y2="271.1310"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1020 <line fill="none" id="t1 p900" stroke="#7A7A7A" stroke-width="1" x1="224.3427" x2="222.7328" y1="271.1310" y2="267.6078"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1021 <line fill="none" id="t1 p901" stroke="#7A7A7A" stroke-width="1" x1="222.7328" x2="222.0889" y1="267.6078" y2="266.2919"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1022 <line fill="none" id="t1 p902" stroke="#7A7A7A" stroke-width="1" x1="222.0889" x2="219.5716" y1="266.2919" y2="267.1409"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1023 <line fill="none" id="t1 p903" stroke="#7A7A7A" stroke-width="1" x1="219.5716" x2="216.9666" y1="267.1409" y2="268.7964"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1024 <line fill="none" id="t1 p904" stroke="#7A7A7A" stroke-width="1" x1="216.9666" x2="215.8250" y1="268.7964" y2="266.9287"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1025 <line fill="none" id="t1 p905" stroke="#7A7A7A" stroke-width="1" x1="215.8250" x2="214.8298" y1="266.9287" y2="263.5328"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1026 <line fill="none" id="t1 p906" stroke="#7A7A7A" stroke-width="1" x1="214.8298" x2="213.7176" y1="263.5328" y2="261.8349"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1027 <line fill="none" id="t1 p907" stroke="#7A7A7A" stroke-width="1" x1="213.7176" x2="212.3711" y1="261.8349" y2="260.5614"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1028 <line fill="none" id="t1 p908" stroke="#7A7A7A" stroke-width="1" x1="212.3711" x2="210.7613" y1="260.5614" y2="259.1182"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1029 <line fill="none" id="t1 p909" stroke="#7A7A7A" stroke-width="1" x1="210.7613" x2="210.6442" y1="259.1182" y2="258.3965"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1030 <line fill="none" id="t1 p910" stroke="#7A7A7A" stroke-width="1" x1="210.6442" x2="210.6442" y1="258.3965" y2="258.2268"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1031 <line fill="none" id="t1 p911" stroke="#7A7A7A" stroke-width="1" x1="210.6442" x2="210.1173" y1="258.2268" y2="255.0856"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1032 <line fill="none" id="t1 p912" stroke="#7A7A7A" stroke-width="1" x1="210.1173" x2="210.2637" y1="255.0856" y2="254.7460"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1033 <line fill="none" id="t1 p913" stroke="#7A7A7A" stroke-width="1" x1="210.2637" x2="210.7905" y1="254.7460" y2="253.4301"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1034 <line fill="none" id="t1 p914" stroke="#7A7A7A" stroke-width="1" x1="210.7905" x2="210.4100" y1="253.4301" y2="250.9256"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1035 <line fill="none" id="t1 p915" stroke="#7A7A7A" stroke-width="1" x1="210.4100" x2="209.9710" y1="250.9256" y2="249.1004"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1036 <line fill="none" id="t1 p916" stroke="#7A7A7A" stroke-width="1" x1="209.9710" x2="210.0295" y1="249.1004" y2="248.5485"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1037 <line fill="none" id="t1 p917" stroke="#7A7A7A" stroke-width="1" x1="210.0295" x2="210.9369" y1="248.5485" y2="245.7470"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1038 <line fill="none" id="t1 p918" stroke="#7A7A7A" stroke-width="1" x1="210.9369" x2="212.5175" y1="245.7470" y2="245.2376"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1039 <line fill="none" id="t1 p919" stroke="#7A7A7A" stroke-width="1" x1="212.5175" x2="214.5664" y1="245.2376" y2="245.4498"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1040 <line fill="none" id="t1 p920" stroke="#7A7A7A" stroke-width="1" x1="214.5664" x2="217.7861" y1="245.4498" y2="243.4123"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1041 <line fill="none" id="t1 p921" stroke="#7A7A7A" stroke-width="1" x1="217.7861" x2="218.2544" y1="243.4123" y2="240.9927"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1042 <line fill="none" id="t1 p922" stroke="#7A7A7A" stroke-width="1" x1="218.2544" x2="217.5812" y1="240.9927" y2="238.4883"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1043 <line fill="none" id="t1 p923" stroke="#7A7A7A" stroke-width="1" x1="217.5812" x2="216.7324" y1="238.4883" y2="237.4695"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1044 <line fill="none" id="t1 p924" stroke="#7A7A7A" stroke-width="1" x1="216.7324" x2="216.1177" y1="237.4695" y2="237.0450"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1045 <line fill="none" id="t1 p925" stroke="#7A7A7A" stroke-width="1" x1="216.1177" x2="215.4445" y1="237.0450" y2="232.4182"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1046 <line fill="none" id="t1 p926" stroke="#7A7A7A" stroke-width="1" x1="215.4445" x2="213.3370" y1="232.4182" y2="228.4280"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1047 <line fill="none" id="t1 p927" stroke="#7A7A7A" stroke-width="1" x1="213.3370" x2="214.4200" y1="228.4280" y2="222.6551"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1048 <line fill="none" id="t1 p928" stroke="#7A7A7A" stroke-width="1" x1="214.4200" x2="213.4249" y1="222.6551" y2="220.7873"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1049 <line fill="none" id="t1 p929" stroke="#7A7A7A" stroke-width="1" x1="213.4249" x2="210.9661" y1="220.7873" y2="213.9956"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1050 <line fill="none" id="t1 p930" stroke="#7A7A7A" stroke-width="1" x1="210.9661" x2="209.1221" y1="213.9956" y2="208.7745"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1051 <line fill="none" id="t1 p931" stroke="#7A7A7A" stroke-width="1" x1="209.1221" x2="207.7464" y1="208.7745" y2="203.8505"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1052 <line fill="none" id="t1 p932" stroke="#7A7A7A" stroke-width="1" x1="207.7464" x2="207.5415" y1="203.8505" y2="200.4122"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1053 <line fill="none" id="t1 p933" stroke="#7A7A7A" stroke-width="1" x1="207.5415" x2="207.2196" y1="200.4122" y2="198.7991"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1054 <line fill="none" id="t1 p934" stroke="#7A7A7A" stroke-width="1" x1="207.2196" x2="206.3122" y1="198.7991" y2="198.1624"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1055 <line fill="none" id="t1 p935" stroke="#7A7A7A" stroke-width="1" x1="206.3122" x2="203.9120" y1="198.1624" y2="200.5820"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1056 <line fill="none" id="t1 p936" stroke="#7A7A7A" stroke-width="1" x1="203.9120" x2="202.9461" y1="200.5820" y2="202.5770"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1057 <line fill="none" id="t1 p937" stroke="#7A7A7A" stroke-width="1" x1="202.9461" x2="204.0584" y1="202.5770" y2="205.2088"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1058 <line fill="none" id="t1 p938" stroke="#7A7A7A" stroke-width="1" x1="204.0584" x2="204.0876" y1="205.2088" y2="207.2463"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1059 <line fill="none" id="t1 p939" stroke="#7A7A7A" stroke-width="1" x1="204.0876" x2="202.9461" y1="207.2463" y2="206.4823"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1060 <line fill="none" id="t1 p940" stroke="#7A7A7A" stroke-width="1" x1="202.9461" x2="200.9850" y1="206.4823" y2="203.5533"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1061 <line fill="none" id="t1 p941" stroke="#7A7A7A" stroke-width="1" x1="200.9850" x2="201.3362" y1="203.5533" y2="201.2611"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1062 <line fill="none" id="t1 p942" stroke="#7A7A7A" stroke-width="1" x1="201.3362" x2="200.7215" y1="201.2611" y2="197.8653"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1063 <line fill="none" id="t1 p943" stroke="#7A7A7A" stroke-width="1" x1="200.7215" x2="200.4288" y1="197.8653" y2="197.3983"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1064 <line fill="none" id="t1 p944" stroke="#7A7A7A" stroke-width="1" x1="200.4288" x2="200.4874" y1="197.3983" y2="196.4220"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1065 <line fill="none" id="t1 p945" stroke="#7A7A7A" stroke-width="1" x1="200.4874" x2="203.0632" y1="196.4220" y2="194.2147"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1066 <line fill="none" id="t1 p946" stroke="#7A7A7A" stroke-width="1" x1="203.0632" x2="207.1025" y1="194.2147" y2="194.0449"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1067 <line fill="none" id="t1 p947" stroke="#7A7A7A" stroke-width="1" x1="207.1025" x2="209.7368" y1="194.0449" y2="193.4931"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1068 <line fill="none" id="t1 p948" stroke="#7A7A7A" stroke-width="1" x1="209.7368" x2="213.8346" y1="193.4931" y2="194.3421"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1069 <line fill="none" id="t1 p949" stroke="#7A7A7A" stroke-width="1" x1="213.8346" x2="217.3178" y1="194.3421" y2="199.0963"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1070 <line fill="none" id="t1 p950" stroke="#7A7A7A" stroke-width="1" x1="217.3178" x2="216.4104" y1="199.0963" y2="201.0913"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1071 <line fill="none" id="t1 p951" stroke="#7A7A7A" stroke-width="1" x1="216.4104" x2="213.1614" y1="201.0913" y2="203.5533"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1072 <line fill="none" id="t1 p952" stroke="#7A7A7A" stroke-width="1" x1="213.1614" x2="214.8298" y1="203.5533" y2="206.4823"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1073 <line fill="none" id="t1 p953" stroke="#7A7A7A" stroke-width="1" x1="214.8298" x2="221.2693" y1="206.4823" y2="207.0765"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1074 <line fill="none" id="t1 p954" stroke="#7A7A7A" stroke-width="1" x1="221.2693" x2="227.6795" y1="207.0765" y2="206.4823"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1075 <line fill="none" id="t1 p955" stroke="#7A7A7A" stroke-width="1" x1="227.6795" x2="229.4650" y1="206.4823" y2="206.2700"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1076 <line fill="none" id="t1 p956" stroke="#7A7A7A" stroke-width="1" x1="229.4650" x2="233.7677" y1="206.2700" y2="205.6757"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1077 <line fill="none" id="t1 p957" stroke="#7A7A7A" stroke-width="1" x1="233.7677" x2="234.8214" y1="205.6757" y2="203.2137"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1078 <line fill="none" id="t1 p958" stroke="#7A7A7A" stroke-width="1" x1="234.8214" x2="232.2749" y1="203.2137" y2="200.9215"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1079 <line fill="none" id="t1 p959" stroke="#7A7A7A" stroke-width="1" x1="232.2749" x2="228.1185" y1="200.9215" y2="197.0163"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1080 <line fill="none" id="t1 p960" stroke="#7A7A7A" stroke-width="1" x1="228.1185" x2="225.0452" y1="197.0163" y2="194.3845"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1081 <line fill="none" id="t1 p961" stroke="#7A7A7A" stroke-width="1" x1="225.0452" x2="223.9329" y1="194.3845" y2="193.3233"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1082 <line fill="none" id="t1 p962" stroke="#7A7A7A" stroke-width="1" x1="223.9329" x2="221.6498" y1="193.3233" y2="191.7527"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1083 <line fill="none" id="t1 p963" stroke="#7A7A7A" stroke-width="1" x1="221.6498" x2="219.3082" y1="191.7527" y2="190.3095"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1084 <line fill="none" id="t1 p964" stroke="#7A7A7A" stroke-width="1" x1="219.3082" x2="217.4056" y1="190.3095" y2="189.4180"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1085 <line fill="none" id="t1 p965" stroke="#7A7A7A" stroke-width="1" x1="217.4056" x2="217.0836" y1="189.4180" y2="189.4180"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1086 <line fill="none" id="t1 p966" stroke="#7A7A7A" stroke-width="1" x1="217.0836" x2="212.6053" y1="189.4180" y2="189.1209"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1087 <line fill="none" id="t1 p967" stroke="#7A7A7A" stroke-width="1" x1="212.6053" x2="207.9220" y1="189.1209" y2="190.6066"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1088 <line fill="none" id="t1 p968" stroke="#7A7A7A" stroke-width="1" x1="207.9220" x2="203.7364" y1="190.6066" y2="191.1160"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1089 <line fill="none" id="t1 p969" stroke="#7A7A7A" stroke-width="1" x1="203.7364" x2="198.5555" y1="191.1160" y2="192.6017"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1090 <line fill="none" id="t1 p970" stroke="#7A7A7A" stroke-width="1" x1="198.5555" x2="192.1454" y1="192.6017" y2="195.9975"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1091 <line fill="none" id="t1 p971" stroke="#7A7A7A" stroke-width="1" x1="192.1454" x2="187.1694" y1="195.9975" y2="197.8228"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1092 <line fill="none" id="t1 p972" stroke="#7A7A7A" stroke-width="1" x1="187.1694" x2="185.8815" y1="197.8228" y2="201.5158"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1093 <line fill="none" id="t1 p973" stroke="#7A7A7A" stroke-width="1" x1="185.8815" x2="185.2961" y1="201.5158" y2="205.5484"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1094 <line fill="none" id="t1 p974" stroke="#7A7A7A" stroke-width="1" x1="185.2961" x2="185.5010" y1="205.5484" y2="209.0716"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1095 <line fill="none" id="t1 p975" stroke="#7A7A7A" stroke-width="1" x1="185.5010" x2="187.1109" y1="209.0716" y2="210.0479"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1096 <line fill="none" id="t1 p976" stroke="#7A7A7A" stroke-width="1" x1="187.1109" x2="190.5648" y1="210.0479" y2="210.4724"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1097 <line fill="none" id="t1 p977" stroke="#7A7A7A" stroke-width="1" x1="190.5648" x2="192.4673" y1="210.4724" y2="210.6847"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1098 <line fill="none" id="t1 p978" stroke="#7A7A7A" stroke-width="1" x1="192.4673" x2="194.9260" y1="210.6847" y2="208.8169"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1099 <line fill="none" id="t1 p979" stroke="#7A7A7A" stroke-width="1" x1="194.9260" x2="197.5311" y1="208.8169" y2="208.5622"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1100 <line fill="none" id="t1 p980" stroke="#7A7A7A" stroke-width="1" x1="197.5311" x2="196.7993" y1="208.5622" y2="210.3451"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1101 <line fill="none" id="t1 p981" stroke="#7A7A7A" stroke-width="1" x1="196.7993" x2="196.8286" y1="210.3451" y2="210.8120"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1102 <line fill="none" id="t1 p982" stroke="#7A7A7A" stroke-width="1" x1="196.8286" x2="200.2825" y1="210.8120" y2="217.2217"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1103 <line fill="none" id="t1 p983" stroke="#7A7A7A" stroke-width="1" x1="200.2825" x2="203.8535" y1="217.2217" y2="220.4902"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1104 <line fill="none" id="t1 p984" stroke="#7A7A7A" stroke-width="1" x1="203.8535" x2="205.0828" y1="220.4902" y2="225.8387"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1105 <line fill="none" id="t1 p985" stroke="#7A7A7A" stroke-width="1" x1="205.0828" x2="206.1951" y1="225.8387" y2="228.1734"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1106 <line fill="none" id="t1 p986" stroke="#7A7A7A" stroke-width="1" x1="206.1951" x2="209.7075" y1="228.1734" y2="231.6966"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1107 <line fill="none" id="t1 p987" stroke="#7A7A7A" stroke-width="1" x1="209.7075" x2="210.9661" y1="231.6966" y2="235.2198"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1108 <line fill="none" id="t1 p988" stroke="#7A7A7A" stroke-width="1" x1="210.9661" x2="209.9710" y1="235.2198" y2="240.8229"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1109 <line fill="none" id="t1 p989" stroke="#7A7A7A" stroke-width="1" x1="209.9710" x2="206.3414" y1="240.8229" y2="243.9641"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1110 <line fill="none" id="t1 p990" stroke="#7A7A7A" stroke-width="1" x1="206.3414" x2="207.0732" y1="243.9641" y2="247.4449"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1111 <line fill="none" id="t1 p991" stroke="#7A7A7A" stroke-width="1" x1="207.0732" x2="205.6975" y1="247.4449" y2="250.9256"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1112 <line fill="none" id="t1 p992" stroke="#7A7A7A" stroke-width="1" x1="205.6975" x2="202.6534" y1="250.9256" y2="252.9632"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1113 <line fill="none" id="t1 p993" stroke="#7A7A7A" stroke-width="1" x1="202.6534" x2="198.1165" y1="252.9632" y2="258.4390"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1114 <line fill="none" id="t1 p994" stroke="#7A7A7A" stroke-width="1" x1="198.1165" x2="200.0483" y1="258.4390" y2="263.5328"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1115 <line fill="none" id="t1 p995" stroke="#7A7A7A" stroke-width="1" x1="200.0483" x2="199.3166" y1="263.5328" y2="267.8201"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1116 <line fill="none" id="t1 p996" stroke="#7A7A7A" stroke-width="1" x1="199.3166" x2="198.2336" y1="267.8201" y2="268.4568"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1117 <line fill="none" id="t1 p997" stroke="#7A7A7A" stroke-width="1" x1="198.2336" x2="191.0038" y1="268.4568" y2="268.5841"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1118 <line fill="none" id="t1 p998" stroke="#7A7A7A" stroke-width="1" x1="191.0038" x2="191.1209" y1="268.5841" y2="266.0797"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1119 <line fill="none" id="t1 p999" stroke="#7A7A7A" stroke-width="1" x1="191.1209" x2="192.3210" y1="266.0797" y2="261.4953"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1120 <line fill="none" id="t1 p1000" stroke="#7A7A7A" stroke-width="1" x1="192.3210" x2="190.3599" y1="261.4953" y2="257.9296"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1121 <line fill="none" id="t1 p1001" stroke="#7A7A7A" stroke-width="1" x1="190.3599" x2="188.6329" y1="257.9296" y2="255.3403"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1122 <line fill="none" id="t1 p1002" stroke="#7A7A7A" stroke-width="1" x1="188.6329" x2="188.8964" y1="255.3403" y2="254.0668"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1123 <line fill="none" id="t1 p1003" stroke="#7A7A7A" stroke-width="1" x1="188.8964" x2="190.7111" y1="254.0668" y2="252.6236"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1124 <line fill="none" id="t1 p1004" stroke="#7A7A7A" stroke-width="1" x1="190.7111" x2="191.6185" y1="252.6236" y2="252.4962"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1125 <line fill="none" id="t1 p1005" stroke="#7A7A7A" stroke-width="1" x1="191.6185" x2="192.7600" y1="252.4962" y2="252.9632"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1126 <line fill="none" id="t1 p1006" stroke="#7A7A7A" stroke-width="1" x1="192.7600" x2="196.4481" y1="252.9632" y2="249.6946"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1127 <line fill="none" id="t1 p1007" stroke="#7A7A7A" stroke-width="1" x1="196.4481" x2="196.8579" y1="249.6946" y2="246.5110"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1128 <line fill="none" id="t1 p1008" stroke="#7A7A7A" stroke-width="1" x1="196.8579" x2="196.2432" y1="246.5110" y2="239.1675"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1129 <line fill="none" id="t1 p1009" stroke="#7A7A7A" stroke-width="1" x1="196.2432" x2="194.8675" y1="239.1675" y2="234.4133"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1130 <line fill="none" id="t1 p1010" stroke="#7A7A7A" stroke-width="1" x1="194.8675" x2="194.4284" y1="234.4133" y2="230.2109"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1131 <line fill="none" id="t1 p1011" stroke="#7A7A7A" stroke-width="1" x1="194.4284" x2="193.0235" y1="230.2109" y2="228.0036"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1132 <line fill="none" id="t1 p1012" stroke="#7A7A7A" stroke-width="1" x1="193.0235" x2="190.3306" y1="228.0036" y2="224.3955"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1133 <line fill="none" id="t1 p1013" stroke="#7A7A7A" stroke-width="1" x1="190.3306" x2="189.2183" y1="224.3955" y2="221.9759"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1134 <line fill="none" id="t1 p1014" stroke="#7A7A7A" stroke-width="1" x1="189.2183" x2="189.1012" y1="221.9759" y2="221.5939"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1135 <line fill="none" id="t1 p1015" stroke="#7A7A7A" stroke-width="1" x1="189.1012" x2="188.4280" y1="221.5939" y2="221.1694"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1136 <line fill="none" id="t1 p1016" stroke="#7A7A7A" stroke-width="1" x1="188.4280" x2="187.9304" y1="221.1694" y2="221.4665"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1137 <line fill="none" id="t1 p1017" stroke="#7A7A7A" stroke-width="1" x1="187.9304" x2="187.6963" y1="221.4665" y2="223.0796"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1138 <line fill="none" id="t1 p1018" stroke="#7A7A7A" stroke-width="1" x1="187.6963" x2="188.6329" y1="223.0796" y2="227.4093"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1139 <line fill="none" id="t1 p1019" stroke="#7A7A7A" stroke-width="1" x1="188.6329" x2="187.9890" y1="227.4093" y2="233.6067"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1140 <line fill="none" id="t1 p1020" stroke="#7A7A7A" stroke-width="1" x1="187.9890" x2="186.8474" y1="233.6067" y2="235.4745"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1141 <line fill="none" id="t1 p1021" stroke="#7A7A7A" stroke-width="1" x1="186.8474" x2="187.5499" y1="235.4745" y2="241.8417"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1142 <line fill="none" id="t1 p1022" stroke="#7A7A7A" stroke-width="1" x1="187.5499" x2="188.9256" y1="241.8417" y2="243.9217"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1143 <line fill="none" id="t1 p1023" stroke="#7A7A7A" stroke-width="1" x1="188.9256" x2="188.2524" y1="243.9217" y2="247.0204"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1144 <line fill="none" id="t1 p1024" stroke="#7A7A7A" stroke-width="1" x1="188.2524" x2="185.1498" y1="247.0204" y2="248.3363"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1145 <line fill="none" id="t1 p1025" stroke="#7A7A7A" stroke-width="1" x1="185.1498" x2="180.4665" y1="248.3363" y2="251.8171"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1146 <line fill="none" id="t1 p1026" stroke="#7A7A7A" stroke-width="1" x1="180.4665" x2="179.2664" y1="251.8171" y2="253.6423"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1147 <line fill="none" id="t1 p1027" stroke="#7A7A7A" stroke-width="1" x1="179.2664" x2="179.1201" y1="253.6423" y2="254.1517"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1148 <line fill="none" id="t1 p1028" stroke="#7A7A7A" stroke-width="1" x1="179.1201" x2="178.7396" y1="254.1517" y2="256.9533"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1149 <line fill="none" id="t1 p1029" stroke="#7A7A7A" stroke-width="1" x1="178.7396" x2="178.3590" y1="256.9533" y2="261.9198"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1150 <line fill="none" id="t1 p1030" stroke="#7A7A7A" stroke-width="1" x1="178.3590" x2="177.8907" y1="261.9198" y2="269.6029"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1151 <line fill="none" id="t1 p1031" stroke="#7A7A7A" stroke-width="1" x1="177.8907" x2="177.7151" y1="269.6029" y2="271.7678"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1152 <line fill="none" id="t1 p1032" stroke="#7A7A7A" stroke-width="1" x1="177.7151" x2="178.8566" y1="271.7678" y2="275.9701"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1153 <line fill="none" id="t1 p1033" stroke="#7A7A7A" stroke-width="1" x1="178.8566" x2="181.8715" y1="275.9701" y2="282.8043"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1154 <line fill="none" id="t1 p1034" stroke="#7A7A7A" stroke-width="1" x1="181.8715" x2="184.6229" y1="282.8043" y2="288.7046"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1155 <line fill="none" id="t1 p1035" stroke="#7A7A7A" stroke-width="1" x1="184.6229" x2="187.1401" y1="288.7046" y2="294.0531"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1156 <line fill="none" id="t1 p1036" stroke="#7A7A7A" stroke-width="1" x1="187.1401" x2="188.6622" y1="294.0531" y2="297.0670"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1157 <line fill="none" id="t1 p1037" stroke="#7A7A7A" stroke-width="1" x1="188.6622" x2="190.0672" y1="297.0670" y2="300.5477"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1158 <line fill="none" id="t1 p1038" stroke="#7A7A7A" stroke-width="1" x1="190.0672" x2="192.1454" y1="300.5477" y2="305.3868"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1159 <line fill="none" id="t1 p1039" stroke="#7A7A7A" stroke-width="1" x1="192.1454" x2="193.8430" y1="305.3868" y2="309.4194"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1160 <line fill="none" id="t1 p1040" stroke="#7A7A7A" stroke-width="1" x1="193.8430" x2="195.4822" y1="309.4194" y2="313.2398"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1161 <line fill="none" id="t1 p1041" stroke="#7A7A7A" stroke-width="1" x1="195.4822" x2="196.5652" y1="313.2398" y2="315.4895"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1162 <line fill="none" id="t1 p1042" stroke="#7A7A7A" stroke-width="1" x1="196.5652" x2="198.2043" y1="315.4895" y2="318.4609"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1163 <line fill="none" id="t1 p1043" stroke="#7A7A7A" stroke-width="1" x1="198.2043" x2="200.1361" y1="318.4609" y2="322.2813"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1164 <line fill="none" id="t1 p1044" stroke="#7A7A7A" stroke-width="1" x1="200.1361" x2="202.8875" y1="322.2813" y2="327.5024"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1165 <line fill="none" id="t1 p1045" stroke="#7A7A7A" stroke-width="1" x1="202.8875" x2="206.5171" y1="327.5024" y2="331.9170"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1166 <line fill="none" id="t1 p1046" stroke="#7A7A7A" stroke-width="1" x1="206.5171" x2="210.5856" y1="331.9170" y2="336.1619"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1167 <line fill="none" id="t1 p1047" stroke="#7A7A7A" stroke-width="1" x1="210.5856" x2="217.4641" y1="336.1619" y2="343.0385"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1168 <line fill="none" id="t1 p1048" stroke="#7A7A7A" stroke-width="1" x1="217.4641" x2="221.9132" y1="343.0385" y2="347.7502"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1169 <line fill="none" id="t1 p1049" stroke="#7A7A7A" stroke-width="1" x1="221.9132" x2="223.1426" y1="347.7502" y2="348.9388"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1170 <line fill="none" id="t1 p1050" stroke="#7A7A7A" stroke-width="1" x1="223.1426" x2="226.7721" y1="348.9388" y2="348.1747"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1171 <line fill="none" id="t1 p1051" stroke="#7A7A7A" stroke-width="1" x1="226.7721" x2="230.8407" y1="348.1747" y2="344.9487"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1172 <line fill="none" id="t1 p1052" stroke="#7A7A7A" stroke-width="1" x1="230.8407" x2="234.9092" y1="344.9487" y2="343.3781"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1173 <line fill="none" id="t1 p1053" stroke="#7A7A7A" stroke-width="1" x1="234.9092" x2="242.0805" y1="343.3781" y2="341.3405"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1174 <line fill="none" id="t1 p1054" stroke="#7A7A7A" stroke-width="1" x1="242.0805" x2="247.8467" y1="341.3405" y2="339.4728"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1175 <line fill="none" id="t1 p1055" stroke="#7A7A7A" stroke-width="1" x1="247.8467" x2="251.4762" y1="339.4728" y2="340.3642"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1176 <line fill="none" id="t1 p1056" stroke="#7A7A7A" stroke-width="1" x1="251.4762" x2="258.1206" y1="340.3642" y2="343.0809"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1177 <line fill="none" id="t1 p1057" stroke="#7A7A7A" stroke-width="1" x1="258.1206" x2="259.6134" y1="343.0809" y2="343.3356"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1178 <line fill="none" id="t1 p1058" stroke="#7A7A7A" stroke-width="1" x1="259.6134" x2="263.9161" y1="343.3356" y2="341.9348"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1179 <line fill="none" id="t1 p1059" stroke="#7A7A7A" stroke-width="1" x1="263.9161" x2="264.7942" y1="341.9348" y2="338.7087"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1180 <line fill="none" id="t1 p1060" stroke="#7A7A7A" stroke-width="1" x1="264.7942" x2="262.3940" y1="338.7087" y2="335.9921"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1181 <line fill="none" id="t1 p1061" stroke="#7A7A7A" stroke-width="1" x1="262.3940" x2="260.8134" y1="335.9921" y2="333.6998"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1182 <line fill="none" id="t1 p1062" stroke="#7A7A7A" stroke-width="1" x1="260.8134" x2="261.0769" y1="333.6998" y2="329.6248"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1183 <line fill="none" id="t1 p1063" stroke="#7A7A7A" stroke-width="1" x1="261.0769" x2="260.5500" y1="329.6248" y2="328.8607"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1184 <line fill="none" id="t1 p1064" stroke="#7A7A7A" stroke-width="1" x1="260.5500" x2="258.0328" y1="328.8607" y2="326.1441"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1185 <line fill="none" id="t1 p1065" stroke="#7A7A7A" stroke-width="1" x1="258.0328" x2="260.4329" y1="326.1441" y2="322.3237"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1186 <line fill="none" id="t1 p1066" stroke="#7A7A7A" stroke-width="1" x1="260.4329" x2="261.7208" y1="322.3237" y2="322.3662"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1187 <line fill="none" id="t1 p1067" stroke="#7A7A7A" stroke-width="1" x1="261.7208" x2="263.0087" y1="322.3662" y2="323.7245"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1188 <line fill="none" id="t1 p1068" stroke="#7A7A7A" stroke-width="1" x1="263.0087" x2="264.2088" y1="323.7245" y2="325.9318"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1189 <line fill="none" id="t1 p1069" stroke="#7A7A7A" stroke-width="1" x1="264.2088" x2="266.5504" y1="325.9318" y2="328.8607"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1190 <line fill="none" id="t1 p1070" stroke="#7A7A7A" stroke-width="1" x1="266.5504" x2="266.9017" y1="328.8607" y2="329.0305"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1191 <line fill="none" id="t1 p1071" stroke="#7A7A7A" stroke-width="1" x1="266.9017" x2="267.6920" y1="329.0305" y2="329.9219"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1192 <line fill="none" id="t1 p1072" stroke="#7A7A7A" stroke-width="1" x1="267.6920" x2="267.9847" y1="329.9219" y2="332.4688"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1193 <line fill="none" id="t1 p1073" stroke="#7A7A7A" stroke-width="1" x1="267.9847" x2="270.3556" y1="332.4688" y2="334.0394"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1194 <line fill="none" id="t1 p1074" stroke="#7A7A7A" stroke-width="1" x1="270.3556" x2="272.2289" y1="334.0394" y2="334.8460"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1195 <line fill="none" id="t1 p1075" stroke="#7A7A7A" stroke-width="1" x1="272.2289" x2="273.1655" y1="334.8460" y2="337.1382"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1196 <line fill="none" id="t1 p1076" stroke="#7A7A7A" stroke-width="1" x1="273.1655" x2="274.3656" y1="337.1382" y2="339.3455"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1197 <line fill="none" id="t1 p1077" stroke="#7A7A7A" stroke-width="1" x1="274.3656" x2="274.5997" y1="339.3455" y2="342.7838"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1198 <line fill="none" id="t1 p1078" stroke="#7A7A7A" stroke-width="1" x1="274.5997" x2="273.8973" y1="342.7838" y2="346.0099"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1199 <line fill="none" id="t1 p1079" stroke="#7A7A7A" stroke-width="1" x1="273.8973" x2="274.3070" y1="346.0099" y2="347.6229"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1200 <line fill="none" id="t1 p1080" stroke="#7A7A7A" stroke-width="1" x1="274.3070" x2="275.6242" y1="347.6229" y2="350.8065"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1201 <line fill="none" id="t1 p1081" stroke="#7A7A7A" stroke-width="1" x1="275.6242" x2="277.6439" y1="350.8065" y2="351.5706"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1202 <line fill="none" id="t1 p1082" stroke="#7A7A7A" stroke-width="1" x1="277.6439" x2="282.2686" y1="351.5706" y2="356.8766"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1203 <line fill="none" id="t1 p1083" stroke="#7A7A7A" stroke-width="1" x1="282.2686" x2="284.0833" y1="356.8766" y2="365.7483"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1204 <line fill="none" id="t1 p1084" stroke="#7A7A7A" stroke-width="1" x1="284.0833" x2="287.8885" y1="365.7483" y2="371.0119"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1205 <line fill="none" id="t1 p1085" stroke="#7A7A7A" stroke-width="1" x1="287.8885" x2="296.0256" y1="371.0119" y2="374.4502"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1206 <line fill="none" id="t1 p1086" stroke="#7A7A7A" stroke-width="1" x1="296.0256" x2="309.2558" y1="374.4502" y2="378.9922"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1207 <line fill="none" id="t1 p1087" stroke="#7A7A7A" stroke-width="1" x1="309.2558" x2="323.4226" y1="378.9922" y2="385.9537"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1208 <line fill="none" id="t1 p1088" stroke="#7A7A7A" stroke-width="1" x1="323.4226" x2="325.1495" y1="385.9537" y2="388.7978"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1209 <line fill="none" id="t1 p1089" stroke="#7A7A7A" stroke-width="1" x1="325.1495" x2="329.5401" y1="388.7978" y2="392.0238"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1210 <line fill="none" id="t1 p1090" stroke="#7A7A7A" stroke-width="1" x1="329.5401" x2="335.0429" y1="392.0238" y2="396.6931"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1211 <line fill="none" id="t1 p1091" stroke="#7A7A7A" stroke-width="1" x1="335.0429" x2="334.8965" y1="396.6931" y2="399.7494"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1212 <line fill="none" id="t1 p1092" stroke="#7A7A7A" stroke-width="1" x1="334.8965" x2="338.0285" y1="399.7494" y2="410.0644"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1213 <line fill="none" id="t1 p1093" stroke="#7A7A7A" stroke-width="1" x1="338.0285" x2="340.6042" y1="410.0644" y2="412.1868"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1214 <line fill="none" id="t1 p1094" stroke="#7A7A7A" stroke-width="1" x1="340.6042" x2="346.1656" y1="412.1868" y2="419.0634"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1215 <line fill="none" id="t1 p1095" stroke="#7A7A7A" stroke-width="1" x1="346.1656" x2="350.6439" y1="419.0634" y2="425.0911"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1216 <line fill="none" id="t1 p1096" stroke="#7A7A7A" stroke-width="1" x1="350.6439" x2="351.5513" y1="425.0911" y2="426.4919"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1217 <line fill="none" id="t1 p1097" stroke="#7A7A7A" stroke-width="1" x1="351.5513" x2="350.1756" y1="426.4919" y2="432.3922"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1218 <line fill="none" id="t1 p1098" stroke="#7A7A7A" stroke-width="1" x1="350.1756" x2="346.9266" y1="432.3922" y2="438.5047"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1219 <line fill="none" id="t1 p1099" stroke="#7A7A7A" stroke-width="1" x1="346.9266" x2="343.5898" y1="438.5047" y2="445.7634"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1220 <line fill="none" id="t1 p1100" stroke="#7A7A7A" stroke-width="1" x1="343.5898" x2="340.2823" y1="445.7634" y2="453.7861"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1221 <line fill="none" id="t1 p1101" stroke="#7A7A7A" stroke-width="1" x1="340.2823" x2="338.3504" y1="453.7861" y2="459.3893"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1222 <line fill="none" id="t1 p1102" stroke="#7A7A7A" stroke-width="1" x1="338.3504" x2="339.3456" y1="459.3893" y2="468.2610"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1223 <line fill="none" id="t1 p1103" stroke="#7A7A7A" stroke-width="1" x1="339.3456" x2="342.8288" y1="468.2610" y2="473.7793"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1224 <line fill="none" id="t1 p1104" stroke="#7A7A7A" stroke-width="1" x1="342.8288" x2="347.5413" y1="473.7793" y2="480.4437"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1225 <line fill="none" id="t1 p1105" stroke="#7A7A7A" stroke-width="1" x1="347.5413" x2="348.7999" y1="480.4437" y2="486.5987"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1226 <line fill="none" id="t1 p1106" stroke="#7A7A7A" stroke-width="1" x1="348.7999" x2="349.9415" y1="486.5987" y2="492.9235"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1227 <line fill="none" id="t1 p1107" stroke="#7A7A7A" stroke-width="1" x1="349.9415" x2="350.9659" y1="492.9235" y2="499.5454"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1228 <line fill="none" id="t1 p1108" stroke="#7A7A7A" stroke-width="1" x1="350.9659" x2="350.8196" y1="499.5454" y2="505.7853"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1229 <line fill="none" id="t1 p1109" stroke="#7A7A7A" stroke-width="1" x1="350.8196" x2="348.9463" y1="505.7853" y2="512.1101"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1230 <line fill="none" id="t1 p1110" stroke="#7A7A7A" stroke-width="1" x1="348.9463" x2="348.0682" y1="512.1101" y2="513.5109"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1231 <line fill="none" id="t1 p1111" stroke="#7A7A7A" stroke-width="1" x1="348.0682" x2="343.0337" y1="513.5109" y2="518.9018"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1232 <line fill="none" id="t1 p1112" stroke="#7A7A7A" stroke-width="1" x1="343.0337" x2="336.7406" y1="518.9018" y2="524.2928"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1233 <line fill="none" id="t1 p1113" stroke="#7A7A7A" stroke-width="1" x1="336.7406" x2="332.1451" y1="524.2928" y2="529.7686"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1234 <line fill="none" id="t1 p1114" stroke="#7A7A7A" stroke-width="1" x1="332.1451" x2="327.2277" y1="529.7686" y2="534.3106"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1235 <line fill="none" id="t1 p1115" stroke="#7A7A7A" stroke-width="1" x1="327.2277" x2="320.4077" y1="534.3106" y2="537.7064"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1236 <line fill="none" id="t1 p1116" stroke="#7A7A7A" stroke-width="1" x1="320.4077" x2="315.4903" y1="537.7064" y2="540.3807"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1237 <line fill="none" id="t1 p1117" stroke="#7A7A7A" stroke-width="1" x1="315.4903" x2="308.4069" y1="540.3807" y2="545.6867"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1238 <line fill="none" id="t1 p1118" stroke="#7A7A7A" stroke-width="1" x1="308.4069" x2="307.1776" y1="545.6867" y2="546.7904"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1239 <line fill="none" id="t1 p1119" stroke="#7A7A7A" stroke-width="1" x1="307.1776" x2="300.7381" y1="546.7904" y2="553.4972"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1240 <line fill="none" id="t1 p1120" stroke="#7A7A7A" stroke-width="1" x1="300.7381" x2="297.8696" y1="553.4972" y2="555.8743"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1241 <line fill="none" id="t1 p1121" stroke="#7A7A7A" stroke-width="1" x1="297.8696" x2="296.8159" y1="555.8743" y2="556.3837"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1242 <line fill="none" id="t1 p1122" stroke="#7A7A7A" stroke-width="1" x1="296.8159" x2="292.1912" y1="556.3837" y2="558.2090"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1243 <line fill="none" id="t1 p1123" stroke="#7A7A7A" stroke-width="1" x1="292.1912" x2="287.8592" y1="558.2090" y2="558.6334"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1244 <line fill="none" id="t1 p1124" stroke="#7A7A7A" stroke-width="1" x1="287.8592" x2="285.7517" y1="558.6334" y2="559.7795"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1245 <line fill="none" id="t1 p1125" stroke="#7A7A7A" stroke-width="1" x1="285.7517" x2="286.7762" y1="559.7795" y2="564.1093"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1246 <line fill="none" id="t1 p1126" stroke="#7A7A7A" stroke-width="1" x1="286.7762" x2="287.8885" y1="564.1093" y2="568.8635"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1247 <line fill="none" id="t1 p1127" stroke="#7A7A7A" stroke-width="1" x1="287.8885" x2="288.9715" y1="568.8635" y2="570.5614"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1248 <line fill="none" id="t1 p1128" stroke="#7A7A7A" stroke-width="1" x1="288.9715" x2="289.8788" y1="570.5614" y2="573.5752"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1249 <line fill="none" id="t1 p1129" stroke="#7A7A7A" stroke-width="1" x1="289.8788" x2="291.2253" y1="573.5752" y2="575.9099"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1250 <line fill="none" id="t1 p1130" stroke="#7A7A7A" stroke-width="1" x1="291.2253" x2="294.8548" y1="575.9099" y2="578.8813"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1251 <line fill="none" id="t1 p1131" stroke="#7A7A7A" stroke-width="1" x1="294.8548" x2="296.1427" y1="578.8813" y2="579.1784"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1252 <line fill="none" id="t1 p1132" stroke="#7A7A7A" stroke-width="1" x1="296.1427" x2="302.2309" y1="579.1784" y2="580.7066"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1253 <line fill="none" id="t1 p1133" stroke="#7A7A7A" stroke-width="1" x1="302.2309" x2="306.8263" y1="580.7066" y2="581.3857"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1254 <line fill="none" id="t1 p1134" stroke="#7A7A7A" stroke-width="1" x1="306.8263" x2="311.0998" y1="581.3857" y2="579.8151"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1255 <line fill="none" id="t1 p1135" stroke="#7A7A7A" stroke-width="1" x1="311.0998" x2="315.1684" y1="579.8151" y2="576.4617"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1256 <line fill="none" id="t1 p1136" stroke="#7A7A7A" stroke-width="1" x1="315.1684" x2="317.7149" y1="576.4617" y2="574.0422"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1257 <line fill="none" id="t1 p1137" stroke="#7A7A7A" stroke-width="1" x1="317.7149" x2="320.7590" y1="574.0422" y2="573.0234"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1258 <line fill="none" id="t1 p1138" stroke="#7A7A7A" stroke-width="1" x1="320.7590" x2="321.3737" y1="573.0234" y2="570.3067"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1259 <line fill="none" id="t1 p1139" stroke="#7A7A7A" stroke-width="1" x1="321.3737" x2="322.0176" y1="570.3067" y2="569.2880"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1260 <line fill="none" id="t1 p1140" stroke="#7A7A7A" stroke-width="1" x1="322.0176" x2="326.0276" y1="569.2880" y2="565.1280"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1261 <line fill="none" id="t1 p1141" stroke="#7A7A7A" stroke-width="1" x1="326.0276" x2="329.8620" y1="565.1280" y2="568.8635"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1262 <line fill="none" id="t1 p1142" stroke="#7A7A7A" stroke-width="1" x1="329.8620" x2="330.7109" y1="568.8635" y2="570.1794"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1263 <line fill="none" id="t1 p1143" stroke="#7A7A7A" stroke-width="1" x1="330.7109" x2="333.4623" y1="570.1794" y2="574.0422"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1264 <line fill="none" id="t1 p1144" stroke="#7A7A7A" stroke-width="1" x1="333.4623" x2="337.6187" y1="574.0422" y2="574.6365"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1265 <line fill="none" id="t1 p1145" stroke="#7A7A7A" stroke-width="1" x1="337.6187" x2="338.2041" y1="574.6365" y2="570.9010"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1266 <line fill="none" id="t1 p1146" stroke="#7A7A7A" stroke-width="1" x1="338.2041" x2="338.3504" y1="570.9010" y2="569.5427"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1267 <line fill="none" id="t1 p1147" stroke="#7A7A7A" stroke-width="1" x1="338.3504" x2="340.5457" y1="569.5427" y2="564.8309"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1268 <line fill="none" id="t1 p1148" stroke="#7A7A7A" stroke-width="1" x1="340.5457" x2="340.9555" y1="564.8309" y2="565.0007"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1269 <line fill="none" id="t1 p1149" stroke="#7A7A7A" stroke-width="1" x1="340.9555" x2="345.0533" y1="565.0007" y2="566.4015"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1270 <line fill="none" id="t1 p1150" stroke="#7A7A7A" stroke-width="1" x1="345.0533" x2="351.4635" y1="566.4015" y2="567.6749"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1271 <line fill="none" id="t1 p1151" stroke="#7A7A7A" stroke-width="1" x1="351.4635" x2="356.7322" y1="567.6749" y2="568.9059"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1272 <line fill="none" id="t1 p1152" stroke="#7A7A7A" stroke-width="1" x1="356.7322" x2="362.4691" y1="568.9059" y2="569.5851"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1273 <line fill="none" id="t1 p1153" stroke="#7A7A7A" stroke-width="1" x1="362.4691" x2="367.2987" y1="569.5851" y2="568.9484"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1274 <line fill="none" id="t1 p1154" stroke="#7A7A7A" stroke-width="1" x1="367.2987" x2="370.6648" y1="568.9484" y2="572.1744"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1275 <line fill="none" id="t1 p1155" stroke="#7A7A7A" stroke-width="1" x1="370.6648" x2="371.0453" y1="572.1744" y2="573.4054"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1276 <line fill="none" id="t1 p1156" stroke="#7A7A7A" stroke-width="1" x1="371.0453" x2="369.9623" y1="573.4054" y2="579.2633"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1277 <line fill="none" id="t1 p1157" stroke="#7A7A7A" stroke-width="1" x1="369.9623" x2="365.9230" y1="579.2633" y2="585.4608"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1278 <line fill="none" id="t1 p1158" stroke="#7A7A7A" stroke-width="1" x1="365.9230" x2="363.9912" y1="585.4608" y2="590.1725"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1279 <line fill="none" id="t1 p1159" stroke="#7A7A7A" stroke-width="1" x1="363.9912" x2="362.6448" y1="590.1725" y2="593.7806"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1280 <line fill="none" id="t1 p1160" stroke="#7A7A7A" stroke-width="1" x1="362.6448" x2="362.9960" y1="593.7806" y2="600.6997"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1281 <line fill="none" id="t1 p1161" stroke="#7A7A7A" stroke-width="1" x1="362.9960" x2="363.6985" y1="600.6997" y2="604.5201"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1282 <line fill="none" id="t1 p1162" stroke="#7A7A7A" stroke-width="1" x1="363.6985" x2="364.3132" y1="604.5201" y2="606.5151"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1283 <line fill="none" id="t1 p1163" stroke="#7A7A7A" stroke-width="1" x1="364.3132" x2="367.1231" y1="606.5151" y2="607.4065"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1284 <line fill="none" id="t1 p1164" stroke="#7A7A7A" stroke-width="1" x1="367.1231" x2="371.6893" y1="607.4065" y2="604.7748"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1285 <line fill="none" id="t1 p1165" stroke="#7A7A7A" stroke-width="1" x1="371.6893" x2="378.2166" y1="604.7748" y2="601.2091"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1286 <line fill="none" id="t1 p1166" stroke="#7A7A7A" stroke-width="1" x1="378.2166" x2="379.1825" y1="601.2091" y2="600.6997"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1287 <line fill="none" id="t1 p1167" stroke="#7A7A7A" stroke-width="1" x1="379.1825" x2="382.8120" y1="600.6997" y2="597.8557"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1288 <line fill="none" id="t1 p1168" stroke="#7A7A7A" stroke-width="1" x1="382.8120" x2="383.2218" y1="597.8557" y2="596.9218"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1289 <line fill="none" id="t1 p1169" stroke="#7A7A7A" stroke-width="1" x1="383.2218" x2="386.5586" y1="596.9218" y2="593.5684"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1290 <line fill="none" id="t1 p1170" stroke="#7A7A7A" stroke-width="1" x1="386.5586" x2="389.2222" y1="593.5684" y2="591.0215"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1291 <line fill="none" id="t1 p1171" stroke="#7A7A7A" stroke-width="1" x1="389.2222" x2="393.5542" y1="591.0215" y2="584.2298"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1292 <line fill="none" id="t1 p1172" stroke="#7A7A7A" stroke-width="1" x1="393.5542" x2="396.8617" y1="584.2298" y2="579.8151"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1293 <line fill="none" id="t1 p1173" stroke="#7A7A7A" stroke-width="1" x1="396.8617" x2="401.1059" y1="579.8151" y2="579.0935"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1294 <line fill="none" id="t1 p1174" stroke="#7A7A7A" stroke-width="1" x1="401.1059" x2="407.1356" y1="579.0935" y2="575.8250"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1295 <line fill="none" id="t1 p1175" stroke="#7A7A7A" stroke-width="1" x1="407.1356" x2="410.8529" y1="575.8250" y2="575.1883"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1296 <line fill="none" id="t1 p1176" stroke="#7A7A7A" stroke-width="1" x1="410.8529" x2="413.6629" y1="575.1883" y2="577.2258"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1297 <line fill="none" id="t1 p1177" stroke="#7A7A7A" stroke-width="1" x1="413.6629" x2="417.0290" y1="577.2258" y2="578.2446"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1298 <line fill="none" id="t1 p1178" stroke="#7A7A7A" stroke-width="1" x1="417.0290" x2="418.6095" y1="578.2446" y2="580.1547"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1299 <line fill="none" id="t1 p1179" stroke="#7A7A7A" stroke-width="1" x1="418.6095" x2="420.4536" y1="580.1547" y2="583.3808"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1300 <line fill="none" id="t1 p1180" stroke="#7A7A7A" stroke-width="1" x1="420.4536" x2="420.8048" y1="583.3808" y2="588.8566"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1301 <line fill="none" id="t1 p1181" stroke="#7A7A7A" stroke-width="1" x1="420.8048" x2="419.9853" y1="588.8566" y2="593.7806"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1302 <line fill="none" id="t1 p1182" stroke="#7A7A7A" stroke-width="1" x1="419.9853" x2="419.6925" y1="593.7806" y2="594.7994"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1303 <line fill="none" id="t1 p1183" stroke="#7A7A7A" stroke-width="1" x1="419.6925" x2="418.3461" y1="594.7994" y2="598.7046"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1304 <line fill="none" id="t1 p1184" stroke="#7A7A7A" stroke-width="1" x1="418.3461" x2="419.5462" y1="598.7046" y2="604.0531"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1305 <line fill="none" id="t1 p1185" stroke="#7A7A7A" stroke-width="1" x1="419.5462" x2="417.4973" y1="604.0531" y2="610.8024"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1306 <line fill="none" id="t1 p1186" stroke="#7A7A7A" stroke-width="1" x1="417.4973" x2="416.6192" y1="610.8024" y2="613.5616"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1307 <line fill="none" id="t1 p1187" stroke="#7A7A7A" stroke-width="1" x1="416.6192" x2="416.3850" y1="613.5616" y2="614.5379"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1308 <line fill="none" id="t1 p1188" stroke="#7A7A7A" stroke-width="1" x1="416.3850" x2="415.3313" y1="614.5379" y2="616.3207"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1309 <line fill="none" id="t1 p1189" stroke="#7A7A7A" stroke-width="1" x1="415.3313" x2="413.3116" y1="616.3207" y2="614.7077"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1310 <line fill="none" id="t1 p1190" stroke="#7A7A7A" stroke-width="1" x1="413.3116" x2="410.6480" y1="614.7077" y2="612.2881"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1311 <line fill="none" id="t1 p1191" stroke="#7A7A7A" stroke-width="1" x1="410.6480" x2="409.0674" y1="612.2881" y2="610.9722"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1312 <line fill="none" id="t1 p1192" stroke="#7A7A7A" stroke-width="1" x1="409.0674" x2="407.9844" y1="610.9722" y2="607.5339"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1313 <line fill="none" id="t1 p1193" stroke="#7A7A7A" stroke-width="1" x1="407.9844" x2="410.9993" y1="607.5339" y2="601.6336"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1314 <line fill="none" id="t1 p1194" stroke="#7A7A7A" stroke-width="1" x1="410.9993" x2="412.2872" y1="601.6336" y2="595.5210"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1315 <line fill="none" id="t1 p1195" stroke="#7A7A7A" stroke-width="1" x1="412.2872" x2="414.1605" y1="595.5210" y2="591.1488"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1316 <line fill="none" id="t1 p1196" stroke="#7A7A7A" stroke-width="1" x1="414.1605" x2="414.4239" y1="591.1488" y2="589.1113"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1317 <line fill="none" id="t1 p1197" stroke="#7A7A7A" stroke-width="1" x1="414.4239" x2="412.9897" y1="589.1113" y2="588.2199"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1318 <line fill="none" id="t1 p1198" stroke="#7A7A7A" stroke-width="1" x1="412.9897" x2="410.3553" y1="588.2199" y2="588.3048"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1319 <line fill="none" id="t1 p1199" stroke="#7A7A7A" stroke-width="1" x1="410.3553" x2="406.3746" y1="588.3048" y2="592.1252"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1320 <line fill="none" id="t1 p1200" stroke="#7A7A7A" stroke-width="1" x1="406.3746" x2="405.2623" y1="592.1252" y2="592.0827"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1321 <line fill="none" id="t1 p1201" stroke="#7A7A7A" stroke-width="1" x1="405.2623" x2="401.7206" y1="592.0827" y2="592.0827"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1322 <line fill="none" id="t1 p1202" stroke="#7A7A7A" stroke-width="1" x1="401.7206" x2="401.1937" y1="592.0827" y2="595.0116"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1323 <line fill="none" id="t1 p1203" stroke="#7A7A7A" stroke-width="1" x1="401.1937" x2="402.1889" y1="595.0116" y2="599.8083"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1324 <line fill="none" id="t1 p1204" stroke="#7A7A7A" stroke-width="1" x1="402.1889" x2="397.9155" y1="599.8083" y2="600.5724"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1325 <line fill="none" id="t1 p1205" stroke="#7A7A7A" stroke-width="1" x1="397.9155" x2="394.2274" y1="600.5724" y2="603.6286"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1326 <line fill="none" id="t1 p1206" stroke="#7A7A7A" stroke-width="1" x1="394.2274" x2="391.4760" y1="603.6286" y2="609.7837"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1327 <line fill="none" id="t1 p1207" stroke="#7A7A7A" stroke-width="1" x1="391.4760" x2="386.9976" y1="609.7837" y2="612.6277"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1328 <line fill="none" id="t1 p1208" stroke="#7A7A7A" stroke-width="1" x1="386.9976" x2="384.3633" y1="612.6277" y2="616.1933"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1329 <line fill="none" id="t1 p1209" stroke="#7A7A7A" stroke-width="1" x1="384.3633" x2="384.1584" y1="616.1933" y2="619.9712"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1330 <line fill="none" id="t1 p1210" stroke="#7A7A7A" stroke-width="1" x1="384.1584" x2="386.0317" y1="619.9712" y2="622.0512"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1331 <line fill="none" id="t1 p1211" stroke="#7A7A7A" stroke-width="1" x1="386.0317" x2="388.4026" y1="622.0512" y2="626.5932"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1332 <line fill="none" id="t1 p1212" stroke="#7A7A7A" stroke-width="1" x1="388.4026" x2="389.2807" y1="626.5932" y2="632.8331"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1333 <line fill="none" id="t1 p1213" stroke="#7A7A7A" stroke-width="1" x1="389.2807" x2="388.2270" y1="632.8331" y2="635.5498"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1334 <line fill="none" id="t1 p1214" stroke="#7A7A7A" stroke-width="1" x1="388.2270" x2="387.7879" y1="635.5498" y2="641.3652"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1335 <line fill="none" id="t1 p1215" stroke="#7A7A7A" stroke-width="1" x1="387.7879" x2="388.5197" y1="641.3652" y2="646.5863"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1336 <line fill="none" id="t1 p1216" stroke="#7A7A7A" stroke-width="1" x1="388.5197" x2="389.3685" y1="646.5863" y2="648.0296"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1337 <line fill="none" id="t1 p1217" stroke="#7A7A7A" stroke-width="1" x1="389.3685" x2="392.9688" y1="648.0296" y2="650.4916"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1338 <line fill="none" id="t1 p1218" stroke="#7A7A7A" stroke-width="1" x1="392.9688" x2="396.2763" y1="650.4916" y2="653.7177"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1339 <line fill="none" id="t1 p1219" stroke="#7A7A7A" stroke-width="1" x1="396.2763" x2="398.6472" y1="653.7177" y2="655.8401"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1340 <line fill="none" id="t1 p1220" stroke="#7A7A7A" stroke-width="1" x1="398.6472" x2="402.3353" y1="655.8401" y2="658.9388"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1341 <line fill="none" id="t1 p1221" stroke="#7A7A7A" stroke-width="1" x1="402.3353" x2="409.0674" y1="658.9388" y2="660.0000"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1342 <line fill="none" id="t1 p1222" stroke="#7A7A7A" stroke-width="1" x1="409.0674" x2="409.3601" y1="660.0000" y2="657.5380"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1343 <line fill="none" id="t1 p1223" stroke="#7A7A7A" stroke-width="1" x1="409.3601" x2="409.0967" y1="657.5380" y2="654.9062"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1344 <line fill="none" id="t1 p1224" stroke="#7A7A7A" stroke-width="1" x1="409.0967" x2="408.9504" y1="654.9062" y2="653.1234"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1345 <line fill="none" id="t1 p1225" stroke="#7A7A7A" stroke-width="1" x1="408.9504" x2="412.1701" y1="653.1234" y2="647.2231"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1346 <line fill="none" id="t1 p1226" stroke="#7A7A7A" stroke-width="1" x1="412.1701" x2="413.1360" y1="647.2231" y2="646.6712"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1347 <line fill="none" id="t1 p1227" stroke="#7A7A7A" stroke-width="1" x1="413.1360" x2="416.9997" y1="646.6712" y2="644.5064"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1348 <line fill="none" id="t1 p1228" stroke="#7A7A7A" stroke-width="1" x1="416.9997" x2="421.0975" y1="644.5064" y2="642.5537"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1349 <line fill="none" id="t1 p1229" stroke="#7A7A7A" stroke-width="1" x1="421.0975" x2="424.3173" y1="642.5537" y2="643.6574"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1350 <line fill="none" id="t1 p1230" stroke="#7A7A7A" stroke-width="1" x1="424.3173" x2="427.6541" y1="643.6574" y2="645.2280"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1351 <line fill="none" id="t1 p1231" stroke="#7A7A7A" stroke-width="1" x1="427.6541" x2="434.5326" y1="645.2280" y2="645.8647"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1352 <line fill="none" id="t1 p1232" stroke="#7A7A7A" stroke-width="1" x1="434.5326" x2="439.8012" y1="645.8647" y2="646.3741"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1353 <line fill="none" id="t1 p1233" stroke="#7A7A7A" stroke-width="1" x1="439.8012" x2="443.8405" y1="646.3741" y2="648.8785"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1354 <line fill="none" id="t1 p1234" stroke="#7A7A7A" stroke-width="1" x1="443.8405" x2="444.7772" y1="648.8785" y2="649.5153"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1355 <line fill="none" id="t1 p1235" stroke="#7A7A7A" stroke-width="1" x1="444.7772" x2="447.2066" y1="649.5153" y2="651.6801"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1356 <line fill="none" id="t1 p1236" stroke="#7A7A7A" stroke-width="1" x1="447.2066" x2="453.9681" y1="651.6801" y2="652.7838"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1357 <line fill="none" id="t1 p1237" stroke="#7A7A7A" stroke-width="1" x1="453.9681" x2="455.7243" y1="652.7838" y2="652.7838"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1358 <line fill="none" id="t1 p1238" stroke="#7A7A7A" stroke-width="1" x1="455.7243" x2="460.7880" y1="652.7838" y2="651.5528"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1359 <line fill="none" id="t1 p1239" stroke="#7A7A7A" stroke-width="1" x1="460.7880" x2="465.4713" y1="651.5528" y2="648.0720"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1360 <line fill="none" id="t1 p1240" stroke="#7A7A7A" stroke-width="1" x1="465.4713" x2="470.7107" y1="648.0720" y2="648.4541"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1361 <line fill="none" id="t1 p1241" stroke="#7A7A7A" stroke-width="1" x1="470.7107" x2="473.5206" y1="648.4541" y2="647.3504"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1362 <line fill="none" id="t1 p1242" stroke="#7A7A7A" stroke-width="1" x1="473.5206" x2="473.2572" y1="647.3504" y2="646.2892"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1363 <line fill="none" id="t1 p1243" stroke="#7A7A7A" stroke-width="1" x1="473.2572" x2="471.2082" y1="646.2892" y2="640.8983"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1364 <line fill="none" id="t1 p1244" stroke="#7A7A7A" stroke-width="1" x1="471.2082" x2="470.5350" y1="640.8983" y2="639.1154"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1365 <line fill="none" id="t1 p1245" stroke="#7A7A7A" stroke-width="1" x1="470.5350" x2="466.9641" y1="639.1154" y2="638.5636"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1366 <line fill="none" id="t1 p1246" stroke="#7A7A7A" stroke-width="1" x1="466.9641" x2="464.2419" y1="638.5636" y2="638.6061"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1367 <line fill="none" id="t1 p1247" stroke="#7A7A7A" stroke-width="1" x1="464.2419" x2="460.5246" y1="638.6061" y2="637.9269"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1368 <line fill="none" id="t1 p1248" stroke="#7A7A7A" stroke-width="1" x1="460.5246" x2="457.8317" y1="637.9269" y2="638.9032"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1369 <line fill="none" id="t1 p1249" stroke="#7A7A7A" stroke-width="1" x1="457.8317" x2="454.7876" y1="638.9032" y2="639.0305"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1370 <line fill="none" id="t1 p1250" stroke="#7A7A7A" stroke-width="1" x1="454.7876" x2="453.4119" y1="639.0305" y2="639.2003"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1371 <line fill="none" id="t1 p1251" stroke="#7A7A7A" stroke-width="1" x1="453.4119" x2="451.2752" y1="639.2003" y2="639.5824"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1372 <line fill="none" id="t1 p1252" stroke="#7A7A7A" stroke-width="1" x1="451.2752" x2="449.0506" y1="639.5824" y2="638.5636"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1373 <line fill="none" id="t1 p1253" stroke="#7A7A7A" stroke-width="1" x1="449.0506" x2="447.2944" y1="638.5636" y2="638.1391"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1374 <line fill="none" id="t1 p1254" stroke="#7A7A7A" stroke-width="1" x1="447.2944" x2="444.6308" y1="638.1391" y2="639.5824"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1375 <line fill="none" id="t1 p1255" stroke="#7A7A7A" stroke-width="1" x1="444.6308" x2="444.6308" y1="639.5824" y2="641.5350"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1376 <line fill="none" id="t1 p1256" stroke="#7A7A7A" stroke-width="1" x1="444.6308" x2="444.0747" y1="641.5350" y2="642.6386"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1377 <line fill="none" id="t1 p1257" stroke="#7A7A7A" stroke-width="1" x1="444.0747" x2="441.0891" y1="642.6386" y2="643.5301"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1378 <line fill="none" id="t1 p1258" stroke="#7A7A7A" stroke-width="1" x1="441.0891" x2="440.0061" y1="643.5301" y2="641.9595"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1379 <line fill="none" id="t1 p1259" stroke="#7A7A7A" stroke-width="1" x1="440.0061" x2="438.6012" y1="641.9595" y2="638.6485"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1380 <line fill="none" id="t1 p1260" stroke="#7A7A7A" stroke-width="1" x1="438.6012" x2="435.4107" y1="638.6485" y2="638.9456"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1381 <line fill="none" id="t1 p1261" stroke="#7A7A7A" stroke-width="1" x1="435.4107" x2="434.5911" y1="638.9456" y2="639.2428"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1382 <line fill="none" id="t1 p1262" stroke="#7A7A7A" stroke-width="1" x1="434.5911" x2="430.2884" y1="639.2428" y2="639.7097"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1383 <line fill="none" id="t1 p1263" stroke="#7A7A7A" stroke-width="1" x1="430.2884" x2="426.9808" y1="639.7097" y2="638.1391"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1384 <line fill="none" id="t1 p1264" stroke="#7A7A7A" stroke-width="1" x1="426.9808" x2="425.3417" y1="638.1391" y2="636.2714"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1385 <line fill="none" id="t1 p1265" stroke="#7A7A7A" stroke-width="1" x1="425.3417" x2="423.9367" y1="636.2714" y2="633.4698"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1386 <line fill="none" id="t1 p1266" stroke="#7A7A7A" stroke-width="1" x1="423.9367" x2="425.1368" y1="633.4698" y2="628.7580"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1387 <line fill="none" id="t1 p1267" stroke="#7A7A7A" stroke-width="1" x1="425.1368" x2="425.9564" y1="628.7580" y2="626.3809"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1388 <line fill="none" id="t1 p1268" stroke="#7A7A7A" stroke-width="1" x1="425.9564" x2="428.4736" y1="626.3809" y2="622.2210"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1389 <line fill="none" id="t1 p1269" stroke="#7A7A7A" stroke-width="1" x1="428.4736" x2="433.8594" y1="622.2210" y2="618.9100"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1390 <line fill="none" id="t1 p1270" stroke="#7A7A7A" stroke-width="1" x1="433.8594" x2="436.8742" y1="618.9100" y2="618.6553"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1391 <line fill="none" id="t1 p1271" stroke="#7A7A7A" stroke-width="1" x1="436.8742" x2="441.0306" y1="618.6553" y2="618.4007"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1392 <line fill="none" id="t1 p1272" stroke="#7A7A7A" stroke-width="1" x1="441.0306" x2="441.6453" y1="618.4007" y2="618.9949"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1393 <line fill="none" id="t1 p1273" stroke="#7A7A7A" stroke-width="1" x1="441.6453" x2="446.1822" y1="618.9949" y2="622.6879"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1394 <line fill="none" id="t1 p1274" stroke="#7A7A7A" stroke-width="1" x1="446.1822" x2="454.0851" y1="622.6879" y2="623.3247"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1395 <line fill="none" id="t1 p1275" stroke="#7A7A7A" stroke-width="1" x1="454.0851" x2="461.4905" y1="623.3247" y2="626.3809"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1396 <line fill="none" id="t1 p1276" stroke="#7A7A7A" stroke-width="1" x1="461.4905" x2="464.5639" y1="626.3809" y2="627.6968"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1397 <line fill="none" id="t1 p1277" stroke="#7A7A7A" stroke-width="1" x1="464.5639" x2="468.9837" y1="627.6968" y2="624.3010"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1398 <line fill="none" id="t1 p1278" stroke="#7A7A7A" stroke-width="1" x1="468.9837" x2="469.3935" y1="624.3010" y2="622.4332"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1399 <line fill="none" id="t1 p1279" stroke="#7A7A7A" stroke-width="1" x1="469.3935" x2="466.6421" y1="622.4332" y2="618.0611"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1400 <line fill="none" id="t1 p1280" stroke="#7A7A7A" stroke-width="1" x1="466.6421" x2="466.7006" y1="618.0611" y2="615.6415"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1401 <line fill="none" id="t1 p1281" stroke="#7A7A7A" stroke-width="1" x1="466.7006" x2="467.7836" y1="615.6415" y2="614.1983"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1402 <line fill="none" id="t1 p1282" stroke="#7A7A7A" stroke-width="1" x1="467.7836" x2="472.9937" y1="614.1983" y2="611.0995"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1403 <line fill="none" id="t1 p1283" stroke="#7A7A7A" stroke-width="1" x1="472.9937" x2="475.7744" y1="611.0995" y2="603.6711"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1404 <line fill="none" id="t1 p1284" stroke="#7A7A7A" stroke-width="1" x1="475.7744" x2="479.1405" y1="603.6711" y2="598.7046"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1405 <line fill="none" id="t1 p1285" stroke="#7A7A7A" stroke-width="1" x1="479.1405" x2="484.0286" y1="598.7046" y2="599.2989"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1406 <line fill="none" id="t1 p1286" stroke="#7A7A7A" stroke-width="1" x1="484.0286" x2="489.9412" y1="599.2989" y2="597.0067"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1407 <line fill="none" id="t1 p1287" stroke="#7A7A7A" stroke-width="1" x1="489.9412" x2="492.2829" y1="597.0067" y2="596.1153"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1408 <line fill="none" id="t1 p1288" stroke="#7A7A7A" stroke-width="1" x1="492.2829" x2="497.3173" y1="596.1153" y2="600.6573"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1409 <line fill="none" id="t1 p1289" stroke="#7A7A7A" stroke-width="1" x1="497.3173" x2="504.1373" y1="600.6573" y2="602.1854"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1410 <line fill="none" id="t1 p1290" stroke="#7A7A7A" stroke-width="1" x1="504.1373" x2="506.5960" y1="602.1854" y2="600.2752"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1411 <line fill="none" id="t1 p1291" stroke="#7A7A7A" stroke-width="1" x1="506.5960" x2="511.6891" y1="600.2752" y2="595.5635"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1412 <line fill="none" id="t1 p1292" stroke="#7A7A7A" stroke-width="1" x1="511.6891" x2="518.6554" y1="595.5635" y2="589.4509"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1413 <line fill="none" id="t1 p1293" stroke="#7A7A7A" stroke-width="1" x1="518.6554" x2="520.0018" y1="589.4509" y2="588.9840"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1414 <line fill="none" id="t1 p1294" stroke="#7A7A7A" stroke-width="1" x1="520.0018" x2="527.3194" y1="588.9840" y2="589.9603"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1415 <line fill="none" id="t1 p1295" stroke="#7A7A7A" stroke-width="1" x1="527.3194" x2="528.9878" y1="589.9603" y2="591.1913"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1416 <line fill="none" id="t1 p1296" stroke="#7A7A7A" stroke-width="1" x1="528.9878" x2="529.1927" y1="591.1913" y2="591.1488"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1417 <line fill="none" id="t1 p1297" stroke="#7A7A7A" stroke-width="1" x1="529.1927" x2="530.1001" y1="591.1488" y2="589.3236"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1418 <line fill="none" id="t1 p1298" stroke="#7A7A7A" stroke-width="1" x1="530.1001" x2="530.1586" y1="589.3236" y2="588.6868"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1419 <line fill="none" id="t1 p1299" stroke="#7A7A7A" stroke-width="1" x1="530.1586" x2="528.9000" y1="588.6868" y2="586.0975"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1420 <line fill="none" id="t1 p1300" stroke="#7A7A7A" stroke-width="1" x1="528.9000" x2="528.8122" y1="586.0975" y2="582.4894"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1421 <line fill="none" id="t1 p1301" stroke="#7A7A7A" stroke-width="1" x1="528.8122" x2="528.9293" y1="582.4894" y2="578.5417"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1422 <line fill="none" id="t1 p1302" stroke="#7A7A7A" stroke-width="1" x1="528.9293" x2="527.2901" y1="578.5417" y2="574.2120"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1423 <line fill="none" id="t1 p1303" stroke="#7A7A7A" stroke-width="1" x1="527.2901" x2="525.7681" y1="574.2120" y2="572.5989"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1424 <line fill="none" id="t1 p1304" stroke="#7A7A7A" stroke-width="1" x1="525.7681" x2="523.4557" y1="572.5989" y2="568.2692"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1425 <line fill="none" id="t1 p1305" stroke="#7A7A7A" stroke-width="1" x1="523.4557" x2="523.2508" y1="568.2692" y2="562.0293"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1426 <line fill="none" id="t1 p1306" stroke="#7A7A7A" stroke-width="1" x1="523.2508" x2="521.7873" y1="562.0293" y2="554.5584"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1427 <line fill="none" id="t1 p1307" stroke="#7A7A7A" stroke-width="1" x1="521.7873" x2="518.5383" y1="554.5584" y2="548.0214"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1428 <line fill="none" id="t1 p1308" stroke="#7A7A7A" stroke-width="1" x1="518.5383" x2="512.4208" y1="548.0214" y2="543.1823"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1429 <line fill="none" id="t1 p1309" stroke="#7A7A7A" stroke-width="1" x1="512.4208" x2="504.0202" y1="543.1823" y2="538.5129"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1430 <line fill="none" id="t1 p1310" stroke="#7A7A7A" stroke-width="1" x1="504.0202" x2="496.9954" y1="538.5129" y2="536.5603"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1431 <line fill="none" id="t1 p1311" stroke="#7A7A7A" stroke-width="1" x1="496.9954" x2="494.3025" y1="536.5603" y2="531.7637"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1432 <line fill="none" id="t1 p1312" stroke="#7A7A7A" stroke-width="1" x1="494.3025" x2="494.1269" y1="531.7637" y2="525.9907"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1433 <line fill="none" id="t1 p1313" stroke="#7A7A7A" stroke-width="1" x1="494.1269" x2="494.8586" y1="525.9907" y2="521.2365"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1434 <line fill="none" id="t1 p1314" stroke="#7A7A7A" stroke-width="1" x1="494.8586" x2="496.4685" y1="521.2365" y2="513.6382"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1435 <line fill="none" id="t1 p1315" stroke="#7A7A7A" stroke-width="1" x1="496.4685" x2="494.7123" y1="513.6382" y2="508.7142"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1436 <line fill="none" id="t1 p1316" stroke="#7A7A7A" stroke-width="1" x1="494.7123" x2="491.1999" y1="508.7142" y2="502.3894"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1437 <line fill="none" id="t1 p1317" stroke="#7A7A7A" stroke-width="1" x1="491.1999" x2="490.8486" y1="502.3894" y2="496.8711"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1438 <line fill="none" id="t1 p1318" stroke="#7A7A7A" stroke-width="1" x1="490.8486" x2="493.9513" y1="496.8711" y2="495.6826"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1439 <line fill="none" id="t1 p1319" stroke="#7A7A7A" stroke-width="1" x1="493.9513" x2="497.9027" y1="495.6826" y2="494.5365"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1440 <line fill="none" id="t1 p1320" stroke="#7A7A7A" stroke-width="1" x1="497.9027" x2="504.8983" y1="494.5365" y2="493.4753"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1441 <line fill="none" id="t1 p1321" stroke="#7A7A7A" stroke-width="1" x1="504.8983" x2="508.9669" y1="493.4753" y2="493.8998"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1442 <line fill="none" id="t1 p1322" stroke="#7A7A7A" stroke-width="1" x1="508.9669" x2="513.8551" y1="493.8998" y2="494.4091"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1443 <line fill="none" id="t1 p1323" stroke="#7A7A7A" stroke-width="1" x1="513.8551" x2="515.4357" y1="494.4091" y2="494.7912"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1444 <line fill="none" id="t1 p1324" stroke="#7A7A7A" stroke-width="1" x1="515.4357" x2="516.8114" y1="494.7912" y2="495.4704"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1445 <line fill="none" id="t1 p1325" stroke="#7A7A7A" stroke-width="1" x1="516.8114" x2="517.9529" y1="495.4704" y2="495.1308"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1446 <line fill="none" id="t1 p1326" stroke="#7A7A7A" stroke-width="1" x1="517.9529" x2="519.1530" y1="495.1308" y2="492.5839"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1447 <line fill="none" id="t1 p1327" stroke="#7A7A7A" stroke-width="1" x1="519.1530" x2="520.0018" y1="492.5839" y2="488.6362"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1448 <line fill="none" id="t1 p1328" stroke="#7A7A7A" stroke-width="1" x1="520.0018" x2="523.6606" y1="488.6362" y2="483.1603"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1449 <line fill="none" id="t1 p1329" stroke="#7A7A7A" stroke-width="1" x1="523.6606" x2="528.4609" y1="483.1603" y2="480.0616"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1450 <line fill="none" id="t1 p1330" stroke="#7A7A7A" stroke-width="1" x1="528.4609" x2="531.3880" y1="480.0616" y2="477.7270"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1451 <line fill="none" id="t1 p1331" stroke="#7A7A7A" stroke-width="1" x1="531.3880" x2="532.5002" y1="477.7270" y2="477.0478"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1452 <line fill="none" id="t1 p1332" stroke="#7A7A7A" stroke-width="1" x1="532.5002" x2="532.5295" y1="477.0478" y2="476.9629"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1453 <line fill="none" id="t1 p1333" stroke="#7A7A7A" stroke-width="1" x1="532.5295" x2="532.5588" y1="476.9629" y2="473.8642"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1454 <line fill="none" id="t1 p1334" stroke="#7A7A7A" stroke-width="1" x1="532.5588" x2="530.0415" y1="473.8642" y2="468.3883"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1455 <line fill="none" id="t1 p1335" stroke="#7A7A7A" stroke-width="1" x1="530.0415" x2="531.8856" y1="468.3883" y2="462.8701"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1456 <line fill="none" id="t1 p1336" stroke="#7A7A7A" stroke-width="1" x1="531.8856" x2="532.7344" y1="462.8701" y2="461.8088"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1457 <line fill="none" id="t1 p1337" stroke="#7A7A7A" stroke-width="1" x1="532.7344" x2="532.3539" y1="461.8088" y2="458.4554"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1458 <line fill="none" id="t1 p1338" stroke="#7A7A7A" stroke-width="1" x1="532.3539" x2="533.2613" y1="458.4554" y2="457.3942"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1459 <line fill="none" id="t1 p1339" stroke="#7A7A7A" stroke-width="1" x1="533.2613" x2="535.0760" y1="457.3942" y2="455.9934"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1460 <line fill="none" id="t1 p1340" stroke="#7A7A7A" stroke-width="1" x1="535.0760" x2="535.9541" y1="455.9934" y2="454.6775"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1461 <line fill="none" id="t1 p1341" stroke="#7A7A7A" stroke-width="1" x1="535.9541" x2="536.2761" y1="454.6775" y2="455.6963"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1462 </g>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1463
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1464 <g id="Waypoints"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1465
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1466 <rect fill="none" height="699" id="image_boundary" opacity="0" stroke="#000000" stroke-width="1" width="699" x="0.5" y="0.5"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1467 <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"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1468 <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"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1469 <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"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1470 <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[
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1471 function saveModifiedSource() {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1472 var okay_to_continue;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1473 if (document.URL.substr(0,4) == 'http') {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1474 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.')
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1475 } else {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1476 alert('Sorry. For security reasons, you can only save modifications to a file that resides on gpsvisualizer.com.');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1477 return;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1478 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1479 if (SVGDoc.getElementById('modified_source_link text') != null) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1480 var theThingToDelete = SVGDoc.getElementById('modified_source_link text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1481 theThingToDelete.getParentNode().removeChild(theThingToDelete);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1482 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1483 if (SVGDoc.getElementById('localized_jpeg_link text') != null) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1484 var theThingToDelete2 = SVGDoc.getElementById('localized_jpeg_link text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1485 theThingToDelete2.getParentNode().removeChild(theThingToDelete2);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1486 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1487 if (SVGDoc.getElementById('localized_png_link text') != null) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1488 var theThingToDelete3 = SVGDoc.getElementById('localized_png_link text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1489 theThingToDelete3.getParentNode().removeChild(theThingToDelete3);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1490 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1491 if (okay_to_continue) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1492 showSaver(0);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1493 var theSource = printNode(document.rootElement);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1494 showSaver(1);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1495 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");
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1496 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1497 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1498 function postIsDone() {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1499 if (SVGDoc.getElementById('modified_source_link') != null) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1500
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1501 var theExistingModifiedLink = SVGDoc.getElementById('modified_source_link');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1502 var newModLinkLabel = SVGDoc.createElementNS(svgns,'text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1503 newModLinkLabel.setAttributeNS(null, 'id', 'modified_source_link text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1504 newModLinkLabel.setAttributeNS(null, 'x', 3); newModLinkLabel.setAttributeNS(null, 'y', 14);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1505 newModLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newModLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newModLinkLabel.setAttributeNS(null, 'font-size', '12');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1506 var newModLinkText = document.createTextNode('Retrieve modified SVG');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1507 newModLinkLabel.appendChild(newModLinkText);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1508 theExistingModifiedLink.appendChild(newModLinkLabel);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1509
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1510 var theExistingJPEGLink = SVGDoc.getElementById('localized_jpeg_link');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1511 var newJPEGLinkLabel = SVGDoc.createElementNS(svgns,'text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1512 newJPEGLinkLabel.setAttributeNS(null, 'id', 'localized_jpeg_link text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1513 newJPEGLinkLabel.setAttributeNS(null, 'x', 3); newJPEGLinkLabel.setAttributeNS(null, 'y', 28);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1514 newJPEGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newJPEGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newJPEGLinkLabel.setAttributeNS(null, 'font-size', '12');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1515 var newJPEGLinkText = document.createTextNode('Convert modified SVG to JPEG');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1516 newJPEGLinkLabel.appendChild(newJPEGLinkText);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1517 theExistingJPEGLink.appendChild(newJPEGLinkLabel);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1518
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1519 var theExistingPNGLink = SVGDoc.getElementById('localized_png_link');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1520 var newPNGLinkLabel = SVGDoc.createElementNS(svgns,'text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1521 newPNGLinkLabel.setAttributeNS(null, 'id', 'localized_png_link text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1522 newPNGLinkLabel.setAttributeNS(null, 'x', 3); newPNGLinkLabel.setAttributeNS(null, 'y', 42);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1523 newPNGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newPNGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newPNGLinkLabel.setAttributeNS(null, 'font-size', '12');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1524 var newPNGLinkText = document.createTextNode('Convert modified SVG to PNG');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1525 newPNGLinkLabel.appendChild(newPNGLinkText);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1526 theExistingPNGLink.appendChild(newPNGLinkLabel);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1527
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1528 var theExistingSVGLink = SVGDoc.getElementById('localized_svg_link');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1529 var newSVGLinkLabel = SVGDoc.createElementNS(svgns,'text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1530 newSVGLinkLabel.setAttributeNS(null, 'id', 'localized_svg_link text');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1531 newSVGLinkLabel.setAttributeNS(null, 'x', 3); newSVGLinkLabel.setAttributeNS(null, 'y', 56);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1532 newSVGLinkLabel.setAttributeNS(null, 'fill', '#CC0000'); newSVGLinkLabel.setAttributeNS(null, 'font-family', 'Verdana'); newSVGLinkLabel.setAttributeNS(null, 'font-size', '12');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1533 var newSVGLinkText = document.createTextNode('Localize modified SVG (embed background)');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1534 newSVGLinkLabel.appendChild(newSVGLinkText);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1535 theExistingSVGLink.appendChild(newSVGLinkLabel);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1536
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1537 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.')
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1538 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1539 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1540 function saverMouseDown(evt,id) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1541 var theSaver = SVGDoc.getElementById('Saver');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1542 if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1543 tracking = 1;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1544 findGroupClickOffset(evt,id);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1545 var scale = SVGRoot.getCurrentScale();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1546 var pan = SVGRoot.getCurrentTranslate();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1547 global_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1548 global_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1549 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1550 function saverMouseUp(evt,id) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1551 var theSaver = SVGDoc.getElementById('Saver');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1552 if (theSaver.getAttributeNS(null, 'opacity') == 0) { return; }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1553 // Any time the mouse is lifted off the saver, clear the blue highlights
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1554 var theGroupTags = SVGDoc.getElementsByTagName('g');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1555 for(g=0; g < theGroupTags.length; g++){
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1556 theGroupTags.item(g).setAttributeNS(null, 'stroke','none');
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1557 theGroupTags.item(g).setAttributeNS(null, 'stroke-width',0);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1558 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1559 tracking = 0;
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1560 var scale = SVGRoot.getCurrentScale();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1561 var pan = SVGRoot.getCurrentTranslate();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1562 var current_mouse_x = (evt.getClientX())/scale + (( 0.0 - pan.x ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1563 var current_mouse_y = (evt.getClientY())/scale + (( 0.0 - pan.y ) / scale);
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1564 if (current_mouse_x == global_mouse_x && current_mouse_y == global_mouse_y) {
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1565 saveModifiedSource();
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1566 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1567 }
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1568 ]]>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1569 </script>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1570 <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">
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1571 <rect fill="#CC0000" height="16" id="saver 1" rx="1.5" ry="1.5" width="16" x="0" y="0"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1572 <rect fill="#FFFFFF" height="8.5" id="saver 2" width="12" x="2" y="0.5"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1573 <rect fill="#999999" height="1" id="saver 3a" width="11" x="2.5" y="2"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1574 <rect fill="#999999" height="1" id="saver 3b" width="11" x="2.5" y="4"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1575 <rect fill="#999999" height="1" id="saver 3c" width="11" x="2.5" y="6"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1576 <rect fill="#CCCCCC" height="5.5" id="saver 4" width="8" x="4" y="10.5"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1577 <rect fill="#CC0000" height="4.5" id="saver 5" width="2" x="5.5" y="11"/>
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1578 </g><!-- debugging stuff:
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1579 --><!-- key = 1289918140-14799
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1580 --><!-- min. altitude = 404.371704
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1581 --><!-- max. altitude = 453.398926
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1582 --><!-- colorize min = 404.371704
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1583 --><!-- colorize max = 453.398926
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1584 --><!-- colorize range = 49.027222
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1585 --><!-- upper left (data) = 46.463134,-95.213616
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1586 --><!-- lower right (data) = 46.448528,-95.197882
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1587 --><!-- upper left (drawing) = 46.4640763225806,-95.2177065193959
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1588 --><!-- lower right (drawing) = 46.4475856774194,-95.1937914806041
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1589 --><!-- center = 46.455831,-95.205749
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1590 --><!-- width,height (pixels) = 700,700
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1591 --><!-- width,height (degrees) = 0.0239150387917419,0.0164906451612765
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1592 --><!-- scale = 7434, resolution = 2.622 m/pixel
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1593 --><!-- 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
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1594 --><!-- 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
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1595 --><!-- e-mail =
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1596 --><!--
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1597 Generated using the Perl SVG Module V2.49
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1598 by Ronan Oger
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1599 Info: http://www.roitsystems.com/
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1600 -->
fd3d8ada71ad Inital Commit
tschulz <>
parents:
diff changeset
1601 </svg>